Module moog_demos.example_configs.pacman
PacMan-like task.
In this task all objects move in a maze with the same speed. The maze is randomized every trial. The subject controls a green agent. Red ghost agents wander the maze randomly without backtracking. The subject's goal is to collect all yellow pellets in the maze. Ghosts only begin moving once agent moves.
Functions
def get_config(level)
-
Expand source code
def get_config(level): """Get config dictionary of kwargs for environment constructor. Args: level: Int. Different values yield different maze sizes and numbers of ghosts. """ if level == 0: return _get_config( num_ghosts=lambda: 2, maze_size=8, ) elif level == 1: return _get_config( num_ghosts=lambda: 3, maze_size=10, ) else: raise ValueError('Invalid level {}'.format(level))
Get config dictionary of kwargs for environment constructor.
Args
level
- Int. Different values yield different maze sizes and numbers of ghosts.