├── .gitignore ├── HOWTO.md ├── Makefile ├── README.md ├── art ├── 256 │ ├── JPN.png │ ├── PAL_BANNER.png │ ├── PAL_NO_BANNER.png │ ├── US1.png │ └── US2.png ├── 600 │ ├── JPN.png │ ├── PAL_BANNER.png │ ├── PAL_NO_BANNER.png │ ├── US1.png │ └── US2.png ├── 1400 │ ├── JPN.png │ ├── PAL_BANNER.png │ ├── PAL_NO_BANNER.png │ ├── US1.png │ └── US2.png └── PVR │ ├── JPN_0GDTEX.PVR │ ├── PAL_0GDTEX.PVR │ ├── PAL_NO_BANNER_0GDTEX.PVR │ ├── US1_0GDTEX.PVR │ └── US2_0GDTEX.PVR ├── asmfuncs.S ├── dcpad.bin ├── sonic.raw └── src ├── alloc.c ├── alloc.h ├── input.c ├── input.h ├── mem.c ├── mem.h ├── owl.h ├── platform.h ├── platform_dc.c ├── render.h ├── render_dc.c ├── sndwav.c ├── sndwav.h ├── system.c ├── system.h ├── types.h ├── types_dc.c ├── utils.c ├── utils.h ├── vmu.c ├── vmudata.h └── wipeout ├── camera.c ├── camera.h ├── droid.c ├── droid.h ├── game.c ├── game.h ├── hud.c ├── hud.h ├── image.c ├── image.h ├── ingame_menus.c ├── ingame_menus.h ├── intro.c ├── intro.h ├── main_menu.c ├── main_menu.h ├── menu.c ├── menu.h ├── object.c ├── object.h ├── particle.c ├── particle.h ├── race.c ├── race.h ├── scene.c ├── scene.h ├── sfx.c ├── sfx.h ├── ship.c ├── ship.h ├── ship_ai.c ├── ship_ai.h ├── ship_player.c ├── ship_player.h ├── title.c ├── title.h ├── track.c ├── track.h ├── ui.c ├── ui.h ├── weapon.c └── weapon.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/.gitignore -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/HOWTO.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/README.md -------------------------------------------------------------------------------- /art/1400/JPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/1400/JPN.png -------------------------------------------------------------------------------- /art/1400/PAL_BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/1400/PAL_BANNER.png -------------------------------------------------------------------------------- /art/1400/PAL_NO_BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/1400/PAL_NO_BANNER.png -------------------------------------------------------------------------------- /art/1400/US1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/1400/US1.png -------------------------------------------------------------------------------- /art/1400/US2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/1400/US2.png -------------------------------------------------------------------------------- /art/256/JPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/256/JPN.png -------------------------------------------------------------------------------- /art/256/PAL_BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/256/PAL_BANNER.png -------------------------------------------------------------------------------- /art/256/PAL_NO_BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/256/PAL_NO_BANNER.png -------------------------------------------------------------------------------- /art/256/US1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/256/US1.png -------------------------------------------------------------------------------- /art/256/US2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/256/US2.png -------------------------------------------------------------------------------- /art/600/JPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/600/JPN.png -------------------------------------------------------------------------------- /art/600/PAL_BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/600/PAL_BANNER.png -------------------------------------------------------------------------------- /art/600/PAL_NO_BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/600/PAL_NO_BANNER.png -------------------------------------------------------------------------------- /art/600/US1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/600/US1.png -------------------------------------------------------------------------------- /art/600/US2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/600/US2.png -------------------------------------------------------------------------------- /art/PVR/JPN_0GDTEX.PVR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/PVR/JPN_0GDTEX.PVR -------------------------------------------------------------------------------- /art/PVR/PAL_0GDTEX.PVR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/PVR/PAL_0GDTEX.PVR -------------------------------------------------------------------------------- /art/PVR/PAL_NO_BANNER_0GDTEX.PVR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/PVR/PAL_NO_BANNER_0GDTEX.PVR -------------------------------------------------------------------------------- /art/PVR/US1_0GDTEX.PVR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/PVR/US1_0GDTEX.PVR -------------------------------------------------------------------------------- /art/PVR/US2_0GDTEX.PVR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/art/PVR/US2_0GDTEX.PVR -------------------------------------------------------------------------------- /asmfuncs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/asmfuncs.S -------------------------------------------------------------------------------- /dcpad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/dcpad.bin -------------------------------------------------------------------------------- /sonic.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/sonic.raw -------------------------------------------------------------------------------- /src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/alloc.c -------------------------------------------------------------------------------- /src/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/alloc.h -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/input.c -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/input.h -------------------------------------------------------------------------------- /src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/mem.c -------------------------------------------------------------------------------- /src/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/mem.h -------------------------------------------------------------------------------- /src/owl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/owl.h -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/platform_dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/platform_dc.c -------------------------------------------------------------------------------- /src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/render.h -------------------------------------------------------------------------------- /src/render_dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/render_dc.c -------------------------------------------------------------------------------- /src/sndwav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/sndwav.c -------------------------------------------------------------------------------- /src/sndwav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/sndwav.h -------------------------------------------------------------------------------- /src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/system.c -------------------------------------------------------------------------------- /src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/system.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/types.h -------------------------------------------------------------------------------- /src/types_dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/types_dc.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/vmu.c -------------------------------------------------------------------------------- /src/vmudata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/vmudata.h -------------------------------------------------------------------------------- /src/wipeout/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/camera.c -------------------------------------------------------------------------------- /src/wipeout/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/camera.h -------------------------------------------------------------------------------- /src/wipeout/droid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/droid.c -------------------------------------------------------------------------------- /src/wipeout/droid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/droid.h -------------------------------------------------------------------------------- /src/wipeout/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/game.c -------------------------------------------------------------------------------- /src/wipeout/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/game.h -------------------------------------------------------------------------------- /src/wipeout/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/hud.c -------------------------------------------------------------------------------- /src/wipeout/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/hud.h -------------------------------------------------------------------------------- /src/wipeout/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/image.c -------------------------------------------------------------------------------- /src/wipeout/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/image.h -------------------------------------------------------------------------------- /src/wipeout/ingame_menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ingame_menus.c -------------------------------------------------------------------------------- /src/wipeout/ingame_menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ingame_menus.h -------------------------------------------------------------------------------- /src/wipeout/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/intro.c -------------------------------------------------------------------------------- /src/wipeout/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/intro.h -------------------------------------------------------------------------------- /src/wipeout/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/main_menu.c -------------------------------------------------------------------------------- /src/wipeout/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/main_menu.h -------------------------------------------------------------------------------- /src/wipeout/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/menu.c -------------------------------------------------------------------------------- /src/wipeout/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/menu.h -------------------------------------------------------------------------------- /src/wipeout/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/object.c -------------------------------------------------------------------------------- /src/wipeout/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/object.h -------------------------------------------------------------------------------- /src/wipeout/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/particle.c -------------------------------------------------------------------------------- /src/wipeout/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/particle.h -------------------------------------------------------------------------------- /src/wipeout/race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/race.c -------------------------------------------------------------------------------- /src/wipeout/race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/race.h -------------------------------------------------------------------------------- /src/wipeout/scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/scene.c -------------------------------------------------------------------------------- /src/wipeout/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/scene.h -------------------------------------------------------------------------------- /src/wipeout/sfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/sfx.c -------------------------------------------------------------------------------- /src/wipeout/sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/sfx.h -------------------------------------------------------------------------------- /src/wipeout/ship.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ship.c -------------------------------------------------------------------------------- /src/wipeout/ship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ship.h -------------------------------------------------------------------------------- /src/wipeout/ship_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ship_ai.c -------------------------------------------------------------------------------- /src/wipeout/ship_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ship_ai.h -------------------------------------------------------------------------------- /src/wipeout/ship_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ship_player.c -------------------------------------------------------------------------------- /src/wipeout/ship_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ship_player.h -------------------------------------------------------------------------------- /src/wipeout/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/title.c -------------------------------------------------------------------------------- /src/wipeout/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/title.h -------------------------------------------------------------------------------- /src/wipeout/track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/track.c -------------------------------------------------------------------------------- /src/wipeout/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/track.h -------------------------------------------------------------------------------- /src/wipeout/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ui.c -------------------------------------------------------------------------------- /src/wipeout/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/ui.h -------------------------------------------------------------------------------- /src/wipeout/weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/weapon.c -------------------------------------------------------------------------------- /src/wipeout/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnmartin84/wipeout-dc/HEAD/src/wipeout/weapon.h --------------------------------------------------------------------------------