├── .gitignore ├── DQN.py ├── README.md ├── game.py ├── ghostAgents.py ├── graphicsDisplay.py ├── graphicsUtils.py ├── keyboardAgents.py ├── layout.py ├── layouts ├── capsuleClassic.lay ├── contestClassic.lay ├── mediumClassic.lay ├── mediumGrid.lay ├── minimaxClassic.lay ├── openClassic.lay ├── originalClassic.lay ├── smallClassic.lay ├── smallGrid.lay ├── testClassic.lay ├── trappedClassic.lay └── trickyClassic.lay ├── logs └── README.md ├── pacman.py ├── pacmanDQN_Agents.py ├── run.sh ├── saves └── README ├── textDisplay.py ├── util.py └── videos ├── PacmanDQN_End-game-failure.mp4 ├── PacmanDQN_Video.mp4 └── PacmanDQN_wingif.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/.gitignore -------------------------------------------------------------------------------- /DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/DQN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/README.md -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/game.py -------------------------------------------------------------------------------- /ghostAgents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/ghostAgents.py -------------------------------------------------------------------------------- /graphicsDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/graphicsDisplay.py -------------------------------------------------------------------------------- /graphicsUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/graphicsUtils.py -------------------------------------------------------------------------------- /keyboardAgents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/keyboardAgents.py -------------------------------------------------------------------------------- /layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layout.py -------------------------------------------------------------------------------- /layouts/capsuleClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/capsuleClassic.lay -------------------------------------------------------------------------------- /layouts/contestClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/contestClassic.lay -------------------------------------------------------------------------------- /layouts/mediumClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/mediumClassic.lay -------------------------------------------------------------------------------- /layouts/mediumGrid.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/mediumGrid.lay -------------------------------------------------------------------------------- /layouts/minimaxClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/minimaxClassic.lay -------------------------------------------------------------------------------- /layouts/openClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/openClassic.lay -------------------------------------------------------------------------------- /layouts/originalClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/originalClassic.lay -------------------------------------------------------------------------------- /layouts/smallClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/smallClassic.lay -------------------------------------------------------------------------------- /layouts/smallGrid.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/smallGrid.lay -------------------------------------------------------------------------------- /layouts/testClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/testClassic.lay -------------------------------------------------------------------------------- /layouts/trappedClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/trappedClassic.lay -------------------------------------------------------------------------------- /layouts/trickyClassic.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/layouts/trickyClassic.lay -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- 1 | # Logs -------------------------------------------------------------------------------- /pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/pacman.py -------------------------------------------------------------------------------- /pacmanDQN_Agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/pacmanDQN_Agents.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/run.sh -------------------------------------------------------------------------------- /saves/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/saves/README -------------------------------------------------------------------------------- /textDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/textDisplay.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/util.py -------------------------------------------------------------------------------- /videos/PacmanDQN_End-game-failure.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/videos/PacmanDQN_End-game-failure.mp4 -------------------------------------------------------------------------------- /videos/PacmanDQN_Video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/videos/PacmanDQN_Video.mp4 -------------------------------------------------------------------------------- /videos/PacmanDQN_wingif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychovdo/PacmanDQN/HEAD/videos/PacmanDQN_wingif.gif --------------------------------------------------------------------------------