├── .gitattributes ├── .github └── workflows │ └── build-and-release.yaml ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── README_OLD.md ├── VERSION ├── compile_commands.json ├── cptosof ├── docs ├── ADVANCED.md ├── CROSSHAIR.md ├── CVAR_NOTES.txt └── MODULE_LOADING.md ├── features └── FEATURES.txt ├── hdr ├── core_hooks.h ├── crc32.h ├── customfloat.h ├── detour_manifest.h ├── feature_config.h ├── feature_list.inc ├── feature_macro.h ├── features.h ├── hook_manager.h ├── shared_hook_manager.h ├── sof_buddy.h ├── sof_compat.h └── util.h ├── increment_version.sh ├── makefile ├── rsrc ├── func_parents │ ├── Draw_CroppedPicOptions.json │ ├── Draw_Pic.json │ ├── Draw_PicOptions.json │ ├── Draw_StretchPic.json │ ├── GL_FindImage.json │ ├── README.md │ ├── R_DrawFont.json │ └── glVertex2f.json ├── funcmaps │ ├── SoF.exe.json │ ├── gamex86.dll.json │ ├── player.dll.json │ ├── ref_gl.dll.json │ └── spcl.dll.json ├── generate_funcmaps.sh ├── lin_scripts │ ├── enable_sofplus.sh │ ├── enable_sofplus_and_buddy.sh │ ├── enable_vanilla.sh │ └── patch_sof_binary.sh ├── sof_buddy.def ├── update_callers_from_parents.py └── win_scripts │ ├── enable_sofplus.cmd │ ├── enable_sofplus_and_buddy.cmd │ ├── enable_vanilla.cmd │ └── patch_sof_binary.ps1 ├── src ├── DetourXS │ ├── ADE32.cpp │ ├── ADE32.h │ ├── detourxs.cpp │ └── detourxs.h ├── callsite_classifier.cpp ├── callsite_classifier.h ├── crc32.cpp ├── cvars.cpp ├── dispatchers │ ├── README.md │ ├── exe.cpp │ ├── gamex86.cpp │ └── ref_gl.cpp ├── features │ ├── FEATURES.md │ ├── cl_maxfps_singleplayer │ │ ├── README.md │ │ └── hooks.cpp │ ├── console_protection │ │ ├── README.md │ │ └── hooks.cpp │ ├── hd_textures │ │ ├── README.md │ │ ├── default_textures.h │ │ └── hooks.cpp │ ├── lighting_blend │ │ ├── README.md │ │ ├── cvars.cpp │ │ └── hooks.cpp │ ├── media_timers │ │ ├── README.md │ │ ├── cvars.cpp │ │ └── hooks.cpp │ ├── new_system_bug │ │ ├── README.md │ │ └── hooks.cpp │ ├── raw_mouse │ │ ├── README.md │ │ ├── cvars.cpp │ │ └── hooks.cpp │ ├── scaled_ui │ │ ├── caller_from.cpp │ │ ├── caller_from.h │ │ ├── console.cpp │ │ ├── cvars.cpp │ │ ├── hooks.cpp │ │ ├── hud.cpp │ │ ├── menu.cpp │ │ ├── scaled_ui.h │ │ └── text.cpp │ ├── teamicons_offset │ │ ├── README.md │ │ └── hooks.cpp │ ├── texture_mapping_min_mag │ │ ├── README.md │ │ ├── cvars.cpp │ │ └── hooks.cpp │ └── vsync_toggle │ │ ├── README.md │ │ ├── cvars.cpp │ │ └── hooks.cpp ├── hook_callsite.cpp ├── hook_callsite.h ├── hook_manager.cpp ├── module_loaders.cpp ├── parent_recorder.cpp ├── parent_recorder.h ├── pe_utils.cpp ├── pe_utils.h ├── shared_hook_manager.cpp ├── simple_init.cpp ├── util.cpp └── wsock_entry.cpp └── tools ├── pe_funcmap_gen └── pe_funcmap_gen.cpp /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/build-and-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/.github/workflows/build-and-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/README.md -------------------------------------------------------------------------------- /README_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/README_OLD.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/compile_commands.json -------------------------------------------------------------------------------- /cptosof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/cptosof -------------------------------------------------------------------------------- /docs/ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/docs/ADVANCED.md -------------------------------------------------------------------------------- /docs/CROSSHAIR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/docs/CROSSHAIR.md -------------------------------------------------------------------------------- /docs/CVAR_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/docs/CVAR_NOTES.txt -------------------------------------------------------------------------------- /docs/MODULE_LOADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/docs/MODULE_LOADING.md -------------------------------------------------------------------------------- /features/FEATURES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/features/FEATURES.txt -------------------------------------------------------------------------------- /hdr/core_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/core_hooks.h -------------------------------------------------------------------------------- /hdr/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/crc32.h -------------------------------------------------------------------------------- /hdr/customfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/customfloat.h -------------------------------------------------------------------------------- /hdr/detour_manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/detour_manifest.h -------------------------------------------------------------------------------- /hdr/feature_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/feature_config.h -------------------------------------------------------------------------------- /hdr/feature_list.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/feature_list.inc -------------------------------------------------------------------------------- /hdr/feature_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/feature_macro.h -------------------------------------------------------------------------------- /hdr/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/features.h -------------------------------------------------------------------------------- /hdr/hook_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/hook_manager.h -------------------------------------------------------------------------------- /hdr/shared_hook_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/shared_hook_manager.h -------------------------------------------------------------------------------- /hdr/sof_buddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/sof_buddy.h -------------------------------------------------------------------------------- /hdr/sof_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/sof_compat.h -------------------------------------------------------------------------------- /hdr/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/hdr/util.h -------------------------------------------------------------------------------- /increment_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/increment_version.sh -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/makefile -------------------------------------------------------------------------------- /rsrc/func_parents/Draw_CroppedPicOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/Draw_CroppedPicOptions.json -------------------------------------------------------------------------------- /rsrc/func_parents/Draw_Pic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/Draw_Pic.json -------------------------------------------------------------------------------- /rsrc/func_parents/Draw_PicOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/Draw_PicOptions.json -------------------------------------------------------------------------------- /rsrc/func_parents/Draw_StretchPic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/Draw_StretchPic.json -------------------------------------------------------------------------------- /rsrc/func_parents/GL_FindImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/GL_FindImage.json -------------------------------------------------------------------------------- /rsrc/func_parents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/README.md -------------------------------------------------------------------------------- /rsrc/func_parents/R_DrawFont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/R_DrawFont.json -------------------------------------------------------------------------------- /rsrc/func_parents/glVertex2f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/func_parents/glVertex2f.json -------------------------------------------------------------------------------- /rsrc/funcmaps/SoF.exe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/funcmaps/SoF.exe.json -------------------------------------------------------------------------------- /rsrc/funcmaps/gamex86.dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/funcmaps/gamex86.dll.json -------------------------------------------------------------------------------- /rsrc/funcmaps/player.dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/funcmaps/player.dll.json -------------------------------------------------------------------------------- /rsrc/funcmaps/ref_gl.dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/funcmaps/ref_gl.dll.json -------------------------------------------------------------------------------- /rsrc/funcmaps/spcl.dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/funcmaps/spcl.dll.json -------------------------------------------------------------------------------- /rsrc/generate_funcmaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/generate_funcmaps.sh -------------------------------------------------------------------------------- /rsrc/lin_scripts/enable_sofplus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/lin_scripts/enable_sofplus.sh -------------------------------------------------------------------------------- /rsrc/lin_scripts/enable_sofplus_and_buddy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/lin_scripts/enable_sofplus_and_buddy.sh -------------------------------------------------------------------------------- /rsrc/lin_scripts/enable_vanilla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/lin_scripts/enable_vanilla.sh -------------------------------------------------------------------------------- /rsrc/lin_scripts/patch_sof_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/lin_scripts/patch_sof_binary.sh -------------------------------------------------------------------------------- /rsrc/sof_buddy.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/sof_buddy.def -------------------------------------------------------------------------------- /rsrc/update_callers_from_parents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/update_callers_from_parents.py -------------------------------------------------------------------------------- /rsrc/win_scripts/enable_sofplus.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/win_scripts/enable_sofplus.cmd -------------------------------------------------------------------------------- /rsrc/win_scripts/enable_sofplus_and_buddy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/win_scripts/enable_sofplus_and_buddy.cmd -------------------------------------------------------------------------------- /rsrc/win_scripts/enable_vanilla.cmd: -------------------------------------------------------------------------------- 1 | powershell.exe -ExecutionPolicy Bypass -File patch_sof_binary.ps1 "WSOCK32.dll" -------------------------------------------------------------------------------- /rsrc/win_scripts/patch_sof_binary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/rsrc/win_scripts/patch_sof_binary.ps1 -------------------------------------------------------------------------------- /src/DetourXS/ADE32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/DetourXS/ADE32.cpp -------------------------------------------------------------------------------- /src/DetourXS/ADE32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/DetourXS/ADE32.h -------------------------------------------------------------------------------- /src/DetourXS/detourxs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/DetourXS/detourxs.cpp -------------------------------------------------------------------------------- /src/DetourXS/detourxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/DetourXS/detourxs.h -------------------------------------------------------------------------------- /src/callsite_classifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/callsite_classifier.cpp -------------------------------------------------------------------------------- /src/callsite_classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/callsite_classifier.h -------------------------------------------------------------------------------- /src/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/crc32.cpp -------------------------------------------------------------------------------- /src/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/cvars.cpp -------------------------------------------------------------------------------- /src/dispatchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/dispatchers/README.md -------------------------------------------------------------------------------- /src/dispatchers/exe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/dispatchers/exe.cpp -------------------------------------------------------------------------------- /src/dispatchers/gamex86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/dispatchers/gamex86.cpp -------------------------------------------------------------------------------- /src/dispatchers/ref_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/dispatchers/ref_gl.cpp -------------------------------------------------------------------------------- /src/features/FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/FEATURES.md -------------------------------------------------------------------------------- /src/features/cl_maxfps_singleplayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/cl_maxfps_singleplayer/README.md -------------------------------------------------------------------------------- /src/features/cl_maxfps_singleplayer/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/cl_maxfps_singleplayer/hooks.cpp -------------------------------------------------------------------------------- /src/features/console_protection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/console_protection/README.md -------------------------------------------------------------------------------- /src/features/console_protection/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/console_protection/hooks.cpp -------------------------------------------------------------------------------- /src/features/hd_textures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/hd_textures/README.md -------------------------------------------------------------------------------- /src/features/hd_textures/default_textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/hd_textures/default_textures.h -------------------------------------------------------------------------------- /src/features/hd_textures/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/hd_textures/hooks.cpp -------------------------------------------------------------------------------- /src/features/lighting_blend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/lighting_blend/README.md -------------------------------------------------------------------------------- /src/features/lighting_blend/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/lighting_blend/cvars.cpp -------------------------------------------------------------------------------- /src/features/lighting_blend/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/lighting_blend/hooks.cpp -------------------------------------------------------------------------------- /src/features/media_timers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/media_timers/README.md -------------------------------------------------------------------------------- /src/features/media_timers/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/media_timers/cvars.cpp -------------------------------------------------------------------------------- /src/features/media_timers/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/media_timers/hooks.cpp -------------------------------------------------------------------------------- /src/features/new_system_bug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/new_system_bug/README.md -------------------------------------------------------------------------------- /src/features/new_system_bug/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/new_system_bug/hooks.cpp -------------------------------------------------------------------------------- /src/features/raw_mouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/raw_mouse/README.md -------------------------------------------------------------------------------- /src/features/raw_mouse/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/raw_mouse/cvars.cpp -------------------------------------------------------------------------------- /src/features/raw_mouse/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/raw_mouse/hooks.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/caller_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/caller_from.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/caller_from.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/caller_from.h -------------------------------------------------------------------------------- /src/features/scaled_ui/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/console.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/cvars.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/hooks.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/hud.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/menu.cpp -------------------------------------------------------------------------------- /src/features/scaled_ui/scaled_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/scaled_ui.h -------------------------------------------------------------------------------- /src/features/scaled_ui/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/scaled_ui/text.cpp -------------------------------------------------------------------------------- /src/features/teamicons_offset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/teamicons_offset/README.md -------------------------------------------------------------------------------- /src/features/teamicons_offset/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/teamicons_offset/hooks.cpp -------------------------------------------------------------------------------- /src/features/texture_mapping_min_mag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/texture_mapping_min_mag/README.md -------------------------------------------------------------------------------- /src/features/texture_mapping_min_mag/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/texture_mapping_min_mag/cvars.cpp -------------------------------------------------------------------------------- /src/features/texture_mapping_min_mag/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/texture_mapping_min_mag/hooks.cpp -------------------------------------------------------------------------------- /src/features/vsync_toggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/vsync_toggle/README.md -------------------------------------------------------------------------------- /src/features/vsync_toggle/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/vsync_toggle/cvars.cpp -------------------------------------------------------------------------------- /src/features/vsync_toggle/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/features/vsync_toggle/hooks.cpp -------------------------------------------------------------------------------- /src/hook_callsite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/hook_callsite.cpp -------------------------------------------------------------------------------- /src/hook_callsite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/hook_callsite.h -------------------------------------------------------------------------------- /src/hook_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/hook_manager.cpp -------------------------------------------------------------------------------- /src/module_loaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/module_loaders.cpp -------------------------------------------------------------------------------- /src/parent_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/parent_recorder.cpp -------------------------------------------------------------------------------- /src/parent_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/parent_recorder.h -------------------------------------------------------------------------------- /src/pe_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/pe_utils.cpp -------------------------------------------------------------------------------- /src/pe_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/pe_utils.h -------------------------------------------------------------------------------- /src/shared_hook_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/shared_hook_manager.cpp -------------------------------------------------------------------------------- /src/simple_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/simple_init.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/wsock_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/src/wsock_entry.cpp -------------------------------------------------------------------------------- /tools/pe_funcmap_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/tools/pe_funcmap_gen -------------------------------------------------------------------------------- /tools/pe_funcmap_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3nd3/sof_buddy/HEAD/tools/pe_funcmap_gen.cpp --------------------------------------------------------------------------------