summaryrefslogtreecommitdiff
path: root/map_data.h
blob: a38bd0855732ee3a649afa94ad5e57d24045d693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

enum file_index {
	file_border_ply=0,
	file_bridge_ply,
	file_height_ply,
	file_other_ply,
	file_rail_ply,
	file_sea_ply,
	file_street_bti,
	file_street_str,
	file_strname_stn,
	file_town_twn,
	file_tunnel_ply,
	file_water_ply,
	file_woodland_ply,
	file_end
};

struct map_data {
	struct file *file[file_end];
	struct map_data *next;
};

struct map_data *load_maps(char *map);

struct transformation;
struct block_info;

void map_data_foreach(struct map_data *mdata, int file, struct transformation *t, int limit,
     void(*func)(struct block_info *, unsigned char *, unsigned char *, void *), void *data);