├── .gitignore ├── README.md ├── color_picker.png ├── debuginator.gif ├── plugins └── stingray │ └── the_debuginator_plugin │ ├── CMakeLists.txt │ ├── c_api_the_debuginator.cpp │ ├── c_api_the_debuginator.h │ ├── copy_latest_debuginator_h.bat │ ├── resource.h │ ├── the_debuginator.h │ ├── the_debuginator_plugin.cpp │ └── the_debuginator_plugin.rc.in ├── tests ├── 3rdparty │ ├── SDL_GameControllerDB-master │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── check.py │ │ └── gamecontrollerdb.txt │ ├── Simple-SDL2-Audio │ │ ├── README.md │ │ └── src │ │ │ ├── simple_audio.c │ │ │ └── simple_audio.h │ ├── kenney_interfacesounds │ │ ├── License.txt │ │ ├── bong_001.wav │ │ ├── pluck_001.wav │ │ ├── pluck_002.wav │ │ └── select_007.wav │ └── liberation-fonts-ttf-2.00.1 │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── LiberationMono-Bold.ttf │ │ ├── LiberationMono-BoldItalic.ttf │ │ ├── LiberationMono-Italic.ttf │ │ ├── LiberationMono-Regular.ttf │ │ ├── LiberationSans-Bold.ttf │ │ ├── LiberationSans-BoldItalic.ttf │ │ ├── LiberationSans-Italic.ttf │ │ ├── LiberationSans-Regular.ttf │ │ ├── LiberationSerif-Bold.ttf │ │ ├── LiberationSerif-BoldItalic.ttf │ │ ├── LiberationSerif-Italic.ttf │ │ ├── LiberationSerif-Regular.ttf │ │ ├── README │ │ └── TODO ├── sdl │ ├── demo.cpp │ ├── demo.h │ ├── game.cpp │ ├── game.h │ ├── gui.cpp │ ├── gui.h │ ├── main.cpp │ ├── sdl.vcxproj │ └── sdl.vcxproj.filters ├── sk5.jpg ├── sk5.txt ├── the-debuginator.sln ├── the-debuginator_solution_suppressions.cfg ├── unittest │ ├── unittest.c │ ├── unittest.vcxproj │ └── unittest.vcxproj.filters └── zig-minimal │ ├── build.bat │ └── src │ ├── build.zig │ ├── c.zig │ ├── main.zig │ ├── the_debuginator_wrapper.c │ └── the_debuginator_wrapper.h ├── the_debuginator.h ├── the_debuginator_queue.h └── tools └── stub_gen.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/README.md -------------------------------------------------------------------------------- /color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/color_picker.png -------------------------------------------------------------------------------- /debuginator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/debuginator.gif -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/c_api_the_debuginator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/c_api_the_debuginator.cpp -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/c_api_the_debuginator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/c_api_the_debuginator.h -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/copy_latest_debuginator_h.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/copy_latest_debuginator_h.bat -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/resource.h -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/the_debuginator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/the_debuginator.h -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/the_debuginator_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/the_debuginator_plugin.cpp -------------------------------------------------------------------------------- /plugins/stingray/the_debuginator_plugin/the_debuginator_plugin.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/plugins/stingray/the_debuginator_plugin/the_debuginator_plugin.rc.in -------------------------------------------------------------------------------- /tests/3rdparty/SDL_GameControllerDB-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/SDL_GameControllerDB-master/.travis.yml -------------------------------------------------------------------------------- /tests/3rdparty/SDL_GameControllerDB-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/SDL_GameControllerDB-master/LICENSE -------------------------------------------------------------------------------- /tests/3rdparty/SDL_GameControllerDB-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/SDL_GameControllerDB-master/README.md -------------------------------------------------------------------------------- /tests/3rdparty/SDL_GameControllerDB-master/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/SDL_GameControllerDB-master/check.py -------------------------------------------------------------------------------- /tests/3rdparty/SDL_GameControllerDB-master/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/SDL_GameControllerDB-master/gamecontrollerdb.txt -------------------------------------------------------------------------------- /tests/3rdparty/Simple-SDL2-Audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/Simple-SDL2-Audio/README.md -------------------------------------------------------------------------------- /tests/3rdparty/Simple-SDL2-Audio/src/simple_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/Simple-SDL2-Audio/src/simple_audio.c -------------------------------------------------------------------------------- /tests/3rdparty/Simple-SDL2-Audio/src/simple_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/Simple-SDL2-Audio/src/simple_audio.h -------------------------------------------------------------------------------- /tests/3rdparty/kenney_interfacesounds/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/kenney_interfacesounds/License.txt -------------------------------------------------------------------------------- /tests/3rdparty/kenney_interfacesounds/bong_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/kenney_interfacesounds/bong_001.wav -------------------------------------------------------------------------------- /tests/3rdparty/kenney_interfacesounds/pluck_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/kenney_interfacesounds/pluck_001.wav -------------------------------------------------------------------------------- /tests/3rdparty/kenney_interfacesounds/pluck_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/kenney_interfacesounds/pluck_002.wav -------------------------------------------------------------------------------- /tests/3rdparty/kenney_interfacesounds/select_007.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/kenney_interfacesounds/select_007.wav -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/AUTHORS -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/ChangeLog -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LICENSE -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-Bold.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-BoldItalic.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-Italic.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationMono-Regular.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-BoldItalic.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-Bold.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-Italic.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/LiberationSerif-Regular.ttf -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/README -------------------------------------------------------------------------------- /tests/3rdparty/liberation-fonts-ttf-2.00.1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/3rdparty/liberation-fonts-ttf-2.00.1/TODO -------------------------------------------------------------------------------- /tests/sdl/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/demo.cpp -------------------------------------------------------------------------------- /tests/sdl/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/demo.h -------------------------------------------------------------------------------- /tests/sdl/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/game.cpp -------------------------------------------------------------------------------- /tests/sdl/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/game.h -------------------------------------------------------------------------------- /tests/sdl/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/gui.cpp -------------------------------------------------------------------------------- /tests/sdl/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/gui.h -------------------------------------------------------------------------------- /tests/sdl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/main.cpp -------------------------------------------------------------------------------- /tests/sdl/sdl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/sdl.vcxproj -------------------------------------------------------------------------------- /tests/sdl/sdl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sdl/sdl.vcxproj.filters -------------------------------------------------------------------------------- /tests/sk5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sk5.jpg -------------------------------------------------------------------------------- /tests/sk5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/sk5.txt -------------------------------------------------------------------------------- /tests/the-debuginator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/the-debuginator.sln -------------------------------------------------------------------------------- /tests/the-debuginator_solution_suppressions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/the-debuginator_solution_suppressions.cfg -------------------------------------------------------------------------------- /tests/unittest/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/unittest/unittest.c -------------------------------------------------------------------------------- /tests/unittest/unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/unittest/unittest.vcxproj -------------------------------------------------------------------------------- /tests/unittest/unittest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/unittest/unittest.vcxproj.filters -------------------------------------------------------------------------------- /tests/zig-minimal/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cls 4 | cd src 5 | zig build run 6 | cd .. -------------------------------------------------------------------------------- /tests/zig-minimal/src/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/zig-minimal/src/build.zig -------------------------------------------------------------------------------- /tests/zig-minimal/src/c.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/zig-minimal/src/c.zig -------------------------------------------------------------------------------- /tests/zig-minimal/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/zig-minimal/src/main.zig -------------------------------------------------------------------------------- /tests/zig-minimal/src/the_debuginator_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/zig-minimal/src/the_debuginator_wrapper.c -------------------------------------------------------------------------------- /tests/zig-minimal/src/the_debuginator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tests/zig-minimal/src/the_debuginator_wrapper.h -------------------------------------------------------------------------------- /the_debuginator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/the_debuginator.h -------------------------------------------------------------------------------- /the_debuginator_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/the_debuginator_queue.h -------------------------------------------------------------------------------- /tools/stub_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-debuginator/HEAD/tools/stub_gen.py --------------------------------------------------------------------------------