├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── premake5.lua └── source ├── Imports.h ├── Main.cpp ├── RenderWindow.cpp ├── RenderWindow.h ├── V6-VF5FS.cpp ├── VersionInfo.lua ├── Y6-VF5FS.h ├── Y6 ├── ImportSymbols.cpp ├── ImportSymbols.h ├── Patch.cpp ├── Patch.h ├── async_request.cpp ├── async_request.h ├── cs_game.cpp ├── cs_game.h ├── file_access.cpp ├── file_access.h ├── gs.cpp ├── gs.h ├── sl.cpp ├── sl.h ├── sys_util.cpp └── sys_util.h ├── YAMPGeneral.cpp ├── YAMPGeneral.h ├── YAMPSettings.cpp ├── YAMPSettings.h ├── YAMPUserInterface.cpp ├── YAMPUserInterface.h ├── blitShader.hlsl ├── criware ├── CriStub.cpp ├── CriStub.h └── icri.h ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── pxd_shader.h ├── pxd_types.h ├── resources └── VersionInfo.rc ├── sl_internal.h └── wil ├── com.h ├── common.h ├── cppwinrt.h ├── cppwinrt_wrl.h ├── filesystem.h ├── nt_result_macros.h ├── registry.h ├── resource.h ├── result.h ├── result_macros.h ├── result_originate.h ├── rpc_helpers.h ├── safecast.h ├── stl.h ├── token_helpers.h ├── win32_helpers.h ├── winrt.h ├── wistd_config.h ├── wistd_functional.h ├── wistd_memory.h ├── wistd_type_traits.h └── wrl.h /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/README.md -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/premake5.lua -------------------------------------------------------------------------------- /source/Imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Imports.h -------------------------------------------------------------------------------- /source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Main.cpp -------------------------------------------------------------------------------- /source/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/RenderWindow.cpp -------------------------------------------------------------------------------- /source/RenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/RenderWindow.h -------------------------------------------------------------------------------- /source/V6-VF5FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/V6-VF5FS.cpp -------------------------------------------------------------------------------- /source/VersionInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/VersionInfo.lua -------------------------------------------------------------------------------- /source/Y6-VF5FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6-VF5FS.h -------------------------------------------------------------------------------- /source/Y6/ImportSymbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/ImportSymbols.cpp -------------------------------------------------------------------------------- /source/Y6/ImportSymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/ImportSymbols.h -------------------------------------------------------------------------------- /source/Y6/Patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/Patch.cpp -------------------------------------------------------------------------------- /source/Y6/Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/Patch.h -------------------------------------------------------------------------------- /source/Y6/async_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/async_request.cpp -------------------------------------------------------------------------------- /source/Y6/async_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/async_request.h -------------------------------------------------------------------------------- /source/Y6/cs_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/cs_game.cpp -------------------------------------------------------------------------------- /source/Y6/cs_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/cs_game.h -------------------------------------------------------------------------------- /source/Y6/file_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/file_access.cpp -------------------------------------------------------------------------------- /source/Y6/file_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/file_access.h -------------------------------------------------------------------------------- /source/Y6/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/gs.cpp -------------------------------------------------------------------------------- /source/Y6/gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/gs.h -------------------------------------------------------------------------------- /source/Y6/sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/sl.cpp -------------------------------------------------------------------------------- /source/Y6/sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/sl.h -------------------------------------------------------------------------------- /source/Y6/sys_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/sys_util.cpp -------------------------------------------------------------------------------- /source/Y6/sys_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/Y6/sys_util.h -------------------------------------------------------------------------------- /source/YAMPGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/YAMPGeneral.cpp -------------------------------------------------------------------------------- /source/YAMPGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/YAMPGeneral.h -------------------------------------------------------------------------------- /source/YAMPSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/YAMPSettings.cpp -------------------------------------------------------------------------------- /source/YAMPSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/YAMPSettings.h -------------------------------------------------------------------------------- /source/YAMPUserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/YAMPUserInterface.cpp -------------------------------------------------------------------------------- /source/YAMPUserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/YAMPUserInterface.h -------------------------------------------------------------------------------- /source/blitShader.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/blitShader.hlsl -------------------------------------------------------------------------------- /source/criware/CriStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/criware/CriStub.cpp -------------------------------------------------------------------------------- /source/criware/CriStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/criware/CriStub.h -------------------------------------------------------------------------------- /source/criware/icri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/criware/icri.h -------------------------------------------------------------------------------- /source/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imconfig.h -------------------------------------------------------------------------------- /source/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui.cpp -------------------------------------------------------------------------------- /source/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui.h -------------------------------------------------------------------------------- /source/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /source/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /source/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /source/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /source/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /source/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /source/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_internal.h -------------------------------------------------------------------------------- /source/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /source/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /source/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /source/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /source/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /source/pxd_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/pxd_shader.h -------------------------------------------------------------------------------- /source/pxd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/pxd_types.h -------------------------------------------------------------------------------- /source/resources/VersionInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/resources/VersionInfo.rc -------------------------------------------------------------------------------- /source/sl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/sl_internal.h -------------------------------------------------------------------------------- /source/wil/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/com.h -------------------------------------------------------------------------------- /source/wil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/common.h -------------------------------------------------------------------------------- /source/wil/cppwinrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/cppwinrt.h -------------------------------------------------------------------------------- /source/wil/cppwinrt_wrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/cppwinrt_wrl.h -------------------------------------------------------------------------------- /source/wil/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/filesystem.h -------------------------------------------------------------------------------- /source/wil/nt_result_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/nt_result_macros.h -------------------------------------------------------------------------------- /source/wil/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/registry.h -------------------------------------------------------------------------------- /source/wil/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/resource.h -------------------------------------------------------------------------------- /source/wil/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/result.h -------------------------------------------------------------------------------- /source/wil/result_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/result_macros.h -------------------------------------------------------------------------------- /source/wil/result_originate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/result_originate.h -------------------------------------------------------------------------------- /source/wil/rpc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/rpc_helpers.h -------------------------------------------------------------------------------- /source/wil/safecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/safecast.h -------------------------------------------------------------------------------- /source/wil/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/stl.h -------------------------------------------------------------------------------- /source/wil/token_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/token_helpers.h -------------------------------------------------------------------------------- /source/wil/win32_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/win32_helpers.h -------------------------------------------------------------------------------- /source/wil/winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/winrt.h -------------------------------------------------------------------------------- /source/wil/wistd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/wistd_config.h -------------------------------------------------------------------------------- /source/wil/wistd_functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/wistd_functional.h -------------------------------------------------------------------------------- /source/wil/wistd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/wistd_memory.h -------------------------------------------------------------------------------- /source/wil/wistd_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/wistd_type_traits.h -------------------------------------------------------------------------------- /source/wil/wrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/YAMP/HEAD/source/wil/wrl.h --------------------------------------------------------------------------------