ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/maze_gen.h
Revision: 1.1
Committed: Fri Feb 3 07:14:21 2006 UTC (18 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
Branch point for: UPSTREAM
Log Message:
Initial revision

File Contents

# User Rev Content
1 root 1.1
2    
3     /*#include <random_map.h> */
4     char **maze_gen(int xsize, int ysize,int option); /* the outside interface routine */
5     void fill_maze_full(char **maze,int x,int y,int xsize,int ysize);
6     void fill_maze_sparse(char **maze,int x,int y,int xsize,int ysize);
7     void make_wall_free_list(int xsize,int ysize);
8     void pop_wall_point(int *x, int *y);
9     int find_free_point(char **maze,int *x,int *y,int xc, int yc,int xsize,int ysize);