Tagged Questions

0
votes
2answers
216 views

Maze recursive solving and randomly creating a maze (JAVA)

first assignment was a find the solution of a 12*12 maze. i am supposed to use a recursive method to solve them. secondly, i have to make a method to create a randomly generated maze with same …
5
votes
3answers
124 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 …
0
votes
2answers
263 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 …
0
votes
4answers
154 views

Reading in an ascii ‘maze’ into a 2d array

I'm writing code to read in a 7x15 block of text in a file that will represent a 'maze'. #include <iostream> #include <fstream> #include <string> #include "board.h" int main() { …
0
votes
4answers
137 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; …
1
vote
5answers
441 views

Problem with Maze Algorithm

I am having a problem with a algorithm that is designed to solve mazes. I used an algorithm from here.http://www.cs.bu.edu/teaching/alg/maze/ FIND-PATH(x, y) if (x,y outside maze) return false if …
5
votes
4answers
1k 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, …
2
votes
9answers
1k views

Creating a Maze class in C++ using 16bit unsigned int array?

I'm attempting to make a data structure to represent a Maze in C++. All the data I need to hold about the maze can be stored in 16 bit integers using bitwise operations (to represent each cell of the …
9
votes
3answers
892 views

What’s a good algorithm to generate a maze?

Say you want a simple maze on an N by M grid, with one path through, and a good number of dead ends, but that looks "right" (i.e. like someone made it by hand without too many little tiny dead ends …
2
votes
3answers
531 views

How can I create cells or grids in C++ for a randomized maze?

I'm trying to create a randomized maze in C++, but I can't start because I don't know how to create grids or cells. How could I create it? And I also want to create it using ASCII characters. how can …
4
votes
5answers
537 views

Optimal multiplayer maze generation algorithm

I'm working on a simple multiplayer game in which 2-4 players are placed at separate entrypoints in a maze and need to reach a goal point. Generating a maze in general is very easy, but in this case …