├── .gitignore ├── .gitmodules ├── .project ├── CMakeLists.txt ├── ChangeLog ├── Copyright.txt ├── License.txt ├── MANIFEST.in ├── README-SDL.txt ├── README.md ├── Readme.txt ├── common.rules ├── copy_cores.sh ├── doc └── examples │ ├── python_example.py │ └── sharedLibraryInterfaceExample.cpp ├── rle-1-0.rockspec ├── rle.cfg ├── rle_python_interface ├── __init__.py ├── rle_c_wrapper.cpp ├── rle_c_wrapper.h └── rle_python_interface.py ├── roms └── classic_kong.smc ├── setup.py ├── src ├── common │ ├── .deps │ │ └── SoundSDL.d │ ├── Array.hxx │ ├── Constants.cpp │ ├── Constants.h │ ├── DebugMacros.h │ ├── Log.cpp │ ├── Log.hpp │ ├── RleException.h │ ├── ScreenExporter.cpp │ ├── ScreenExporter.hpp │ ├── SoundExporter.cpp │ ├── SoundExporter.hpp │ ├── bspf.hxx │ ├── display_screen.cpp │ └── display_screen.h ├── environment │ ├── Deserializer.cxx │ ├── Deserializer.hxx │ ├── FSNode.cxx │ ├── FSNode.hxx │ ├── Random.cxx │ ├── Random.hxx │ ├── RetroAgent.cpp │ ├── RetroAgent.h │ ├── RleSystem.cxx │ ├── RleSystem.hxx │ ├── Serializer.cxx │ ├── Serializer.hxx │ ├── Settings.cxx │ ├── Settings.hxx │ ├── phosphor_blend.cpp │ ├── phosphor_blend.hpp │ ├── retro_environment.cpp │ ├── retro_environment.hpp │ ├── rle_ram.cpp │ ├── rle_screen.cpp │ ├── rle_state.cpp │ └── rle_state.hpp ├── external │ └── TinyMT │ │ ├── .deps │ │ └── tinymt32.d │ │ ├── LICENSE.txt │ │ ├── tinymt32.c │ │ └── tinymt32.h ├── games │ ├── AtariSettings.cpp │ ├── AtariSettings.hpp │ ├── GenesisSettings.cpp │ ├── GenesisSettings.hpp │ ├── RomSettings.cpp │ ├── RomSettings.hpp │ ├── RomUtils.cpp │ ├── RomUtils.hpp │ ├── Roms.cpp │ ├── Roms.hpp │ ├── SnesSettings.cpp │ ├── SnesSettings.hpp │ ├── module.mk │ └── supported │ │ ├── Aladdin.cpp │ │ ├── Aladdin.hpp │ │ ├── ArkanoidDohItAgain.cpp │ │ ├── ArkanoidDohItAgain.hpp │ │ ├── AtariCollection.cpp │ │ ├── AtariCollection.hpp │ │ ├── Boxing.cpp │ │ ├── Boxing.hpp │ │ ├── BustAMove.cpp │ │ ├── BustAMove.hpp │ │ ├── ClassicKong.cpp │ │ ├── ClassicKong.hpp │ │ ├── ContraIII.cpp │ │ ├── ContraIII.hpp │ │ ├── FZero.cpp │ │ ├── FZero.hpp │ │ ├── FZeroNoSpeed.cpp │ │ ├── FZeroNoSpeed.hpp │ │ ├── FinalFight.cpp │ │ ├── FinalFight.hpp │ │ ├── GradiusIII.cpp │ │ ├── GradiusIII.hpp │ │ ├── MortalKombat.cpp │ │ ├── MortalKombat.hpp │ │ ├── MortalKombat2Players.cpp │ │ ├── MortalKombat2Players.hpp │ │ ├── NBAGiveNGo.cpp │ │ ├── NBAGiveNGo.hpp │ │ ├── Seaquest.cpp │ │ ├── Seaquest.hpp │ │ ├── SonicTheHedgehog.cpp │ │ ├── SonicTheHedgehog.hpp │ │ ├── StreetFighterII.cpp │ │ ├── StreetFighterII.hpp │ │ ├── SuperDoubleDragon.cpp │ │ ├── SuperDoubleDragon.hpp │ │ ├── SuperMarioAllStars.cpp │ │ ├── SuperMarioAllStars.hpp │ │ ├── SuperMarioAllStarsNoRight.cpp │ │ ├── SuperMarioAllStarsNoRight.hpp │ │ ├── SuperMarioKart.cpp │ │ ├── SuperMarioKart.hpp │ │ ├── SuperMarioWorld.cpp │ │ ├── SuperMarioWorld.hpp │ │ ├── TetrisAndDrMario.cpp │ │ ├── TetrisAndDrMario.hpp │ │ ├── Wolfenstein.cpp │ │ └── Wolfenstein.hpp ├── libretro.h ├── os_dependent │ ├── .deps │ │ ├── FSNodePOSIX.d │ │ └── SettingsUNIX.d │ ├── FSNodePOSIX.cxx │ ├── FSNodeWin32.cxx │ └── module.mk ├── rle_interface.cpp └── rle_interface.hpp └── test ├── RetroAgentTest.cpp ├── RleTest.cpp ├── SerializeDeserializeTest.cpp ├── SettingsTest.cpp ├── gtest_arguments.h ├── mainTest.cpp ├── python_interface_test.py └── rleCInterfaceTest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/.project -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/ChangeLog -------------------------------------------------------------------------------- /Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/Copyright.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/License.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/README-SDL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/Readme.txt -------------------------------------------------------------------------------- /common.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/common.rules -------------------------------------------------------------------------------- /copy_cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/copy_cores.sh -------------------------------------------------------------------------------- /doc/examples/python_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/doc/examples/python_example.py -------------------------------------------------------------------------------- /doc/examples/sharedLibraryInterfaceExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/doc/examples/sharedLibraryInterfaceExample.cpp -------------------------------------------------------------------------------- /rle-1-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/rle-1-0.rockspec -------------------------------------------------------------------------------- /rle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/rle.cfg -------------------------------------------------------------------------------- /rle_python_interface/__init__.py: -------------------------------------------------------------------------------- 1 | from rle_python_interface import * 2 | -------------------------------------------------------------------------------- /rle_python_interface/rle_c_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/rle_python_interface/rle_c_wrapper.cpp -------------------------------------------------------------------------------- /rle_python_interface/rle_c_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/rle_python_interface/rle_c_wrapper.h -------------------------------------------------------------------------------- /rle_python_interface/rle_python_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/rle_python_interface/rle_python_interface.py -------------------------------------------------------------------------------- /roms/classic_kong.smc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/roms/classic_kong.smc -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/setup.py -------------------------------------------------------------------------------- /src/common/.deps/SoundSDL.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/.deps/SoundSDL.d -------------------------------------------------------------------------------- /src/common/Array.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/Array.hxx -------------------------------------------------------------------------------- /src/common/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/Constants.cpp -------------------------------------------------------------------------------- /src/common/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/Constants.h -------------------------------------------------------------------------------- /src/common/DebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/DebugMacros.h -------------------------------------------------------------------------------- /src/common/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/Log.cpp -------------------------------------------------------------------------------- /src/common/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/Log.hpp -------------------------------------------------------------------------------- /src/common/RleException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/RleException.h -------------------------------------------------------------------------------- /src/common/ScreenExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/ScreenExporter.cpp -------------------------------------------------------------------------------- /src/common/ScreenExporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/ScreenExporter.hpp -------------------------------------------------------------------------------- /src/common/SoundExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/SoundExporter.cpp -------------------------------------------------------------------------------- /src/common/SoundExporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/SoundExporter.hpp -------------------------------------------------------------------------------- /src/common/bspf.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/bspf.hxx -------------------------------------------------------------------------------- /src/common/display_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/display_screen.cpp -------------------------------------------------------------------------------- /src/common/display_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/common/display_screen.h -------------------------------------------------------------------------------- /src/environment/Deserializer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Deserializer.cxx -------------------------------------------------------------------------------- /src/environment/Deserializer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Deserializer.hxx -------------------------------------------------------------------------------- /src/environment/FSNode.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/FSNode.cxx -------------------------------------------------------------------------------- /src/environment/FSNode.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/FSNode.hxx -------------------------------------------------------------------------------- /src/environment/Random.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Random.cxx -------------------------------------------------------------------------------- /src/environment/Random.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Random.hxx -------------------------------------------------------------------------------- /src/environment/RetroAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/RetroAgent.cpp -------------------------------------------------------------------------------- /src/environment/RetroAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/RetroAgent.h -------------------------------------------------------------------------------- /src/environment/RleSystem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/RleSystem.cxx -------------------------------------------------------------------------------- /src/environment/RleSystem.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/RleSystem.hxx -------------------------------------------------------------------------------- /src/environment/Serializer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Serializer.cxx -------------------------------------------------------------------------------- /src/environment/Serializer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Serializer.hxx -------------------------------------------------------------------------------- /src/environment/Settings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Settings.cxx -------------------------------------------------------------------------------- /src/environment/Settings.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/Settings.hxx -------------------------------------------------------------------------------- /src/environment/phosphor_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/phosphor_blend.cpp -------------------------------------------------------------------------------- /src/environment/phosphor_blend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/phosphor_blend.hpp -------------------------------------------------------------------------------- /src/environment/retro_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/retro_environment.cpp -------------------------------------------------------------------------------- /src/environment/retro_environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/retro_environment.hpp -------------------------------------------------------------------------------- /src/environment/rle_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/rle_ram.cpp -------------------------------------------------------------------------------- /src/environment/rle_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/rle_screen.cpp -------------------------------------------------------------------------------- /src/environment/rle_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/rle_state.cpp -------------------------------------------------------------------------------- /src/environment/rle_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/environment/rle_state.hpp -------------------------------------------------------------------------------- /src/external/TinyMT/.deps/tinymt32.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/external/TinyMT/.deps/tinymt32.d -------------------------------------------------------------------------------- /src/external/TinyMT/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/external/TinyMT/LICENSE.txt -------------------------------------------------------------------------------- /src/external/TinyMT/tinymt32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/external/TinyMT/tinymt32.c -------------------------------------------------------------------------------- /src/external/TinyMT/tinymt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/external/TinyMT/tinymt32.h -------------------------------------------------------------------------------- /src/games/AtariSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/AtariSettings.cpp -------------------------------------------------------------------------------- /src/games/AtariSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/AtariSettings.hpp -------------------------------------------------------------------------------- /src/games/GenesisSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/GenesisSettings.cpp -------------------------------------------------------------------------------- /src/games/GenesisSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/GenesisSettings.hpp -------------------------------------------------------------------------------- /src/games/RomSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/RomSettings.cpp -------------------------------------------------------------------------------- /src/games/RomSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/RomSettings.hpp -------------------------------------------------------------------------------- /src/games/RomUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/RomUtils.cpp -------------------------------------------------------------------------------- /src/games/RomUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/RomUtils.hpp -------------------------------------------------------------------------------- /src/games/Roms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/Roms.cpp -------------------------------------------------------------------------------- /src/games/Roms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/Roms.hpp -------------------------------------------------------------------------------- /src/games/SnesSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/SnesSettings.cpp -------------------------------------------------------------------------------- /src/games/SnesSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/SnesSettings.hpp -------------------------------------------------------------------------------- /src/games/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/module.mk -------------------------------------------------------------------------------- /src/games/supported/Aladdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Aladdin.cpp -------------------------------------------------------------------------------- /src/games/supported/Aladdin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Aladdin.hpp -------------------------------------------------------------------------------- /src/games/supported/ArkanoidDohItAgain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/ArkanoidDohItAgain.cpp -------------------------------------------------------------------------------- /src/games/supported/ArkanoidDohItAgain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/ArkanoidDohItAgain.hpp -------------------------------------------------------------------------------- /src/games/supported/AtariCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/AtariCollection.cpp -------------------------------------------------------------------------------- /src/games/supported/AtariCollection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/AtariCollection.hpp -------------------------------------------------------------------------------- /src/games/supported/Boxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Boxing.cpp -------------------------------------------------------------------------------- /src/games/supported/Boxing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Boxing.hpp -------------------------------------------------------------------------------- /src/games/supported/BustAMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/BustAMove.cpp -------------------------------------------------------------------------------- /src/games/supported/BustAMove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/BustAMove.hpp -------------------------------------------------------------------------------- /src/games/supported/ClassicKong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/ClassicKong.cpp -------------------------------------------------------------------------------- /src/games/supported/ClassicKong.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/ClassicKong.hpp -------------------------------------------------------------------------------- /src/games/supported/ContraIII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/ContraIII.cpp -------------------------------------------------------------------------------- /src/games/supported/ContraIII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/ContraIII.hpp -------------------------------------------------------------------------------- /src/games/supported/FZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/FZero.cpp -------------------------------------------------------------------------------- /src/games/supported/FZero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/FZero.hpp -------------------------------------------------------------------------------- /src/games/supported/FZeroNoSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/FZeroNoSpeed.cpp -------------------------------------------------------------------------------- /src/games/supported/FZeroNoSpeed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/FZeroNoSpeed.hpp -------------------------------------------------------------------------------- /src/games/supported/FinalFight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/FinalFight.cpp -------------------------------------------------------------------------------- /src/games/supported/FinalFight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/FinalFight.hpp -------------------------------------------------------------------------------- /src/games/supported/GradiusIII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/GradiusIII.cpp -------------------------------------------------------------------------------- /src/games/supported/GradiusIII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/GradiusIII.hpp -------------------------------------------------------------------------------- /src/games/supported/MortalKombat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/MortalKombat.cpp -------------------------------------------------------------------------------- /src/games/supported/MortalKombat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/MortalKombat.hpp -------------------------------------------------------------------------------- /src/games/supported/MortalKombat2Players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/MortalKombat2Players.cpp -------------------------------------------------------------------------------- /src/games/supported/MortalKombat2Players.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/MortalKombat2Players.hpp -------------------------------------------------------------------------------- /src/games/supported/NBAGiveNGo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/NBAGiveNGo.cpp -------------------------------------------------------------------------------- /src/games/supported/NBAGiveNGo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/NBAGiveNGo.hpp -------------------------------------------------------------------------------- /src/games/supported/Seaquest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Seaquest.cpp -------------------------------------------------------------------------------- /src/games/supported/Seaquest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Seaquest.hpp -------------------------------------------------------------------------------- /src/games/supported/SonicTheHedgehog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SonicTheHedgehog.cpp -------------------------------------------------------------------------------- /src/games/supported/SonicTheHedgehog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SonicTheHedgehog.hpp -------------------------------------------------------------------------------- /src/games/supported/StreetFighterII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/StreetFighterII.cpp -------------------------------------------------------------------------------- /src/games/supported/StreetFighterII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/StreetFighterII.hpp -------------------------------------------------------------------------------- /src/games/supported/SuperDoubleDragon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperDoubleDragon.cpp -------------------------------------------------------------------------------- /src/games/supported/SuperDoubleDragon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperDoubleDragon.hpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioAllStars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioAllStars.cpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioAllStars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioAllStars.hpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioAllStarsNoRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioAllStarsNoRight.cpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioAllStarsNoRight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioAllStarsNoRight.hpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioKart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioKart.cpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioKart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioKart.hpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioWorld.cpp -------------------------------------------------------------------------------- /src/games/supported/SuperMarioWorld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/SuperMarioWorld.hpp -------------------------------------------------------------------------------- /src/games/supported/TetrisAndDrMario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/TetrisAndDrMario.cpp -------------------------------------------------------------------------------- /src/games/supported/TetrisAndDrMario.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/TetrisAndDrMario.hpp -------------------------------------------------------------------------------- /src/games/supported/Wolfenstein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Wolfenstein.cpp -------------------------------------------------------------------------------- /src/games/supported/Wolfenstein.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/games/supported/Wolfenstein.hpp -------------------------------------------------------------------------------- /src/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/libretro.h -------------------------------------------------------------------------------- /src/os_dependent/.deps/FSNodePOSIX.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/os_dependent/.deps/FSNodePOSIX.d -------------------------------------------------------------------------------- /src/os_dependent/.deps/SettingsUNIX.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/os_dependent/.deps/SettingsUNIX.d -------------------------------------------------------------------------------- /src/os_dependent/FSNodePOSIX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/os_dependent/FSNodePOSIX.cxx -------------------------------------------------------------------------------- /src/os_dependent/FSNodeWin32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/os_dependent/FSNodeWin32.cxx -------------------------------------------------------------------------------- /src/os_dependent/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/os_dependent/module.mk -------------------------------------------------------------------------------- /src/rle_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/rle_interface.cpp -------------------------------------------------------------------------------- /src/rle_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/src/rle_interface.hpp -------------------------------------------------------------------------------- /test/RetroAgentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/RetroAgentTest.cpp -------------------------------------------------------------------------------- /test/RleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/RleTest.cpp -------------------------------------------------------------------------------- /test/SerializeDeserializeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/SerializeDeserializeTest.cpp -------------------------------------------------------------------------------- /test/SettingsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/SettingsTest.cpp -------------------------------------------------------------------------------- /test/gtest_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/gtest_arguments.h -------------------------------------------------------------------------------- /test/mainTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/mainTest.cpp -------------------------------------------------------------------------------- /test/python_interface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/python_interface_test.py -------------------------------------------------------------------------------- /test/rleCInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadavbh12/Retro-Learning-Environment/HEAD/test/rleCInterfaceTest.cpp --------------------------------------------------------------------------------