]> git.bts.cx Git - benzene.git/commit
Initial version
authorBen Sherratt <redacted>
Sun, 12 May 2024 12:01:16 +0000 (13:01 +0100)
committerBen Sherratt <redacted>
Sun, 12 May 2024 19:35:59 +0000 (20:35 +0100)
commit88fe7f92d3fd592960bc2534fcdc534021c870bc
tree68f37c1adbf69480145e43b4e2a2ee5a88189f9f
Initial version

* Dump everything from the current common codebase into a repo!
150 files changed:
.gitmodules [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
src/bz/audio/ogg.c [new file with mode: 0644]
src/bz/audio/ogg.h [new file with mode: 0644]
src/bz/audio/playback.c [new file with mode: 0644]
src/bz/audio/playback.h [new file with mode: 0644]
src/bz/audio/playback_internal.h [new file with mode: 0644]
src/bz/audio/speech.cpp [new file with mode: 0644]
src/bz/audio/speech.h [new file with mode: 0644]
src/bz/audio/wav.c [new file with mode: 0644]
src/bz/audio/wav.h [new file with mode: 0644]
src/bz/collision/collision.c [new file with mode: 0644]
src/bz/collision/collision.h [new file with mode: 0644]
src/bz/collision/particle_collision.c [new file with mode: 0644]
src/bz/collision/particle_collision.h [new file with mode: 0644]
src/bz/common.pch [new file with mode: 0644]
src/bz/debug/assert.c [new file with mode: 0644]
src/bz/debug/assert.h [new file with mode: 0644]
src/bz/debug/log.c [new file with mode: 0644]
src/bz/debug/log.h [new file with mode: 0644]
src/bz/debug/log_internal.h [new file with mode: 0644]
src/bz/debug/perfgraph.c [new file with mode: 0644]
src/bz/debug/perfgraph.h [new file with mode: 0644]
src/bz/debug/perfgraph_internal.h [new file with mode: 0644]
src/bz/fx/agent_simulation.c [new file with mode: 0644]
src/bz/fx/agent_simulation.h [new file with mode: 0644]
src/bz/fx/agent_simulation_internal.h [new file with mode: 0644]
src/bz/fx/particle_simulation.c [new file with mode: 0644]
src/bz/fx/particle_simulation.h [new file with mode: 0644]
src/bz/fx/particle_simulation_internal.h [new file with mode: 0644]
src/bz/fx/particle_system.c [new file with mode: 0644]
src/bz/fx/particle_system.h [new file with mode: 0644]
src/bz/fx/particle_system_internal.h [new file with mode: 0644]
src/bz/game/actor.c [new file with mode: 0644]
src/bz/game/actor.h [new file with mode: 0644]
src/bz/game/actor_internal.h [new file with mode: 0644]
src/bz/game/scene.c [new file with mode: 0644]
src/bz/game/scene.h [new file with mode: 0644]
src/bz/game/scene_identifiers.cpp [new file with mode: 0644]
src/bz/game/scene_internal.h [new file with mode: 0644]
src/bz/game/tilemap.c [new file with mode: 0644]
src/bz/game/tilemap.h [new file with mode: 0644]
src/bz/game/tilemap_internal.h [new file with mode: 0644]
src/bz/gfx/aseprite.c [new file with mode: 0644]
src/bz/gfx/aseprite.h [new file with mode: 0644]
src/bz/gfx/aseprite_internal.h [new file with mode: 0644]
src/bz/gfx/draw_queue.c [new file with mode: 0644]
src/bz/gfx/draw_queue.h [new file with mode: 0644]
src/bz/gfx/drawing.c [new file with mode: 0644]
src/bz/gfx/drawing.h [new file with mode: 0644]
src/bz/gfx/font.c [new file with mode: 0644]
src/bz/gfx/font.h [new file with mode: 0644]
src/bz/gfx/font_internal.h [new file with mode: 0644]
src/bz/gfx/gfx.c [new file with mode: 0644]
src/bz/gfx/gfx.h [new file with mode: 0644]
src/bz/gfx/gfx_internal.h [new file with mode: 0644]
src/bz/gfx/particle_drawing.c [new file with mode: 0644]
src/bz/gfx/particle_drawing.h [new file with mode: 0644]
src/bz/gfx/tilemap.c [new file with mode: 0644]
src/bz/gfx/tilemap.h [new file with mode: 0644]
src/bz/gfx/tilemap_internal.h [new file with mode: 0644]
src/bz/impl.c [new file with mode: 0644]
src/bz/input/input.c [new file with mode: 0644]
src/bz/input/input.h [new file with mode: 0644]
src/bz/input/input_id.h [new file with mode: 0644]
src/bz/input/input_id_internal.h [new file with mode: 0644]
src/bz/input/input_internal.h [new file with mode: 0644]
src/bz/input/platform.h [new file with mode: 0644]
src/bz/math/math.c [new file with mode: 0644]
src/bz/math/math.h [new file with mode: 0644]
src/bz/math/matrix.c [new file with mode: 0644]
src/bz/math/matrix.h [new file with mode: 0644]
src/bz/math/random.c [new file with mode: 0644]
src/bz/math/random.h [new file with mode: 0644]
src/bz/math/vector.c [new file with mode: 0644]
src/bz/math/vector.h [new file with mode: 0644]
src/bz/memory/allocator.c [new file with mode: 0644]
src/bz/memory/allocator.h [new file with mode: 0644]
src/bz/memory/arena.c [new file with mode: 0644]
src/bz/memory/arena.h [new file with mode: 0644]
src/bz/memory/arena_internal.h [new file with mode: 0644]
src/bz/renderer/palette.c [new file with mode: 0644]
src/bz/renderer/palette.h [new file with mode: 0644]
src/bz/renderer/palette_internal.h [new file with mode: 0644]
src/bz/renderer/render_pass.h [new file with mode: 0644]
src/bz/renderer/render_pass_internal.h [new file with mode: 0644]
src/bz/renderer/renderer.c [new file with mode: 0644]
src/bz/renderer/renderer.h [new file with mode: 0644]
src/bz/renderer/renderer_internal.h [new file with mode: 0644]
src/bz/resources/resource.c [new file with mode: 0644]
src/bz/resources/resource.h [new file with mode: 0644]
src/bz/scripting/bindings.cpp [new file with mode: 0644]
src/bz/scripting/bindings.h [new file with mode: 0644]
src/bz/scripting/bindings_internal.h [new file with mode: 0644]
src/bz/scripting/environment.c [new file with mode: 0644]
src/bz/scripting/environment.h [new file with mode: 0644]
src/bz/scripting/environment_internal.h [new file with mode: 0644]
src/bz/scripting/script.c [new file with mode: 0644]
src/bz/scripting/script.h [new file with mode: 0644]
src/bz/scripting/script_internal.h [new file with mode: 0644]
src/bz/scripting/static_crc32.hpp [new file with mode: 0644]
src/bz/types/common.h [new file with mode: 0644]
src/bz/types/identifier.c [new file with mode: 0644]
src/bz/types/identifier.h [new file with mode: 0644]
src/bz/types/identifier_internal.h [new file with mode: 0644]
src/bz/types/point.h [new file with mode: 0644]
src/bz/types/rect.h [new file with mode: 0644]
src/bz/types/size.h [new file with mode: 0644]
src/bz/types/user_parameter.h [new file with mode: 0644]
src_platform/playdate/bz/debug/assert.c [new file with mode: 0644]
src_platform/playdate/bz/debug/log.c [new file with mode: 0644]
src_platform/playdate/bz/debug/perfgraph.c [new file with mode: 0644]
src_platform/playdate/bz/gfx/gfx_platform.c [new file with mode: 0644]
src_platform/playdate/bz/gfx/gfx_platform.h [new file with mode: 0644]
src_platform/playdate/bz/input/input.c [new file with mode: 0644]
src_platform/playdate/bz/memory/arena.c [new file with mode: 0644]
src_platform/playdate/bz/renderer/renderer.c [new file with mode: 0644]
src_platform/playdate/bz/resources/resource.c [new file with mode: 0644]
src_platform/playdate/playdate/entrypoint.c [new file with mode: 0644]
src_platform/playdate/playdate/entrypoint.h [new file with mode: 0644]
src_platform/sdl/bz/audio/playback.c [new file with mode: 0644]
src_platform/sdl/bz/debug/assert.c [new file with mode: 0644]
src_platform/sdl/bz/debug/log.c [new file with mode: 0644]
src_platform/sdl/bz/debug/perfgraph.c [new file with mode: 0644]
src_platform/sdl/bz/gfx/gfx_platform.c [new file with mode: 0644]
src_platform/sdl/bz/gfx/gfx_platform.h [new file with mode: 0644]
src_platform/sdl/bz/input/input.c [new file with mode: 0644]
src_platform/sdl/bz/memory/arena.c [new file with mode: 0644]
src_platform/sdl/bz/renderer/renderer.c [new file with mode: 0644]
src_platform/sdl/bz/resources/file_system_internal.h [new file with mode: 0644]
src_platform/sdl/bz/resources/resource.c [new file with mode: 0644]
src_platform/sdl/main.c [new file with mode: 0644]
third_party/parson [new submodule]
third_party/pcg-c-basic [new submodule]
third_party/physfs [new submodule]
third_party/sdl [new submodule]
third_party/snippets_org_crc/crc.c [new file with mode: 0644]
third_party/snippets_org_crc/crc.h [new file with mode: 0644]
third_party/soloud_speech/Elements.def [new file with mode: 0644]
third_party/soloud_speech/darray.cpp [new file with mode: 0644]
third_party/soloud_speech/darray.h [new file with mode: 0644]
third_party/soloud_speech/klatt.cpp [new file with mode: 0644]
third_party/soloud_speech/klatt.h [new file with mode: 0644]
third_party/soloud_speech/legal_readme.txt [new file with mode: 0644]
third_party/soloud_speech/resonator.cpp [new file with mode: 0644]
third_party/soloud_speech/resonator.h [new file with mode: 0644]
third_party/soloud_speech/tts.cpp [new file with mode: 0644]
third_party/soloud_speech/tts.h [new file with mode: 0644]
third_party/stb [new submodule]
third_party/sun [new submodule]