Thread: Maze Editor

  1. #1
    Student drdroid's Avatar
    Join Date
    Feb 2002
    Location
    Montreal, Quebec
    Posts
    669

    Question Maze Editor

    I made a maze editor. How might I get it to convert that information into a playable maze? I'm using Borland C++.
    Last edited by drdroid; 02-10-2002 at 03:37 PM.

  2. #2
    Well first you need to MAKE the game. Then you need to come up with some means of outputting the maze the map editor made. I would suggest fstream.h if you are using console. You could output a equal sign for each wall, then the game will read the equal signs, set the blocking tiles, then draw the walls.

    Another idea is making something at the top of your file that says where you start out. Make something that says startposition = [x] [y]

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 12
    Last Post: 08-05-2003, 02:16 PM
  2. Q: Recursion to find all paths of a maze
    By reti in forum C Programming
    Replies: 7
    Last Post: 11-26-2002, 09:28 AM
  3. My Maze Game --- A Few Questions
    By TechWins in forum Game Programming
    Replies: 18
    Last Post: 04-24-2002, 11:00 PM
  4. Algorithm to walk through a maze.
    By Nutshell in forum C Programming
    Replies: 30
    Last Post: 01-21-2002, 01:54 AM
  5. Maze game, complete with maze editor and an example maze!
    By Brian in forum A Brief History of Cprogramming.com
    Replies: 2
    Last Post: 01-20-2002, 03:27 AM