├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── data ├── 0 │ ├── stage00.stg │ ├── stage01.stg │ ├── stage02.stg │ ├── stage03.stg │ ├── stage04.stg │ ├── stage05.stg │ ├── stage06.stg │ ├── stage07.stg │ ├── stage08.stg │ ├── stage09.stg │ ├── stage0a.stg │ ├── stage0b.stg │ ├── stage0c.stg │ ├── stage0d.stg │ ├── stage0e.stg │ └── stage0f.stg ├── 1 │ ├── stage10.stg │ ├── stage11.stg │ ├── stage12.stg │ ├── stage13.stg │ ├── stage14.stg │ ├── stage15.stg │ ├── stage16.stg │ ├── stage17.stg │ ├── stage18.stg │ ├── stage19.stg │ ├── stage1a.stg │ ├── stage1b.stg │ ├── stage1c.stg │ ├── stage1d.stg │ ├── stage1e.stg │ └── stage1f.stg ├── 2 │ ├── stage20.stg │ ├── stage21.stg │ ├── stage22.stg │ ├── stage23.stg │ ├── stage24.stg │ ├── stage25.stg │ ├── stage26.stg │ ├── stage27.stg │ ├── stage28.stg │ ├── stage29.stg │ ├── stage2a.stg │ ├── stage2b.stg │ ├── stage2c.stg │ ├── stage2d.stg │ ├── stage2e.stg │ └── stage2f.stg ├── 3 │ ├── stage30.stg │ ├── stage31.stg │ ├── stage32.stg │ ├── stage33.stg │ ├── stage34.stg │ ├── stage35.stg │ ├── stage36.stg │ ├── stage37.stg │ ├── stage38.stg │ ├── stage39.stg │ ├── stage3a.stg │ ├── stage3b.stg │ ├── stage3c.stg │ ├── stage3d.stg │ ├── stage3e.stg │ └── stage3f.stg ├── 4 │ ├── stage40.stg │ ├── stage41.stg │ ├── stage42.stg │ ├── stage43.stg │ ├── stage44.stg │ ├── stage45.stg │ ├── stage46.stg │ ├── stage47.stg │ ├── stage48.stg │ ├── stage49.stg │ ├── stage4a.stg │ ├── stage4b.stg │ ├── stage4c.stg │ ├── stage4d.stg │ ├── stage4e.stg │ └── stage4f.stg ├── 5 │ ├── stage50.stg │ ├── stage51.stg │ ├── stage52.stg │ ├── stage53.stg │ ├── stage54.stg │ ├── stage55.stg │ ├── stage56.stg │ ├── stage57.stg │ ├── stage58.stg │ ├── stage59.stg │ ├── stage5a.stg │ ├── stage5b.stg │ ├── stage5c.stg │ ├── stage5d.stg │ └── stage5e.stg └── main │ ├── ArmsItem.bsc │ ├── Credit.bsc │ ├── Credit.crd │ ├── StageSel.bsc │ ├── main.gfx │ ├── main.sfx │ └── npc.tbl ├── doc └── screen.png ├── iso.xml ├── src ├── engine │ ├── common.c │ ├── common.h │ ├── common_a.s │ ├── exception.c │ ├── exception.h │ ├── filesystem.c │ ├── filesystem.h │ ├── graphics.c │ ├── graphics.h │ ├── input.c │ ├── input.h │ ├── loading.inc │ ├── math.c │ ├── math.h │ ├── mcrd.c │ ├── mcrd.h │ ├── memory.c │ ├── memory.h │ ├── org.c │ ├── org.h │ ├── saveicon.inc │ ├── sound.c │ ├── sound.h │ ├── spu.c │ ├── spu.h │ ├── surfacelist.h │ ├── timer.c │ └── timer.h ├── game │ ├── boss_act │ │ ├── boss_act.h │ │ ├── boss_act_balfrog.c │ │ ├── boss_act_ballos.c │ │ ├── boss_act_core.c │ │ ├── boss_act_heavy_press.c │ │ ├── boss_act_ironhead.c │ │ ├── boss_act_monster_x.c │ │ ├── boss_act_omega.c │ │ ├── boss_act_twins.c │ │ └── boss_act_undead_core.c │ ├── bullet.c │ ├── bullet.h │ ├── camera.c │ ├── camera.h │ ├── caret.c │ ├── caret.h │ ├── credits.c │ ├── credits.h │ ├── dmgnum.c │ ├── dmgnum.h │ ├── game.c │ ├── game.h │ ├── hit.h │ ├── hit_bullet.c │ ├── hit_npc.c │ ├── hit_player.c │ ├── hud.c │ ├── hud.h │ ├── menu.c │ ├── menu.h │ ├── npc.c │ ├── npc.h │ ├── npc_act │ │ ├── npc_act.h │ │ ├── npc_act_000.c │ │ ├── npc_act_020.c │ │ ├── npc_act_040.c │ │ ├── npc_act_060.c │ │ ├── npc_act_080.c │ │ ├── npc_act_100.c │ │ ├── npc_act_120.c │ │ ├── npc_act_140.c │ │ ├── npc_act_160.c │ │ ├── npc_act_180.c │ │ ├── npc_act_200.c │ │ ├── npc_act_220.c │ │ ├── npc_act_240.c │ │ ├── npc_act_260.c │ │ ├── npc_act_280.c │ │ ├── npc_act_300.c │ │ ├── npc_act_320.c │ │ └── npc_act_340.c │ ├── npctab.c │ ├── npctab.h │ ├── player.c │ ├── player.h │ ├── player_arms.c │ ├── profile.c │ ├── profile.h │ ├── stage.c │ ├── stage.h │ ├── tsc.c │ └── tsc.h └── main.c ├── system.cnf └── tools ├── Makefile ├── data ├── Fade4bpp.pbm ├── FontAscii.pbm └── SaveIcon.pbm ├── make_banks.sh ├── src ├── common │ ├── common.h │ ├── dr_wav.h │ ├── musiclist.h │ ├── stage.c │ ├── stage.h │ ├── stb_image.h │ ├── stb_image_write.h │ ├── surface.c │ ├── surface.h │ ├── tsc.c │ ├── tsc.h │ ├── vram.c │ └── vram.h ├── creditspack.c ├── fontgen.cpp ├── img2h.c ├── libpsxav │ ├── adpcm.c │ ├── cdrom.c │ └── libpsxav.h ├── orgconv.c ├── sfxconv.c ├── stagepack.c ├── surfpack.c ├── trigcalc.c └── tscc.c ├── stagelists └── stage_all.lst └── surflists └── surf_main.lst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/README.md -------------------------------------------------------------------------------- /data/0/stage00.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage00.stg -------------------------------------------------------------------------------- /data/0/stage01.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage01.stg -------------------------------------------------------------------------------- /data/0/stage02.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage02.stg -------------------------------------------------------------------------------- /data/0/stage03.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage03.stg -------------------------------------------------------------------------------- /data/0/stage04.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage04.stg -------------------------------------------------------------------------------- /data/0/stage05.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage05.stg -------------------------------------------------------------------------------- /data/0/stage06.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage06.stg -------------------------------------------------------------------------------- /data/0/stage07.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage07.stg -------------------------------------------------------------------------------- /data/0/stage08.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage08.stg -------------------------------------------------------------------------------- /data/0/stage09.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage09.stg -------------------------------------------------------------------------------- /data/0/stage0a.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage0a.stg -------------------------------------------------------------------------------- /data/0/stage0b.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage0b.stg -------------------------------------------------------------------------------- /data/0/stage0c.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage0c.stg -------------------------------------------------------------------------------- /data/0/stage0d.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage0d.stg -------------------------------------------------------------------------------- /data/0/stage0e.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage0e.stg -------------------------------------------------------------------------------- /data/0/stage0f.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/0/stage0f.stg -------------------------------------------------------------------------------- /data/1/stage10.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage10.stg -------------------------------------------------------------------------------- /data/1/stage11.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage11.stg -------------------------------------------------------------------------------- /data/1/stage12.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage12.stg -------------------------------------------------------------------------------- /data/1/stage13.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage13.stg -------------------------------------------------------------------------------- /data/1/stage14.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage14.stg -------------------------------------------------------------------------------- /data/1/stage15.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage15.stg -------------------------------------------------------------------------------- /data/1/stage16.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage16.stg -------------------------------------------------------------------------------- /data/1/stage17.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage17.stg -------------------------------------------------------------------------------- /data/1/stage18.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage18.stg -------------------------------------------------------------------------------- /data/1/stage19.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage19.stg -------------------------------------------------------------------------------- /data/1/stage1a.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage1a.stg -------------------------------------------------------------------------------- /data/1/stage1b.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage1b.stg -------------------------------------------------------------------------------- /data/1/stage1c.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage1c.stg -------------------------------------------------------------------------------- /data/1/stage1d.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage1d.stg -------------------------------------------------------------------------------- /data/1/stage1e.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage1e.stg -------------------------------------------------------------------------------- /data/1/stage1f.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/1/stage1f.stg -------------------------------------------------------------------------------- /data/2/stage20.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage20.stg -------------------------------------------------------------------------------- /data/2/stage21.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage21.stg -------------------------------------------------------------------------------- /data/2/stage22.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage22.stg -------------------------------------------------------------------------------- /data/2/stage23.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage23.stg -------------------------------------------------------------------------------- /data/2/stage24.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage24.stg -------------------------------------------------------------------------------- /data/2/stage25.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage25.stg -------------------------------------------------------------------------------- /data/2/stage26.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage26.stg -------------------------------------------------------------------------------- /data/2/stage27.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage27.stg -------------------------------------------------------------------------------- /data/2/stage28.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage28.stg -------------------------------------------------------------------------------- /data/2/stage29.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage29.stg -------------------------------------------------------------------------------- /data/2/stage2a.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage2a.stg -------------------------------------------------------------------------------- /data/2/stage2b.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage2b.stg -------------------------------------------------------------------------------- /data/2/stage2c.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage2c.stg -------------------------------------------------------------------------------- /data/2/stage2d.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage2d.stg -------------------------------------------------------------------------------- /data/2/stage2e.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage2e.stg -------------------------------------------------------------------------------- /data/2/stage2f.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/2/stage2f.stg -------------------------------------------------------------------------------- /data/3/stage30.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage30.stg -------------------------------------------------------------------------------- /data/3/stage31.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage31.stg -------------------------------------------------------------------------------- /data/3/stage32.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage32.stg -------------------------------------------------------------------------------- /data/3/stage33.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage33.stg -------------------------------------------------------------------------------- /data/3/stage34.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage34.stg -------------------------------------------------------------------------------- /data/3/stage35.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage35.stg -------------------------------------------------------------------------------- /data/3/stage36.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage36.stg -------------------------------------------------------------------------------- /data/3/stage37.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage37.stg -------------------------------------------------------------------------------- /data/3/stage38.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage38.stg -------------------------------------------------------------------------------- /data/3/stage39.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage39.stg -------------------------------------------------------------------------------- /data/3/stage3a.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage3a.stg -------------------------------------------------------------------------------- /data/3/stage3b.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage3b.stg -------------------------------------------------------------------------------- /data/3/stage3c.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage3c.stg -------------------------------------------------------------------------------- /data/3/stage3d.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage3d.stg -------------------------------------------------------------------------------- /data/3/stage3e.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage3e.stg -------------------------------------------------------------------------------- /data/3/stage3f.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/3/stage3f.stg -------------------------------------------------------------------------------- /data/4/stage40.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage40.stg -------------------------------------------------------------------------------- /data/4/stage41.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage41.stg -------------------------------------------------------------------------------- /data/4/stage42.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage42.stg -------------------------------------------------------------------------------- /data/4/stage43.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage43.stg -------------------------------------------------------------------------------- /data/4/stage44.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage44.stg -------------------------------------------------------------------------------- /data/4/stage45.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage45.stg -------------------------------------------------------------------------------- /data/4/stage46.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage46.stg -------------------------------------------------------------------------------- /data/4/stage47.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage47.stg -------------------------------------------------------------------------------- /data/4/stage48.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage48.stg -------------------------------------------------------------------------------- /data/4/stage49.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage49.stg -------------------------------------------------------------------------------- /data/4/stage4a.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage4a.stg -------------------------------------------------------------------------------- /data/4/stage4b.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage4b.stg -------------------------------------------------------------------------------- /data/4/stage4c.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage4c.stg -------------------------------------------------------------------------------- /data/4/stage4d.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage4d.stg -------------------------------------------------------------------------------- /data/4/stage4e.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage4e.stg -------------------------------------------------------------------------------- /data/4/stage4f.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/4/stage4f.stg -------------------------------------------------------------------------------- /data/5/stage50.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage50.stg -------------------------------------------------------------------------------- /data/5/stage51.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage51.stg -------------------------------------------------------------------------------- /data/5/stage52.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage52.stg -------------------------------------------------------------------------------- /data/5/stage53.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage53.stg -------------------------------------------------------------------------------- /data/5/stage54.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage54.stg -------------------------------------------------------------------------------- /data/5/stage55.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage55.stg -------------------------------------------------------------------------------- /data/5/stage56.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage56.stg -------------------------------------------------------------------------------- /data/5/stage57.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage57.stg -------------------------------------------------------------------------------- /data/5/stage58.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage58.stg -------------------------------------------------------------------------------- /data/5/stage59.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage59.stg -------------------------------------------------------------------------------- /data/5/stage5a.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage5a.stg -------------------------------------------------------------------------------- /data/5/stage5b.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage5b.stg -------------------------------------------------------------------------------- /data/5/stage5c.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage5c.stg -------------------------------------------------------------------------------- /data/5/stage5d.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage5d.stg -------------------------------------------------------------------------------- /data/5/stage5e.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/5/stage5e.stg -------------------------------------------------------------------------------- /data/main/ArmsItem.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/ArmsItem.bsc -------------------------------------------------------------------------------- /data/main/Credit.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/Credit.bsc -------------------------------------------------------------------------------- /data/main/Credit.crd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/Credit.crd -------------------------------------------------------------------------------- /data/main/StageSel.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/StageSel.bsc -------------------------------------------------------------------------------- /data/main/main.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/main.gfx -------------------------------------------------------------------------------- /data/main/main.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/main.sfx -------------------------------------------------------------------------------- /data/main/npc.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/data/main/npc.tbl -------------------------------------------------------------------------------- /doc/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/doc/screen.png -------------------------------------------------------------------------------- /iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/iso.xml -------------------------------------------------------------------------------- /src/engine/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/common.c -------------------------------------------------------------------------------- /src/engine/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/common.h -------------------------------------------------------------------------------- /src/engine/common_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/common_a.s -------------------------------------------------------------------------------- /src/engine/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/exception.c -------------------------------------------------------------------------------- /src/engine/exception.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void ex_install_handler(void); 4 | -------------------------------------------------------------------------------- /src/engine/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/filesystem.c -------------------------------------------------------------------------------- /src/engine/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/filesystem.h -------------------------------------------------------------------------------- /src/engine/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/graphics.c -------------------------------------------------------------------------------- /src/engine/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/graphics.h -------------------------------------------------------------------------------- /src/engine/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/input.c -------------------------------------------------------------------------------- /src/engine/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/input.h -------------------------------------------------------------------------------- /src/engine/loading.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/loading.inc -------------------------------------------------------------------------------- /src/engine/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/math.c -------------------------------------------------------------------------------- /src/engine/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/math.h -------------------------------------------------------------------------------- /src/engine/mcrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/mcrd.c -------------------------------------------------------------------------------- /src/engine/mcrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/mcrd.h -------------------------------------------------------------------------------- /src/engine/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/memory.c -------------------------------------------------------------------------------- /src/engine/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/memory.h -------------------------------------------------------------------------------- /src/engine/org.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/org.c -------------------------------------------------------------------------------- /src/engine/org.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/org.h -------------------------------------------------------------------------------- /src/engine/saveicon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/saveicon.inc -------------------------------------------------------------------------------- /src/engine/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/sound.c -------------------------------------------------------------------------------- /src/engine/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/sound.h -------------------------------------------------------------------------------- /src/engine/spu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/spu.c -------------------------------------------------------------------------------- /src/engine/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/spu.h -------------------------------------------------------------------------------- /src/engine/surfacelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/surfacelist.h -------------------------------------------------------------------------------- /src/engine/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/timer.c -------------------------------------------------------------------------------- /src/engine/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/engine/timer.h -------------------------------------------------------------------------------- /src/game/boss_act/boss_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act.h -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_balfrog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_balfrog.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_ballos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_ballos.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_core.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_heavy_press.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_heavy_press.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_ironhead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_ironhead.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_monster_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_monster_x.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_omega.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_omega.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_twins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_twins.c -------------------------------------------------------------------------------- /src/game/boss_act/boss_act_undead_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/boss_act/boss_act_undead_core.c -------------------------------------------------------------------------------- /src/game/bullet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/bullet.c -------------------------------------------------------------------------------- /src/game/bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/bullet.h -------------------------------------------------------------------------------- /src/game/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/camera.c -------------------------------------------------------------------------------- /src/game/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/camera.h -------------------------------------------------------------------------------- /src/game/caret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/caret.c -------------------------------------------------------------------------------- /src/game/caret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/caret.h -------------------------------------------------------------------------------- /src/game/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/credits.c -------------------------------------------------------------------------------- /src/game/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/credits.h -------------------------------------------------------------------------------- /src/game/dmgnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/dmgnum.c -------------------------------------------------------------------------------- /src/game/dmgnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/dmgnum.h -------------------------------------------------------------------------------- /src/game/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/game.c -------------------------------------------------------------------------------- /src/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/game.h -------------------------------------------------------------------------------- /src/game/hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/hit.h -------------------------------------------------------------------------------- /src/game/hit_bullet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/hit_bullet.c -------------------------------------------------------------------------------- /src/game/hit_npc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/hit_npc.c -------------------------------------------------------------------------------- /src/game/hit_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/hit_player.c -------------------------------------------------------------------------------- /src/game/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/hud.c -------------------------------------------------------------------------------- /src/game/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/hud.h -------------------------------------------------------------------------------- /src/game/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/menu.c -------------------------------------------------------------------------------- /src/game/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/menu.h -------------------------------------------------------------------------------- /src/game/npc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc.c -------------------------------------------------------------------------------- /src/game/npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc.h -------------------------------------------------------------------------------- /src/game/npc_act/npc_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act.h -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_000.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_020.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_040.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_060.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_060.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_080.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_100.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_120.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_140.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_140.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_160.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_180.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_180.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_200.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_220.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_220.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_240.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_240.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_260.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_260.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_280.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_300.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_320.c -------------------------------------------------------------------------------- /src/game/npc_act/npc_act_340.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npc_act/npc_act_340.c -------------------------------------------------------------------------------- /src/game/npctab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npctab.c -------------------------------------------------------------------------------- /src/game/npctab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/npctab.h -------------------------------------------------------------------------------- /src/game/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/player.c -------------------------------------------------------------------------------- /src/game/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/player.h -------------------------------------------------------------------------------- /src/game/player_arms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/player_arms.c -------------------------------------------------------------------------------- /src/game/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/profile.c -------------------------------------------------------------------------------- /src/game/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/profile.h -------------------------------------------------------------------------------- /src/game/stage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/stage.c -------------------------------------------------------------------------------- /src/game/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/stage.h -------------------------------------------------------------------------------- /src/game/tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/tsc.c -------------------------------------------------------------------------------- /src/game/tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/game/tsc.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/src/main.c -------------------------------------------------------------------------------- /system.cnf: -------------------------------------------------------------------------------- 1 | BOOT=cdrom:\doukutsu.exe;1 2 | TCB=4 3 | EVENT=10 4 | STACK=801FFFF0 5 | -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/data/Fade4bpp.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/data/Fade4bpp.pbm -------------------------------------------------------------------------------- /tools/data/FontAscii.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/data/FontAscii.pbm -------------------------------------------------------------------------------- /tools/data/SaveIcon.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/data/SaveIcon.pbm -------------------------------------------------------------------------------- /tools/make_banks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/make_banks.sh -------------------------------------------------------------------------------- /tools/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/common.h -------------------------------------------------------------------------------- /tools/src/common/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/dr_wav.h -------------------------------------------------------------------------------- /tools/src/common/musiclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/musiclist.h -------------------------------------------------------------------------------- /tools/src/common/stage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/stage.c -------------------------------------------------------------------------------- /tools/src/common/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/stage.h -------------------------------------------------------------------------------- /tools/src/common/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/stb_image.h -------------------------------------------------------------------------------- /tools/src/common/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/stb_image_write.h -------------------------------------------------------------------------------- /tools/src/common/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/surface.c -------------------------------------------------------------------------------- /tools/src/common/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/surface.h -------------------------------------------------------------------------------- /tools/src/common/tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/tsc.c -------------------------------------------------------------------------------- /tools/src/common/tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/tsc.h -------------------------------------------------------------------------------- /tools/src/common/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/vram.c -------------------------------------------------------------------------------- /tools/src/common/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/common/vram.h -------------------------------------------------------------------------------- /tools/src/creditspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/creditspack.c -------------------------------------------------------------------------------- /tools/src/fontgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/fontgen.cpp -------------------------------------------------------------------------------- /tools/src/img2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/img2h.c -------------------------------------------------------------------------------- /tools/src/libpsxav/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/libpsxav/adpcm.c -------------------------------------------------------------------------------- /tools/src/libpsxav/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/libpsxav/cdrom.c -------------------------------------------------------------------------------- /tools/src/libpsxav/libpsxav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/libpsxav/libpsxav.h -------------------------------------------------------------------------------- /tools/src/orgconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/orgconv.c -------------------------------------------------------------------------------- /tools/src/sfxconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/sfxconv.c -------------------------------------------------------------------------------- /tools/src/stagepack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/stagepack.c -------------------------------------------------------------------------------- /tools/src/surfpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/surfpack.c -------------------------------------------------------------------------------- /tools/src/trigcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/trigcalc.c -------------------------------------------------------------------------------- /tools/src/tscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/src/tscc.c -------------------------------------------------------------------------------- /tools/stagelists/stage_all.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/stagelists/stage_all.lst -------------------------------------------------------------------------------- /tools/surflists/surf_main.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/doukutsupsx/HEAD/tools/surflists/surf_main.lst --------------------------------------------------------------------------------