├── .gitattributes ├── .gitignore ├── Include ├── ViGEmBusDriver.h ├── ViGEmBusShared.h ├── ViGEmClient.h ├── ViGEmCommon.h ├── ViGEmUtil.h └── hidapi.h ├── LICENSE ├── README.md ├── XJoy.sln ├── XJoy ├── SteamIVRInput.cpp ├── SteamIVRInput.h ├── ViGEmClient.dll ├── ViGEmClient.lib ├── XJoy.cpp ├── XJoy.ico ├── XJoy.rc ├── XJoy.vcxproj ├── XJoy.vcxproj.filters ├── Yaml.cpp ├── Yaml.hpp ├── action_manifest.json ├── actionsbindingknuckles.json ├── hidapi.dll ├── hidapi.lib ├── legacy_actions.json ├── manifest.vrmanifest ├── openvr_api.dll ├── resource.h ├── resource1.h ├── resource2.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── headers ├── openvr.h ├── openvr_api.cs ├── openvr_api.json ├── openvr_capi.h └── openvr_driver.h └── style_guide.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/.gitignore -------------------------------------------------------------------------------- /Include/ViGEmBusDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/Include/ViGEmBusDriver.h -------------------------------------------------------------------------------- /Include/ViGEmBusShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/Include/ViGEmBusShared.h -------------------------------------------------------------------------------- /Include/ViGEmClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/Include/ViGEmClient.h -------------------------------------------------------------------------------- /Include/ViGEmCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/Include/ViGEmCommon.h -------------------------------------------------------------------------------- /Include/ViGEmUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/Include/ViGEmUtil.h -------------------------------------------------------------------------------- /Include/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/Include/hidapi.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/README.md -------------------------------------------------------------------------------- /XJoy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy.sln -------------------------------------------------------------------------------- /XJoy/SteamIVRInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/SteamIVRInput.cpp -------------------------------------------------------------------------------- /XJoy/SteamIVRInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/SteamIVRInput.h -------------------------------------------------------------------------------- /XJoy/ViGEmClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/ViGEmClient.dll -------------------------------------------------------------------------------- /XJoy/ViGEmClient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/ViGEmClient.lib -------------------------------------------------------------------------------- /XJoy/XJoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/XJoy.cpp -------------------------------------------------------------------------------- /XJoy/XJoy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/XJoy.ico -------------------------------------------------------------------------------- /XJoy/XJoy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/XJoy.rc -------------------------------------------------------------------------------- /XJoy/XJoy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/XJoy.vcxproj -------------------------------------------------------------------------------- /XJoy/XJoy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/XJoy.vcxproj.filters -------------------------------------------------------------------------------- /XJoy/Yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/Yaml.cpp -------------------------------------------------------------------------------- /XJoy/Yaml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/Yaml.hpp -------------------------------------------------------------------------------- /XJoy/action_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/action_manifest.json -------------------------------------------------------------------------------- /XJoy/actionsbindingknuckles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/actionsbindingknuckles.json -------------------------------------------------------------------------------- /XJoy/hidapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/hidapi.dll -------------------------------------------------------------------------------- /XJoy/hidapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/hidapi.lib -------------------------------------------------------------------------------- /XJoy/legacy_actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/legacy_actions.json -------------------------------------------------------------------------------- /XJoy/manifest.vrmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/manifest.vrmanifest -------------------------------------------------------------------------------- /XJoy/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/openvr_api.dll -------------------------------------------------------------------------------- /XJoy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/resource.h -------------------------------------------------------------------------------- /XJoy/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/resource1.h -------------------------------------------------------------------------------- /XJoy/resource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/resource2.h -------------------------------------------------------------------------------- /XJoy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/stdafx.cpp -------------------------------------------------------------------------------- /XJoy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/stdafx.h -------------------------------------------------------------------------------- /XJoy/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/XJoy/targetver.h -------------------------------------------------------------------------------- /headers/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/headers/openvr.h -------------------------------------------------------------------------------- /headers/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/headers/openvr_api.cs -------------------------------------------------------------------------------- /headers/openvr_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/headers/openvr_api.json -------------------------------------------------------------------------------- /headers/openvr_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/headers/openvr_capi.h -------------------------------------------------------------------------------- /headers/openvr_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/headers/openvr_driver.h -------------------------------------------------------------------------------- /style_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daendaralus/IndeX360/HEAD/style_guide.md --------------------------------------------------------------------------------