├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ └── CI.yml ├── .gitignore ├── .travis.yml ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── DreeRally.sln ├── DreeRally.vcxproj ├── DreeRally.vcxproj.filters ├── FUNDING.yml ├── LICENSE-CC-BY-4.0.md ├── MINGW32 ├── includes │ ├── ._SDL.h │ ├── ._SDL_active.h │ ├── ._SDL_audio.h │ ├── ._SDL_byteorder.h │ ├── ._SDL_cdrom.h │ ├── ._SDL_config.h │ ├── ._SDL_copying.h │ ├── ._SDL_cpuinfo.h │ ├── ._SDL_endian.h │ ├── ._SDL_error.h │ ├── ._SDL_events.h │ ├── ._SDL_getenv.h │ ├── ._SDL_joystick.h │ ├── ._SDL_keyboard.h │ ├── ._SDL_keysym.h │ ├── ._SDL_loadso.h │ ├── ._SDL_main.h │ ├── ._SDL_mouse.h │ ├── ._SDL_mutex.h │ ├── ._SDL_name.h │ ├── ._SDL_opengl.h │ ├── ._SDL_platform.h │ ├── ._SDL_quit.h │ ├── ._SDL_rwops.h │ ├── ._SDL_stdinc.h │ ├── ._SDL_syswm.h │ ├── ._SDL_thread.h │ ├── ._SDL_timer.h │ ├── ._SDL_types.h │ ├── ._SDL_version.h │ ├── ._SDL_video.h │ ├── SDL.h │ ├── SDL_active.h │ ├── SDL_audio.h │ ├── SDL_byteorder.h │ ├── SDL_cdrom.h │ ├── SDL_config.h │ ├── SDL_config_win32.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_getenv.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keysym.h │ ├── SDL_loadso.h │ ├── SDL_main.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_platform.h │ ├── SDL_quit.h │ ├── SDL_rwops.h │ ├── SDL_stdinc.h │ ├── SDL_syswm.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ ├── close_code.h │ └── fmod.h └── libs │ ├── fmodvc.lib │ ├── libSDL.dll.a │ ├── libSDL.la │ └── libSDLmain.a ├── Makefile.linux ├── Makefile.test ├── README.md ├── appveyor.yml ├── asset ├── bpaUtil.c ├── bpaUtil.h ├── haf.c └── haf.h ├── cars.c ├── cars.h ├── circuit.c ├── circuit.h ├── compile ├── config.c ├── config.h ├── defs.h ├── doc.h ├── doc ├── CHANGELOG.md └── CONTRIBUTING.md ├── dr.c ├── dr.h ├── drivers.c ├── drivers.h ├── graphics.c ├── graphics.h ├── i18n ├── i18n.c └── i18n.h ├── imageUtil.c ├── imageUtil.h ├── lang ├── langBr.txt ├── langEs.txt └── langIt.txt ├── libincludes ├── SDL.h ├── SDL_active.h ├── SDL_audio.h ├── SDL_byteorder.h ├── SDL_cdrom.h ├── SDL_config.h ├── SDL_config_dreamcast.h ├── SDL_config_macos.h ├── SDL_config_macosx.h ├── SDL_config_minimal.h ├── SDL_config_nds.h ├── SDL_config_os2.h ├── SDL_config_symbian.h ├── SDL_config_win32.h ├── SDL_copying.h ├── SDL_cpuinfo.h ├── SDL_endian.h ├── SDL_error.h ├── SDL_events.h ├── SDL_getenv.h ├── SDL_joystick.h ├── SDL_keyboard.h ├── SDL_keysym.h ├── SDL_loadso.h ├── SDL_main.h ├── SDL_main.h.gch ├── SDL_mouse.h ├── SDL_mutex.h ├── SDL_name.h ├── SDL_opengl.h ├── SDL_platform.h ├── SDL_quit.h ├── SDL_rwops.h ├── SDL_stdinc.h ├── SDL_syswm.h ├── SDL_thread.h ├── SDL_timer.h ├── SDL_types.h ├── SDL_version.h ├── SDL_video.h ├── begin_code.h ├── close_code.h ├── minifmod │ ├── Mixer.h │ ├── Music.h │ ├── Sound.h │ ├── fmod.h │ ├── minifmod.h │ ├── mixer_clipcopy.h │ ├── mixer_fpu_ramp.h │ ├── music_formatxm.h │ ├── system_file.h │ ├── system_memory.h │ └── xmeffects.h └── system_memory.h ├── libs ├── SDL.lib ├── SDLmain.lib ├── Winmm.lib ├── fmodvc.lib └── minifmod.lib ├── linux ├── includes │ ├── SDL.h │ ├── SDL_active.h │ ├── SDL_audio.h │ ├── SDL_byteorder.h │ ├── SDL_cdrom.h │ ├── SDL_config.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_getenv.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keysym.h │ ├── SDL_loadso.h │ ├── SDL_main.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_platform.h │ ├── SDL_quit.h │ ├── SDL_rwops.h │ ├── SDL_stdinc.h │ ├── SDL_syswm.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ └── close_code.h └── libs │ ├── libSDL.a │ ├── libSDL.la │ ├── libSDL.so │ ├── libSDLmain.a │ ├── libSDLmain.la │ └── libfmod-3.75.so ├── mod ├── mod.c └── mod.h ├── mods └── sample │ ├── config.txt │ └── files │ └── donotdelete.txt ├── multiplayer └── multiplayer.c ├── portability ├── portability.c └── portability.h ├── race ├── 3dSystem.c ├── 3dSystem.h ├── endFlag.c ├── endFlag.h ├── leftBar.c ├── leftBar.h ├── lightSystem.c ├── lightSystem.h ├── pedestrian.c ├── pedestrian.h ├── powerup.c ├── powerup.h └── terrain.h ├── raceParticipant.c ├── raceParticipant.h ├── savegame.c ├── savegame.h ├── sfx ├── minifmod │ ├── fmod.h │ ├── soundSystem.c │ ├── soundSystem.h │ ├── system_memory.h │ └── xmeffects.h ├── sound.c ├── sound.h └── soundEffects.h ├── system_file.h ├── tools ├── bkpdecryptor.py ├── bpaextractor.py ├── music.py ├── savegameCrypt.py ├── savegameDecrypt.py ├── sharewareSavegameCrypt.py └── sharewareSavegameDecrypt.py ├── ui ├── blackMarketScreen.c ├── blackMarketScreen.h ├── creditsScreen.c ├── creditsScreen.h ├── endGameScreen.c ├── endGameScreen.h ├── hallOfFame.c ├── hallOfFame.h ├── licenseScreen.c ├── licenseScreen.h ├── loadSaveGameScreen.c ├── loadSaveGameScreen.h ├── mainScreen.c ├── mainScreen.h ├── menu.c ├── menu.h ├── prevRaceScreen.c ├── prevRaceScreen.h ├── raceResultsScreen.c ├── raceResultsScreen.h ├── selectRaceScreen.c ├── selectRaceScreen.h ├── shopScreen.c ├── shopScreen.h ├── startGameScreen.c ├── startGameScreen.h └── util │ ├── anim.c │ ├── anim.h │ ├── bottomText.c │ ├── bottomText.h │ ├── carRightSide.c │ ├── carRightSide.h │ ├── input.c │ ├── input.h │ ├── menus.c │ ├── menus.h │ ├── popup.c │ ├── popup.h │ ├── raceResults.c │ └── raceResults.h ├── util.c ├── util.h ├── util ├── hash.c └── hash.h └── variables.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /DreeRally.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/DreeRally.sln -------------------------------------------------------------------------------- /DreeRally.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/DreeRally.vcxproj -------------------------------------------------------------------------------- /DreeRally.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/DreeRally.vcxproj.filters -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE-CC-BY-4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/LICENSE-CC-BY-4.0.md -------------------------------------------------------------------------------- /MINGW32/includes/._SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_active.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_audio.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_byteorder.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_cdrom.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_config.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_copying.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_cpuinfo.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_endian.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_error.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_events.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_getenv.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_joystick.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_keyboard.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_keysym.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_loadso.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_main.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_mouse.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_mutex.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_name.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_opengl.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_platform.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_quit.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_rwops.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_stdinc.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_syswm.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_thread.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_timer.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_types.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_version.h -------------------------------------------------------------------------------- /MINGW32/includes/._SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/._SDL_video.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_active.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_audio.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_byteorder.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_cdrom.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_config.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_config_win32.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_copying.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_cpuinfo.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_endian.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_error.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_events.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_getenv.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_joystick.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_keyboard.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_keysym.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_loadso.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_main.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_mouse.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_mutex.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_name.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_opengl.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_platform.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_quit.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_rwops.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_stdinc.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_syswm.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_thread.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_timer.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_types.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_version.h -------------------------------------------------------------------------------- /MINGW32/includes/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/SDL_video.h -------------------------------------------------------------------------------- /MINGW32/includes/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/begin_code.h -------------------------------------------------------------------------------- /MINGW32/includes/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/close_code.h -------------------------------------------------------------------------------- /MINGW32/includes/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/includes/fmod.h -------------------------------------------------------------------------------- /MINGW32/libs/fmodvc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/libs/fmodvc.lib -------------------------------------------------------------------------------- /MINGW32/libs/libSDL.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/libs/libSDL.dll.a -------------------------------------------------------------------------------- /MINGW32/libs/libSDL.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/libs/libSDL.la -------------------------------------------------------------------------------- /MINGW32/libs/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/MINGW32/libs/libSDLmain.a -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/Makefile.linux -------------------------------------------------------------------------------- /Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/Makefile.test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/appveyor.yml -------------------------------------------------------------------------------- /asset/bpaUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/asset/bpaUtil.c -------------------------------------------------------------------------------- /asset/bpaUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/asset/bpaUtil.h -------------------------------------------------------------------------------- /asset/haf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/asset/haf.c -------------------------------------------------------------------------------- /asset/haf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/asset/haf.h -------------------------------------------------------------------------------- /cars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/cars.c -------------------------------------------------------------------------------- /cars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/cars.h -------------------------------------------------------------------------------- /circuit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/circuit.c -------------------------------------------------------------------------------- /circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/circuit.h -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/compile -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/config.h -------------------------------------------------------------------------------- /defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/defs.h -------------------------------------------------------------------------------- /doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/doc.h -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # DreeRally Changelog 2 | 3 | ### January 15, 2019 4 | - Initial release 5 | 6 | -------------------------------------------------------------------------------- /doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /dr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/dr.c -------------------------------------------------------------------------------- /dr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/dr.h -------------------------------------------------------------------------------- /drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/drivers.c -------------------------------------------------------------------------------- /drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/drivers.h -------------------------------------------------------------------------------- /graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/graphics.c -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/graphics.h -------------------------------------------------------------------------------- /i18n/i18n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/i18n/i18n.c -------------------------------------------------------------------------------- /i18n/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/i18n/i18n.h -------------------------------------------------------------------------------- /imageUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/imageUtil.c -------------------------------------------------------------------------------- /imageUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/imageUtil.h -------------------------------------------------------------------------------- /lang/langBr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/lang/langBr.txt -------------------------------------------------------------------------------- /lang/langEs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/lang/langEs.txt -------------------------------------------------------------------------------- /lang/langIt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/lang/langIt.txt -------------------------------------------------------------------------------- /libincludes/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL.h -------------------------------------------------------------------------------- /libincludes/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_active.h -------------------------------------------------------------------------------- /libincludes/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_audio.h -------------------------------------------------------------------------------- /libincludes/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_byteorder.h -------------------------------------------------------------------------------- /libincludes/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_cdrom.h -------------------------------------------------------------------------------- /libincludes/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config.h -------------------------------------------------------------------------------- /libincludes/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /libincludes/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_macos.h -------------------------------------------------------------------------------- /libincludes/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_macosx.h -------------------------------------------------------------------------------- /libincludes/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_minimal.h -------------------------------------------------------------------------------- /libincludes/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_nds.h -------------------------------------------------------------------------------- /libincludes/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_os2.h -------------------------------------------------------------------------------- /libincludes/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_symbian.h -------------------------------------------------------------------------------- /libincludes/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_config_win32.h -------------------------------------------------------------------------------- /libincludes/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_copying.h -------------------------------------------------------------------------------- /libincludes/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libincludes/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_endian.h -------------------------------------------------------------------------------- /libincludes/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_error.h -------------------------------------------------------------------------------- /libincludes/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_events.h -------------------------------------------------------------------------------- /libincludes/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_getenv.h -------------------------------------------------------------------------------- /libincludes/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_joystick.h -------------------------------------------------------------------------------- /libincludes/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_keyboard.h -------------------------------------------------------------------------------- /libincludes/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_keysym.h -------------------------------------------------------------------------------- /libincludes/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_loadso.h -------------------------------------------------------------------------------- /libincludes/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_main.h -------------------------------------------------------------------------------- /libincludes/SDL_main.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_main.h.gch -------------------------------------------------------------------------------- /libincludes/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_mouse.h -------------------------------------------------------------------------------- /libincludes/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_mutex.h -------------------------------------------------------------------------------- /libincludes/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_name.h -------------------------------------------------------------------------------- /libincludes/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_opengl.h -------------------------------------------------------------------------------- /libincludes/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_platform.h -------------------------------------------------------------------------------- /libincludes/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_quit.h -------------------------------------------------------------------------------- /libincludes/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_rwops.h -------------------------------------------------------------------------------- /libincludes/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_stdinc.h -------------------------------------------------------------------------------- /libincludes/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_syswm.h -------------------------------------------------------------------------------- /libincludes/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_thread.h -------------------------------------------------------------------------------- /libincludes/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_timer.h -------------------------------------------------------------------------------- /libincludes/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_types.h -------------------------------------------------------------------------------- /libincludes/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_version.h -------------------------------------------------------------------------------- /libincludes/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/SDL_video.h -------------------------------------------------------------------------------- /libincludes/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/begin_code.h -------------------------------------------------------------------------------- /libincludes/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/close_code.h -------------------------------------------------------------------------------- /libincludes/minifmod/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/Mixer.h -------------------------------------------------------------------------------- /libincludes/minifmod/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/Music.h -------------------------------------------------------------------------------- /libincludes/minifmod/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/Sound.h -------------------------------------------------------------------------------- /libincludes/minifmod/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/fmod.h -------------------------------------------------------------------------------- /libincludes/minifmod/minifmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/minifmod.h -------------------------------------------------------------------------------- /libincludes/minifmod/mixer_clipcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/mixer_clipcopy.h -------------------------------------------------------------------------------- /libincludes/minifmod/mixer_fpu_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/mixer_fpu_ramp.h -------------------------------------------------------------------------------- /libincludes/minifmod/music_formatxm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/music_formatxm.h -------------------------------------------------------------------------------- /libincludes/minifmod/system_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/system_file.h -------------------------------------------------------------------------------- /libincludes/minifmod/system_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/system_memory.h -------------------------------------------------------------------------------- /libincludes/minifmod/xmeffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/minifmod/xmeffects.h -------------------------------------------------------------------------------- /libincludes/system_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libincludes/system_memory.h -------------------------------------------------------------------------------- /libs/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libs/SDL.lib -------------------------------------------------------------------------------- /libs/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libs/SDLmain.lib -------------------------------------------------------------------------------- /libs/Winmm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libs/Winmm.lib -------------------------------------------------------------------------------- /libs/fmodvc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libs/fmodvc.lib -------------------------------------------------------------------------------- /libs/minifmod.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/libs/minifmod.lib -------------------------------------------------------------------------------- /linux/includes/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL.h -------------------------------------------------------------------------------- /linux/includes/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_active.h -------------------------------------------------------------------------------- /linux/includes/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_audio.h -------------------------------------------------------------------------------- /linux/includes/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_byteorder.h -------------------------------------------------------------------------------- /linux/includes/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_cdrom.h -------------------------------------------------------------------------------- /linux/includes/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_config.h -------------------------------------------------------------------------------- /linux/includes/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_cpuinfo.h -------------------------------------------------------------------------------- /linux/includes/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_endian.h -------------------------------------------------------------------------------- /linux/includes/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_error.h -------------------------------------------------------------------------------- /linux/includes/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_events.h -------------------------------------------------------------------------------- /linux/includes/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_getenv.h -------------------------------------------------------------------------------- /linux/includes/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_joystick.h -------------------------------------------------------------------------------- /linux/includes/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_keyboard.h -------------------------------------------------------------------------------- /linux/includes/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_keysym.h -------------------------------------------------------------------------------- /linux/includes/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_loadso.h -------------------------------------------------------------------------------- /linux/includes/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_main.h -------------------------------------------------------------------------------- /linux/includes/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_mouse.h -------------------------------------------------------------------------------- /linux/includes/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_mutex.h -------------------------------------------------------------------------------- /linux/includes/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_name.h -------------------------------------------------------------------------------- /linux/includes/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_opengl.h -------------------------------------------------------------------------------- /linux/includes/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_platform.h -------------------------------------------------------------------------------- /linux/includes/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_quit.h -------------------------------------------------------------------------------- /linux/includes/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_rwops.h -------------------------------------------------------------------------------- /linux/includes/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_stdinc.h -------------------------------------------------------------------------------- /linux/includes/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_syswm.h -------------------------------------------------------------------------------- /linux/includes/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_thread.h -------------------------------------------------------------------------------- /linux/includes/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_timer.h -------------------------------------------------------------------------------- /linux/includes/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_types.h -------------------------------------------------------------------------------- /linux/includes/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_version.h -------------------------------------------------------------------------------- /linux/includes/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/SDL_video.h -------------------------------------------------------------------------------- /linux/includes/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/begin_code.h -------------------------------------------------------------------------------- /linux/includes/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/includes/close_code.h -------------------------------------------------------------------------------- /linux/libs/libSDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/libs/libSDL.a -------------------------------------------------------------------------------- /linux/libs/libSDL.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/libs/libSDL.la -------------------------------------------------------------------------------- /linux/libs/libSDL.so: -------------------------------------------------------------------------------- 1 | libSDL-1.2.so.0.11.4 -------------------------------------------------------------------------------- /linux/libs/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/libs/libSDLmain.a -------------------------------------------------------------------------------- /linux/libs/libSDLmain.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/libs/libSDLmain.la -------------------------------------------------------------------------------- /linux/libs/libfmod-3.75.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/linux/libs/libfmod-3.75.so -------------------------------------------------------------------------------- /mod/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/mod/mod.c -------------------------------------------------------------------------------- /mod/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/mod/mod.h -------------------------------------------------------------------------------- /mods/sample/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/mods/sample/config.txt -------------------------------------------------------------------------------- /mods/sample/files/donotdelete.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiplayer/multiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/multiplayer/multiplayer.c -------------------------------------------------------------------------------- /portability/portability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/portability/portability.c -------------------------------------------------------------------------------- /portability/portability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/portability/portability.h -------------------------------------------------------------------------------- /race/3dSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/3dSystem.c -------------------------------------------------------------------------------- /race/3dSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/3dSystem.h -------------------------------------------------------------------------------- /race/endFlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/endFlag.c -------------------------------------------------------------------------------- /race/endFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/endFlag.h -------------------------------------------------------------------------------- /race/leftBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/leftBar.c -------------------------------------------------------------------------------- /race/leftBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/leftBar.h -------------------------------------------------------------------------------- /race/lightSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/lightSystem.c -------------------------------------------------------------------------------- /race/lightSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/lightSystem.h -------------------------------------------------------------------------------- /race/pedestrian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/pedestrian.c -------------------------------------------------------------------------------- /race/pedestrian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/pedestrian.h -------------------------------------------------------------------------------- /race/powerup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/powerup.c -------------------------------------------------------------------------------- /race/powerup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/race/powerup.h -------------------------------------------------------------------------------- /race/terrain.h: -------------------------------------------------------------------------------- 1 | typedef enum 2 | { 3 | TERRAIN_TURBO = 11 4 | 5 | 6 | }Terrains; -------------------------------------------------------------------------------- /raceParticipant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/raceParticipant.c -------------------------------------------------------------------------------- /raceParticipant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/raceParticipant.h -------------------------------------------------------------------------------- /savegame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/savegame.c -------------------------------------------------------------------------------- /savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/savegame.h -------------------------------------------------------------------------------- /sfx/minifmod/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/minifmod/fmod.h -------------------------------------------------------------------------------- /sfx/minifmod/soundSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/minifmod/soundSystem.c -------------------------------------------------------------------------------- /sfx/minifmod/soundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/minifmod/soundSystem.h -------------------------------------------------------------------------------- /sfx/minifmod/system_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/minifmod/system_memory.h -------------------------------------------------------------------------------- /sfx/minifmod/xmeffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/minifmod/xmeffects.h -------------------------------------------------------------------------------- /sfx/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/sound.c -------------------------------------------------------------------------------- /sfx/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/sound.h -------------------------------------------------------------------------------- /sfx/soundEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/sfx/soundEffects.h -------------------------------------------------------------------------------- /system_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/system_file.h -------------------------------------------------------------------------------- /tools/bkpdecryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/bkpdecryptor.py -------------------------------------------------------------------------------- /tools/bpaextractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/bpaextractor.py -------------------------------------------------------------------------------- /tools/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/music.py -------------------------------------------------------------------------------- /tools/savegameCrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/savegameCrypt.py -------------------------------------------------------------------------------- /tools/savegameDecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/savegameDecrypt.py -------------------------------------------------------------------------------- /tools/sharewareSavegameCrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/sharewareSavegameCrypt.py -------------------------------------------------------------------------------- /tools/sharewareSavegameDecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/tools/sharewareSavegameDecrypt.py -------------------------------------------------------------------------------- /ui/blackMarketScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/blackMarketScreen.c -------------------------------------------------------------------------------- /ui/blackMarketScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/blackMarketScreen.h -------------------------------------------------------------------------------- /ui/creditsScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/creditsScreen.c -------------------------------------------------------------------------------- /ui/creditsScreen.h: -------------------------------------------------------------------------------- 1 | int showCredits(); -------------------------------------------------------------------------------- /ui/endGameScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/endGameScreen.c -------------------------------------------------------------------------------- /ui/endGameScreen.h: -------------------------------------------------------------------------------- 1 | 2 | int showEndScreen(); -------------------------------------------------------------------------------- /ui/hallOfFame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/hallOfFame.c -------------------------------------------------------------------------------- /ui/hallOfFame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/hallOfFame.h -------------------------------------------------------------------------------- /ui/licenseScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/licenseScreen.c -------------------------------------------------------------------------------- /ui/licenseScreen.h: -------------------------------------------------------------------------------- 1 | 2 | int licenseScreen(int useWeapons_mal); 3 | 4 | -------------------------------------------------------------------------------- /ui/loadSaveGameScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/loadSaveGameScreen.c -------------------------------------------------------------------------------- /ui/loadSaveGameScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/loadSaveGameScreen.h -------------------------------------------------------------------------------- /ui/mainScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/mainScreen.c -------------------------------------------------------------------------------- /ui/mainScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/mainScreen.h -------------------------------------------------------------------------------- /ui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/menu.c -------------------------------------------------------------------------------- /ui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/menu.h -------------------------------------------------------------------------------- /ui/prevRaceScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/prevRaceScreen.c -------------------------------------------------------------------------------- /ui/prevRaceScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/prevRaceScreen.h -------------------------------------------------------------------------------- /ui/raceResultsScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/raceResultsScreen.c -------------------------------------------------------------------------------- /ui/raceResultsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/raceResultsScreen.h -------------------------------------------------------------------------------- /ui/selectRaceScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/selectRaceScreen.c -------------------------------------------------------------------------------- /ui/selectRaceScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/selectRaceScreen.h -------------------------------------------------------------------------------- /ui/shopScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/shopScreen.c -------------------------------------------------------------------------------- /ui/shopScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/shopScreen.h -------------------------------------------------------------------------------- /ui/startGameScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/startGameScreen.c -------------------------------------------------------------------------------- /ui/startGameScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/startGameScreen.h -------------------------------------------------------------------------------- /ui/util/anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/anim.c -------------------------------------------------------------------------------- /ui/util/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/anim.h -------------------------------------------------------------------------------- /ui/util/bottomText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/bottomText.c -------------------------------------------------------------------------------- /ui/util/bottomText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/bottomText.h -------------------------------------------------------------------------------- /ui/util/carRightSide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/carRightSide.c -------------------------------------------------------------------------------- /ui/util/carRightSide.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int drawCarRightSide(); -------------------------------------------------------------------------------- /ui/util/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/input.c -------------------------------------------------------------------------------- /ui/util/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/input.h -------------------------------------------------------------------------------- /ui/util/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/menus.c -------------------------------------------------------------------------------- /ui/util/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/menus.h -------------------------------------------------------------------------------- /ui/util/popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/popup.c -------------------------------------------------------------------------------- /ui/util/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/popup.h -------------------------------------------------------------------------------- /ui/util/raceResults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/raceResults.c -------------------------------------------------------------------------------- /ui/util/raceResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/ui/util/raceResults.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | FILE* fileExists(char *Filename); -------------------------------------------------------------------------------- /util/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/util/hash.c -------------------------------------------------------------------------------- /util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/util/hash.h -------------------------------------------------------------------------------- /variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enriquesomolinos/DreeRally/HEAD/variables.h --------------------------------------------------------------------------------