├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── Data └── Source │ └── Scripts │ └── PapyrusVR.psc ├── LICENSE ├── README.md ├── SkyrimVRTools.sln └── src ├── DirUtils.cpp ├── DirUtils.h ├── EventHandling.h ├── PapyrusVR.cpp ├── PapyrusVR.h ├── ScaleformVR.cpp ├── ScaleformVR.h ├── SkyrimVRTools.vcxproj ├── SkyrimVRTools.vcxproj.filters ├── User.props ├── VRManager.cpp ├── VRManager.h ├── api ├── OpenVRTypes.h ├── PapyrusVRAPI.h ├── PapyrusVRTypes.cpp ├── PapyrusVRTypes.h ├── SkyrimVRToolsAPI.vcxproj ├── VRHookAPI.h ├── VRManagerAPI.h ├── collisions │ ├── IShape.h │ ├── LocalOverlapObject.cpp │ ├── LocalOverlapObject.h │ ├── Sphere.cpp │ └── Sphere.h └── utils │ ├── OpenVRUtils.cpp │ └── OpenVRUtils.h ├── exports.def ├── hooks ├── HookVRCompositor.cpp ├── HookVRCompositor.h ├── HookVRSystem.cpp ├── HookVRSystem.h ├── IHookInterfaceFactory.h ├── openvr_hook.cpp └── openvr_hook.h ├── main.cpp └── openvr └── openvr.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Data/Source/Scripts/PapyrusVR.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/Data/Source/Scripts/PapyrusVR.psc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/README.md -------------------------------------------------------------------------------- /SkyrimVRTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/SkyrimVRTools.sln -------------------------------------------------------------------------------- /src/DirUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/DirUtils.cpp -------------------------------------------------------------------------------- /src/DirUtils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | std::string GetCurrentWorkingDir(void); -------------------------------------------------------------------------------- /src/EventHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/EventHandling.h -------------------------------------------------------------------------------- /src/PapyrusVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/PapyrusVR.cpp -------------------------------------------------------------------------------- /src/PapyrusVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/PapyrusVR.h -------------------------------------------------------------------------------- /src/ScaleformVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/ScaleformVR.cpp -------------------------------------------------------------------------------- /src/ScaleformVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/ScaleformVR.h -------------------------------------------------------------------------------- /src/SkyrimVRTools.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/SkyrimVRTools.vcxproj -------------------------------------------------------------------------------- /src/SkyrimVRTools.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/SkyrimVRTools.vcxproj.filters -------------------------------------------------------------------------------- /src/User.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/User.props -------------------------------------------------------------------------------- /src/VRManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/VRManager.cpp -------------------------------------------------------------------------------- /src/VRManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/VRManager.h -------------------------------------------------------------------------------- /src/api/OpenVRTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/OpenVRTypes.h -------------------------------------------------------------------------------- /src/api/PapyrusVRAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/PapyrusVRAPI.h -------------------------------------------------------------------------------- /src/api/PapyrusVRTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/PapyrusVRTypes.cpp -------------------------------------------------------------------------------- /src/api/PapyrusVRTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/PapyrusVRTypes.h -------------------------------------------------------------------------------- /src/api/SkyrimVRToolsAPI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/SkyrimVRToolsAPI.vcxproj -------------------------------------------------------------------------------- /src/api/VRHookAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/VRHookAPI.h -------------------------------------------------------------------------------- /src/api/VRManagerAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/VRManagerAPI.h -------------------------------------------------------------------------------- /src/api/collisions/IShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/collisions/IShape.h -------------------------------------------------------------------------------- /src/api/collisions/LocalOverlapObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/collisions/LocalOverlapObject.cpp -------------------------------------------------------------------------------- /src/api/collisions/LocalOverlapObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/collisions/LocalOverlapObject.h -------------------------------------------------------------------------------- /src/api/collisions/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/collisions/Sphere.cpp -------------------------------------------------------------------------------- /src/api/collisions/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/collisions/Sphere.h -------------------------------------------------------------------------------- /src/api/utils/OpenVRUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/utils/OpenVRUtils.cpp -------------------------------------------------------------------------------- /src/api/utils/OpenVRUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/api/utils/OpenVRUtils.h -------------------------------------------------------------------------------- /src/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/exports.def -------------------------------------------------------------------------------- /src/hooks/HookVRCompositor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/HookVRCompositor.cpp -------------------------------------------------------------------------------- /src/hooks/HookVRCompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/HookVRCompositor.h -------------------------------------------------------------------------------- /src/hooks/HookVRSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/HookVRSystem.cpp -------------------------------------------------------------------------------- /src/hooks/HookVRSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/HookVRSystem.h -------------------------------------------------------------------------------- /src/hooks/IHookInterfaceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/IHookInterfaceFactory.h -------------------------------------------------------------------------------- /src/hooks/openvr_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/openvr_hook.cpp -------------------------------------------------------------------------------- /src/hooks/openvr_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/hooks/openvr_hook.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/openvr/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyrimAlternativeDevelopers/SkyrimVRTools/HEAD/src/openvr/openvr.h --------------------------------------------------------------------------------