All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
0.7.3 — 2021-11-02
- Environment variable
ALE_PY_ROM_DIRwhich if specified will search for ROMs in${ALE_PY_ROM_DIR}/*.bin. (@joshgreaves)
0.7.2 — 2021-10-07
- Package Tetris by Colin Hughes. This ROM is made publicly available by the author. This is useful for other open-source packages to be able to unit test agaisnt the ALE. (@tfboyd)
- Python 3.10 prebuilt wheels
- Fixed an issue with
isSupportedROMon Windows which was causing incorrect ROM hashes.
- Python 3.6 prebuilt wheels
0.7.1 — 2021-09-28
- Added
ale-import-roms --import-from-pkg {pkg} - Use
gym.envs.atarias a namespace package to maintain backwards compatability with theAtariEnventry point. - The ALE now uses Gym's environment plugin system in
gym>=0.21(openai/gym#2383, openai/gym#2409, openai/gym#2411). Users no longer are required to importale_pyto use a-v5environment.
- Silence unsupported ROMs warning behind
ImportError. To view these errors you should now supply the environment variablePYTHONWARNINGS=default::ImportWarning:ale_py.roms. - Reworked ROM error messages to provide more helpful suggestions.
- General metadata changes to the Python package.
- Add missing
std::name qualifier when enabling SDL (@anadrome) - Fixed mandatory kwarg for
gym.envs.atari:AtariEnv.clone_state.
0.7.0 — 2021-09-14
- Native support for OpenAI Gym
- Native Python interface using pybind11 which results in a speedup for Python workloads as well as proper support for objects like
ALEState - Python ROM management, e.g.,
ale-import-roms - PyPi Python wheels published as
ale-py+ we distribute SDL2 for out of the box visualization + audio support isSupportedROM(path)to check if a ROM file is supported by the ALE- Added new games: Atlantis2, Backgammon, BasicMath, Blackjack, Casino, Crossbow, DarkChambers, Earthworld, Entombed, ET, FlagCapture, Hangman, HauntedHouse, HumanCannonball, Klax, MarioBros, MiniatureGolf, Othello, Pacman, Pitfall2, SpaceWar, Superman, Surround, TicTacToe3D, VideoCheckers, VideoChess, VideoCube, WordZapper (thanks @tkoppe)
- Added (additional) mode/difficulty settings for: Lost Luggage, Turmoil, Tron Dead Discs, Pong, Mr. Do, King Kong, Frogger, Adventure (thanks @tkoppe)
- Added
cloneState(include_rng)which will eventually replacecloneSystemState(behind the scenescloneSystemStateis equivalent tocloneState(include_rng=True)). - Added
setRAMwhich can be useful for modifying the environment, e.g., learning a causal model over RAM transitions, altering game dynamics, etc.
- Rewrote SDL support using SDL2 primitives
- SDL2 now renders every frame independent of frameskip
- SDL2 renders at the proper ROM framerate (added benefit of audio sync support)
- Rewrote entire CMake infrastructure which now supports vcpkg natively
- C++ minimum version is now C++17
- Changed all relative imports to absolute imports
- Switched from Travis CI to Github Actions
- Allow for paddle controller's min/max setting to be configurable
- More robust version handling between C++ & Python distributions
- Updated Markdown documentation to replace TeX manual
- Fixed bankswitching type for UA cartridges
- Fixed a SwapPort bug in Surround
- Fixed multiple bugs in handling invalid ROM files (thanks @tkoeppe)
- Fixed initialization of TIA static data to make it thread safe (thanks @tkoeppe)
- Fixed RNG initialization, this was one of the last barriers to making the ALE fully deterministic, we are now fully deterministic
- Removed FIFO interface
- Removed RL-GLUE support
- Removed ALE CLI interface
- Removed Java interface
- Removed
ALEInterface::load(),ALEInterface::save(). If you require this stack functionality it's easy to implement on your own usingALEInterface::cloneState(include_rng) - Removed os-dependent filesystem code in favour of C++17
std::fs - Removed human control mode
- Removed old makefile build system in favour of CMake
- Removed bspf
- Removed unused controller types: Driving, Booster, Keyboard
- Removed AtariVox
- Removed Stella types (e.g., Array) in favour of STL types
- Remove Stella debugger
- Remove Stella CheatManager
- Lots of code cleanups conforming to best practices (thanks @tkoeppe)
0.6.1 — 2019-11-20
- Speedup of up to 30% by optimizing variable types (@qstanczyk)
- Fixed switch fall-through with Gravitar lives detection (@lespeholt)
0.6.0 — 2015-06-23
- Support for modes and difficulties in Atari games (@mcmachado)
- Frame maxpooling as a post-processing option (@skylian)
- Added support for: Turmoil, Koolaid, Tron Deadly Discs, Mr. Do, Donkey Kong, Keystone Kapers, Frogger, Sir Lancelot, Laser Gates, Lost Luggage,
- Added MD5 list of supported ROMs
- Disabled color averaging by default
- Replaced TinyMT with C++11 random
- Fixed old color averaging scheme (PR #181)
- Fixed minimal action set in Pong
- Fixed termination issues in Q*Bert
0.5.2 — 2015-10-04
- Routines for ALEState serialization (@Jragonmiris).
- Enforce flags existence (@mcmachado).
- Fix RNG issues introduced in 0.5.0.
- Additional bug fixes.
0.5.1 — 2015-07-07
- Added RNG serialization capability.
- Refactored Python getScreenRGB to return unpacked RGB values (@spragunr).
- Sets the default value of the color_averaging flag to be true. It was true by default in previous versions but was changed in 0.5.0. Reverted for backward compatibility.
- Bug fixes from ALE 0.5.0.
0.5.0 — 2015-06-22
- Added action_repeat_stochasticity.
- Added sound playback, visualization.
- Added screen/sound recording ability.
- CMake now available.
- Incorporated Benjamin Goodrich's Python interface.
- Added examples for shared library, Python, fifo, RL-Glue interfaces.
- Incorporated Java agent into main repository.
- Better ALEInterface.
- Many other changes.
- Some game fixes.
- Removed internal controller, now superseded by shared library interface.
- Removed the following command-line flags: 'output_file', 'system_reset_steps', 'use_environment_distribution', 'backward_compatible_save', internal agent flags
- The flag 'use_starting_actions' was removed and internally its value is always 'true'.
- The flag 'disable_color_averaging' was renamed to 'color_averaging' and FALSE is its default value.
0.4.4 — 2014-04-28
- Fixed a memory issue in ALEScreen.
0.4.3 — 2014-04-26
- Fixed issues with frame numbers not being correctly updated.
- Fixed a bug where total reward was not properly reported under frame skipping.
- Fixed a bug with ALEState's m_frame_number.
0.4.2 — 2013-06-12
- Modified StellaEnvironment save/load interface to provide additional flexibility.
- Series of bug fixes from Matthew Hausknecht and community.
0.4.1 — 2013-05-24
- Added frame skipping support directly in StellaEnvironment.
- Reverted default number of episodes to 10.
- Fixed RL-Glue syntax from OBSERVATION to OBSERVATIONS. Thanks to Angus MacIsaac for picking this bug up.
0.4.0 — 2013-04-22
- RL-Glue support
- Shared library interface
- Simpler direct environment interfacing
- Improved environment handling
- Improved environment customization
- Better documentation
- Initial ALE release.