├── .gitignore ├── LICENSE.txt ├── README.md ├── common ├── .vscode │ ├── c_cpp_properties.json │ └── settings.json ├── color.props ├── common.vcxproj ├── common.vcxproj.filters ├── gameboy.props ├── include │ ├── BankManager.h │ ├── Banks │ │ └── SetAutoBank.h │ ├── Fade.h │ ├── Keys.h │ ├── MapInfo.h │ ├── Math.h │ ├── MetaSpriteInfo.h │ ├── Music.h │ ├── OAMManager.h │ ├── Palette.h │ ├── Print.h │ ├── SGB.h │ ├── SRAM.h │ ├── Scroll.h │ ├── Sound.h │ ├── Sprite.h │ ├── SpriteManager.h │ ├── Stack.h │ ├── TilesInfo.h │ ├── Vector.h │ ├── ZGBMain_Init.h │ ├── gbt_player.h │ ├── hUGEDriver.h │ └── main.h ├── lib │ └── hUGEDriver.obj.o └── src │ ├── BankManager.c │ ├── Fade.c │ ├── Fade_b.c │ ├── Keys.c │ ├── Makefile │ ├── MakefileCommon │ ├── Math.c │ ├── Music.c │ ├── OAMManager.c │ ├── Print.c │ ├── SGB.c │ ├── SRAM.c │ ├── Scroll.c │ ├── Sound.c │ ├── Sprite.c │ ├── SpriteManager.c │ ├── Vector.c │ ├── ZGBMain_Init.c │ ├── gbt_player.s │ ├── gbt_player_bank1.s │ └── main.c ├── doc files ├── 10-bgpaletteset.PNG ├── 11-exportsettings.PNG ├── 12-labelName.PNG ├── 13-spritecolored.PNG ├── 14-bgbsettings.PNG ├── 15-enemycolored.PNG ├── 2-anim.PNG ├── 3-bad collision.PNG ├── 4-Location Format.PNG ├── 5-enemy.PNG ├── 5b-enemyExport.PNG ├── 6-map.PNG ├── 7-thumb.PNG ├── 8-mapenemies.PNG ├── 9-paletteChoose.PNG ├── bgb00003.bmp ├── bgb00004.bmp ├── bgb00006.bmp ├── bgb00007.bmp ├── bgb00008.bmp ├── bgb00009.bmp ├── enemyColored.bmp ├── envPath.PNG ├── hud_ingame.png ├── hud_ingame_palette.png ├── hud_map.png ├── hud_palette.png ├── hud_tiles.png ├── mod1.JPG ├── mod2.JPG ├── readme │ ├── ZGB-loop.png │ ├── coll_down.gif │ ├── collider.png │ ├── mirrors.gif │ └── scroll.gif ├── showcase │ ├── acattag.png │ ├── ancient.png │ ├── athleticWorld.png │ ├── axebound.png │ ├── basketcase.png │ ├── bounmaze.png │ ├── cavern.png │ ├── chainbreak.png │ ├── deck.png │ ├── dungeonball.png │ ├── espetoblast.png │ ├── fairywowings.png │ ├── flyingarrows.png │ ├── futurePizza.png │ ├── fuzzy.png │ ├── giant.png │ ├── grimoire.png │ ├── guardianghost.png │ ├── hermano.png │ ├── hungrybirds.png │ ├── hungrymonster.png │ ├── impossiblegameboy.png │ ├── initialD.png │ ├── kaijufeeder.png │ ├── luna.png │ ├── minigolf.png │ ├── mona.png │ ├── muffinalpaca.png │ ├── outofcontrol.png │ ├── pineapplekid.png │ ├── pluto.png │ ├── polkasheep.png │ ├── powa.png │ ├── prettyprincess.png │ ├── rc-shuriken.png │ ├── rick.png │ ├── shieldbouncer.png │ ├── shipping.png │ ├── sovietsnake.png │ ├── superprincess.png │ ├── sushinights.png │ ├── theReckoning.png │ ├── thesquire.png │ ├── topopajaros.png │ ├── upwel.png │ ├── vel-cro.png │ ├── velcrogolf.png │ ├── velcroid.png │ ├── velcroid0.png │ ├── weevil.png │ └── woolball.png └── tuto.gif ├── install.bat └── tools ├── gbm2c ├── GBMS9910.DOC.pdf ├── gbm2c.cpp ├── gbm2c.exe ├── gbm2c.sln ├── gbm2c.vcxproj └── gbm2c.vcxproj.filters ├── gbr2c ├── GBRS9906.DOC.pdf ├── gbr2c.cpp ├── gbr2c.exe ├── gbr2c.sln ├── gbr2c.vcxproj ├── gbr2c.vcxproj.filters ├── gbrParser .cpp └── gbrParser.h └── gbr2png ├── gbr2png.cpp ├── gbr2png.exe ├── gbr2png.sln ├── gbr2png.vcxproj ├── gbr2png.vcxproj.filters └── lodepng ├── lodepng.cpp └── lodepng.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/README.md -------------------------------------------------------------------------------- /common/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /common/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/.vscode/settings.json -------------------------------------------------------------------------------- /common/color.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/color.props -------------------------------------------------------------------------------- /common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/common.vcxproj -------------------------------------------------------------------------------- /common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/common.vcxproj.filters -------------------------------------------------------------------------------- /common/gameboy.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/gameboy.props -------------------------------------------------------------------------------- /common/include/BankManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/BankManager.h -------------------------------------------------------------------------------- /common/include/Banks/SetAutoBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Banks/SetAutoBank.h -------------------------------------------------------------------------------- /common/include/Fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Fade.h -------------------------------------------------------------------------------- /common/include/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Keys.h -------------------------------------------------------------------------------- /common/include/MapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/MapInfo.h -------------------------------------------------------------------------------- /common/include/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Math.h -------------------------------------------------------------------------------- /common/include/MetaSpriteInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/MetaSpriteInfo.h -------------------------------------------------------------------------------- /common/include/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Music.h -------------------------------------------------------------------------------- /common/include/OAMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/OAMManager.h -------------------------------------------------------------------------------- /common/include/Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Palette.h -------------------------------------------------------------------------------- /common/include/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Print.h -------------------------------------------------------------------------------- /common/include/SGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/SGB.h -------------------------------------------------------------------------------- /common/include/SRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/SRAM.h -------------------------------------------------------------------------------- /common/include/Scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Scroll.h -------------------------------------------------------------------------------- /common/include/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Sound.h -------------------------------------------------------------------------------- /common/include/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Sprite.h -------------------------------------------------------------------------------- /common/include/SpriteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/SpriteManager.h -------------------------------------------------------------------------------- /common/include/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Stack.h -------------------------------------------------------------------------------- /common/include/TilesInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/TilesInfo.h -------------------------------------------------------------------------------- /common/include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/Vector.h -------------------------------------------------------------------------------- /common/include/ZGBMain_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/ZGBMain_Init.h -------------------------------------------------------------------------------- /common/include/gbt_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/gbt_player.h -------------------------------------------------------------------------------- /common/include/hUGEDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/hUGEDriver.h -------------------------------------------------------------------------------- /common/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/include/main.h -------------------------------------------------------------------------------- /common/lib/hUGEDriver.obj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/lib/hUGEDriver.obj.o -------------------------------------------------------------------------------- /common/src/BankManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/BankManager.c -------------------------------------------------------------------------------- /common/src/Fade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Fade.c -------------------------------------------------------------------------------- /common/src/Fade_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Fade_b.c -------------------------------------------------------------------------------- /common/src/Keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Keys.c -------------------------------------------------------------------------------- /common/src/Makefile: -------------------------------------------------------------------------------- 1 | run: 2 | 3 | clean: -------------------------------------------------------------------------------- /common/src/MakefileCommon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/MakefileCommon -------------------------------------------------------------------------------- /common/src/Math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Math.c -------------------------------------------------------------------------------- /common/src/Music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Music.c -------------------------------------------------------------------------------- /common/src/OAMManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/OAMManager.c -------------------------------------------------------------------------------- /common/src/Print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Print.c -------------------------------------------------------------------------------- /common/src/SGB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/SGB.c -------------------------------------------------------------------------------- /common/src/SRAM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/SRAM.c -------------------------------------------------------------------------------- /common/src/Scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Scroll.c -------------------------------------------------------------------------------- /common/src/Sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Sound.c -------------------------------------------------------------------------------- /common/src/Sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Sprite.c -------------------------------------------------------------------------------- /common/src/SpriteManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/SpriteManager.c -------------------------------------------------------------------------------- /common/src/Vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/Vector.c -------------------------------------------------------------------------------- /common/src/ZGBMain_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/ZGBMain_Init.c -------------------------------------------------------------------------------- /common/src/gbt_player.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/gbt_player.s -------------------------------------------------------------------------------- /common/src/gbt_player_bank1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/gbt_player_bank1.s -------------------------------------------------------------------------------- /common/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/common/src/main.c -------------------------------------------------------------------------------- /doc files/10-bgpaletteset.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/10-bgpaletteset.PNG -------------------------------------------------------------------------------- /doc files/11-exportsettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/11-exportsettings.PNG -------------------------------------------------------------------------------- /doc files/12-labelName.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/12-labelName.PNG -------------------------------------------------------------------------------- /doc files/13-spritecolored.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/13-spritecolored.PNG -------------------------------------------------------------------------------- /doc files/14-bgbsettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/14-bgbsettings.PNG -------------------------------------------------------------------------------- /doc files/15-enemycolored.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/15-enemycolored.PNG -------------------------------------------------------------------------------- /doc files/2-anim.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/2-anim.PNG -------------------------------------------------------------------------------- /doc files/3-bad collision.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/3-bad collision.PNG -------------------------------------------------------------------------------- /doc files/4-Location Format.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/4-Location Format.PNG -------------------------------------------------------------------------------- /doc files/5-enemy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/5-enemy.PNG -------------------------------------------------------------------------------- /doc files/5b-enemyExport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/5b-enemyExport.PNG -------------------------------------------------------------------------------- /doc files/6-map.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/6-map.PNG -------------------------------------------------------------------------------- /doc files/7-thumb.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/7-thumb.PNG -------------------------------------------------------------------------------- /doc files/8-mapenemies.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/8-mapenemies.PNG -------------------------------------------------------------------------------- /doc files/9-paletteChoose.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/9-paletteChoose.PNG -------------------------------------------------------------------------------- /doc files/bgb00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/bgb00003.bmp -------------------------------------------------------------------------------- /doc files/bgb00004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/bgb00004.bmp -------------------------------------------------------------------------------- /doc files/bgb00006.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/bgb00006.bmp -------------------------------------------------------------------------------- /doc files/bgb00007.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/bgb00007.bmp -------------------------------------------------------------------------------- /doc files/bgb00008.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/bgb00008.bmp -------------------------------------------------------------------------------- /doc files/bgb00009.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/bgb00009.bmp -------------------------------------------------------------------------------- /doc files/enemyColored.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/enemyColored.bmp -------------------------------------------------------------------------------- /doc files/envPath.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/envPath.PNG -------------------------------------------------------------------------------- /doc files/hud_ingame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/hud_ingame.png -------------------------------------------------------------------------------- /doc files/hud_ingame_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/hud_ingame_palette.png -------------------------------------------------------------------------------- /doc files/hud_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/hud_map.png -------------------------------------------------------------------------------- /doc files/hud_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/hud_palette.png -------------------------------------------------------------------------------- /doc files/hud_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/hud_tiles.png -------------------------------------------------------------------------------- /doc files/mod1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/mod1.JPG -------------------------------------------------------------------------------- /doc files/mod2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/mod2.JPG -------------------------------------------------------------------------------- /doc files/readme/ZGB-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/readme/ZGB-loop.png -------------------------------------------------------------------------------- /doc files/readme/coll_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/readme/coll_down.gif -------------------------------------------------------------------------------- /doc files/readme/collider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/readme/collider.png -------------------------------------------------------------------------------- /doc files/readme/mirrors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/readme/mirrors.gif -------------------------------------------------------------------------------- /doc files/readme/scroll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/readme/scroll.gif -------------------------------------------------------------------------------- /doc files/showcase/acattag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/acattag.png -------------------------------------------------------------------------------- /doc files/showcase/ancient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/ancient.png -------------------------------------------------------------------------------- /doc files/showcase/athleticWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/athleticWorld.png -------------------------------------------------------------------------------- /doc files/showcase/axebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/axebound.png -------------------------------------------------------------------------------- /doc files/showcase/basketcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/basketcase.png -------------------------------------------------------------------------------- /doc files/showcase/bounmaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/bounmaze.png -------------------------------------------------------------------------------- /doc files/showcase/cavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/cavern.png -------------------------------------------------------------------------------- /doc files/showcase/chainbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/chainbreak.png -------------------------------------------------------------------------------- /doc files/showcase/deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/deck.png -------------------------------------------------------------------------------- /doc files/showcase/dungeonball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/dungeonball.png -------------------------------------------------------------------------------- /doc files/showcase/espetoblast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/espetoblast.png -------------------------------------------------------------------------------- /doc files/showcase/fairywowings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/fairywowings.png -------------------------------------------------------------------------------- /doc files/showcase/flyingarrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/flyingarrows.png -------------------------------------------------------------------------------- /doc files/showcase/futurePizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/futurePizza.png -------------------------------------------------------------------------------- /doc files/showcase/fuzzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/fuzzy.png -------------------------------------------------------------------------------- /doc files/showcase/giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/giant.png -------------------------------------------------------------------------------- /doc files/showcase/grimoire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/grimoire.png -------------------------------------------------------------------------------- /doc files/showcase/guardianghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/guardianghost.png -------------------------------------------------------------------------------- /doc files/showcase/hermano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/hermano.png -------------------------------------------------------------------------------- /doc files/showcase/hungrybirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/hungrybirds.png -------------------------------------------------------------------------------- /doc files/showcase/hungrymonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/hungrymonster.png -------------------------------------------------------------------------------- /doc files/showcase/impossiblegameboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/impossiblegameboy.png -------------------------------------------------------------------------------- /doc files/showcase/initialD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/initialD.png -------------------------------------------------------------------------------- /doc files/showcase/kaijufeeder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/kaijufeeder.png -------------------------------------------------------------------------------- /doc files/showcase/luna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/luna.png -------------------------------------------------------------------------------- /doc files/showcase/minigolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/minigolf.png -------------------------------------------------------------------------------- /doc files/showcase/mona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/mona.png -------------------------------------------------------------------------------- /doc files/showcase/muffinalpaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/muffinalpaca.png -------------------------------------------------------------------------------- /doc files/showcase/outofcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/outofcontrol.png -------------------------------------------------------------------------------- /doc files/showcase/pineapplekid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/pineapplekid.png -------------------------------------------------------------------------------- /doc files/showcase/pluto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/pluto.png -------------------------------------------------------------------------------- /doc files/showcase/polkasheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/polkasheep.png -------------------------------------------------------------------------------- /doc files/showcase/powa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/powa.png -------------------------------------------------------------------------------- /doc files/showcase/prettyprincess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/prettyprincess.png -------------------------------------------------------------------------------- /doc files/showcase/rc-shuriken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/rc-shuriken.png -------------------------------------------------------------------------------- /doc files/showcase/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/rick.png -------------------------------------------------------------------------------- /doc files/showcase/shieldbouncer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/shieldbouncer.png -------------------------------------------------------------------------------- /doc files/showcase/shipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/shipping.png -------------------------------------------------------------------------------- /doc files/showcase/sovietsnake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/sovietsnake.png -------------------------------------------------------------------------------- /doc files/showcase/superprincess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/superprincess.png -------------------------------------------------------------------------------- /doc files/showcase/sushinights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/sushinights.png -------------------------------------------------------------------------------- /doc files/showcase/theReckoning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/theReckoning.png -------------------------------------------------------------------------------- /doc files/showcase/thesquire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/thesquire.png -------------------------------------------------------------------------------- /doc files/showcase/topopajaros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/topopajaros.png -------------------------------------------------------------------------------- /doc files/showcase/upwel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/upwel.png -------------------------------------------------------------------------------- /doc files/showcase/vel-cro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/vel-cro.png -------------------------------------------------------------------------------- /doc files/showcase/velcrogolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/velcrogolf.png -------------------------------------------------------------------------------- /doc files/showcase/velcroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/velcroid.png -------------------------------------------------------------------------------- /doc files/showcase/velcroid0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/velcroid0.png -------------------------------------------------------------------------------- /doc files/showcase/weevil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/weevil.png -------------------------------------------------------------------------------- /doc files/showcase/woolball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/showcase/woolball.png -------------------------------------------------------------------------------- /doc files/tuto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/doc files/tuto.gif -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | setx ZGB_PATH "%cd%\common" 2 | -------------------------------------------------------------------------------- /tools/gbm2c/GBMS9910.DOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbm2c/GBMS9910.DOC.pdf -------------------------------------------------------------------------------- /tools/gbm2c/gbm2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbm2c/gbm2c.cpp -------------------------------------------------------------------------------- /tools/gbm2c/gbm2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbm2c/gbm2c.exe -------------------------------------------------------------------------------- /tools/gbm2c/gbm2c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbm2c/gbm2c.sln -------------------------------------------------------------------------------- /tools/gbm2c/gbm2c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbm2c/gbm2c.vcxproj -------------------------------------------------------------------------------- /tools/gbm2c/gbm2c.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbm2c/gbm2c.vcxproj.filters -------------------------------------------------------------------------------- /tools/gbr2c/GBRS9906.DOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/GBRS9906.DOC.pdf -------------------------------------------------------------------------------- /tools/gbr2c/gbr2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbr2c.cpp -------------------------------------------------------------------------------- /tools/gbr2c/gbr2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbr2c.exe -------------------------------------------------------------------------------- /tools/gbr2c/gbr2c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbr2c.sln -------------------------------------------------------------------------------- /tools/gbr2c/gbr2c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbr2c.vcxproj -------------------------------------------------------------------------------- /tools/gbr2c/gbr2c.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbr2c.vcxproj.filters -------------------------------------------------------------------------------- /tools/gbr2c/gbrParser .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbrParser .cpp -------------------------------------------------------------------------------- /tools/gbr2c/gbrParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2c/gbrParser.h -------------------------------------------------------------------------------- /tools/gbr2png/gbr2png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/gbr2png.cpp -------------------------------------------------------------------------------- /tools/gbr2png/gbr2png.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/gbr2png.exe -------------------------------------------------------------------------------- /tools/gbr2png/gbr2png.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/gbr2png.sln -------------------------------------------------------------------------------- /tools/gbr2png/gbr2png.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/gbr2png.vcxproj -------------------------------------------------------------------------------- /tools/gbr2png/gbr2png.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/gbr2png.vcxproj.filters -------------------------------------------------------------------------------- /tools/gbr2png/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /tools/gbr2png/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zal0/ZGB/HEAD/tools/gbr2png/lodepng/lodepng.h --------------------------------------------------------------------------------