Freeciv-3.3
Loading...
Searching...
No Matches
sanitycheck.c
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
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
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18/* utility */
19#include "bitvector.h"
20#include "log.h"
21
22/* common */
23#include "city.h"
24#include "game.h"
25#include "government.h"
26#include "map.h"
27#include "movement.h"
28#include "nation.h"
29#include "player.h"
30#include "research.h"
31#include "specialist.h"
32#include "terrain.h"
33#include "unit.h"
34#include "unitlist.h"
35
36/* server */
37#include "citytools.h"
38#include "cityturn.h" /* city_repair_size() */
39#include "diplhand.h" /* valid_dst_closest() */
40#include "maphand.h"
41#include "plrhand.h"
42#include "srv_main.h"
43#include "unittools.h"
44
45#include "sanitycheck.h"
46
47
48#ifdef SANITY_CHECKING
49
50#define SANITY_FAIL(format, ...) \
51 fc_assert_fail(file, function, line, NULL, format, ## __VA_ARGS__)
52
53#define SANITY_CHECK(check) \
54 fc_assert_full(file, function, line, check, , NOLOGMSG, NOLOGMSG)
55
56#define SANITY_CITY(_city, check) \
57 fc_assert_full(file, function, line, check, , \
58 "(%4d, %4d) in \"%s\"[%d]", TILE_XY((_city)->tile), \
59 city_name_get(_city), city_size_get(_city))
60
61#define SANITY_TERRAIN(_tile, check) \
62 fc_assert_full(file, function, line, check, , \
63 "(%4d, %4d) at \"%s\"", TILE_XY(_tile), \
64 terrain_rule_name(tile_terrain(_tile)))
65
66#define SANITY_TILE(_tile, check) \
67 do { \
68 struct city *_tile##_city = tile_city(_tile); \
69 if (NULL != _tile##_city) { \
70 SANITY_CITY(_tile##_city, check); \
71 } else { \
72 SANITY_TERRAIN(_tile, check); \
73 } \
74 } while (FALSE)
75
76static void check_city_feelings(const struct city *pcity, const char *file,
77 const char *function, int line);
78
79/**********************************************************************/
82static void check_specials(const char *file, const char *function, int line)
83{
84 whole_map_iterate(&(wld.map), ptile) {
85 const struct terrain *pterrain = tile_terrain(ptile);
86
87 extra_type_iterate(pextra) {
88 if (tile_has_extra(ptile, pextra)) {
89 extra_deps_iterate(&(pextra->reqs), pdep) {
90 SANITY_TILE(ptile, tile_has_extra(ptile, pdep));
92 }
94
96 if (tile_has_extra(ptile, pextra)) {
97 SANITY_TILE(ptile, pterrain->mining_time != 0);
98 }
101 if (tile_has_extra(ptile, pextra)) {
102 SANITY_TILE(ptile, pterrain->irrigation_time != 0);
103 }
105
106 SANITY_TILE(ptile, terrain_index(pterrain) >= T_FIRST
107 && terrain_index(pterrain) < terrain_count());
109}
110
111/**********************************************************************/
114static void check_fow(const char *file, const char *function, int line)
115{
116 if (!game_was_started()) {
117 /* The private map of the players is only allocated at game start. */
118 return;
119 }
120
121 whole_map_iterate(&(wld.map), ptile) {
122 players_iterate(pplayer) {
123 struct player_tile *plr_tile = map_get_player_tile(ptile, pplayer);
124
126 /* underflow of unsigned int */
127 SANITY_TILE(ptile, plr_tile->seen_count[v] < 30000);
128 SANITY_TILE(ptile, plr_tile->own_seen[v] < 30000);
129 SANITY_TILE(ptile, plr_tile->own_seen[v] <= plr_tile->seen_count[v]);
131
132 /* Lots of server bits depend on this. */
133 SANITY_TILE(ptile, plr_tile->seen_count[V_INVIS]
134 <= plr_tile->seen_count[V_MAIN]);
135 SANITY_TILE(ptile, plr_tile->own_seen[V_INVIS]
136 <= plr_tile->own_seen[V_MAIN]);
139
143}
144
145/**********************************************************************/
148static void check_misc(const char *file, const char *function, int line)
149{
150 int nplayers = 0, nbarbs = 0;
151
152 /* Do not use player_slots_iterate as we want to check the index! */
153 player_slots_iterate(pslot) {
154 if (player_slot_is_used(pslot)) {
156 nbarbs++;
157 }
158 nplayers++;
159 }
161
162 SANITY_CHECK(nplayers == player_count());
163 SANITY_CHECK(nbarbs == server.nbarbarians);
164
168}
169
170/**********************************************************************/
173static void check_map(const char *file, const char *function, int line)
174{
175 whole_map_iterate(&(wld.map), ptile) {
176 struct city *pcity = tile_city(ptile);
177 int cont = tile_continent(ptile);
178
179 CHECK_INDEX(tile_index(ptile));
180
181 if (NULL != pcity) {
182 SANITY_TILE(ptile, same_pos(pcity->tile, ptile));
183 SANITY_TILE(ptile, tile_owner(ptile) != NULL);
184 }
185
187 /* Only city tiles are claimed when borders are disabled */
188 SANITY_TILE(ptile, tile_owner(ptile) == NULL);
189 }
190
191 if (is_ocean_tile(ptile)) {
192 SANITY_TILE(ptile, cont < 0);
193 adjc_iterate(&(wld.map), ptile, tile1) {
194 if (is_ocean_tile(tile1)) {
195 SANITY_TILE(ptile, tile_continent(tile1) == cont);
196 }
198 } else {
199 SANITY_TILE(ptile, cont > 0);
200 adjc_iterate(&(wld.map), ptile, tile1) {
201 if (!is_ocean_tile(tile1)) {
202 SANITY_TILE(ptile, tile_continent(tile1) == cont);
203 }
205 }
206
207 unit_list_iterate(ptile->units, punit) {
208 SANITY_TILE(ptile, same_pos(unit_tile(punit), ptile));
209
210 /* Check diplomatic status of stacked units. */
211 unit_list_iterate(ptile->units, punit2) {
215 if (pcity) {
217 city_owner(pcity)));
218 }
221}
222
223/**********************************************************************/
226static bool check_city_good(struct city *pcity, const char *file,
227 const char *function, int line)
228{
229 struct player *pplayer = city_owner(pcity);
230 struct tile *pcenter = city_tile(pcity);
231
232 if (NULL == pcenter) {
233 /* Editor! */
234 SANITY_FAIL("(----,----) city has no tile (skipping remaining tests), "
235 "at %s \"%s\"[%d]%s",
238 "{city center}");
239 return FALSE;
240 }
241
243
246
247 if (NULL != tile_owner(pcenter)) {
248 if (tile_owner(pcenter) != pplayer) {
249 SANITY_FAIL("(%4d,%4d) tile owned by %s, at %s \"%s\"[%d]%s",
254 "{city center}");
255 }
256 }
257
258 unit_list_iterate(pcity->units_supported, punit) {
260 SANITY_CITY(pcity, unit_owner(punit) == pplayer);
262
263 city_built_iterate(pcity, pimprove) {
264 if (is_small_wonder(pimprove)) {
265 SANITY_CITY(pcity, city_from_small_wonder(pplayer, pimprove) == pcity);
266 } else if (is_great_wonder(pimprove)) {
268 }
270
272 struct city *partner = game_city_by_number(proute->partner);
273
274 if (partner != NULL) {
275 struct trade_route *back_route = NULL;
276
278 if (pback->partner == pcity->id) {
280 break;
281 }
283
285
286 if (back_route != NULL) {
287 switch (back_route->dir) {
288 case RDIR_TO:
290 break;
291 case RDIR_FROM:
293 break;
296 break;
297 case RDIR_NONE:
299 break;
300 }
301
302 SANITY_CITY(pcity, proute->goods == back_route->goods);
303 }
304 }
306
309 SANITY_FAIL("(%4d,%4d) Bad worker task %d in \"%s\", removing...",
311 ptask->act,
314 free(ptask);
315 ptask = NULL;
316 }
318
319 return TRUE;
320}
321
322/**********************************************************************/
325static void check_city_size(struct city *pcity, const char *file,
326 const char *function, int line)
327{
328 int delta;
329 int citizen_count = 0;
330 struct tile *pcenter = city_tile(pcity);
331 const struct civ_map *nmap = &(wld.map);
332
334
336 ptile, _index, _x, _y) {
337 if (tile_worked(ptile) == pcity) {
339 }
341
344 if (0 != delta) {
345 SANITY_FAIL("(%4d,%4d) %d citizens not equal [size], "
346 "repairing \"%s\"[%d]", TILE_XY(pcity->tile),
348
350 log_debug("[%s (%d)] specialists: %d", city_name_get(pcity), pcity->id,
352
353 city_repair_size(pcity, delta);
355 }
356}
357
358/**********************************************************************/
362static void check_city_feelings(const struct city *pcity, const char *file,
363 const char *function, int line)
364{
365 int feel;
367
368 for (feel = FEELING_BASE; feel < FEELING_LAST; feel++) {
369 int sum = 0;
370 int ccategory;
371
373 sum += pcity->feel[ccategory][feel];
374 }
375
376 /* While loading savegame, we want to check sanity of values read from the
377 * savegame despite the fact that city workers_frozen level of the city
378 * is above zero -> can't limit sanitycheck callpoints by that. Instead
379 * we check even more relevant needs_arrange. */
380 SANITY_CITY(pcity, pcity->server.needs_arrange == CNA_NOT);
381
383 }
384}
385
386/**********************************************************************/
389void real_sanity_check_city(struct city *pcity, const char *file,
390 const char *function, int line)
391{
392 if (check_city_good(pcity, file, function, line)) {
395 }
396}
397
398/**********************************************************************/
401static void check_cities(const char *file, const char *function, int line)
402{
403 players_iterate(pplayer) {
404 city_list_iterate(pplayer->cities, pcity) {
405 SANITY_CITY(pcity, city_owner(pcity) == pplayer);
406
410}
411
412/**********************************************************************/
415static void check_units(const char *file, const char *function, int line)
416{
417 players_iterate(pplayer) {
418 unit_list_iterate(pplayer->units, punit) {
419 struct tile *ptile = unit_tile(punit);
420 struct city *pcity;
421 struct city *phome;
423
424 SANITY_CHECK(unit_owner(punit) == pplayer);
425
428 punit->homecity));
429 if (phome) {
430 SANITY_CHECK(city_owner(phome) == pplayer);
431 }
432 }
433
434 /* Unit in the correct player list? */
436 punit->id) != NULL);
437
439 SANITY_FAIL("(%4d,%4d) %s has activity %s, "
440 "but it can't continue at %s",
443 tile_get_info_text(ptile, TRUE, 0));
444 }
445
448 }
449
450 pcity = tile_city(ptile);
451 if (pcity) {
453 }
454
456 SANITY_CHECK(punit->hp > 0);
457
458 /* Check for ground units in the ocean. */
460 || ptrans != NULL);
461
462 /* Check for over-full transports. */
465
466 /* Check transporter. This should be last as the pointer ptrans will
467 * be modified. */
468 if (ptrans != NULL) {
469 struct unit *plevel = punit;
470 int level = 0;
471
472 /* Make sure the transporter is on the tile. */
474
475 /* Can punit be cargo for its transporter? */
477
478 /* Check that the unit is listed as transported. */
480 punit) != NULL);
481
482 /* Check the depth of the transportation. */
483 while (ptrans) {
484 struct unit_list *pcargos = unit_transport_cargo(ptrans);
485
488
489 /* Check for next level. */
490 plevel = ptrans;
492 level++;
493 }
494
495 /* Transporter capacity will be checked when transporter itself
496 * is checked */
497 }
498
499 /* Check that cargo is marked as transported with this unit */
505}
506
507/**********************************************************************/
510static void check_players(const char *file, const char *function, int line)
511{
512 players_iterate(pplayer) {
513 int found_primary_capital = 0;
514
515 if (!pplayer->is_alive) {
516 /* Dead players' units and cities are disbanded in kill_player(). */
517 SANITY_CHECK(unit_list_size(pplayer->units) == 0);
518 SANITY_CHECK(city_list_size(pplayer->cities) == 0);
519
520 continue;
521 }
522
523 SANITY_CHECK(pplayer->server.adv != NULL);
524 SANITY_CHECK(!pplayer->nation || pplayer->nation->player == pplayer);
526
528 || city_list_size(pplayer->cities) == 0);
529
530 city_list_iterate(pplayer->cities, pcity) {
531 if (pcity->capital == CAPITAL_PRIMARY) {
533 }
536
539
540 if (pplayer2 == pplayer) {
541 break; /* Do diplomatic sanity check only once per player couple. */
542 }
543
546 SANITY_CHECK(state1->type == state2->type);
547 SANITY_CHECK(state1->max_state == state2->max_state);
549 if (state1->type == DS_CEASEFIRE
550 || state1->type == DS_ARMISTICE) {
551 SANITY_CHECK(state1->turns_left == state2->turns_left);
552 }
553 if (state1->type == DS_TEAM) {
557 if (pplayer->is_alive && pplayer2->is_alive) {
560 }
561 }
562 if (pplayer->is_alive
563 && pplayer2->is_alive
564 && pplayers_allied(pplayer, pplayer2)) {
567
572 }
574
575 if (pplayer->revolution_finishes == -1) {
577 SANITY_FAIL("%s government is anarchy, but does not finish!",
579 }
581 } else if (pplayer->revolution_finishes > game.info.turn) {
583 } else {
584 /* Things may vary in this case depending on when the sanity_check
585 * call is made. No better check is possible. */
586 }
587
588 /* Dying players shouldn't be left around. But they are. */
591
592 nations_iterate(pnation) {
593 SANITY_CHECK(!pnation->player || pnation->player->nation == pnation);
595
598 SANITY_CHECK(pplayer->team == pteam);
601}
602
603/**********************************************************************/
606static void check_teams(const char *file, const char *function, int line)
607{
608 int count[MAX_NUM_TEAM_SLOTS];
609
610 memset(count, 0, sizeof(count));
611 players_iterate(pplayer) {
612 /* For the moment, all players have teams. */
613 SANITY_CHECK(pplayer->team != NULL);
614 if (pplayer->team) {
615 count[team_index(pplayer->team)]++;
616 }
618
624 == count[team_slot_index(tslot)]);
625 }
627}
628
629/**********************************************************************/
632static void
633check_researches(const char *file, const char *function, int line)
634{
637 || A_UNSET == presearch->researching
638 || is_future_tech(presearch->researching)
639 || (A_NONE != presearch->researching
640 && valid_advance_by_number(presearch->researching)));
641 SANITY_CHECK(A_UNSET == presearch->tech_goal
642 || (A_NONE != presearch->tech_goal
643 && valid_advance_by_number(presearch->tech_goal)));
644 SANITY_CHECK(presearch->techs_researched
647}
648
649/**********************************************************************/
652static void check_connections(const char *file, const char *function,
653 int line)
654{
656
657 /* Other lists are subsets of all_connections */
660}
661
662/**********************************************************************/
671void real_sanity_check(const char *file, const char *function, int line)
672{
673 if (!map_is_empty()) {
674 /* Don't sanity-check the map if it hasn't been created yet (this
675 * happens when loading scenarios). */
677 check_map(file, function, line);
678 check_cities(file, function, line);
679 check_units(file, function, line);
680 check_fow(file, function, line);
681 }
682 check_misc(file, function, line);
684 check_teams(file, function, line);
687}
688
689/**********************************************************************/
693void real_sanity_check_tile(struct tile *ptile, const char *file,
694 const char *function, int line)
695{
696 SANITY_CHECK(ptile != NULL);
697 SANITY_CHECK(ptile->terrain != NULL);
698
699 unit_list_iterate(ptile->units, punit) {
700 /* Check if the units can survive on the tile (terrain). Here only the
701 * 'easy' test if the unit is transported is done. A complete check is
702 * done by check_units() in real_sanity_check(). */
703 if (!can_unit_exist_at_tile(&(wld.map), punit, ptile)
704 && !unit_transported(punit)) {
705 SANITY_FAIL("(%4d,%4d) %s can't survive on %s", TILE_XY(ptile),
707 }
709}
710
711#endif /* SANITY_CHECKING */
#define BV_ISSET(bv, bit)
Definition bitvector.h:86
const char * city_name_get(const struct city *pcity)
Definition city.c:1137
void city_refresh_from_main_map(const struct civ_map *nmap, struct city *pcity, bool *workers_map)
Definition city.c:3201
int city_map_radius_sq_get(const struct city *pcity)
Definition city.c:137
void citylog_map_workers(enum log_level level, struct city *pcity)
Definition city.c:446
citizens city_specialists(const struct city *pcity)
Definition city.c:3342
@ CNA_NOT
Definition city.h:303
#define city_list_iterate(citylist, pcity)
Definition city.h:505
#define city_tile(_pcity_)
Definition city.h:561
static citizens city_size_get(const struct city *pcity)
Definition city.h:566
#define city_tile_iterate_skip_free_worked(_nmap, _radius_sq, _city_tile, _tile, _index, _x, _y)
Definition city.h:211
@ CITIZEN_LAST
Definition city.h:269
@ CITIZEN_HAPPY
Definition city.h:265
#define city_owner(_pcity_)
Definition city.h:560
#define city_tile_iterate_skip_free_worked_end
Definition city.h:219
#define city_list_iterate_end
Definition city.h:507
@ FEELING_LAST
Definition city.h:282
@ FEELING_BASE
Definition city.h:276
#define city_built_iterate(_pcity, _p)
Definition city.h:831
#define city_built_iterate_end
Definition city.h:837
void city_repair_size(struct city *pcity, int change)
Definition cityturn.c:851
char * incite_cost
Definition comments.c:76
struct unit struct city struct unit struct tile struct extra_type const struct act_prob *act_probs int actor_unit_id struct unit struct unit * punit
Definition dialogs_g.h:74
struct unit struct city struct unit struct tile struct extra_type const struct act_prob *act_probs int actor_unit_id struct unit struct unit int const struct action *paction struct unit struct city * pcity
Definition dialogs_g.h:78
enum diplstate_type valid_dst_closest(struct player_diplstate *dst)
Definition diplhand.c:108
#define extra_type_iterate(_p)
Definition extras.h:315
#define extra_deps_iterate(_reqs, _dep)
Definition extras.h:371
#define extra_type_iterate_end
Definition extras.h:321
#define extra_deps_iterate_end
Definition extras.h:379
#define extra_type_by_cause_iterate_end
Definition extras.h:339
#define extra_type_by_cause_iterate(_cause, _extra)
Definition extras.h:333
@ BORDERS_DISABLED
Definition fc_types.h:745
#define IDENTITY_NUMBER_ZERO
Definition fc_types.h:92
struct civ_game game
Definition game.c:61
struct world wld
Definition game.c:62
struct city * game_city_by_number(int id)
Definition game.c:106
#define GAME_TRANSPORT_MAX_RECURSIVE
Definition game.h:767
struct government * government_by_number(const Government_type_id gov)
Definition government.c:103
struct government * government_of_player(const struct player *pplayer)
Definition government.c:114
bool is_great_wonder(const struct impr_type *pimprove)
struct city * city_from_small_wonder(const struct player *pplayer, const struct impr_type *pimprove)
struct city * city_from_great_wonder(const struct impr_type *pimprove)
bool is_small_wonder(const struct impr_type *pimprove)
#define log_debug(message,...)
Definition log.h:116
@ LOG_DEBUG
Definition log.h:35
#define fc_assert_exit(condition)
Definition log.h:198
bool same_pos(const struct tile *tile1, const struct tile *tile2)
Definition map.c:1076
bool map_is_empty(void)
Definition map.c:148
#define adjc_iterate_end
Definition map.h:430
#define CHECK_INDEX(mindex)
Definition map.h:153
#define adjc_iterate(nmap, center_tile, itr_tile)
Definition map.h:425
#define whole_map_iterate(_map, _tile)
Definition map.h:573
#define whole_map_iterate_end
Definition map.h:582
bool really_gives_vision(struct player *me, struct player *them)
Definition maphand.c:343
struct player_tile * map_get_player_tile(const struct tile *ptile, const struct player *pplayer)
Definition maphand.c:1387
bool can_unit_exist_at_tile(const struct civ_map *nmap, const struct unit *punit, const struct tile *ptile)
Definition movement.c:318
const char * nation_rule_name(const struct nation_type *pnation)
Definition nation.c:138
struct nation_type * nation_of_player(const struct player *pplayer)
Definition nation.c:444
#define nations_iterate_end
Definition nation.h:336
#define nations_iterate(NAME_pnation)
Definition nation.h:333
bool player_slot_is_used(const struct player_slot *pslot)
Definition player.c:448
struct unit * player_unit_by_number(const struct player *pplayer, int unit_id)
Definition player.c:1229
bool players_on_same_team(const struct player *pplayer1, const struct player *pplayer2)
Definition player.c:1480
int player_count(void)
Definition player.c:817
int player_slot_count(void)
Definition player.c:418
enum dipl_reason pplayer_can_make_treaty(const struct player *p1, const struct player *p2, enum diplstate_type treaty)
Definition player.c:159
bool player_has_flag(const struct player *pplayer, enum plr_flag_id flag)
Definition player.c:1996
bool player_has_real_embassy(const struct player *pplayer, const struct player *pplayer2)
Definition player.c:240
struct city * player_city_by_number(const struct player *pplayer, int city_id)
Definition player.c:1203
struct player_diplstate * player_diplstate_get(const struct player *plr1, const struct player *plr2)
Definition player.c:324
bool pplayers_allied(const struct player *pplayer, const struct player *pplayer2)
Definition player.c:1409
struct player * player_slot_get_player(const struct player_slot *pslot)
Definition player.c:437
#define players_iterate_end
Definition player.h:542
dipl_reason
Definition player.h:192
@ DIPL_ALLIANCE_PROBLEM_THEM
Definition player.h:194
@ DIPL_ALLIANCE_PROBLEM_US
Definition player.h:194
#define players_iterate(_pplayer)
Definition player.h:537
#define player_list_iterate(playerlist, pplayer)
Definition player.h:560
static bool is_barbarian(const struct player *pplayer)
Definition player.h:491
#define player_slots_iterate(_pslot)
Definition player.h:528
#define player_list_iterate_end
Definition player.h:562
#define player_slots_iterate_end
Definition player.h:532
int normal_player_count(void)
Definition plrhand.c:3209
int recalculate_techs_researched(const struct research *presearch)
Definition research.c:1353
#define researches_iterate(_presearch)
Definition research.h:155
#define researches_iterate_end
Definition research.h:158
struct setting_list * level[OLEVELS_NUM]
Definition settings.c:190
bool game_was_started(void)
Definition srv_main.c:354
enum server_states server_state(void)
Definition srv_main.c:338
Definition city.h:317
struct conn_list * est_connections
Definition game.h:97
struct packet_game_info info
Definition game.h:89
struct conn_list * web_client_connections
Definition game.h:99
struct conn_list * all_connections
Definition game.h:96
struct civ_game::@32::@36 server
int max_players
Definition game.h:163
struct government * government_during_revolution
Definition game.h:94
struct player * player
Definition nation.h:118
enum borders_mode borders
Government_type_id government_during_revolution_id
struct city_list * cities
Definition player.h:281
bv_pstatus status
Definition player.h:322
int revolution_finishes
Definition player.h:273
struct team * team
Definition player.h:261
struct unit_list * units
Definition player.h:282
bool is_alive
Definition player.h:268
struct player::@73::@75 server
struct nation_type * nation
Definition player.h:260
struct adv_data * adv
Definition player.h:334
Definition team.c:40
int mining_time
Definition terrain.h:118
int irrigation_time
Definition terrain.h:115
Definition tile.h:50
struct unit_list * units
Definition tile.h:58
struct terrain * terrain
Definition tile.h:57
Definition unit.h:140
enum unit_activity activity
Definition unit.h:159
int moves_left
Definition unit.h:152
int id
Definition unit.h:147
int hp
Definition unit.h:153
struct unit::@84::@87 server
struct tile * tile
Definition unit.h:142
struct extra_type * activity_target
Definition unit.h:167
int homecity
Definition unit.h:148
struct civ_map map
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
int team_count(void)
Definition team.c:375
int team_index(const struct team *pteam)
Definition team.c:383
struct team * team_slot_get_team(const struct team_slot *tslot)
Definition team.c:150
int team_slot_index(const struct team_slot *tslot)
Definition team.c:138
const struct player_list * team_members(const struct team *pteam)
Definition team.c:456
bool team_slot_is_used(const struct team_slot *tslot)
Definition team.c:162
#define team_slots_iterate_end
Definition team.h:77
#define team_slots_iterate(_tslot)
Definition team.h:72
#define teams_iterate_end
Definition team.h:87
#define teams_iterate(_pteam)
Definition team.h:82
#define MAX_NUM_TEAM_SLOTS
Definition team.h:27
bool is_future_tech(Tech_type_id tech)
Definition tech.c:281
struct advance * valid_advance_by_number(const Tech_type_id id)
Definition tech.c:176
#define A_NONE
Definition tech.h:43
#define A_UNSET
Definition tech.h:48
Terrain_type_id terrain_count(void)
Definition terrain.c:118
Terrain_type_id terrain_index(const struct terrain *pterrain)
Definition terrain.c:138
#define is_ocean_tile(ptile)
Definition terrain.h:196
#define terrain_has_flag(terr, flag)
Definition terrain.h:176
#define T_FIRST
Definition terrain.h:65
const char * tile_get_info_text(const struct tile *ptile, bool include_nuisances, int linebreaks)
Definition tile.c:771
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
#define tile_index(_pt_)
Definition tile.h:89
#define tile_worked(_tile)
Definition tile.h:115
#define tile_terrain(_tile)
Definition tile.h:111
#define TILE_XY(ptile)
Definition tile.h:43
#define tile_continent(_tile)
Definition tile.h:93
#define tile_has_extra(ptile, pextra)
Definition tile.h:148
#define tile_owner(_tile)
Definition tile.h:97
#define trade_routes_iterate_end
#define trade_routes_iterate(c, proute)
int get_transporter_occupancy(const struct unit *ptrans)
Definition unit.c:1820
bool unit_transport_check(const struct unit *pcargo, const struct unit *ptrans)
Definition unit.c:2556
struct unit * unit_transport_get(const struct unit *pcargo)
Definition unit.c:2518
bool can_unit_continue_current_activity(const struct civ_map *nmap, struct unit *punit)
Definition unit.c:865
const char * get_activity_text(enum unit_activity activity)
Definition unit.c:638
int get_transporter_capacity(const struct unit *punit)
Definition unit.c:297
bool unit_transported(const struct unit *pcargo)
Definition unit.c:2502
struct unit_list * unit_transport_cargo(const struct unit *ptrans)
Definition unit.c:2528
bool activity_requires_target(enum unit_activity activity)
Definition unit.c:590
#define unit_tile(_pu)
Definition unit.h:404
#define unit_owner(_pu)
Definition unit.h:403
#define unit_list_iterate(unitlist, punit)
Definition unitlist.h:31
#define unit_list_iterate_end
Definition unitlist.h:33
const char * unit_rule_name(const struct unit *punit)
Definition unittype.c:1593
#define vision_layer_iterate(v)
Definition vision.h:77
#define vision_layer_iterate_end
Definition vision.h:80
bool worker_task_is_sane(struct worker_task *ptask)
Definition workertask.c:40
#define worker_task_list_iterate(tasklist, ptask)
Definition workertask.h:33
#define worker_task_list_iterate_end
Definition workertask.h:35