├── README.md └── Wiimote ├── Resources └── Icon128.png ├── Source └── Wiimote │ ├── Private │ ├── WiimoteFunctionLibrary.cpp │ ├── WiimoteInputDevice.cpp │ ├── WiimoteInputDevice.h │ ├── WiimotePlugin.cpp │ └── WiimotePrivatePCH.h │ ├── Public │ ├── WiimoteFunctionLibrary.h │ └── WiimotePlugin.h │ └── Wiimote.Build.cs ├── ThirdParty └── WiiUse │ ├── inc │ ├── wiiuse.h │ └── wiiuse_msvcstdint.h │ ├── lib │ └── Win64 │ │ ├── wiiuse.dll │ │ └── wiiuse.lib │ └── src │ ├── CMakeLists.txt │ ├── classic.c │ ├── classic.h │ ├── definitions.h │ ├── definitions_os.h │ ├── dynamics.c │ ├── dynamics.h │ ├── events.c │ ├── events.h │ ├── guitar_hero_3.c │ ├── guitar_hero_3.h │ ├── io.c │ ├── io.h │ ├── ir.c │ ├── ir.h │ ├── motion_plus.c │ ├── motion_plus.h │ ├── nunchuk.c │ ├── nunchuk.h │ ├── os.h │ ├── os_mac │ ├── os_mac.h │ ├── os_mac.m │ ├── os_mac_find.m │ └── os_mac_interface.m │ ├── os_nix.c │ ├── os_win.c │ ├── util.c │ ├── wiiboard.c │ ├── wiiboard.h │ ├── wiiuse.c │ ├── wiiuse.h │ ├── wiiuse_internal.h │ └── wiiuse_msvcstdint.h └── Wiimote.uplugin /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /Wiimote/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Resources/Icon128.png -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Private/WiimoteFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Private/WiimoteFunctionLibrary.cpp -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Private/WiimoteInputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Private/WiimoteInputDevice.cpp -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Private/WiimoteInputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Private/WiimoteInputDevice.h -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Private/WiimotePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Private/WiimotePlugin.cpp -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Private/WiimotePrivatePCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Private/WiimotePrivatePCH.h -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Public/WiimoteFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Public/WiimoteFunctionLibrary.h -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Public/WiimotePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Public/WiimotePlugin.h -------------------------------------------------------------------------------- /Wiimote/Source/Wiimote/Wiimote.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Source/Wiimote/Wiimote.Build.cs -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/inc/wiiuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/inc/wiiuse.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/inc/wiiuse_msvcstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/inc/wiiuse_msvcstdint.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/lib/Win64/wiiuse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/lib/Win64/wiiuse.dll -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/lib/Win64/wiiuse.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/lib/Win64/wiiuse.lib -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/CMakeLists.txt -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/classic.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/classic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/classic.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/definitions.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/definitions_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/definitions_os.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/dynamics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/dynamics.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/dynamics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/dynamics.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/events.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/events.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/guitar_hero_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/guitar_hero_3.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/guitar_hero_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/guitar_hero_3.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/io.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/io.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/ir.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/ir.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/motion_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/motion_plus.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/motion_plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/motion_plus.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/nunchuk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/nunchuk.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/nunchuk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/nunchuk.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac.m -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac_find.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac_find.m -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac_interface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os_mac/os_mac_interface.m -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os_nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os_nix.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/os_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/os_win.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/util.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/wiiboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/wiiboard.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/wiiboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/wiiboard.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/wiiuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/wiiuse.c -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/wiiuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/wiiuse.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/wiiuse_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/wiiuse_internal.h -------------------------------------------------------------------------------- /Wiimote/ThirdParty/WiiUse/src/wiiuse_msvcstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/ThirdParty/WiiUse/src/wiiuse_msvcstdint.h -------------------------------------------------------------------------------- /Wiimote/Wiimote.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoyojank/UE4-Wiimote-Plugin/HEAD/Wiimote/Wiimote.uplugin --------------------------------------------------------------------------------