├── .gitattributes ├── .gitignore ├── .travis.yml ├── INSTALL ├── Makefile ├── README.md ├── fonts ├── comicbd.ttf └── tanglewo.ttf ├── graphics ├── arrow.bmp ├── car1.bmp ├── car2.bmp ├── checkpoint.bmp ├── disclaimer.jpg ├── empty.bmp ├── enemycars.bmp ├── explosion.bmp ├── fuel.bmp ├── fuel_scores.bmp ├── gamemap.bmp ├── gameover.jpg ├── goal.bmp ├── konami1.jpg ├── konami2.jpg ├── level1.bmp ├── level2.bmp ├── level3.bmp ├── level4.bmp ├── level5.bmp ├── level6.bmp ├── minicar1.bmp ├── minicar2.bmp ├── obstacles.bmp ├── pause.bmp ├── retroremakes.bmp ├── road.bmp ├── s_board11p.bmp ├── s_board12p.bmp ├── s_board21p.bmp ├── s_board22p.bmp ├── scoreboard.bmp ├── scoreboard_left.bmp ├── semaphore.bmp ├── stage1.jpg ├── stage2.jpg ├── stage3.jpg ├── stage4.jpg ├── stage5.jpg ├── stage6.jpg └── title.jpg ├── maps ├── level1.mg2 ├── level2.mg2 ├── level3.mg2 ├── level4.mg2 ├── level5.mg2 └── level6.mg2 ├── readme.txt ├── screenshot.png ├── sound ├── car_brake.ogg ├── car_crash.ogg ├── car_pass.ogg ├── car_running.ogg ├── car_running.wav ├── car_start.ogg ├── collision.wav ├── fuelempty.ogg ├── game_theme.ogg ├── game_theme2.ogg ├── gameover.ogg ├── greenlight.ogg ├── levelcomplete.ogg ├── logo_in.ogg ├── logo_out.ogg ├── menu_move.wav ├── menu_select.ogg ├── menu_theme.ogg ├── redlight.ogg ├── start.ogg ├── takefuel.ogg ├── truck.ogg └── water.wav └── src ├── CCarObject.cpp ├── CEnemyCarObject.cpp ├── CEnemyFastCarObject.cpp ├── CEnemyNormalCarObject.cpp ├── CEnemyRacerCarObject.cpp ├── CEnemySlidderCarObject.cpp ├── CEnemyTruckObject.cpp ├── CExplosionObject.cpp ├── CFuelObject.cpp ├── CGame.cpp ├── CGame.h ├── CObject.cpp ├── CObject.h ├── CPlayerCarObject.cpp ├── CRoadFighter.cpp ├── CRoadFighter.h ├── CSemaphoreObject.cpp ├── CTile.cpp ├── CTile.h ├── List.h ├── auxiliar.cpp ├── auxiliar.h ├── configuration.cpp ├── debug.cpp ├── debug.h ├── filehandling.cpp ├── filehandling.h ├── gameover_state.cpp ├── interlevel_state.cpp ├── konami_state.cpp ├── loadmg2.cpp ├── main.cpp ├── menu_state.cpp ├── playing_state.cpp ├── presentation_state.cpp ├── quick_tables.cpp ├── sge ├── sge.h ├── sge_blib.cpp ├── sge_blib.h ├── sge_bm_text.cpp ├── sge_bm_text.h ├── sge_collision.cpp ├── sge_collision.h ├── sge_config.h ├── sge_internal.h ├── sge_misc.cpp ├── sge_misc.h ├── sge_primitives.cpp ├── sge_primitives.h ├── sge_rotation.cpp ├── sge_rotation.h ├── sge_shape.cpp ├── sge_shape.h ├── sge_surface.cpp ├── sge_surface.h ├── sge_textpp.cpp ├── sge_textpp.h ├── sge_tt_text.cpp └── sge_tt_text.h ├── sound.cpp └── sound.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/.travis.yml -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | build/linux/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | build/linux/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/README.md -------------------------------------------------------------------------------- /fonts/comicbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/fonts/comicbd.ttf -------------------------------------------------------------------------------- /fonts/tanglewo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/fonts/tanglewo.ttf -------------------------------------------------------------------------------- /graphics/arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/arrow.bmp -------------------------------------------------------------------------------- /graphics/car1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/car1.bmp -------------------------------------------------------------------------------- /graphics/car2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/car2.bmp -------------------------------------------------------------------------------- /graphics/checkpoint.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/checkpoint.bmp -------------------------------------------------------------------------------- /graphics/disclaimer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/disclaimer.jpg -------------------------------------------------------------------------------- /graphics/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/empty.bmp -------------------------------------------------------------------------------- /graphics/enemycars.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/enemycars.bmp -------------------------------------------------------------------------------- /graphics/explosion.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/explosion.bmp -------------------------------------------------------------------------------- /graphics/fuel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/fuel.bmp -------------------------------------------------------------------------------- /graphics/fuel_scores.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/fuel_scores.bmp -------------------------------------------------------------------------------- /graphics/gamemap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/gamemap.bmp -------------------------------------------------------------------------------- /graphics/gameover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/gameover.jpg -------------------------------------------------------------------------------- /graphics/goal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/goal.bmp -------------------------------------------------------------------------------- /graphics/konami1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/konami1.jpg -------------------------------------------------------------------------------- /graphics/konami2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/konami2.jpg -------------------------------------------------------------------------------- /graphics/level1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/level1.bmp -------------------------------------------------------------------------------- /graphics/level2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/level2.bmp -------------------------------------------------------------------------------- /graphics/level3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/level3.bmp -------------------------------------------------------------------------------- /graphics/level4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/level4.bmp -------------------------------------------------------------------------------- /graphics/level5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/level5.bmp -------------------------------------------------------------------------------- /graphics/level6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/level6.bmp -------------------------------------------------------------------------------- /graphics/minicar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/minicar1.bmp -------------------------------------------------------------------------------- /graphics/minicar2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/minicar2.bmp -------------------------------------------------------------------------------- /graphics/obstacles.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/obstacles.bmp -------------------------------------------------------------------------------- /graphics/pause.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/pause.bmp -------------------------------------------------------------------------------- /graphics/retroremakes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/retroremakes.bmp -------------------------------------------------------------------------------- /graphics/road.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/road.bmp -------------------------------------------------------------------------------- /graphics/s_board11p.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/s_board11p.bmp -------------------------------------------------------------------------------- /graphics/s_board12p.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/s_board12p.bmp -------------------------------------------------------------------------------- /graphics/s_board21p.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/s_board21p.bmp -------------------------------------------------------------------------------- /graphics/s_board22p.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/s_board22p.bmp -------------------------------------------------------------------------------- /graphics/scoreboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/scoreboard.bmp -------------------------------------------------------------------------------- /graphics/scoreboard_left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/scoreboard_left.bmp -------------------------------------------------------------------------------- /graphics/semaphore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/semaphore.bmp -------------------------------------------------------------------------------- /graphics/stage1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/stage1.jpg -------------------------------------------------------------------------------- /graphics/stage2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/stage2.jpg -------------------------------------------------------------------------------- /graphics/stage3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/stage3.jpg -------------------------------------------------------------------------------- /graphics/stage4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/stage4.jpg -------------------------------------------------------------------------------- /graphics/stage5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/stage5.jpg -------------------------------------------------------------------------------- /graphics/stage6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/stage6.jpg -------------------------------------------------------------------------------- /graphics/title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/graphics/title.jpg -------------------------------------------------------------------------------- /maps/level1.mg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/maps/level1.mg2 -------------------------------------------------------------------------------- /maps/level2.mg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/maps/level2.mg2 -------------------------------------------------------------------------------- /maps/level3.mg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/maps/level3.mg2 -------------------------------------------------------------------------------- /maps/level4.mg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/maps/level4.mg2 -------------------------------------------------------------------------------- /maps/level5.mg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/maps/level5.mg2 -------------------------------------------------------------------------------- /maps/level6.mg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/maps/level6.mg2 -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/screenshot.png -------------------------------------------------------------------------------- /sound/car_brake.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/car_brake.ogg -------------------------------------------------------------------------------- /sound/car_crash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/car_crash.ogg -------------------------------------------------------------------------------- /sound/car_pass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/car_pass.ogg -------------------------------------------------------------------------------- /sound/car_running.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/car_running.ogg -------------------------------------------------------------------------------- /sound/car_running.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/car_running.wav -------------------------------------------------------------------------------- /sound/car_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/car_start.ogg -------------------------------------------------------------------------------- /sound/collision.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/collision.wav -------------------------------------------------------------------------------- /sound/fuelempty.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/fuelempty.ogg -------------------------------------------------------------------------------- /sound/game_theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/game_theme.ogg -------------------------------------------------------------------------------- /sound/game_theme2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/game_theme2.ogg -------------------------------------------------------------------------------- /sound/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/gameover.ogg -------------------------------------------------------------------------------- /sound/greenlight.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/greenlight.ogg -------------------------------------------------------------------------------- /sound/levelcomplete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/levelcomplete.ogg -------------------------------------------------------------------------------- /sound/logo_in.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/logo_in.ogg -------------------------------------------------------------------------------- /sound/logo_out.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/logo_out.ogg -------------------------------------------------------------------------------- /sound/menu_move.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/menu_move.wav -------------------------------------------------------------------------------- /sound/menu_select.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/menu_select.ogg -------------------------------------------------------------------------------- /sound/menu_theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/menu_theme.ogg -------------------------------------------------------------------------------- /sound/redlight.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/redlight.ogg -------------------------------------------------------------------------------- /sound/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/start.ogg -------------------------------------------------------------------------------- /sound/takefuel.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/takefuel.ogg -------------------------------------------------------------------------------- /sound/truck.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/truck.ogg -------------------------------------------------------------------------------- /sound/water.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/sound/water.wav -------------------------------------------------------------------------------- /src/CCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CCarObject.cpp -------------------------------------------------------------------------------- /src/CEnemyCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CEnemyCarObject.cpp -------------------------------------------------------------------------------- /src/CEnemyFastCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CEnemyFastCarObject.cpp -------------------------------------------------------------------------------- /src/CEnemyNormalCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CEnemyNormalCarObject.cpp -------------------------------------------------------------------------------- /src/CEnemyRacerCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CEnemyRacerCarObject.cpp -------------------------------------------------------------------------------- /src/CEnemySlidderCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CEnemySlidderCarObject.cpp -------------------------------------------------------------------------------- /src/CEnemyTruckObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CEnemyTruckObject.cpp -------------------------------------------------------------------------------- /src/CExplosionObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CExplosionObject.cpp -------------------------------------------------------------------------------- /src/CFuelObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CFuelObject.cpp -------------------------------------------------------------------------------- /src/CGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CGame.cpp -------------------------------------------------------------------------------- /src/CGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CGame.h -------------------------------------------------------------------------------- /src/CObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CObject.cpp -------------------------------------------------------------------------------- /src/CObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CObject.h -------------------------------------------------------------------------------- /src/CPlayerCarObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CPlayerCarObject.cpp -------------------------------------------------------------------------------- /src/CRoadFighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CRoadFighter.cpp -------------------------------------------------------------------------------- /src/CRoadFighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CRoadFighter.h -------------------------------------------------------------------------------- /src/CSemaphoreObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CSemaphoreObject.cpp -------------------------------------------------------------------------------- /src/CTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CTile.cpp -------------------------------------------------------------------------------- /src/CTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/CTile.h -------------------------------------------------------------------------------- /src/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/List.h -------------------------------------------------------------------------------- /src/auxiliar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/auxiliar.cpp -------------------------------------------------------------------------------- /src/auxiliar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/auxiliar.h -------------------------------------------------------------------------------- /src/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/configuration.cpp -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/filehandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/filehandling.cpp -------------------------------------------------------------------------------- /src/filehandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/filehandling.h -------------------------------------------------------------------------------- /src/gameover_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/gameover_state.cpp -------------------------------------------------------------------------------- /src/interlevel_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/interlevel_state.cpp -------------------------------------------------------------------------------- /src/konami_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/konami_state.cpp -------------------------------------------------------------------------------- /src/loadmg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/loadmg2.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/menu_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/menu_state.cpp -------------------------------------------------------------------------------- /src/playing_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/playing_state.cpp -------------------------------------------------------------------------------- /src/presentation_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/presentation_state.cpp -------------------------------------------------------------------------------- /src/quick_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/quick_tables.cpp -------------------------------------------------------------------------------- /src/sge/sge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge.h -------------------------------------------------------------------------------- /src/sge/sge_blib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_blib.cpp -------------------------------------------------------------------------------- /src/sge/sge_blib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_blib.h -------------------------------------------------------------------------------- /src/sge/sge_bm_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_bm_text.cpp -------------------------------------------------------------------------------- /src/sge/sge_bm_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_bm_text.h -------------------------------------------------------------------------------- /src/sge/sge_collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_collision.cpp -------------------------------------------------------------------------------- /src/sge/sge_collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_collision.h -------------------------------------------------------------------------------- /src/sge/sge_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_config.h -------------------------------------------------------------------------------- /src/sge/sge_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_internal.h -------------------------------------------------------------------------------- /src/sge/sge_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_misc.cpp -------------------------------------------------------------------------------- /src/sge/sge_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_misc.h -------------------------------------------------------------------------------- /src/sge/sge_primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_primitives.cpp -------------------------------------------------------------------------------- /src/sge/sge_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_primitives.h -------------------------------------------------------------------------------- /src/sge/sge_rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_rotation.cpp -------------------------------------------------------------------------------- /src/sge/sge_rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_rotation.h -------------------------------------------------------------------------------- /src/sge/sge_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_shape.cpp -------------------------------------------------------------------------------- /src/sge/sge_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_shape.h -------------------------------------------------------------------------------- /src/sge/sge_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_surface.cpp -------------------------------------------------------------------------------- /src/sge/sge_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_surface.h -------------------------------------------------------------------------------- /src/sge/sge_textpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_textpp.cpp -------------------------------------------------------------------------------- /src/sge/sge_textpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_textpp.h -------------------------------------------------------------------------------- /src/sge/sge_tt_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_tt_text.cpp -------------------------------------------------------------------------------- /src/sge/sge_tt_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sge/sge_tt_text.h -------------------------------------------------------------------------------- /src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sound.cpp -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptitSeb/roadfighter/HEAD/src/sound.h --------------------------------------------------------------------------------