Tagged Questions

6
votes
3answers
309 views

How could I stop from printing both sides of a wall in my ascii maze?

I've written some code that generates mazes for me. The maze consists of (n x n) cells, each cell has a boolean value to represent a wall (north, south, east west). It is working fine, and I wrote ...
6
votes
4answers
4k views

Pacman maze in Java

So I'm building the pacman game in Java to teach myself game programming. I have the basic game window with the pacman sprite and the ghost sprites drawn, the pacman moves with the arrow keys, ...
5
votes
3answers
221 views

Confusing Java syntax

I'm trying to convert the following code (from Wikipedia) from Java to JavaScript: /* * 3 June 2003, [[:en:User:Cyp]]: * Maze, generated by my algorithm * 24 October 2006, [[:en:User:quin]]: ...
4
votes
3answers
231 views

The King's Maze

I'm practicing up for a programming competition, and i'm going over some difficult problems that I wasn't able to answer in the past. One of them was the King's Maze. Essentially you are given an NxN ...
4
votes
1answer
565 views

Making a 3D maze in Java

Goal I am making a program which generates a 3D maze and am having a bit of trouble with the creation algorithm. For ease of interaction, it will be a rectangular prism with one entrance and one ...
2
votes
1answer
74 views

Maze Algorithm KINDA works. Some mazes, not ALL help

I am using a maze algorithm that works some of the time, but not all of the time. It uses recursion but I cannot figure out why it doesnt all the time. public boolean findPath(int x, int y) { ...
2
votes
1answer
716 views

shortest path through a maze

I am working on a project that i must traverse a maze using the left-hand rule and based upon the intersections the program comes upon i need to create a node to connect to a graph that I will then ...
1
vote
1answer
79 views

Rectangles overlapping while attempting to enlarge the GUI of a maze

My adventure with the maze and GUI continues, and at the moment I can see any graph G=(V,E) where the Vertices are rooms, and the Edges are connectors (Doors or Walls), but the dimensions of the ...
1
vote
2answers
66 views

Generate a maze in Java , not as a grid (i.e. Matrix NxN) , but as a Graph

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 ...
1
vote
3answers
68 views

Java: Randomizing the Order of Method Recursive Calls

For DFS maze generation in Java I wanna randomize the order in which the recursive calls of a DFS are made: for (int rows=i; rows<M; rows++) for (int cols=j; cols<N; cols++){ ...
1
vote
1answer
102 views

How do I have a picture act as a game character on top of a canvas?

I have a maze game in JAVA I'm doing for a class, the maze is made on a canvas in an applet, I wanted to have another picture provided to me (of a statue like thing) act as a game character and be ...
1
vote
2answers
843 views

Creating a Maze using Java

Im using Java to create a maze of specified "rows" and "columns" over each other to look like a grid. I plan to use a depth-first recursive method to "open the doors" between the rooms (the box ...
0
votes
1answer
33 views

Iterator for Set using HashMap won't produce the value / key?

Given the following code : public class Game { private Map<String,Coordinate> m_myHashMap; ... // more code } public Game(Display display,int level) { this.m_myHashMap = new ...
0
votes
0answers
37 views

Maze drawing using Java GUI - rectangles are printed one over the other

Given the following code : private void drawMaze(PaintEvent e) { Graph maze = new Graph(); maze.generateMaze(25); int i = 0; int level = 25; ...
0
votes
1answer
48 views

java: breadth first traversal with backtracking for maze

I am trying to implement a breadth first traversal for a maze. This is the code I have so far using a linked list but I am not sure if it is searching breadth first. Is this the proper way to do it? ...
0
votes
2answers
51 views

Java program to check an array maze for clues - answer is always 1 off

I have to make this maze held in an array, and it checks the cell for a two digit number which holds a clue to the next cell. The cell that contains the treasure is one that holds its own coordinates. ...
0
votes
2answers
183 views

Help with solving D&D maze using Java

I been reading some of the other questions that have been posted on stackoverflow and I am a little overwhelmed by the number of search algorithms there are. I'm not looking for code and more of a ...
0
votes
3answers
305 views

Creating a maze graph from a text file : Java

I need to make a graph from a text file containing multiple 'mazes' represented as adjacency lists. The list is as follows: A,G A,B,F B,A,C,G C,B,D,G D,C,E E,D,F,G F,A,E G,B,C,E D,F A,B,G B,A,C,E,G ...
0
votes
3answers
642 views

Problem with maze solving backtracking algorithm with setting visited rooms

i seek if somebody could help me out with my room searching algorithm I'm trying to implement a backtracking algorhitm for maze solving. I'm stuck in the place where i should memorize the rooms which ...
0
votes
1answer
230 views

Java Dynamic Matrix

OK so the title tells little, but I am looking to make an editor of sorts for mazes. I had an assignment to make a maze solver. I did this by reading a file. The first line has the row and column ...
0
votes
1answer
115 views

Need to somehow keep track of co ordinates visited in an array

I need to store element co ordinates of an array(2d array), this is for a java maze project. My program uses to variables of int plyrX and plyrY to store the positiions i.e 0 1, as the player moves ...
0
votes
1answer
917 views

Java: Implementing a drawable class

I'm trying to make a maze game in Java. The Explorer class represents the user, and the DrawableExplorer is the code that graphically represents the user. DrawableExplorer implements the Drawable ...
0
votes
4answers
203 views

How can I clean up this method I wrote in Java?

I'm working on writing a Maze generator. I have a "Cell" class which is as follows: public class Cell { public boolean northWall; public boolean southWall; public boolean eastWall; ...
0
votes
2answers
2k views

How to find all available maze paths?

I am trying to write a program that is given a maze and tries to find the way out. M is the entrance, E is the exit, 1s are walls, and 0s are pathways. It is supposed to find each path and put P in ...