├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── about.md ├── cmake ├── discord-rpc.cmake ├── gdr.cmake ├── git.cmake ├── nhjson.cmake ├── portable-file-dialogs.cmake └── subprocess.cmake ├── img └── screen.jpg ├── logo.png ├── mod.json ├── res ├── Roboto-Regular.ttf ├── Style.style ├── default_windows.json ├── get_ffmpeg │ ├── cpr.dll │ ├── get_ffmpeg.exe │ ├── libcurl.dll │ └── zlib1.dll ├── hacks │ ├── bypass.json │ ├── creator.json │ ├── global.json │ ├── level.json │ ├── player.json │ └── variables.json └── shadow.png └── src ├── Common.cpp ├── Common.h ├── ConstData.h ├── DiscordRPCManager ├── DiscordRPCManager.cpp └── DiscordRPCManager.h ├── GUI ├── Blur.cpp ├── Blur.h ├── DirectoryCombo.cpp ├── DirectoryCombo.h ├── GUI.cpp ├── GUI.h ├── RenderTexture.cpp ├── RenderTexture.h ├── Shortcut.cpp ├── Shortcut.h ├── StyleEditor.cpp ├── Widgets.cpp ├── Widgets.h ├── Window.cpp ├── Window.h ├── WindowAction.cpp └── WindowAction.h ├── Hacks ├── AudioChannelControl.cpp ├── AudioChannelControl.h ├── AutoDeafen.cpp ├── AutoDeafen.h ├── EndLevelLayerInfo.cpp ├── EndLevelLayerInfo.h ├── HidePause.cpp ├── HidePause.h ├── HitboxMultiplier.cpp ├── HitboxMultiplier.h ├── Labels.cpp ├── Labels.h ├── LayoutMode.cpp ├── PhysicsBypass.cpp ├── PhysicsBypass.h ├── ReplayLastCheckpoint.cpp ├── ReplayLastCheckpoint.h ├── SafeMode.cpp ├── SafeMode.h ├── ShowHitboxes.cpp ├── ShowHitboxes.h ├── ShowTrajectory.cpp ├── ShowTrajectory.h ├── SimpleHacks.cpp ├── SmartStartpos.cpp ├── Speedhack.cpp ├── StartposSwitcher.cpp └── StartposSwitcher.h ├── JsonPatches ├── JsonPatches.cpp └── JsonPatches.h ├── Macrobot ├── AudioRecord.cpp ├── AudioRecord.h ├── Clickpacks.cpp ├── Clickpacks.h ├── MacroEditor.cpp ├── MacroEditor.h ├── Macrobot.cpp ├── Macrobot.h ├── Record.cpp └── Record.h ├── Settings.hpp ├── main.cpp └── util.hpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/about.md -------------------------------------------------------------------------------- /cmake/discord-rpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/cmake/discord-rpc.cmake -------------------------------------------------------------------------------- /cmake/gdr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/cmake/gdr.cmake -------------------------------------------------------------------------------- /cmake/git.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/cmake/git.cmake -------------------------------------------------------------------------------- /cmake/nhjson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/cmake/nhjson.cmake -------------------------------------------------------------------------------- /cmake/portable-file-dialogs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/cmake/portable-file-dialogs.cmake -------------------------------------------------------------------------------- /cmake/subprocess.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/cmake/subprocess.cmake -------------------------------------------------------------------------------- /img/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/img/screen.jpg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/logo.png -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/mod.json -------------------------------------------------------------------------------- /res/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/Roboto-Regular.ttf -------------------------------------------------------------------------------- /res/Style.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/Style.style -------------------------------------------------------------------------------- /res/default_windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/default_windows.json -------------------------------------------------------------------------------- /res/get_ffmpeg/cpr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/get_ffmpeg/cpr.dll -------------------------------------------------------------------------------- /res/get_ffmpeg/get_ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/get_ffmpeg/get_ffmpeg.exe -------------------------------------------------------------------------------- /res/get_ffmpeg/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/get_ffmpeg/libcurl.dll -------------------------------------------------------------------------------- /res/get_ffmpeg/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/get_ffmpeg/zlib1.dll -------------------------------------------------------------------------------- /res/hacks/bypass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/hacks/bypass.json -------------------------------------------------------------------------------- /res/hacks/creator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/hacks/creator.json -------------------------------------------------------------------------------- /res/hacks/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/hacks/global.json -------------------------------------------------------------------------------- /res/hacks/level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/hacks/level.json -------------------------------------------------------------------------------- /res/hacks/player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/hacks/player.json -------------------------------------------------------------------------------- /res/hacks/variables.json: -------------------------------------------------------------------------------- 1 | { 2 | "mods": [] 3 | } -------------------------------------------------------------------------------- /res/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/res/shadow.png -------------------------------------------------------------------------------- /src/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Common.cpp -------------------------------------------------------------------------------- /src/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Common.h -------------------------------------------------------------------------------- /src/ConstData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/ConstData.h -------------------------------------------------------------------------------- /src/DiscordRPCManager/DiscordRPCManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/DiscordRPCManager/DiscordRPCManager.cpp -------------------------------------------------------------------------------- /src/DiscordRPCManager/DiscordRPCManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/DiscordRPCManager/DiscordRPCManager.h -------------------------------------------------------------------------------- /src/GUI/Blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Blur.cpp -------------------------------------------------------------------------------- /src/GUI/Blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Blur.h -------------------------------------------------------------------------------- /src/GUI/DirectoryCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/DirectoryCombo.cpp -------------------------------------------------------------------------------- /src/GUI/DirectoryCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/DirectoryCombo.h -------------------------------------------------------------------------------- /src/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/GUI.cpp -------------------------------------------------------------------------------- /src/GUI/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/GUI.h -------------------------------------------------------------------------------- /src/GUI/RenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/RenderTexture.cpp -------------------------------------------------------------------------------- /src/GUI/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/RenderTexture.h -------------------------------------------------------------------------------- /src/GUI/Shortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Shortcut.cpp -------------------------------------------------------------------------------- /src/GUI/Shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Shortcut.h -------------------------------------------------------------------------------- /src/GUI/StyleEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/StyleEditor.cpp -------------------------------------------------------------------------------- /src/GUI/Widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Widgets.cpp -------------------------------------------------------------------------------- /src/GUI/Widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Widgets.h -------------------------------------------------------------------------------- /src/GUI/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Window.cpp -------------------------------------------------------------------------------- /src/GUI/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/Window.h -------------------------------------------------------------------------------- /src/GUI/WindowAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/WindowAction.cpp -------------------------------------------------------------------------------- /src/GUI/WindowAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/GUI/WindowAction.h -------------------------------------------------------------------------------- /src/Hacks/AudioChannelControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/AudioChannelControl.cpp -------------------------------------------------------------------------------- /src/Hacks/AudioChannelControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/AudioChannelControl.h -------------------------------------------------------------------------------- /src/Hacks/AutoDeafen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/AutoDeafen.cpp -------------------------------------------------------------------------------- /src/Hacks/AutoDeafen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/AutoDeafen.h -------------------------------------------------------------------------------- /src/Hacks/EndLevelLayerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/EndLevelLayerInfo.cpp -------------------------------------------------------------------------------- /src/Hacks/EndLevelLayerInfo.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace EndLevelLayerInfo 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/Hacks/HidePause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/HidePause.cpp -------------------------------------------------------------------------------- /src/Hacks/HidePause.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace HidePause 4 | { 5 | 6 | }; 7 | -------------------------------------------------------------------------------- /src/Hacks/HitboxMultiplier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/HitboxMultiplier.cpp -------------------------------------------------------------------------------- /src/Hacks/HitboxMultiplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/HitboxMultiplier.h -------------------------------------------------------------------------------- /src/Hacks/Labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/Labels.cpp -------------------------------------------------------------------------------- /src/Hacks/Labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/Labels.h -------------------------------------------------------------------------------- /src/Hacks/LayoutMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/LayoutMode.cpp -------------------------------------------------------------------------------- /src/Hacks/PhysicsBypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/PhysicsBypass.cpp -------------------------------------------------------------------------------- /src/Hacks/PhysicsBypass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/PhysicsBypass.h -------------------------------------------------------------------------------- /src/Hacks/ReplayLastCheckpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/ReplayLastCheckpoint.cpp -------------------------------------------------------------------------------- /src/Hacks/ReplayLastCheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/ReplayLastCheckpoint.h -------------------------------------------------------------------------------- /src/Hacks/SafeMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/SafeMode.cpp -------------------------------------------------------------------------------- /src/Hacks/SafeMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/SafeMode.h -------------------------------------------------------------------------------- /src/Hacks/ShowHitboxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/ShowHitboxes.cpp -------------------------------------------------------------------------------- /src/Hacks/ShowHitboxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/ShowHitboxes.h -------------------------------------------------------------------------------- /src/Hacks/ShowTrajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/ShowTrajectory.cpp -------------------------------------------------------------------------------- /src/Hacks/ShowTrajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/ShowTrajectory.h -------------------------------------------------------------------------------- /src/Hacks/SimpleHacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/SimpleHacks.cpp -------------------------------------------------------------------------------- /src/Hacks/SmartStartpos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/SmartStartpos.cpp -------------------------------------------------------------------------------- /src/Hacks/Speedhack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/Speedhack.cpp -------------------------------------------------------------------------------- /src/Hacks/StartposSwitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/StartposSwitcher.cpp -------------------------------------------------------------------------------- /src/Hacks/StartposSwitcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Hacks/StartposSwitcher.h -------------------------------------------------------------------------------- /src/JsonPatches/JsonPatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/JsonPatches/JsonPatches.cpp -------------------------------------------------------------------------------- /src/JsonPatches/JsonPatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/JsonPatches/JsonPatches.h -------------------------------------------------------------------------------- /src/Macrobot/AudioRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/AudioRecord.cpp -------------------------------------------------------------------------------- /src/Macrobot/AudioRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/AudioRecord.h -------------------------------------------------------------------------------- /src/Macrobot/Clickpacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/Clickpacks.cpp -------------------------------------------------------------------------------- /src/Macrobot/Clickpacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/Clickpacks.h -------------------------------------------------------------------------------- /src/Macrobot/MacroEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/MacroEditor.cpp -------------------------------------------------------------------------------- /src/Macrobot/MacroEditor.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace MacroEditor 4 | { 5 | 6 | void renderWindow(); 7 | 8 | }; 9 | -------------------------------------------------------------------------------- /src/Macrobot/Macrobot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/Macrobot.cpp -------------------------------------------------------------------------------- /src/Macrobot/Macrobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/Macrobot.h -------------------------------------------------------------------------------- /src/Macrobot/Record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/Record.cpp -------------------------------------------------------------------------------- /src/Macrobot/Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Macrobot/Record.h -------------------------------------------------------------------------------- /src/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/Settings.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/GDMegaOverlay/HEAD/src/util.hpp --------------------------------------------------------------------------------