Tagged Questions
6
votes
3answers
312 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
7answers
90 views
Using a stack to traverse and solve a maze - Java
So I am trying to create a maze solver program that would solve a maze of X's and O's. What I would like to do is create a class of Points, so that I can create a 2-Dimensional array of Points which ...
5
votes
3answers
232 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
240 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
605 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 ...
3
votes
5answers
122 views
Creating a maze solving algorithm in Java
I've been assigned with the task of creating a maze solver in Java. Here's the assignment:
Write an application that finds a path through a maze.
The maze should be read from a file. A sample maze ...
2
votes
1answer
79 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
747 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
101 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
85 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
76 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
105 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
889 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
2answers
49 views
Problems with maze generation using a non-recursive backtracking algorithm
I'm working on a game for Android where the explorable areas will be randomly generated. Right now I'm just trying to get the maze generated (with some ASCII art output so I can see it), and I've been ...
0
votes
1answer
30 views
Gui generator re-generate my maze if I change the current window dimensions(Java)
Given the following code :
class Game() {
private Shell shell;
public Game(Display display,int level)
{
shell.addPaintListener(new ExmaplePaintListener());
...
0
votes
1answer
46 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
75 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
84 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
62 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
207 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
318 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
727 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
243 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
121 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
975 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
209 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 ...