ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/maze_gen.h
Revision: 1.1.1.1 (vendor branch)
Committed: Fri Feb 3 07:14:21 2006 UTC (18 years, 3 months ago) by root
Content type: text/plain
Branch: UPSTREAM
CVS Tags: UPSTREAM_2006_02_03, rel-2_0, rel-2_1, UPSTREAM_2006_03_15, LAST_C_VERSION, UPSTREAM_2006_02_22, difficulty_fix_merge_060810_2300
Branch point for: difficulty_fix
Changes since 1.1: +0 -0 lines
Log Message:
initial import

File Contents

# Content
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);