├── !Update.ps1 ├── .clang-format ├── .gitattributes ├── .gitignore ├── .gitmodules ├── BehaviorDataInjector └── MaxsuCPR_BDI.json ├── CMakeLists.txt ├── CMakePresets.json ├── CombatPathingRevolution.pdb ├── LICENSE ├── Nemesis_Engine └── mod │ └── mscpr │ ├── 0_master │ ├── #0106.txt │ ├── #0107.txt │ └── #0108.txt │ └── info.ini ├── README.md ├── cmake ├── Version.h.in └── version.rc.in ├── doc └── en │ └── Developers Guidelines of CPR.md ├── src ├── Advance_Hook.cpp ├── Advance_Hook.h ├── Backoff_Hook.cpp ├── Backoff_Hook.h ├── Circling_Hook.cpp ├── Circling_Hook.h ├── Fallback_Hook.cpp ├── Fallback_Hook.h ├── LoadGame.cpp ├── LoadGame.h ├── PCH.h ├── PayloadInterpreter │ ├── Dtry_Utils.cpp │ ├── Dtry_Utils.h │ ├── hooks.h │ ├── payloadHandlers │ │ ├── CPRHandler.cpp │ │ └── payloadHandler.h │ ├── payloadManager.cpp │ └── payloadManager.h ├── RE │ ├── CombatBehaviorController.h │ ├── CombatBehaviorNodesMovement.cpp │ ├── CombatBehaviorNodesMovement.h │ ├── CombatBehaviorTreeControl.h │ └── CombatBehaviorTreeNode.h ├── Settings.cpp ├── Settings.h ├── Util.cpp ├── Util.h └── main.cpp └── vcpkg.json /!Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/!Update.ps1 -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | \!Update.ps1 linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/.gitmodules -------------------------------------------------------------------------------- /BehaviorDataInjector/MaxsuCPR_BDI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/BehaviorDataInjector/MaxsuCPR_BDI.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CombatPathingRevolution.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/CombatPathingRevolution.pdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/LICENSE -------------------------------------------------------------------------------- /Nemesis_Engine/mod/mscpr/0_master/#0106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/Nemesis_Engine/mod/mscpr/0_master/#0106.txt -------------------------------------------------------------------------------- /Nemesis_Engine/mod/mscpr/0_master/#0107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/Nemesis_Engine/mod/mscpr/0_master/#0107.txt -------------------------------------------------------------------------------- /Nemesis_Engine/mod/mscpr/0_master/#0108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/Nemesis_Engine/mod/mscpr/0_master/#0108.txt -------------------------------------------------------------------------------- /Nemesis_Engine/mod/mscpr/info.ini: -------------------------------------------------------------------------------- 1 | name=Combat Pathing Revolution 2 | author=Maxsu 3 | site=Null 4 | auto= 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/cmake/Version.h.in -------------------------------------------------------------------------------- /cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/cmake/version.rc.in -------------------------------------------------------------------------------- /doc/en/Developers Guidelines of CPR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/doc/en/Developers Guidelines of CPR.md -------------------------------------------------------------------------------- /src/Advance_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Advance_Hook.cpp -------------------------------------------------------------------------------- /src/Advance_Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Advance_Hook.h -------------------------------------------------------------------------------- /src/Backoff_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Backoff_Hook.cpp -------------------------------------------------------------------------------- /src/Backoff_Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Backoff_Hook.h -------------------------------------------------------------------------------- /src/Circling_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Circling_Hook.cpp -------------------------------------------------------------------------------- /src/Circling_Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Circling_Hook.h -------------------------------------------------------------------------------- /src/Fallback_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Fallback_Hook.cpp -------------------------------------------------------------------------------- /src/Fallback_Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Fallback_Hook.h -------------------------------------------------------------------------------- /src/LoadGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/LoadGame.cpp -------------------------------------------------------------------------------- /src/LoadGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/LoadGame.h -------------------------------------------------------------------------------- /src/PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PCH.h -------------------------------------------------------------------------------- /src/PayloadInterpreter/Dtry_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/Dtry_Utils.cpp -------------------------------------------------------------------------------- /src/PayloadInterpreter/Dtry_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/Dtry_Utils.h -------------------------------------------------------------------------------- /src/PayloadInterpreter/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/hooks.h -------------------------------------------------------------------------------- /src/PayloadInterpreter/payloadHandlers/CPRHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/payloadHandlers/CPRHandler.cpp -------------------------------------------------------------------------------- /src/PayloadInterpreter/payloadHandlers/payloadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/payloadHandlers/payloadHandler.h -------------------------------------------------------------------------------- /src/PayloadInterpreter/payloadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/payloadManager.cpp -------------------------------------------------------------------------------- /src/PayloadInterpreter/payloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/PayloadInterpreter/payloadManager.h -------------------------------------------------------------------------------- /src/RE/CombatBehaviorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/RE/CombatBehaviorController.h -------------------------------------------------------------------------------- /src/RE/CombatBehaviorNodesMovement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/RE/CombatBehaviorNodesMovement.cpp -------------------------------------------------------------------------------- /src/RE/CombatBehaviorNodesMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/RE/CombatBehaviorNodesMovement.h -------------------------------------------------------------------------------- /src/RE/CombatBehaviorTreeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/RE/CombatBehaviorTreeControl.h -------------------------------------------------------------------------------- /src/RE/CombatBehaviorTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/RE/CombatBehaviorTreeNode.h -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/Util.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/src/main.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/CombatPathingRevolution/HEAD/vcpkg.json --------------------------------------------------------------------------------