├── .gitattributes ├── .gitignore ├── .gitmodules ├── NetplayInputPlugin.sln └── NetplayInputPlugin ├── .gcc.depend ├── .mingw.depend ├── Controller_1.1.h ├── Makefile ├── Makefile.common ├── Makefile.mingw ├── NetplayInputPlugin.vcxproj ├── NetplayInputPlugin.vcxproj.filters ├── client.cpp ├── client.h ├── client_dialog.cpp ├── client_dialog.h ├── common.cpp ├── common.h ├── connection.cpp ├── connection.h ├── controller_map.h ├── id_variable.h ├── input_plugin.cpp ├── input_plugin.h ├── manifest.xml ├── netplay_input_plugin.cpp ├── packet.h ├── plugin_dialog.cpp ├── plugin_dialog.h ├── resource.h ├── resource.rc ├── room.cpp ├── room.h ├── server.cpp ├── server.h ├── settings.cpp ├── settings.h ├── stdafx.cpp ├── stdafx.h ├── uri.h ├── user.cpp ├── user.h ├── util.cpp └── util.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /NetplayInputPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin.sln -------------------------------------------------------------------------------- /NetplayInputPlugin/.gcc.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/.gcc.depend -------------------------------------------------------------------------------- /NetplayInputPlugin/.mingw.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/.mingw.depend -------------------------------------------------------------------------------- /NetplayInputPlugin/Controller_1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/Controller_1.1.h -------------------------------------------------------------------------------- /NetplayInputPlugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/Makefile -------------------------------------------------------------------------------- /NetplayInputPlugin/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/Makefile.common -------------------------------------------------------------------------------- /NetplayInputPlugin/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/Makefile.mingw -------------------------------------------------------------------------------- /NetplayInputPlugin/NetplayInputPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/NetplayInputPlugin.vcxproj -------------------------------------------------------------------------------- /NetplayInputPlugin/NetplayInputPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/NetplayInputPlugin.vcxproj.filters -------------------------------------------------------------------------------- /NetplayInputPlugin/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/client.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/client.h -------------------------------------------------------------------------------- /NetplayInputPlugin/client_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/client_dialog.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/client_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/client_dialog.h -------------------------------------------------------------------------------- /NetplayInputPlugin/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/common.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/common.h -------------------------------------------------------------------------------- /NetplayInputPlugin/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/connection.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/connection.h -------------------------------------------------------------------------------- /NetplayInputPlugin/controller_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/controller_map.h -------------------------------------------------------------------------------- /NetplayInputPlugin/id_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/id_variable.h -------------------------------------------------------------------------------- /NetplayInputPlugin/input_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/input_plugin.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/input_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/input_plugin.h -------------------------------------------------------------------------------- /NetplayInputPlugin/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/manifest.xml -------------------------------------------------------------------------------- /NetplayInputPlugin/netplay_input_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/netplay_input_plugin.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/packet.h -------------------------------------------------------------------------------- /NetplayInputPlugin/plugin_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/plugin_dialog.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/plugin_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/plugin_dialog.h -------------------------------------------------------------------------------- /NetplayInputPlugin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/resource.h -------------------------------------------------------------------------------- /NetplayInputPlugin/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/resource.rc -------------------------------------------------------------------------------- /NetplayInputPlugin/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/room.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/room.h -------------------------------------------------------------------------------- /NetplayInputPlugin/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/server.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/server.h -------------------------------------------------------------------------------- /NetplayInputPlugin/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/settings.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/settings.h -------------------------------------------------------------------------------- /NetplayInputPlugin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/stdafx.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/stdafx.h -------------------------------------------------------------------------------- /NetplayInputPlugin/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/uri.h -------------------------------------------------------------------------------- /NetplayInputPlugin/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/user.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/user.h -------------------------------------------------------------------------------- /NetplayInputPlugin/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/util.cpp -------------------------------------------------------------------------------- /NetplayInputPlugin/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTimZ/NetplayInputPlugin/HEAD/NetplayInputPlugin/util.h --------------------------------------------------------------------------------