I need to generate a program that consists of building a maze , where the game involves players up-to 60-70. The thing is , I don't want to use a grid , because I think it would waste too much memory and the complexity of this representation (= grid) won't be so easy . So after some thinking , I've decided to use a graph , where :
- each
Roomof the maze would represent a vertex in the graph - each
Connectorin the maze would represent an edge in the graph
A Connector can be : 1. an external door 2. an external room 3. an external wall
My question is , how can I build a graph from (x,y) coordinates (in run time , I want to build the maze , while the user insert the coordinates) ? I've never worked with a graph in Java(or any other language) before , so it's not so clear to me how to do that .
Can you please explain ?
EDIT: In the game , there are treasures , and every player needs to get at least one treasure. * Each player , has his own step in the game (probably something like priority queue that helps do decide which player is the next one) and each player , while making his move , can move one step in the maze .