From 78a160a74c3b912930ea45e7c217ca0fa5e0a6ce Mon Sep 17 00:00:00 2001 From: Maschell Date: Tue, 13 Feb 2018 08:22:05 +0100 Subject: [PATCH] [Plugins] Added readmes to the plugins, renamed SwapDRC to SwipSwapMe --- .travis.yml | 4 ++-- plugins/hid_to_vpad/README.md | 24 +++++++++++++++++++ plugins/padcon/README.md | 10 ++++++++ plugins/sdcafiine/README.md | 23 ++++++++++++++++++ plugins/{swapdrc => swipswapme}/Makefile | 0 plugins/swipswapme/README.md | 19 +++++++++++++++ .../src/common/c_retain_vars.cpp | 0 .../src/common/c_retain_vars.h | 0 .../src/function_patcher.c | 0 plugins/{swapdrc => swipswapme}/src/main.c | 2 +- .../src/utils/voice_info.h | 0 .../src/utils/voice_swapper.c | 0 .../src/utils/voice_swapper.h | 0 13 files changed, 79 insertions(+), 3 deletions(-) create mode 100644 plugins/hid_to_vpad/README.md create mode 100644 plugins/padcon/README.md create mode 100644 plugins/sdcafiine/README.md rename plugins/{swapdrc => swipswapme}/Makefile (100%) create mode 100644 plugins/swipswapme/README.md rename plugins/{swapdrc => swipswapme}/src/common/c_retain_vars.cpp (100%) rename plugins/{swapdrc => swipswapme}/src/common/c_retain_vars.h (100%) rename plugins/{swapdrc => swipswapme}/src/function_patcher.c (100%) rename plugins/{swapdrc => swipswapme}/src/main.c (99%) rename plugins/{swapdrc => swipswapme}/src/utils/voice_info.h (100%) rename plugins/{swapdrc => swipswapme}/src/utils/voice_swapper.c (100%) rename plugins/{swapdrc => swipswapme}/src/utils/voice_swapper.h (100%) diff --git a/.travis.yml b/.travis.yml index 8b35436..eb94972 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,7 +54,7 @@ script: - (cd example_plugin && make) - (cd plugins/padcon && make) - (cd plugins/sdcafiine && make) -- (cd plugins/swapdrc && make) +- (cd plugins/swipswapme && make) - (cd plugins/hid_to_vpad && make) before_deploy: @@ -66,7 +66,7 @@ before_deploy: - (cd loader && make) - cp example_plugin/example_plugin.mod wiiu/plugins - cp plugins/padcon/padcon.mod wiiu/plugins -- cp plugins/swapdrc/swapdrc.mod wiiu/plugins +- cp plugins/swipswapme/swipswapme.mod wiiu/plugins - cp plugins/sdcafiine/sdcafiine.mod wiiu/plugins - cp plugins/hid_to_vpad/hid_to_vpad.mod wiiu/plugins - cp loader/meta/* wiiu/apps/wiiupluginloader diff --git a/plugins/hid_to_vpad/README.md b/plugins/hid_to_vpad/README.md new file mode 100644 index 0000000..7a844bb --- /dev/null +++ b/plugins/hid_to_vpad/README.md @@ -0,0 +1,24 @@ +# HIDtoVPAD Plugin for the Wii U Plugin System + +See https://github.com/Maschell/hid_to_vpad for more information. + +# Currently supported + +- Support for Controller with built in support. +- Network Client support +- Alle attached devices are mapped automatically to the Gamepad + +Whats NOT working: + +- Loading configuration files (to extend controller support or change configs) +- Mapping the controllers individually (No GUI for this) + +## Building + +For building you need: +- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions. +- [libutils](https://github.com/Maschell/libutils) for common functions. +- [controller_patcher](https://github.com/Maschell/controller_patcher) to emulate the controllers. + + +Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself. \ No newline at end of file diff --git a/plugins/padcon/README.md b/plugins/padcon/README.md new file mode 100644 index 0000000..179e8a7 --- /dev/null +++ b/plugins/padcon/README.md @@ -0,0 +1,10 @@ +# Padcon Plugin for the Wii U Plugin System + +## Building + +For building you need: +- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions. +- [libutils](https://github.com/Maschell/libutils) for common functions. + + +Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself. \ No newline at end of file diff --git a/plugins/sdcafiine/README.md b/plugins/sdcafiine/README.md new file mode 100644 index 0000000..ba62fd3 --- /dev/null +++ b/plugins/sdcafiine/README.md @@ -0,0 +1,23 @@ +# SDCafiine Plugin for the Wii U Plugin System + +See https://github.com/Maschell/SDCafiine for more information. + +# Currently supported + +- Modpack selector +- Loads mods on games with native SD Access (Smash 4) + +Whats NOT working: + +- SD Access for all other games +- USB support (both FAT32 and NTFS) + +## Building + +For building you need: +- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions. +- [libutils](https://github.com/Maschell/libutils) for common functions. +- [libfswrapper](https://github.com/Maschell/fs_wrapper) to replace the fs functions. + + +Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself. \ No newline at end of file diff --git a/plugins/swapdrc/Makefile b/plugins/swipswapme/Makefile similarity index 100% rename from plugins/swapdrc/Makefile rename to plugins/swipswapme/Makefile diff --git a/plugins/swipswapme/README.md b/plugins/swipswapme/README.md new file mode 100644 index 0000000..1a73f02 --- /dev/null +++ b/plugins/swipswapme/README.md @@ -0,0 +1,19 @@ +# SwipSwapMe Plugin for the Wii U Plugin System + +This little app can be used to swap the TV and DRC screen. + +# Usage + +When starting the app, you have the option to set your own button combo. Just press the button combo you want for 2 seconds. +Otherwise it will use the default settings (TV button). + +Press the TV button (or your button combo) on the Gamepad to swap the screens. Thats all. + +## Building + +For building you need: +- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions. +- [libutils](https://github.com/Maschell/libutils) for common functions. + + +Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself. \ No newline at end of file diff --git a/plugins/swapdrc/src/common/c_retain_vars.cpp b/plugins/swipswapme/src/common/c_retain_vars.cpp similarity index 100% rename from plugins/swapdrc/src/common/c_retain_vars.cpp rename to plugins/swipswapme/src/common/c_retain_vars.cpp diff --git a/plugins/swapdrc/src/common/c_retain_vars.h b/plugins/swipswapme/src/common/c_retain_vars.h similarity index 100% rename from plugins/swapdrc/src/common/c_retain_vars.h rename to plugins/swipswapme/src/common/c_retain_vars.h diff --git a/plugins/swapdrc/src/function_patcher.c b/plugins/swipswapme/src/function_patcher.c similarity index 100% rename from plugins/swapdrc/src/function_patcher.c rename to plugins/swipswapme/src/function_patcher.c diff --git a/plugins/swapdrc/src/main.c b/plugins/swipswapme/src/main.c similarity index 99% rename from plugins/swapdrc/src/main.c rename to plugins/swipswapme/src/main.c index e0c47e8..7321d55 100644 --- a/plugins/swapdrc/src/main.c +++ b/plugins/swipswapme/src/main.c @@ -34,7 +34,7 @@ #include #include -WUPS_MODULE_NAME("SwapDRC"); +WUPS_MODULE_NAME("SwipSwapMe"); WUPS_MODULE_VERSION("v1.0"); WUPS_MODULE_AUTHOR("Maschell"); WUPS_MODULE_LICENSE("GPL"); diff --git a/plugins/swapdrc/src/utils/voice_info.h b/plugins/swipswapme/src/utils/voice_info.h similarity index 100% rename from plugins/swapdrc/src/utils/voice_info.h rename to plugins/swipswapme/src/utils/voice_info.h diff --git a/plugins/swapdrc/src/utils/voice_swapper.c b/plugins/swipswapme/src/utils/voice_swapper.c similarity index 100% rename from plugins/swapdrc/src/utils/voice_swapper.c rename to plugins/swipswapme/src/utils/voice_swapper.c diff --git a/plugins/swapdrc/src/utils/voice_swapper.h b/plugins/swipswapme/src/utils/voice_swapper.h similarity index 100% rename from plugins/swapdrc/src/utils/voice_swapper.h rename to plugins/swipswapme/src/utils/voice_swapper.h