├── .gitignore ├── .idea ├── .gitignore ├── UntitledSandGame.iml ├── codeStyles │ └── codeStyleConfig.xml ├── editor.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── runConfigurations │ ├── Build___Debug_Using_Cemu.xml │ ├── Debug_Using_GDB.xml │ ├── Run_Using_Cemu_With_GDB___Debug.xml │ ├── Run_Using_Cemu___Debug.xml │ ├── Run_Using_Cemu___Release.xml │ ├── Run_Using_Cemu__interpreter____Debug.xml │ └── Run_Using_Two_Cemu___Release.xml └── vcs.xml ├── LICENSE.md ├── Makefile ├── README.md ├── cemu └── .gitkeep ├── dist ├── drc-splash.png ├── glslcompiler.elf ├── has-banner.png ├── has-web-icon.png ├── icon.png ├── screenshot.png ├── tv-splash.png ├── wiiu │ └── apps │ │ └── TankTrap │ │ ├── icon.png │ │ └── meta.xml ├── wua │ └── 00050000102b2b2b_v0 │ │ ├── code │ │ ├── app.xml │ │ ├── cos.xml │ │ └── glslcompiler.rpl │ │ ├── content │ │ └── .gitkeep │ │ └── meta │ │ ├── bootDrcTex.tga │ │ ├── bootLogoTex.tga │ │ ├── bootTvTex.tga │ │ ├── iconTex.tga │ │ └── meta.xml ├── zarchive.exe └── zarchive_static.elf ├── include └── CafeGLSLCompiler.h ├── level_legend.png └── source ├── assets ├── .gitkeep ├── bgm │ ├── ingame.ogg │ └── ingame_muffled.ogg ├── font │ ├── license.txt │ ├── mother-2-gigu-no-gyakushu.ttf │ ├── readme.txt │ ├── source-code-pro-small-black.tga │ └── source-code-pro-small-white.tga ├── levels │ ├── level0.tga │ └── menu.tga ├── sfx │ ├── death_explosion.ogg │ ├── drill_loop.ogg │ ├── drill_start.ogg │ ├── drill_stop.ogg │ ├── explosion.ogg │ ├── explosion_2.ogg │ ├── gravity_end.ogg │ ├── gravity_loop.ogg │ ├── hit.ogg │ ├── lava_hiss0.ogg │ ├── lava_hiss1.ogg │ ├── lava_hiss2.ogg │ ├── lava_hiss3.ogg │ ├── metal-ball-hit.ogg │ ├── pickup.ogg │ ├── select.ogg │ ├── start.ogg │ └── teleport.ogg ├── shaders │ ├── crt.ps │ ├── crt.vs │ ├── draw_map.ps │ ├── draw_map.vs │ ├── environment_pass.ps │ ├── environment_pass.vs │ ├── environment_prepass.ps │ ├── environment_prepass.vs │ ├── sprite.ps │ └── sprite.vs └── tex │ ├── ammo.tga │ ├── background_tile_a.tga │ ├── blackhole0.tga │ ├── blackhole1.tga │ ├── blackhole2.tga │ ├── button_backdrop.tga │ ├── button_selected.tga │ ├── dirt_detail.tga │ ├── drill_boost.tga │ ├── explosion.tga │ ├── heart.tga │ ├── item_background.tga │ ├── landmine.tga │ ├── missile0.tga │ ├── missile1.tga │ ├── missile2.tga │ ├── missile3.tga │ ├── player_default.tga │ ├── tank.tga │ ├── tank_drill0.tga │ ├── tank_drill1.tga │ ├── tank_drill2.tga │ ├── tank_wheel.tga │ ├── test_sprite.tga │ └── test_sprite_1px.tga ├── common ├── common.h ├── schrift.c ├── schrift.h ├── shader_serializer.h ├── stb_vorbis.c └── types.h ├── framework ├── audio │ ├── audio.cpp │ ├── audio.h │ ├── ogg.h │ └── wav.h ├── debug.cpp ├── debug.h ├── fileformat │ └── TGAFile.h ├── multiplayer │ ├── multiplayer.cpp │ └── multiplayer.h ├── navigation.cpp ├── navigation.h ├── noise │ ├── noise.h │ └── noise2D.cpp ├── physics │ ├── physics.cpp │ └── physics.h ├── render.cpp ├── render.h ├── render_data.h ├── render_shader.cpp ├── render_state.cpp ├── window.cpp └── window.h └── game ├── Blackhole.cpp ├── Blackhole.h ├── Collectable.cpp ├── Collectable.h ├── GameClient.cpp ├── GameClient.h ├── GameScene.cpp ├── GameScene.h ├── GameSceneIngame.cpp ├── GameSceneIngame.h ├── GameSceneMenu.cpp ├── GameSceneMenu.h ├── GameServer.cpp ├── GameServer.h ├── Landmine.cpp ├── Landmine.h ├── Map.cpp ├── Map.h ├── MapFlungPixels.cpp ├── MapFlungPixels.h ├── MapGravityPixels.cpp ├── MapGravityPixels.h ├── MapPixels.cpp ├── MapPixels.h ├── MapRender.cpp ├── MapSimulation.cpp ├── Missile.cpp ├── Missile.h ├── NetCommon.h ├── Object.cpp ├── Object.h ├── Particle.h ├── Player.cpp ├── Player.h ├── TextButton.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/UntitledSandGame.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/UntitledSandGame.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Build___Debug_Using_Cemu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Build___Debug_Using_Cemu.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Debug_Using_GDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Debug_Using_GDB.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_Using_Cemu_With_GDB___Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Run_Using_Cemu_With_GDB___Debug.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_Using_Cemu___Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Run_Using_Cemu___Debug.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_Using_Cemu___Release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Run_Using_Cemu___Release.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_Using_Cemu__interpreter____Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Run_Using_Cemu__interpreter____Debug.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_Using_Two_Cemu___Release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/runConfigurations/Run_Using_Two_Cemu___Release.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/README.md -------------------------------------------------------------------------------- /cemu/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/drc-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/drc-splash.png -------------------------------------------------------------------------------- /dist/glslcompiler.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/glslcompiler.elf -------------------------------------------------------------------------------- /dist/has-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/has-banner.png -------------------------------------------------------------------------------- /dist/has-web-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/has-web-icon.png -------------------------------------------------------------------------------- /dist/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/icon.png -------------------------------------------------------------------------------- /dist/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/screenshot.png -------------------------------------------------------------------------------- /dist/tv-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/tv-splash.png -------------------------------------------------------------------------------- /dist/wiiu/apps/TankTrap/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wiiu/apps/TankTrap/icon.png -------------------------------------------------------------------------------- /dist/wiiu/apps/TankTrap/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wiiu/apps/TankTrap/meta.xml -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/code/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/code/app.xml -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/code/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/code/cos.xml -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/code/glslcompiler.rpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/code/glslcompiler.rpl -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/meta/bootDrcTex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/meta/bootDrcTex.tga -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/meta/bootLogoTex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/meta/bootLogoTex.tga -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/meta/bootTvTex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/meta/bootTvTex.tga -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/meta/iconTex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/meta/iconTex.tga -------------------------------------------------------------------------------- /dist/wua/00050000102b2b2b_v0/meta/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/wua/00050000102b2b2b_v0/meta/meta.xml -------------------------------------------------------------------------------- /dist/zarchive.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/zarchive.exe -------------------------------------------------------------------------------- /dist/zarchive_static.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/dist/zarchive_static.elf -------------------------------------------------------------------------------- /include/CafeGLSLCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/include/CafeGLSLCompiler.h -------------------------------------------------------------------------------- /level_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/level_legend.png -------------------------------------------------------------------------------- /source/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/assets/bgm/ingame.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/bgm/ingame.ogg -------------------------------------------------------------------------------- /source/assets/bgm/ingame_muffled.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/bgm/ingame_muffled.ogg -------------------------------------------------------------------------------- /source/assets/font/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/font/license.txt -------------------------------------------------------------------------------- /source/assets/font/mother-2-gigu-no-gyakushu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/font/mother-2-gigu-no-gyakushu.ttf -------------------------------------------------------------------------------- /source/assets/font/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/font/readme.txt -------------------------------------------------------------------------------- /source/assets/font/source-code-pro-small-black.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/font/source-code-pro-small-black.tga -------------------------------------------------------------------------------- /source/assets/font/source-code-pro-small-white.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/font/source-code-pro-small-white.tga -------------------------------------------------------------------------------- /source/assets/levels/level0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/levels/level0.tga -------------------------------------------------------------------------------- /source/assets/levels/menu.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/levels/menu.tga -------------------------------------------------------------------------------- /source/assets/sfx/death_explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/death_explosion.ogg -------------------------------------------------------------------------------- /source/assets/sfx/drill_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/drill_loop.ogg -------------------------------------------------------------------------------- /source/assets/sfx/drill_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/drill_start.ogg -------------------------------------------------------------------------------- /source/assets/sfx/drill_stop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/drill_stop.ogg -------------------------------------------------------------------------------- /source/assets/sfx/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/explosion.ogg -------------------------------------------------------------------------------- /source/assets/sfx/explosion_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/explosion_2.ogg -------------------------------------------------------------------------------- /source/assets/sfx/gravity_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/gravity_end.ogg -------------------------------------------------------------------------------- /source/assets/sfx/gravity_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/gravity_loop.ogg -------------------------------------------------------------------------------- /source/assets/sfx/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/hit.ogg -------------------------------------------------------------------------------- /source/assets/sfx/lava_hiss0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/lava_hiss0.ogg -------------------------------------------------------------------------------- /source/assets/sfx/lava_hiss1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/lava_hiss1.ogg -------------------------------------------------------------------------------- /source/assets/sfx/lava_hiss2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/lava_hiss2.ogg -------------------------------------------------------------------------------- /source/assets/sfx/lava_hiss3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/lava_hiss3.ogg -------------------------------------------------------------------------------- /source/assets/sfx/metal-ball-hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/metal-ball-hit.ogg -------------------------------------------------------------------------------- /source/assets/sfx/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/pickup.ogg -------------------------------------------------------------------------------- /source/assets/sfx/select.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/select.ogg -------------------------------------------------------------------------------- /source/assets/sfx/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/start.ogg -------------------------------------------------------------------------------- /source/assets/sfx/teleport.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/sfx/teleport.ogg -------------------------------------------------------------------------------- /source/assets/shaders/crt.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/crt.ps -------------------------------------------------------------------------------- /source/assets/shaders/crt.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/crt.vs -------------------------------------------------------------------------------- /source/assets/shaders/draw_map.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/draw_map.ps -------------------------------------------------------------------------------- /source/assets/shaders/draw_map.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/draw_map.vs -------------------------------------------------------------------------------- /source/assets/shaders/environment_pass.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/environment_pass.ps -------------------------------------------------------------------------------- /source/assets/shaders/environment_pass.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/environment_pass.vs -------------------------------------------------------------------------------- /source/assets/shaders/environment_prepass.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/environment_prepass.ps -------------------------------------------------------------------------------- /source/assets/shaders/environment_prepass.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/environment_prepass.vs -------------------------------------------------------------------------------- /source/assets/shaders/sprite.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/sprite.ps -------------------------------------------------------------------------------- /source/assets/shaders/sprite.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/shaders/sprite.vs -------------------------------------------------------------------------------- /source/assets/tex/ammo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/ammo.tga -------------------------------------------------------------------------------- /source/assets/tex/background_tile_a.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/background_tile_a.tga -------------------------------------------------------------------------------- /source/assets/tex/blackhole0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/blackhole0.tga -------------------------------------------------------------------------------- /source/assets/tex/blackhole1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/blackhole1.tga -------------------------------------------------------------------------------- /source/assets/tex/blackhole2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/blackhole2.tga -------------------------------------------------------------------------------- /source/assets/tex/button_backdrop.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/button_backdrop.tga -------------------------------------------------------------------------------- /source/assets/tex/button_selected.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/button_selected.tga -------------------------------------------------------------------------------- /source/assets/tex/dirt_detail.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/dirt_detail.tga -------------------------------------------------------------------------------- /source/assets/tex/drill_boost.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/drill_boost.tga -------------------------------------------------------------------------------- /source/assets/tex/explosion.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/explosion.tga -------------------------------------------------------------------------------- /source/assets/tex/heart.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/heart.tga -------------------------------------------------------------------------------- /source/assets/tex/item_background.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/item_background.tga -------------------------------------------------------------------------------- /source/assets/tex/landmine.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/landmine.tga -------------------------------------------------------------------------------- /source/assets/tex/missile0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/missile0.tga -------------------------------------------------------------------------------- /source/assets/tex/missile1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/missile1.tga -------------------------------------------------------------------------------- /source/assets/tex/missile2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/missile2.tga -------------------------------------------------------------------------------- /source/assets/tex/missile3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/missile3.tga -------------------------------------------------------------------------------- /source/assets/tex/player_default.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/player_default.tga -------------------------------------------------------------------------------- /source/assets/tex/tank.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/tank.tga -------------------------------------------------------------------------------- /source/assets/tex/tank_drill0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/tank_drill0.tga -------------------------------------------------------------------------------- /source/assets/tex/tank_drill1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/tank_drill1.tga -------------------------------------------------------------------------------- /source/assets/tex/tank_drill2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/tank_drill2.tga -------------------------------------------------------------------------------- /source/assets/tex/tank_wheel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/tank_wheel.tga -------------------------------------------------------------------------------- /source/assets/tex/test_sprite.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/test_sprite.tga -------------------------------------------------------------------------------- /source/assets/tex/test_sprite_1px.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/assets/tex/test_sprite_1px.tga -------------------------------------------------------------------------------- /source/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/common/common.h -------------------------------------------------------------------------------- /source/common/schrift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/common/schrift.c -------------------------------------------------------------------------------- /source/common/schrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/common/schrift.h -------------------------------------------------------------------------------- /source/common/shader_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/common/shader_serializer.h -------------------------------------------------------------------------------- /source/common/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/common/stb_vorbis.c -------------------------------------------------------------------------------- /source/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/common/types.h -------------------------------------------------------------------------------- /source/framework/audio/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/audio/audio.cpp -------------------------------------------------------------------------------- /source/framework/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/audio/audio.h -------------------------------------------------------------------------------- /source/framework/audio/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/audio/ogg.h -------------------------------------------------------------------------------- /source/framework/audio/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/audio/wav.h -------------------------------------------------------------------------------- /source/framework/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/debug.cpp -------------------------------------------------------------------------------- /source/framework/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/debug.h -------------------------------------------------------------------------------- /source/framework/fileformat/TGAFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/fileformat/TGAFile.h -------------------------------------------------------------------------------- /source/framework/multiplayer/multiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/multiplayer/multiplayer.cpp -------------------------------------------------------------------------------- /source/framework/multiplayer/multiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/multiplayer/multiplayer.h -------------------------------------------------------------------------------- /source/framework/navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/navigation.cpp -------------------------------------------------------------------------------- /source/framework/navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/navigation.h -------------------------------------------------------------------------------- /source/framework/noise/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/noise/noise.h -------------------------------------------------------------------------------- /source/framework/noise/noise2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/noise/noise2D.cpp -------------------------------------------------------------------------------- /source/framework/physics/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/physics/physics.cpp -------------------------------------------------------------------------------- /source/framework/physics/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/physics/physics.h -------------------------------------------------------------------------------- /source/framework/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/render.cpp -------------------------------------------------------------------------------- /source/framework/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/render.h -------------------------------------------------------------------------------- /source/framework/render_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/render_data.h -------------------------------------------------------------------------------- /source/framework/render_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/render_shader.cpp -------------------------------------------------------------------------------- /source/framework/render_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/render_state.cpp -------------------------------------------------------------------------------- /source/framework/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/window.cpp -------------------------------------------------------------------------------- /source/framework/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/framework/window.h -------------------------------------------------------------------------------- /source/game/Blackhole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Blackhole.cpp -------------------------------------------------------------------------------- /source/game/Blackhole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Blackhole.h -------------------------------------------------------------------------------- /source/game/Collectable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Collectable.cpp -------------------------------------------------------------------------------- /source/game/Collectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Collectable.h -------------------------------------------------------------------------------- /source/game/GameClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameClient.cpp -------------------------------------------------------------------------------- /source/game/GameClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameClient.h -------------------------------------------------------------------------------- /source/game/GameScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameScene.cpp -------------------------------------------------------------------------------- /source/game/GameScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameScene.h -------------------------------------------------------------------------------- /source/game/GameSceneIngame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameSceneIngame.cpp -------------------------------------------------------------------------------- /source/game/GameSceneIngame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameSceneIngame.h -------------------------------------------------------------------------------- /source/game/GameSceneMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameSceneMenu.cpp -------------------------------------------------------------------------------- /source/game/GameSceneMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameSceneMenu.h -------------------------------------------------------------------------------- /source/game/GameServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameServer.cpp -------------------------------------------------------------------------------- /source/game/GameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/GameServer.h -------------------------------------------------------------------------------- /source/game/Landmine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Landmine.cpp -------------------------------------------------------------------------------- /source/game/Landmine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Landmine.h -------------------------------------------------------------------------------- /source/game/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Map.cpp -------------------------------------------------------------------------------- /source/game/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Map.h -------------------------------------------------------------------------------- /source/game/MapFlungPixels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapFlungPixels.cpp -------------------------------------------------------------------------------- /source/game/MapFlungPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapFlungPixels.h -------------------------------------------------------------------------------- /source/game/MapGravityPixels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapGravityPixels.cpp -------------------------------------------------------------------------------- /source/game/MapGravityPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapGravityPixels.h -------------------------------------------------------------------------------- /source/game/MapPixels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapPixels.cpp -------------------------------------------------------------------------------- /source/game/MapPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapPixels.h -------------------------------------------------------------------------------- /source/game/MapRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapRender.cpp -------------------------------------------------------------------------------- /source/game/MapSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/MapSimulation.cpp -------------------------------------------------------------------------------- /source/game/Missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Missile.cpp -------------------------------------------------------------------------------- /source/game/Missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Missile.h -------------------------------------------------------------------------------- /source/game/NetCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/NetCommon.h -------------------------------------------------------------------------------- /source/game/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Object.cpp -------------------------------------------------------------------------------- /source/game/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Object.h -------------------------------------------------------------------------------- /source/game/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Particle.h -------------------------------------------------------------------------------- /source/game/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Player.cpp -------------------------------------------------------------------------------- /source/game/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/Player.h -------------------------------------------------------------------------------- /source/game/TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/TextButton.h -------------------------------------------------------------------------------- /source/game/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crementif/UntitledSandGame/HEAD/source/game/main.cpp --------------------------------------------------------------------------------