data.mazes.readme.txt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pacman-main Show documentation
Show all versions of pacman-main Show documentation
The main code for Ms. Pac-Man Vs Ghosts
The files containing the graphs are structured as follows:
First line is a header that contains information regarding the maze. The information is as follows:
name of maze
start node for Ms Pac-Man
node that corresponds to the lair
start node for the ghosts
number of nodes in the maze
number of pills in the maze
number of power pills in the maze
number of junctions in the maze
All other lines corresponds to individual nodes on the graph. Each node has the following information:
node index
x-coordinate
y-coordinate
neighbouring node in UP direction (-1 if none)
neighbouring node in RIGHT direction (-1 if none)
neighbouring node in DOWN direction (-1 if none)
neighbouring node in LEFT direction (-1 if none)
pill-index of the node (-1 if none)
power-pill index of the node (-1 if none)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy