├── .gitignore ├── 3rd_party ├── GLEW │ ├── include │ │ └── GL │ │ │ ├── eglew.h │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── lib │ │ └── Release │ │ ├── Win32 │ │ ├── glew32.lib │ │ └── glew32s.lib │ │ └── x64 │ │ ├── glew32.lib │ │ └── glew32s.lib ├── SDL │ ├── include │ │ └── SDL2 │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ └── lib │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ └── x86 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib ├── cimgui │ ├── Makefile │ ├── cimgui.cpp │ ├── cimgui.h │ ├── cimgui_impl.h │ ├── imgui │ │ ├── .editorconfig │ │ ├── LICENSE.txt │ │ ├── backends │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ ├── imgui_impl_opengl2.h │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ ├── imgui_impl_opengl3.h │ │ │ ├── imgui_impl_opengl3_loader.h │ │ │ ├── imgui_impl_sdl.cpp │ │ │ ├── imgui_impl_sdl.h │ │ │ ├── imgui_impl_sdlrenderer.cpp │ │ │ └── imgui_impl_sdlrenderer.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ └── vsproject │ │ ├── vsproject.vcxproj │ │ ├── vsproject.vcxproj.filters │ │ └── vsproject.vcxproj.user └── fluidsynth │ ├── bin │ ├── libfluidsynth-3.dll │ └── libfluidsynth-3.pdb │ ├── debug │ ├── bin │ │ ├── libfluidsynth-3.dll │ │ └── libfluidsynth-3.pdb │ └── lib │ │ ├── fluidsynth.lib │ │ └── pkgconfig │ │ └── fluidsynth.pc │ ├── include │ ├── fluidsynth.h │ └── fluidsynth │ │ ├── audio.h │ │ ├── event.h │ │ ├── gen.h │ │ ├── ladspa.h │ │ ├── log.h │ │ ├── midi.h │ │ ├── misc.h │ │ ├── mod.h │ │ ├── seq.h │ │ ├── seqbind.h │ │ ├── settings.h │ │ ├── sfont.h │ │ ├── shell.h │ │ ├── synth.h │ │ ├── types.h │ │ ├── version.h │ │ └── voice.h │ ├── lib │ └── fluidsynth.lib │ └── tools │ └── fluidsynth │ ├── glib-2.0-0.dll │ ├── iconv-2.dll │ ├── intl-8.dll │ ├── libfluidsynth-3.dll │ └── pcre2-8.dll ├── Makefile ├── README.md ├── doc ├── changelog.md ├── coding.md ├── files.md ├── funcs.md ├── issues.md ├── memmap.xlsx └── outline.md ├── src ├── audio.c ├── audio.h ├── cam.c ├── cam.h ├── common.h ├── ext │ ├── disgool.c │ ├── disgool.h │ ├── gui.c │ ├── gui.h │ ├── lib │ │ ├── gui.c │ │ ├── gui.h │ │ ├── refl.c │ │ ├── refl.h │ │ └── refl.md │ ├── refl.c │ └── refl.h ├── formats │ ├── cvtx.h │ ├── gool.h │ ├── imag.h │ ├── inst.h │ ├── ipal.h │ ├── mdat.h │ ├── midi.h │ ├── pbak.h │ ├── slst.h │ ├── svtx.h │ ├── tgeo.h │ ├── wgeo.h │ └── zdat.h ├── geom.h ├── gfx.c ├── gfx.h ├── globals.h ├── gool.c ├── gool.h ├── level.c ├── level.h ├── main.c ├── math.c ├── math.h ├── midi.c ├── midi.h ├── misc.c ├── misc.h ├── ns.c ├── ns.h ├── pad.c ├── pad.h ├── pbak.c ├── pbak.h ├── pc │ ├── gfx │ │ ├── gl.c │ │ ├── gl.h │ │ ├── pcgfx.h │ │ ├── soft.c │ │ ├── soft.h │ │ ├── tex.c │ │ └── tex.h │ ├── init.c │ ├── init.h │ ├── math.c │ ├── math.h │ ├── pad.c │ ├── pad.h │ ├── sound │ │ ├── audio.c │ │ ├── audio.h │ │ ├── formats │ │ │ ├── psx.h │ │ │ ├── sf2.h │ │ │ └── smf.h │ │ ├── midi.c │ │ ├── midi.h │ │ ├── util.c │ │ └── util.h │ ├── time.c │ └── time.h ├── slst.c ├── slst.h ├── solid.c ├── solid.h ├── title.c ├── title.h └── util │ ├── list.c │ ├── list.h │ ├── tree.c │ └── tree.h └── vsproject ├── c1.sln ├── c1.vcxproj ├── c1.vcxproj.filters └── c1.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd_party/GLEW/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/include/GL/eglew.h -------------------------------------------------------------------------------- /3rd_party/GLEW/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/include/GL/glew.h -------------------------------------------------------------------------------- /3rd_party/GLEW/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/include/GL/glxew.h -------------------------------------------------------------------------------- /3rd_party/GLEW/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/include/GL/wglew.h -------------------------------------------------------------------------------- /3rd_party/GLEW/lib/Release/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/lib/Release/Win32/glew32.lib -------------------------------------------------------------------------------- /3rd_party/GLEW/lib/Release/Win32/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/lib/Release/Win32/glew32s.lib -------------------------------------------------------------------------------- /3rd_party/GLEW/lib/Release/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/lib/Release/x64/glew32.lib -------------------------------------------------------------------------------- /3rd_party/GLEW/lib/Release/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/GLEW/lib/Release/x64/glew32s.lib -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_guid.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_hidapi.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_locale.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_metal.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_misc.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengl_glext.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_sensor.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_memory.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/SDL_vulkan.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /3rd_party/SDL/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/include/SDL2/close_code.h -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /3rd_party/SDL/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/SDL/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /3rd_party/cimgui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/Makefile -------------------------------------------------------------------------------- /3rd_party/cimgui/cimgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/cimgui.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/cimgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/cimgui.h -------------------------------------------------------------------------------- /3rd_party/cimgui/cimgui_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/cimgui_impl.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/.editorconfig -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/LICENSE.txt -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imconfig.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui_internal.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /3rd_party/cimgui/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /3rd_party/cimgui/vsproject/vsproject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/vsproject/vsproject.vcxproj -------------------------------------------------------------------------------- /3rd_party/cimgui/vsproject/vsproject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/vsproject/vsproject.vcxproj.filters -------------------------------------------------------------------------------- /3rd_party/cimgui/vsproject/vsproject.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/cimgui/vsproject/vsproject.vcxproj.user -------------------------------------------------------------------------------- /3rd_party/fluidsynth/bin/libfluidsynth-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/bin/libfluidsynth-3.dll -------------------------------------------------------------------------------- /3rd_party/fluidsynth/bin/libfluidsynth-3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/bin/libfluidsynth-3.pdb -------------------------------------------------------------------------------- /3rd_party/fluidsynth/debug/bin/libfluidsynth-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/debug/bin/libfluidsynth-3.dll -------------------------------------------------------------------------------- /3rd_party/fluidsynth/debug/bin/libfluidsynth-3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/debug/bin/libfluidsynth-3.pdb -------------------------------------------------------------------------------- /3rd_party/fluidsynth/debug/lib/fluidsynth.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/debug/lib/fluidsynth.lib -------------------------------------------------------------------------------- /3rd_party/fluidsynth/debug/lib/pkgconfig/fluidsynth.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/debug/lib/pkgconfig/fluidsynth.pc -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/audio.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/event.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/gen.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/ladspa.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/log.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/midi.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/misc.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/mod.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/seq.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/seqbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/seqbind.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/settings.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/sfont.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/shell.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/synth.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/types.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/version.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/include/fluidsynth/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/include/fluidsynth/voice.h -------------------------------------------------------------------------------- /3rd_party/fluidsynth/lib/fluidsynth.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/lib/fluidsynth.lib -------------------------------------------------------------------------------- /3rd_party/fluidsynth/tools/fluidsynth/glib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/tools/fluidsynth/glib-2.0-0.dll -------------------------------------------------------------------------------- /3rd_party/fluidsynth/tools/fluidsynth/iconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/tools/fluidsynth/iconv-2.dll -------------------------------------------------------------------------------- /3rd_party/fluidsynth/tools/fluidsynth/intl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/tools/fluidsynth/intl-8.dll -------------------------------------------------------------------------------- /3rd_party/fluidsynth/tools/fluidsynth/libfluidsynth-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/tools/fluidsynth/libfluidsynth-3.dll -------------------------------------------------------------------------------- /3rd_party/fluidsynth/tools/fluidsynth/pcre2-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/3rd_party/fluidsynth/tools/fluidsynth/pcre2-8.dll -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/README.md -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/coding.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/funcs.md -------------------------------------------------------------------------------- /doc/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/issues.md -------------------------------------------------------------------------------- /doc/memmap.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/memmap.xlsx -------------------------------------------------------------------------------- /doc/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/doc/outline.md -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/cam.c -------------------------------------------------------------------------------- /src/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/cam.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/common.h -------------------------------------------------------------------------------- /src/ext/disgool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/disgool.c -------------------------------------------------------------------------------- /src/ext/disgool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/disgool.h -------------------------------------------------------------------------------- /src/ext/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/gui.c -------------------------------------------------------------------------------- /src/ext/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/gui.h -------------------------------------------------------------------------------- /src/ext/lib/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/lib/gui.c -------------------------------------------------------------------------------- /src/ext/lib/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/lib/gui.h -------------------------------------------------------------------------------- /src/ext/lib/refl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/lib/refl.c -------------------------------------------------------------------------------- /src/ext/lib/refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/lib/refl.h -------------------------------------------------------------------------------- /src/ext/lib/refl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/lib/refl.md -------------------------------------------------------------------------------- /src/ext/refl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/refl.c -------------------------------------------------------------------------------- /src/ext/refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ext/refl.h -------------------------------------------------------------------------------- /src/formats/cvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/cvtx.h -------------------------------------------------------------------------------- /src/formats/gool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/gool.h -------------------------------------------------------------------------------- /src/formats/imag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/imag.h -------------------------------------------------------------------------------- /src/formats/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/inst.h -------------------------------------------------------------------------------- /src/formats/ipal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/ipal.h -------------------------------------------------------------------------------- /src/formats/mdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/mdat.h -------------------------------------------------------------------------------- /src/formats/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/midi.h -------------------------------------------------------------------------------- /src/formats/pbak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/pbak.h -------------------------------------------------------------------------------- /src/formats/slst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/slst.h -------------------------------------------------------------------------------- /src/formats/svtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/svtx.h -------------------------------------------------------------------------------- /src/formats/tgeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/tgeo.h -------------------------------------------------------------------------------- /src/formats/wgeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/wgeo.h -------------------------------------------------------------------------------- /src/formats/zdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/formats/zdat.h -------------------------------------------------------------------------------- /src/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/geom.h -------------------------------------------------------------------------------- /src/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/gfx.c -------------------------------------------------------------------------------- /src/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/gfx.h -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/gool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/gool.c -------------------------------------------------------------------------------- /src/gool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/gool.h -------------------------------------------------------------------------------- /src/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/level.c -------------------------------------------------------------------------------- /src/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/level.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/main.c -------------------------------------------------------------------------------- /src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/math.c -------------------------------------------------------------------------------- /src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/math.h -------------------------------------------------------------------------------- /src/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/midi.c -------------------------------------------------------------------------------- /src/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/midi.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ns.c -------------------------------------------------------------------------------- /src/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/ns.h -------------------------------------------------------------------------------- /src/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pad.c -------------------------------------------------------------------------------- /src/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pad.h -------------------------------------------------------------------------------- /src/pbak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pbak.c -------------------------------------------------------------------------------- /src/pbak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pbak.h -------------------------------------------------------------------------------- /src/pc/gfx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/gl.c -------------------------------------------------------------------------------- /src/pc/gfx/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/gl.h -------------------------------------------------------------------------------- /src/pc/gfx/pcgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/pcgfx.h -------------------------------------------------------------------------------- /src/pc/gfx/soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/soft.c -------------------------------------------------------------------------------- /src/pc/gfx/soft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/soft.h -------------------------------------------------------------------------------- /src/pc/gfx/tex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/tex.c -------------------------------------------------------------------------------- /src/pc/gfx/tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/gfx/tex.h -------------------------------------------------------------------------------- /src/pc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/init.c -------------------------------------------------------------------------------- /src/pc/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/init.h -------------------------------------------------------------------------------- /src/pc/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/math.c -------------------------------------------------------------------------------- /src/pc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/math.h -------------------------------------------------------------------------------- /src/pc/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/pad.c -------------------------------------------------------------------------------- /src/pc/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/pad.h -------------------------------------------------------------------------------- /src/pc/sound/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/audio.c -------------------------------------------------------------------------------- /src/pc/sound/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/audio.h -------------------------------------------------------------------------------- /src/pc/sound/formats/psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/formats/psx.h -------------------------------------------------------------------------------- /src/pc/sound/formats/sf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/formats/sf2.h -------------------------------------------------------------------------------- /src/pc/sound/formats/smf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/formats/smf.h -------------------------------------------------------------------------------- /src/pc/sound/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/midi.c -------------------------------------------------------------------------------- /src/pc/sound/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/midi.h -------------------------------------------------------------------------------- /src/pc/sound/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/util.c -------------------------------------------------------------------------------- /src/pc/sound/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/sound/util.h -------------------------------------------------------------------------------- /src/pc/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/time.c -------------------------------------------------------------------------------- /src/pc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/pc/time.h -------------------------------------------------------------------------------- /src/slst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/slst.c -------------------------------------------------------------------------------- /src/slst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/slst.h -------------------------------------------------------------------------------- /src/solid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/solid.c -------------------------------------------------------------------------------- /src/solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/solid.h -------------------------------------------------------------------------------- /src/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/title.c -------------------------------------------------------------------------------- /src/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/title.h -------------------------------------------------------------------------------- /src/util/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/util/list.c -------------------------------------------------------------------------------- /src/util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/util/list.h -------------------------------------------------------------------------------- /src/util/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/util/tree.c -------------------------------------------------------------------------------- /src/util/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/src/util/tree.h -------------------------------------------------------------------------------- /vsproject/c1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/vsproject/c1.sln -------------------------------------------------------------------------------- /vsproject/c1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/vsproject/c1.vcxproj -------------------------------------------------------------------------------- /vsproject/c1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/vsproject/c1.vcxproj.filters -------------------------------------------------------------------------------- /vsproject/c1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfavarin/c1/HEAD/vsproject/c1.vcxproj.user --------------------------------------------------------------------------------