Freeciv-3.3
Loading...
Searching...
No Matches
mapgen_utils.h
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 2004 - Marcelo J. Burda
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13#ifndef FC__MAPGEN_UTILS_H
14#define FC__MAPGEN_UTILS_H
15
16typedef void (*tile_knowledge_cb)(struct tile *ptile);
17
18#define MG_UNUSED mapgen_terrain_property_invalid()
19
20void generator_free(void);
21
22void regenerate_lakes(void);
23void smooth_water_depth(void);
25
27struct terrain *pick_ocean(int depth, bool frozen);
28
31 enum mapgen_terrain_property prefer,
32 enum mapgen_terrain_property avoid);
33struct extra_type *pick_resource(const struct terrain *pterrain);
34
35/* Provide a block to convert from native to map coordinates. For instance
36 * do_in_map_pos(mx, my, xn, yn) {
37 * tile_set_terrain(mx, my, T_OCEAN);
38 * } do_in_map_pos_end;
39 * Note: that the map position is declared as const and can't be changed
40 * inside the block.
41 */
42#define do_in_map_pos(nmap, ptile, nat_x, nat_y) \
43{ \
44 struct tile *ptile = native_pos_to_tile(nmap, (nat_x), (nat_y)); \
45 {
46
47#define do_in_map_pos_end \
48 } \
49}
50
51/***************************************************************************
52 iterate on selected axe (x if is_X_axis is TRUE) over a interval of -dist
53 to dist around the center_tile
54 _index : the position in the interval of iteration (from -dist to dist)
55 _tile : the tile pointer
56 ***************************************************************************/
57#define axis_iterate(nmap, center_tile, _tile, _index, dist, is_X_axis) \
58{ \
59 int _tile##_x, _tile##_y; \
60 struct tile *_tile; \
61 const struct tile *_tile##_center = (center_tile); \
62 const bool _index##_axis = (is_X_axis); \
63 const int _index##_d = (dist); \
64 int _index = -(_index##_d); \
65 \
66 for (; _index <= _index##_d; _index++) { \
67 int _nat##_x, _nat##_y; \
68 index_to_native_pos(&_nat##_x, &_nat##_y, tile_index(_tile##_center)); \
69 _tile##_x = _nat##_x + (_index##_axis ? _index : 0); \
70 _tile##_y = _nat##_y + (_index##_axis ? 0 : _index); \
71 _tile = native_pos_to_tile(nmap, _tile##_x, _tile##_y); \
72 if (NULL != _tile) {
73
74#define axis_iterate_end \
75 } \
76 } \
77}
78
79/***************************************************************************
80 pdata or pfilter can be NULL!
81***************************************************************************/
82#define whole_map_iterate_filtered(_tile, pdata, pfilter) \
83{ \
84 bool (*_tile##_filter)(const struct tile *vtile, const void *vdata) = (pfilter);\
85 const void *_tile##_data = (pdata); \
86 \
87 whole_map_iterate(&(wld.map), _tile) { \
88 if (NULL == _tile##_filter || (_tile##_filter)(_tile, _tile##_data)) {
89
90#define whole_map_iterate_filtered_end \
91 } \
92 } whole_map_iterate_end; \
93}
94
95bool is_normal_nat_pos(int x, int y);
96
97/* int maps tools */
99 int int_map_max, void *data,
100 bool (*filter)(const struct tile *ptile,
101 const void *data));
102#define adjust_int_map(int_map, int_map_min, int_map_max) \
103 adjust_int_map_filtered(int_map, int_map_min, int_map_max, \
104 (void *)NULL, \
105 (bool (*)(const struct tile *ptile, const void *data))NULL)
106void smooth_int_map(int *int_map, bool zeroes_at_edges);
107
108/* placed_map tool */
109void create_placed_map(void);
110void destroy_placed_map(void);
111void map_set_placed(struct tile *ptile);
112void map_unset_placed(struct tile *ptile);
113bool not_placed(const struct tile *ptile);
116void set_placed_near_pos(struct tile *ptile, int dist);
117
118#endif /* FC__MAPGEN_UTILS_H */
char * incite_cost
Definition comments.c:76
struct extra_type * pick_resource(const struct terrain *pterrain)
void smooth_int_map(int *int_map, bool zeroes_at_edges)
void set_all_ocean_tiles_placed(void)
void create_placed_map(void)
void(* tile_knowledge_cb)(struct tile *ptile)
void map_set_placed(struct tile *ptile)
void destroy_placed_map(void)
void adjust_int_map_filtered(int *int_map, int int_map_min, int int_map_max, void *data, bool(*filter)(const struct tile *ptile, const void *data))
bool not_placed(const struct tile *ptile)
struct terrain * pick_terrain_by_flag(enum terrain_flag_id flag)
void assign_continent_numbers(void)
void regenerate_lakes(void)
void set_placed_near_pos(struct tile *ptile, int dist)
void generator_free(void)
void smooth_water_depth(void)
bool placed_map_is_initialized(void)
bool is_normal_nat_pos(int x, int y)
struct terrain * pick_terrain(enum mapgen_terrain_property target, enum mapgen_terrain_property prefer, enum mapgen_terrain_property avoid)
struct terrain * most_shallow_ocean(bool frozen)
struct terrain * pick_ocean(int depth, bool frozen)
void map_unset_placed(struct tile *ptile)
struct sprite int int y
Definition sprite_g.h:31
struct sprite int x
Definition sprite_g.h:31
struct extra_type::@26 data
Definition tile.h:50