├── .clang-format ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── HighFPSPhysicsFix.ini ├── LICENSE.txt ├── README.md ├── cmake ├── Version.h.in ├── headerlist.cmake ├── ports │ └── clib-util │ │ ├── portfile.cmake │ │ └── vcpkg.json ├── sourcelist.cmake └── version.rc.in ├── droidsans.font ├── include ├── OS │ └── SysCall.h ├── PCH.h ├── Render │ └── FramerateLimiter.h ├── common.h ├── config.h ├── data.h ├── dispatcher.h ├── drv_base.h ├── drv_ids.h ├── events.h ├── ext │ ├── Hash.h │ ├── ICommon.h │ ├── ID3D11.h │ ├── IErrors.h │ ├── IHook.h │ ├── IMisc.h │ ├── INIReader.h │ ├── IRandom.h │ ├── ITypes.h │ ├── InputMap.h │ ├── Math.h │ ├── Mem.h │ ├── PW.h │ ├── PerfCounter.h │ ├── STL.h │ ├── STLCommon.h │ ├── StrHelpers.h │ ├── Threads.h │ ├── Utility.h │ ├── WinAPI.h │ ├── boost_macros.h │ ├── stl_containers.h │ ├── stl_optional.h │ └── stl_stdio.h ├── game.h ├── getconfig.h ├── havok.h ├── helpers.h ├── macro_helpers.h ├── misc.h ├── osd.h ├── papyrus.h ├── render.h ├── stats.h └── window.h ├── scripts ├── archive_artifacts.py └── cmake_generate.py ├── src ├── OS │ └── SysCall.cpp ├── PCH.cpp ├── dispatcher.cpp ├── dllmain.cpp ├── drv_base.cpp ├── events.cpp ├── ext │ ├── IErrors.cpp │ ├── IHook.cpp │ ├── INIReader.cpp │ ├── ITypes.cpp │ ├── InputMap.cpp │ ├── Mem.cpp │ ├── PerfCounter.cpp │ ├── StrHelpers.cpp │ └── Threads.cpp ├── getconfig.cpp ├── havok.cpp ├── misc.cpp ├── osd.cpp ├── papyrus.cpp ├── render.cpp └── window.cpp └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build*/ 2 | /.vs 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /HighFPSPhysicsFix.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/HighFPSPhysicsFix.ini -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/cmake/Version.h.in -------------------------------------------------------------------------------- /cmake/headerlist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/cmake/headerlist.cmake -------------------------------------------------------------------------------- /cmake/ports/clib-util/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/cmake/ports/clib-util/portfile.cmake -------------------------------------------------------------------------------- /cmake/ports/clib-util/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/cmake/ports/clib-util/vcpkg.json -------------------------------------------------------------------------------- /cmake/sourcelist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/cmake/sourcelist.cmake -------------------------------------------------------------------------------- /cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/cmake/version.rc.in -------------------------------------------------------------------------------- /droidsans.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/droidsans.font -------------------------------------------------------------------------------- /include/OS/SysCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/OS/SysCall.h -------------------------------------------------------------------------------- /include/PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/PCH.h -------------------------------------------------------------------------------- /include/Render/FramerateLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/Render/FramerateLimiter.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/config.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/data.h -------------------------------------------------------------------------------- /include/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/dispatcher.h -------------------------------------------------------------------------------- /include/drv_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/drv_base.h -------------------------------------------------------------------------------- /include/drv_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/drv_ids.h -------------------------------------------------------------------------------- /include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/events.h -------------------------------------------------------------------------------- /include/ext/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/Hash.h -------------------------------------------------------------------------------- /include/ext/ICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/ICommon.h -------------------------------------------------------------------------------- /include/ext/ID3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/ID3D11.h -------------------------------------------------------------------------------- /include/ext/IErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/IErrors.h -------------------------------------------------------------------------------- /include/ext/IHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/IHook.h -------------------------------------------------------------------------------- /include/ext/IMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/IMisc.h -------------------------------------------------------------------------------- /include/ext/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/INIReader.h -------------------------------------------------------------------------------- /include/ext/IRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/IRandom.h -------------------------------------------------------------------------------- /include/ext/ITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/ITypes.h -------------------------------------------------------------------------------- /include/ext/InputMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/InputMap.h -------------------------------------------------------------------------------- /include/ext/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/Math.h -------------------------------------------------------------------------------- /include/ext/Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/Mem.h -------------------------------------------------------------------------------- /include/ext/PW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/PW.h -------------------------------------------------------------------------------- /include/ext/PerfCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/PerfCounter.h -------------------------------------------------------------------------------- /include/ext/STL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/STL.h -------------------------------------------------------------------------------- /include/ext/STLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/STLCommon.h -------------------------------------------------------------------------------- /include/ext/StrHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/StrHelpers.h -------------------------------------------------------------------------------- /include/ext/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/Threads.h -------------------------------------------------------------------------------- /include/ext/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/Utility.h -------------------------------------------------------------------------------- /include/ext/WinAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/WinAPI.h -------------------------------------------------------------------------------- /include/ext/boost_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/boost_macros.h -------------------------------------------------------------------------------- /include/ext/stl_containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/stl_containers.h -------------------------------------------------------------------------------- /include/ext/stl_optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/stl_optional.h -------------------------------------------------------------------------------- /include/ext/stl_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/ext/stl_stdio.h -------------------------------------------------------------------------------- /include/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/game.h -------------------------------------------------------------------------------- /include/getconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/getconfig.h -------------------------------------------------------------------------------- /include/havok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/havok.h -------------------------------------------------------------------------------- /include/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/helpers.h -------------------------------------------------------------------------------- /include/macro_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/macro_helpers.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/osd.h -------------------------------------------------------------------------------- /include/papyrus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/papyrus.h -------------------------------------------------------------------------------- /include/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/render.h -------------------------------------------------------------------------------- /include/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/stats.h -------------------------------------------------------------------------------- /include/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/include/window.h -------------------------------------------------------------------------------- /scripts/archive_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/scripts/archive_artifacts.py -------------------------------------------------------------------------------- /scripts/cmake_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/scripts/cmake_generate.py -------------------------------------------------------------------------------- /src/OS/SysCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/OS/SysCall.cpp -------------------------------------------------------------------------------- /src/PCH.cpp: -------------------------------------------------------------------------------- 1 | #include "PCH.h" 2 | -------------------------------------------------------------------------------- /src/dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/dispatcher.cpp -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/drv_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/drv_base.cpp -------------------------------------------------------------------------------- /src/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/events.cpp -------------------------------------------------------------------------------- /src/ext/IErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/IErrors.cpp -------------------------------------------------------------------------------- /src/ext/IHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/IHook.cpp -------------------------------------------------------------------------------- /src/ext/INIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/INIReader.cpp -------------------------------------------------------------------------------- /src/ext/ITypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/ITypes.cpp -------------------------------------------------------------------------------- /src/ext/InputMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/InputMap.cpp -------------------------------------------------------------------------------- /src/ext/Mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/Mem.cpp -------------------------------------------------------------------------------- /src/ext/PerfCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/PerfCounter.cpp -------------------------------------------------------------------------------- /src/ext/StrHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/StrHelpers.cpp -------------------------------------------------------------------------------- /src/ext/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/ext/Threads.cpp -------------------------------------------------------------------------------- /src/getconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/getconfig.cpp -------------------------------------------------------------------------------- /src/havok.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/havok.cpp -------------------------------------------------------------------------------- /src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/misc.cpp -------------------------------------------------------------------------------- /src/osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/osd.cpp -------------------------------------------------------------------------------- /src/papyrus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/papyrus.cpp -------------------------------------------------------------------------------- /src/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/render.cpp -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/src/window.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoniX35/High-FPS-Physics-Fix/HEAD/vcpkg.json --------------------------------------------------------------------------------