I was wondering if anyone can get me started on how to build like a maze using openGL. Would i need to write code to draw the maze or is it like painting a picture in a separate window? would i need to create a game engine to start with this? I'm doing this for iphone development so any suggestions for that would be a great start for me. Thanks for your responses everybody.
|
|
A very simple method, which will get you some results similar to Wolfenstein 3D (but with OpenGL's goodness is much easier :-P) is to have the world made of a 2D grid like:
Each cell of the should contain information about the cell such as if the cell is empty or solid, if it is solid what kind of material it has or if it is empty what material the floor and the ceiling have. If it is empty you can also add additional information such as light casting, reference to some entity (for adding game models or other stuff), logic flags (such as flag for "exit" or "start" or "hazard"), etc. A simple structure would be something like (in C):
In the above structure, The The Now to render the maze, just render all the cells (later you might want to do some flood fill or raycasting tests to render only what is visible, but again don't worry about that now). For each cell check if the cell's flags include the If you do that, you'll have yourself a maze :-). Some optimization tips:
.
(here C is the cell where the camera is and X are the cells around the camera - of course i used only cells which are only once cell apart from the camera for illustration purposes but you should use more than that - like 16 cells for example. Just make sure your maps will never have an area with empty space that can see more than 16 cells or whatever you decide) Of course casting rays will probably produce better results :-). Well, i think that is enough information to give you a starting point :-). Of course Stackoverflow is here for any other question you might have :-P |
|||
|
|
|
The code to generate the maze should be independent from the drawing. You could try to generate the visual in a console first and then using OpenGL. This is the kind of layout you could use in the console, where S == Start et E == End.
The underlying structure could be a two-dimensional array of structs which tell where you can move from a specific position in the maze :
Now to generate the maze, I'm sure there are plenty of ways to do it. A simple solution: Initialize the maze with walls (every boolean to false) and then make a walkable path between S and E. Then randomly set the booleans without affecting your path. Have fun :) |
|||
|
|
|
Use a map editor. Get started with something like QuArK. Also check out Game Level Builder. This may be more than what you are looking for, but I thought I'd reference it here anyway. |
||||
|
|
|
You may not even need to use OpenGL for this. John Blackburn has a post where he shows how to make a maze-like structure using only Core Animation. If the performance of such a solution was good enough for you, it could save a lot of code. |
|||
|
|
|
I have done this, and what I recommend you to do, is a mix of what has been said before. 1) Write an algorithm capable of actually creating a maze, there are several options here, some pretty simple ones ( IMHO ) , are Kruskal and Primm. You should take a look Here 2) If you are planning to do some sprite work, or game where things actually move, I would recommend to use a pre-made game engine, just to save some work to you. If you want to get deeper into game engine techniques, you will be able to do so later. An excellent OpenSource 2d game engine called Cocos2D is what I would recommend. Good luck with that, maze generation was the way I got into C++ ( and then out of it :P ), a few years ago. |
|||
|
|