├── README.md ├── VERSION ├── baselineTeam.py ├── capture.py ├── captureAgents.py ├── captureGraphicsDisplay.py ├── distanceCalculator.py ├── game.py ├── generateTournamentLayouts.py ├── graphicsDisplay.py ├── graphicsUtils.py ├── keyboardAgents.py ├── layout.py ├── layouts ├── alleyCapture.lay ├── bloxCapture.lay ├── crowdedCapture.lay ├── defaultCapture.lay ├── distantCapture.lay ├── fastCapture.lay ├── jumboCapture.lay ├── mediumCapture.lay ├── officeCapture.lay ├── strategicCapture.lay ├── testCapture.lay └── tinyCapture.lay ├── mazeGenerator.py ├── myTeam.py ├── nonctf ├── autograder.py ├── ghostAgents.py ├── pacman.py ├── pacmanAgents.py ├── testClasses.py ├── testParser.py └── unpack.py ├── origdoc ├── bracket.png ├── capture_the_flag.png ├── capture_the_flag2.png ├── contest.html ├── contestLayout.png └── projects.css ├── textDisplay.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.002 2 | -------------------------------------------------------------------------------- /baselineTeam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/baselineTeam.py -------------------------------------------------------------------------------- /capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/capture.py -------------------------------------------------------------------------------- /captureAgents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/captureAgents.py -------------------------------------------------------------------------------- /captureGraphicsDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/captureGraphicsDisplay.py -------------------------------------------------------------------------------- /distanceCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/distanceCalculator.py -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/game.py -------------------------------------------------------------------------------- /generateTournamentLayouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/generateTournamentLayouts.py -------------------------------------------------------------------------------- /graphicsDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/graphicsDisplay.py -------------------------------------------------------------------------------- /graphicsUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/graphicsUtils.py -------------------------------------------------------------------------------- /keyboardAgents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/keyboardAgents.py -------------------------------------------------------------------------------- /layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layout.py -------------------------------------------------------------------------------- /layouts/alleyCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/alleyCapture.lay -------------------------------------------------------------------------------- /layouts/bloxCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/bloxCapture.lay -------------------------------------------------------------------------------- /layouts/crowdedCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/crowdedCapture.lay -------------------------------------------------------------------------------- /layouts/defaultCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/defaultCapture.lay -------------------------------------------------------------------------------- /layouts/distantCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/distantCapture.lay -------------------------------------------------------------------------------- /layouts/fastCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/fastCapture.lay -------------------------------------------------------------------------------- /layouts/jumboCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/jumboCapture.lay -------------------------------------------------------------------------------- /layouts/mediumCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/mediumCapture.lay -------------------------------------------------------------------------------- /layouts/officeCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/officeCapture.lay -------------------------------------------------------------------------------- /layouts/strategicCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/strategicCapture.lay -------------------------------------------------------------------------------- /layouts/testCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/testCapture.lay -------------------------------------------------------------------------------- /layouts/tinyCapture.lay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/layouts/tinyCapture.lay -------------------------------------------------------------------------------- /mazeGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/mazeGenerator.py -------------------------------------------------------------------------------- /myTeam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/myTeam.py -------------------------------------------------------------------------------- /nonctf/autograder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/autograder.py -------------------------------------------------------------------------------- /nonctf/ghostAgents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/ghostAgents.py -------------------------------------------------------------------------------- /nonctf/pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/pacman.py -------------------------------------------------------------------------------- /nonctf/pacmanAgents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/pacmanAgents.py -------------------------------------------------------------------------------- /nonctf/testClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/testClasses.py -------------------------------------------------------------------------------- /nonctf/testParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/testParser.py -------------------------------------------------------------------------------- /nonctf/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/nonctf/unpack.py -------------------------------------------------------------------------------- /origdoc/bracket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/origdoc/bracket.png -------------------------------------------------------------------------------- /origdoc/capture_the_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/origdoc/capture_the_flag.png -------------------------------------------------------------------------------- /origdoc/capture_the_flag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/origdoc/capture_the_flag2.png -------------------------------------------------------------------------------- /origdoc/contest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/origdoc/contest.html -------------------------------------------------------------------------------- /origdoc/contestLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/origdoc/contestLayout.png -------------------------------------------------------------------------------- /origdoc/projects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/origdoc/projects.css -------------------------------------------------------------------------------- /textDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/textDisplay.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cshelton/pacman-ctf/HEAD/util.py --------------------------------------------------------------------------------