controller_patcher/README.md

60 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

2017-11-19 11:05:23 +01:00
[![Build Status](https://travis-ci.org/Maschell/controller_patcher.svg?branch=master)](https://travis-ci.org/Maschell/controller_patcher)
# What is in this controller_patcher repository
These files are the magic behind tools like HID to VPAD and can used to use your USB HID Device on your WiiU console.
2016-07-31 13:05:32 +02:00
# How to create config files
Detailed information about creating config files and adding support for more controller can be found in the [wiki](https://github.com/Maschell/controller_patcher/wiki)
# Where can I find config files
Configfiles for all controllers are collection in [this repository](https://github.com/Maschell/controller_patch_configs)
2017-10-29 09:34:47 +01:00
## Logging usage
To able to use the logging change the "DO_LOGGING" parameter in the Makefile.
# Compiling
You need to install all dependencies first!
Install this static library into your portlibs folder via:
```
make && make install
```
2017-10-29 10:25:23 +01:00
Link the application with
```
-lutils -ldynamiclibs -lcontrollerpatcher
```
2017-11-11 16:18:03 +01:00
You also need to add the include path to your Makefile. Example:
```
export INCLUDE := [...] -I$(PORTLIBS)/include
```
2017-10-29 09:34:47 +01:00
# Dependencies
- Application needs to be loaded from the [homebrew_launcher](https://github.com/dimok789/homebrew_launcher)
2017-10-29 10:25:23 +01:00
- [libutils](https://github.com/Maschell/libutils) for common functions.
2017-10-29 09:34:47 +01:00
- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions.
# Example implementation
2017-10-29 09:34:47 +01:00
2017-03-24 13:06:04 +01:00
### How to "install" it
TODO!
2016-08-03 21:44:59 +02:00
2017-10-29 09:34:47 +01:00
```
ControllerPatcher::Init(NULL); //No custom configuration
ControllerPatcher::disableControllerMapping();
ControllerPatcher::startNetworkServer();
```
```
ControllerPatcher::DeInit();
ControllerPatcher::stopNetworkServer();
```
2017-03-24 13:06:04 +01:00
# Credits:
- Maschell
- FIX94 - huge thanks to him and his initally created gc-to-vpad. Was a motivation and base to start all this