Freeciv-3.2
Loading...
Searching...
No Matches
aiair.c
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 2002 - The Freeciv Team
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 "log.h"
20
21/* common */
22#include "combat.h"
23#include "game.h"
24#include "map.h"
25#include "movement.h"
26#include "player.h"
27#include "pf_tools.h"
28#include "unit.h"
29
30/* server */
31#include "citytools.h"
32#include "maphand.h"
33#include "srv_log.h"
34#include "unithand.h"
35#include "unittools.h"
36
37/* server/advisors */
38#include "advbuilding.h"
39#include "advgoto.h"
40
41/* ai */
42#include "handicaps.h"
43
44/* ai/default */
45#include "aitools.h"
46#include "daicity.h"
47#include "daiplayer.h"
48
49#include "aiair.h"
50
51/******************************************************************/
55static inline int regen_turns(struct unit *punit, struct tile *ptile,
56 int lost_hp)
57{
58 struct tile *real_tile = unit_tile(punit);
59 int res, regen, recov;
60
61 punit->tile = ptile;
62 /* unit_list_prepend(ptile, punit); ... (handle "MaxUnitsOnTile" etc.) */
63 regen = hp_gain_coord(punit);
64 recov = get_unit_bonus(punit, EFT_UNIT_RECOVER);
65 if (lost_hp - recov <= 0) {
66 res = 0;
67 } else {
68 res = 1 + (lost_hp - recov) / (recov + regen);
69 }
70 punit->tile = real_tile;
71
72 return res;
73}
74
75/******************************************************************/
86static struct tile *find_nearest_airbase(struct unit *punit,
87 struct pf_path **path)
88{
89 struct player *pplayer = unit_owner(punit);
90 struct pf_parameter parameter;
91 struct pf_map *pfm;
92 struct tile *best = NULL;
93 int lost_hp = unit_type_get(punit)->hp - punit->hp;
94 int best_regt = FC_INFINITY;
95 const struct civ_map *nmap = &(wld.map);
96
97 pft_fill_unit_parameter(&parameter, nmap, punit);
98 parameter.omniscience = !has_handicap(pplayer, H_MAP);
99 pfm = pf_map_new(&parameter);
100
101 pf_map_move_costs_iterate(pfm, ptile, move_cost, TRUE) {
102 if (move_cost > punit->moves_left) {
103 /* Too far! */
104 break;
105 }
106
107 if (is_refuel_point(ptile, pplayer, punit)) {
108 if (lost_hp > 0) {
109 int regt = regen_turns(punit, ptile, lost_hp);
110
111 if (regt <= 0) {
112 /* Nothing better to search */
113 best = ptile;
114 break;
115 } else if (!best || regt < best_regt) {
116 /* Regenerates faster */
117 best_regt = regt;
118 best = ptile;
119 }
120 } else {
121 best = ptile;
122 break;
123 }
124 }
126
127 if (path && best) {
128 *path = pf_map_path(pfm, best);
129 }
130 pf_map_destroy(pfm);
131 return best;
132}
133
134/******************************************************************/
139 struct unit *punit, struct tile *ptile)
140{
141 struct city *acity = tile_city(ptile);
142
143 /* For a virtual unit (punit->id == 0), all targets are good */
144 /* TODO: There is a danger of producing too many units that will not
145 * attack anything. Production should not happen if there is an idle
146 * unit of the same type nearby */
147 if (acity && punit->id != 0
148 && def_ai_city_data(acity, ait)->invasion.occupy == 0
150 /* No units capable of occupying are invading */
151 log_debug("Don't want to attack %s, although we could",
152 city_name_get(acity));
153 return FALSE;
154 }
155
156 return TRUE;
157}
158
159/******************************************************************/
164 struct unit *punit,
165 struct tile *dst_tile)
166{
167 struct unit *pdefender;
168 /* Unit costs in shields */
169 int balanced_cost, unit_cost, victim_cost = 0;
170 /* Unit stats */
171 int unit_attack, victim_defense;
172 /* Final answer */
173 adv_want profit;
174 /* Time spent in the air */
175 int sortie_time;
176
177#define PROB_MULTIPLIER 100 /* Should unify with those in combat.c */
178
179 if (!can_unit_attack_tile(punit, NULL, dst_tile)
180 || !(pdefender = get_defender(nmap, punit, dst_tile, NULL))) {
181 return 0;
182 }
183
184 /* Ok, we can attack, but is it worth it? */
185
186 /* Cost of our unit */
188 /* This is to say "wait, ill unit will get better!" */
189 unit_cost = unit_cost * unit_type_get(punit)->hp / punit->hp;
190
191 /* Determine cost of enemy units */
192 victim_cost = stack_cost(punit, pdefender);
193 if (0 == victim_cost) {
194 return 0;
195 }
196
197 /* Missile would die 100% so we adjust the victim_cost -- GB */
198 if (utype_can_do_action(unit_type_get(punit), ACTION_SUICIDE_ATTACK)) {
199 /* Assume that the attack will be a suicide attack even if a regular
200 * attack may be legal. */
201 victim_cost -= unit_build_shield_cost_base(punit);
202 }
203
204 unit_attack = (int) (PROB_MULTIPLIER
205 * unit_win_chance(nmap, punit, pdefender, NULL));
206
207 victim_defense = PROB_MULTIPLIER - unit_attack;
208
209 balanced_cost = build_cost_balanced(unit_type_get(punit));
210
211 sortie_time
213 action_by_number(ACTION_ATTACK),
215 /* Assume that dst_tile is closer to the tile the actor
216 * unit will attack from than its current tile. */
217 dst_tile,
218 dst_tile) >= MAX_MOVE_FRAGS ? 1 : 0);
219
220 profit = kill_desire(victim_cost, unit_attack, unit_cost, victim_defense, 1)
222 if (profit > 0) {
225 profit, sortie_time, balanced_cost);
226 log_debug("%s at (%d, %d) is a worthy target with profit " ADV_WANT_PRINTF,
227 unit_rule_name(pdefender), TILE_XY(dst_tile), profit);
228 } else {
229 log_debug("%s(%d, %d): %s at (%d, %d) is unworthy with profit " ADV_WANT_PRINTF,
231 unit_rule_name(pdefender), TILE_XY(dst_tile), profit);
232 profit = 0;
233 }
234
235 return profit;
236}
237
238/******************************************************************/
248 const struct civ_map *nmap,
249 struct unit *punit, struct pf_path **path,
250 struct tile **pptile)
251{
252 struct player *pplayer = unit_owner(punit);
253 struct pf_parameter parameter;
254 struct pf_map *pfm;
255 struct tile *best_tile = NULL;
256 adv_want best = 0;
257
258 pft_fill_unit_parameter(&parameter, nmap, punit);
259 parameter.omniscience = !has_handicap(pplayer, H_MAP);
260 pfm = pf_map_new(&parameter);
261
262 /* Let's find something to bomb */
263 pf_map_move_costs_iterate(pfm, ptile, move_cost, FALSE) {
264 if (move_cost >= punit->moves_left) {
265 /* Too far! */
266 break;
267 }
268
269 if (has_handicap(pplayer, H_MAP) && !map_is_known(ptile, pplayer)) {
270 /* The target tile is unknown */
271 continue;
272 }
273
274 if (has_handicap(pplayer, H_FOG)
275 && !map_is_known_and_seen(ptile, pplayer, V_MAIN)) {
276 /* The tile is fogged */
277 continue;
278 }
279
280 if (is_enemy_unit_tile(ptile, pplayer)
282 && can_unit_attack_tile(punit, NULL, ptile)) {
284 ptile);
285
286 if (new_best > best) {
287 best_tile = ptile;
288 best = new_best;
289 log_debug("%s wants to attack tile (%d, %d)",
290 unit_rule_name(punit), TILE_XY(ptile));
291 }
292 }
294
295 /* Return the best values. */
296 if (pptile) {
297 *pptile = best_tile;
298 }
299 if (path) {
300 *path = best_tile ? pf_map_path(pfm, best_tile) : NULL;
301 }
302
303 pf_map_destroy(pfm);
304
305 return best;
306}
307
308/******************************************************************/
319static struct tile *dai_find_strategic_airbase(struct ai_type *ait,
320 struct unit *punit,
321 struct pf_path **path)
322{
323 struct player *pplayer = unit_owner(punit);
324 struct pf_parameter parameter;
325 struct pf_map *pfm;
326 struct tile *best_tile = NULL;
327 struct city *pcity;
328 struct unit *pvirtual = NULL;
329 adv_want best_worth = 0, target_worth;
330 int lost_hp = unit_type_get(punit)->hp - punit->hp;
331 int regen_turns_min = FC_INFINITY;
332 bool defend = FALSE; /* Used only for lost_hp > 0 */
333 bool refuel_start = FALSE; /* Used for not a "grave danger" start */
334 const struct civ_map *nmap = &(wld.map);
335
336 /* Consider staying at the current position
337 * before we generate the map, maybe we should not */
339 /* We suppose here for speed that the recovery effect is global.
340 * It's so in the standard rulesets but might be not elsewhere */
341 int recov = get_unit_bonus(punit, EFT_UNIT_RECOVER);
342 int regen = hp_gain_coord(punit);
343 const struct tile *ptile = unit_tile(punit);
344
345 if (lost_hp > 0 && regen + recov > 0) {
346 regen_turns_min =
347 punit->moved ? lost_hp - recov : lost_hp - (regen + recov);
348 if (regen_turns_min <= 0) {
349 if (lost_hp - recov > 0) {
350 /* Probably, nothing can repair us faster */
351 log_debug("Repairment of %s is almost finished, stays here",
354 return NULL;
355 } else {
356 regen_turns_min = 0;
357 }
358 } else {
359 regen_turns_min /= regen + recov;
360 regen_turns_min += 1;
361 }
362 }
363 pcity = tile_city(ptile);
364 if (pcity
365 && def_ai_city_data(pcity, ait)->grave_danger
366 > (unit_list_size(ptile->units) - 1) << 1) {
367 if (lost_hp <= 0 || regen_turns_min <= 1) {
368 log_debug("%s stays defending %s",
370 return NULL;
371 } else {
372 /* We may find a city in grave danger that restores faster */
373 defend = TRUE;
374 }
375 } else {
376 refuel_start = TRUE;
377 }
378 }
379
380 pft_fill_unit_parameter(&parameter, nmap, punit);
381 parameter.omniscience = !has_handicap(pplayer, H_MAP);
382 pfm = pf_map_new(&parameter);
383 pf_map_move_costs_iterate(pfm, ptile, move_cost, FALSE) {
384 bool chg_for_regen = FALSE;
385
386 if (move_cost >= punit->moves_left) {
387 break; /* Too far! */
388 }
389
390 if (!is_refuel_point(ptile, pplayer, punit)) {
391 continue; /* Cannot refuel here. */
392 }
393
394 if (lost_hp > 0) {
395 /* Don't fly to a point where we'll regenerate longer */
396 int regen_tn = regen_turns(punit, ptile, lost_hp);
397
398 if (regen_turns_min < regen_tn) {
399 log_debug("%s knows a better repair base than %d,%d",
400 unit_rule_name(punit), TILE_XY(ptile));
401 continue;
402 } else if (regen_turns_min > regen_tn) {
403 regen_turns_min = regen_tn;
404 best_tile = ptile;
405 best_worth = 0; /* to be calculated if necessary */
406 chg_for_regen = TRUE;
407 }
408 }
409
410 if ((pcity = tile_city(ptile))
411 /* Two defenders per attacker is enough,
412 * at least considering that planes are usually
413 * expensive and weak city defenders */
414 && def_ai_city_data(pcity, ait)->grave_danger
415 > unit_list_size(ptile->units) << 1) {
416 if (lost_hp <= 0) {
417 best_tile = ptile;
418 break; /* Fly there immediately!! */
419 } else {
420 if (!defend) {
421 /* We maybe have equally regenerating base but not in danger */
422 best_tile = ptile;
423 defend = TRUE;
424 }
425 continue;
426 }
427 } else if (defend) {
428 if (chg_for_regen) {
429 /* We better regenerate faster and take a revenge a bit later */
430 defend = FALSE;
431 } else {
432 /* We already have a base in grave danger that restores not worse */
433 continue;
434 }
435 }
436
437 if (!pvirtual) {
438 pvirtual =
439 unit_virtual_create(pplayer,
442 if (refuel_start) {
443 /* What worth really worth moving out? */
444 adv_want start_worth;
445
446 unit_tile_set(pvirtual, unit_tile(punit));
447 start_worth = find_something_to_bomb(ait, nmap, pvirtual,
448 NULL, NULL);
449 best_worth = MAX(start_worth, 0);
450 }
451 }
452
453 unit_tile_set(pvirtual, ptile);
454 target_worth = find_something_to_bomb(ait, nmap, pvirtual, NULL, NULL);
455 if (target_worth > best_worth) {
456 /* It's either a first find or it's better than the previous. */
457 best_worth = target_worth;
458 best_tile = ptile;
459 /* We can still look for something better. */
460 }
462
463 if (pvirtual) {
464 unit_virtual_destroy(pvirtual);
465 }
466
467 if (path) {
468 /* Stores the path. */
469 *path = best_tile ? pf_map_path(pfm, best_tile) : NULL;
470 }
471 pf_map_destroy(pfm);
472
473 return best_tile;
474}
475
476/******************************************************************/
489void dai_manage_airunit(struct ai_type *ait, struct player *pplayer,
490 struct unit *punit)
491{
492 struct tile *dst_tile = unit_tile(punit);
493 /* Loop prevention */
494 int moves = punit->moves_left;
495 int id = punit->id;
496 struct pf_parameter parameter;
497 struct pf_map *pfm;
498 struct pf_path *path;
499 const struct civ_map *nmap = &(wld.map);
500
502
504 /* We are out in the open, what shall we do? */
505 if (punit->activity == ACTIVITY_GOTO
506 /* We are on a GOTO. Check if it will get us anywhere */
507 && NULL != punit->goto_tile
509 && is_refuel_point(punit->goto_tile, pplayer, punit)) {
510 pfm = pf_map_new(&parameter);
511 path = pf_map_path(pfm, punit->goto_tile);
512 if (path) {
513 bool alive = adv_follow_path(punit, path, punit->goto_tile);
514
515 pf_path_destroy(path);
516 pf_map_destroy(pfm);
517 if (alive && punit->moves_left > 0) {
518 /* Maybe do something else. */
519 dai_manage_airunit(ait, pplayer, punit);
520 }
521 return;
522 }
523 pf_map_destroy(pfm);
524 } else if ((dst_tile = find_nearest_airbase(punit, &path))) {
525 /* Go refuelling */
526 if (!adv_follow_path(punit, path, dst_tile)) {
527 pf_path_destroy(path);
528 return; /* The unit died. */
529 }
530 pf_path_destroy(path);
531 } else {
532 if (punit->fuel == 1) {
533 UNIT_LOG(LOG_DEBUG, punit, "Oops, fallin outta the sky");
534 }
535 def_ai_unit_data(punit, ait)->done = TRUE; /* Won't help trying again */
536 return;
537 }
538
539 } else if (punit->fuel == unit_type_get(punit)->fuel) {
540 /* We only leave a refuel point when we are on full fuel */
541
542 if (find_something_to_bomb(ait, nmap, punit, &path, &dst_tile) > 0) {
543 /* Found target, coordinates are in punit's goto_dest.
544 * TODO: separate attacking into a function, check for the best
545 * tile to attack from */
546 fc_assert_ret(path != NULL && dst_tile != NULL);
547 if (!adv_follow_path(punit, path, dst_tile)) {
548 pf_path_destroy(path);
549 return; /* The unit died. */
550 }
551 pf_path_destroy(path);
552 unit_activity_handling(punit, ACTIVITY_IDLE);
553 } else if ((dst_tile = dai_find_strategic_airbase(ait, punit, &path))) {
554 log_debug("%s will fly to (%i, %i) (%s) to fight there",
555 unit_rule_name(punit), TILE_XY(dst_tile),
556 tile_city(dst_tile) ? city_name_get(tile_city(dst_tile)) : "");
557 def_ai_unit_data(punit, ait)->done = TRUE; /* Wait for next turn */
558 if (!adv_follow_path(punit, path, dst_tile)) {
559 pf_path_destroy(path);
560 return; /* The unit died. */
561 }
562 pf_path_destroy(path);
563 } else {
564 log_debug("%s cannot find anything to kill and is staying put",
567 unit_activity_handling(punit, ACTIVITY_IDLE);
568 }
569 }
570
571 if ((punit = game_unit_by_number(id)) != NULL && punit->moves_left > 0
572 && punit->moves_left != moves) {
573 /* We have moved this turn, might have ended up stuck out in the fields
574 * so, as a safety measure, let's manage again */
575 dai_manage_airunit(ait, pplayer, punit);
576 }
577
578}
579
580/******************************************************************/
586bool dai_choose_attacker_air(struct ai_type *ait, const struct civ_map *nmap,
587 struct player *pplayer,
588 struct city *pcity, struct adv_choice *choice,
589 bool allow_gold_upkeep)
590{
591 bool want_something = FALSE;
592
593 /* This AI doesn't know how to build planes */
594 if (has_handicap(pplayer, H_NOPLANES)) {
595 return FALSE;
596 }
597
598 /* military_advisor_choose_build() does something idiotic,
599 * this function should not be called if there is danger... */
600 if (choice->want >= DAI_WANT_MILITARY_EMERGENCY
601 && choice->type != CT_ATTACKER) {
602 return FALSE;
603 }
604
605 if (!player_knows_techs_with_flag(pplayer, TF_BUILD_AIRBORNE)) {
606 return FALSE;
607 }
608
609 unit_type_iterate(punittype) {
610 struct unit_class *pclass = utype_class(punittype);
611
612 if (pclass->adv.land_move == MOVE_NONE
613 || pclass->adv.sea_move == MOVE_NONE
614 || uclass_has_flag(pclass, UCF_TERRAIN_SPEED)
615 || unit_type_is_losing_hp(pplayer, punittype)) {
616 /* We don't consider this a plane */
617 continue;
618 }
619
620 if (!allow_gold_upkeep && utype_upkeep_cost(punittype, pplayer, O_GOLD) > 0) {
621 continue;
622 }
623
624 if (can_city_build_unit_now(nmap, pcity, punittype)) {
625 struct unit *virtual_unit =
627 pplayer, pcity, punittype,
628 city_production_unit_veteran_level(pcity, punittype));
629 adv_want profit = find_something_to_bomb(ait, nmap, virtual_unit,
630 NULL, NULL);
631
632 if (profit > choice->want) {
633 /* Update choice */
634 choice->want = profit;
635 choice->value.utype = punittype;
636 choice->type = CT_ATTACKER;
637 choice->need_boat = FALSE;
638 adv_choice_set_use(choice, "offensive air");
639 want_something = TRUE;
640 log_debug("%s wants to build %s (want = " ADV_WANT_PRINTF ")",
641 city_name_get(pcity), utype_rule_name(punittype), profit);
642 } else {
643 log_debug("%s doesn't want to build %s (want = " ADV_WANT_PRINTF ")",
644 city_name_get(pcity), utype_rule_name(punittype), profit);
645 }
646 unit_virtual_destroy(virtual_unit);
647 }
649
650 return want_something;
651}
static struct action * action_by_number(action_id act_id)
Definition actions.h:635
#define TRADE_WEIGHTING
Definition advbuilding.h:21
#define SHIELD_WEIGHTING
Definition advbuilding.h:20
#define adv_choice_set_use(_choice, _use)
Definition advchoice.h:85
@ CT_ATTACKER
Definition advchoice.h:40
bool adv_follow_path(struct unit *punit, struct pf_path *path, struct tile *ptile)
Definition advgoto.c:47
static struct tile * find_nearest_airbase(struct unit *punit, struct pf_path **path)
Definition aiair.c:86
void dai_manage_airunit(struct ai_type *ait, struct player *pplayer, struct unit *punit)
Definition aiair.c:489
static adv_want find_something_to_bomb(struct ai_type *ait, const struct civ_map *nmap, struct unit *punit, struct pf_path **path, struct tile **pptile)
Definition aiair.c:247
static adv_want dai_evaluate_tile_for_air_attack(const struct civ_map *nmap, struct unit *punit, struct tile *dst_tile)
Definition aiair.c:163
#define PROB_MULTIPLIER
static int regen_turns(struct unit *punit, struct tile *ptile, int lost_hp)
Definition aiair.c:55
bool dai_choose_attacker_air(struct ai_type *ait, const struct civ_map *nmap, struct player *pplayer, struct city *pcity, struct adv_choice *choice, bool allow_gold_upkeep)
Definition aiair.c:586
static bool dai_should_we_air_attack_tile(struct ai_type *ait, struct unit *punit, struct tile *ptile)
Definition aiair.c:138
static struct tile * dai_find_strategic_airbase(struct ai_type *ait, struct unit *punit, struct pf_path **path)
Definition aiair.c:319
int stack_cost(struct unit *pattacker, struct unit *pdefender)
Definition aitools.c:1282
adv_want military_amortize(struct player *pplayer, struct city *pcity, adv_want value, int delay, int build_cost)
Definition aitools.c:118
#define DAI_WANT_MILITARY_EMERGENCY
Definition aitools.h:32
const char * city_name_get(const struct city *pcity)
Definition city.c:1137
int city_production_unit_veteran_level(struct city *pcity, const struct unit_type *punittype)
Definition city.c:804
bool can_city_build_unit_now(const struct civ_map *nmap, const struct city *pcity, const struct unit_type *punittype)
Definition city.c:947
double unit_win_chance(const struct civ_map *nmap, const struct unit *attacker, const struct unit *defender, const struct action *paction)
Definition combat.c:478
struct unit * get_defender(const struct civ_map *nmap, const struct unit *attacker, const struct tile *ptile, const struct action *paction)
Definition combat.c:836
bool can_unit_attack_tile(const struct unit *punit, const struct action *paction, const struct tile *dest_tile)
Definition combat.c:311
static struct ai_city * def_ai_city_data(const struct city *pcity, struct ai_type *deftype)
Definition daiplayer.h:42
static struct unit_ai * def_ai_unit_data(const struct unit *punit, struct ai_type *deftype)
Definition daiplayer.h:48
adv_want kill_desire(adv_want benefit, int attack, int loss, int vuln, int victim_count)
Definition daiunit.c:342
int build_cost_balanced(const struct unit_type *punittype)
Definition daiunit.c:250
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
int get_unit_bonus(const struct unit *punit, enum effect_type effect_type)
Definition effects.c:1070
float adv_want
Definition fc_types.h:1354
#define ADV_WANT_PRINTF
Definition fc_types.h:1355
@ O_GOLD
Definition fc_types.h:101
struct world wld
Definition game.c:63
struct unit * game_unit_by_number(int id)
Definition game.c:116
struct city * game_city_by_number(int id)
Definition game.c:107
bool has_handicap(const struct player *pplayer, enum handicap_type htype)
Definition handicaps.c:66
@ H_MAP
Definition handicaps.h:28
@ H_NOPLANES
Definition handicaps.h:27
@ H_FOG
Definition handicaps.h:26
#define fc_assert_ret(condition)
Definition log.h:191
#define log_debug(message,...)
Definition log.h:115
@ LOG_DEBUG
Definition log.h:34
bool same_pos(const struct tile *tile1, const struct tile *tile2)
Definition map.c:940
bool map_is_known(const struct tile *ptile, const struct player *pplayer)
Definition maphand.c:894
bool map_is_known_and_seen(const struct tile *ptile, const struct player *pplayer, enum vision_layer vlayer)
Definition maphand.c:920
#define MAX_MOVE_FRAGS
Definition movement.h:29
void pf_path_destroy(struct pf_path *path)
struct pf_map * pf_map_new(const struct pf_parameter *parameter)
struct pf_path * pf_map_path(struct pf_map *pfm, struct tile *ptile)
void pf_map_destroy(struct pf_map *pfm)
#define pf_map_move_costs_iterate_end
#define pf_map_move_costs_iterate(ARG_pfm, NAME_tile, NAME_cost, COND_from_start)
void pft_fill_unit_parameter(struct pf_parameter *parameter, const struct civ_map *nmap, const struct unit *punit)
Definition pf_tools.c:840
bool player_knows_techs_with_flag(const struct player *pplayer, enum tech_flag_id flag)
Definition player.c:1328
struct city * player_city_by_number(const struct player *pplayer, int city_id)
Definition player.c:1203
#define FC_INFINITY
Definition shared.h:36
#define MAX(x, y)
Definition shared.h:54
#define UNIT_LOG(loglevel, punit, msg,...)
Definition srv_log.h:98
enum choice_type type
Definition advchoice.h:46
adv_want want
Definition advchoice.h:48
universals_u value
Definition advchoice.h:47
bool need_boat
Definition advchoice.h:49
Definition ai.h:50
Definition city.h:320
Definition tile.h:50
struct unit_list * units
Definition tile.h:58
bool done
Definition daiunit.h:44
enum move_level sea_move
Definition unittype.h:163
struct unit_class::@85 adv
enum move_level land_move
Definition unittype.h:162
Definition unit.h:138
enum unit_activity activity
Definition unit.h:157
int moves_left
Definition unit.h:150
int id
Definition unit.h:145
bool moved
Definition unit.h:173
int hp
Definition unit.h:151
int fuel
Definition unit.h:153
struct tile * tile
Definition unit.h:140
int homecity
Definition unit.h:146
struct tile * goto_tile
Definition unit.h:155
int veteran
Definition unit.h:152
struct civ_map map
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
#define TILE_XY(ptile)
Definition tile.h:43
const struct unit_type * utype
Definition fc_types.h:721
bool unit_type_is_losing_hp(const struct player *pplayer, const struct unit_type *punittype)
Definition unit.c:2248
int hp_gain_coord(const struct unit *punit)
Definition unit.c:2170
struct unit * unit_virtual_create(struct player *pplayer, struct city *pcity, const struct unit_type *punittype, int veteran_level)
Definition unit.c:1632
void unit_virtual_destroy(struct unit *punit)
Definition unit.c:1737
void unit_tile_set(struct unit *punit, struct tile *ptile)
Definition unit.c:1263
#define unit_tile(_pu)
Definition unit.h:397
static bool is_enemy_unit_tile(const struct tile *ptile, const struct player *pplayer)
Definition unit.h:420
#define CHECK_UNIT(punit)
Definition unit.h:270
#define unit_owner(_pu)
Definition unit.h:396
bool unit_activity_handling(struct unit *punit, enum unit_activity new_activity)
Definition unithand.c:6471
bool is_refuel_point(const struct tile *ptile, const struct player *pplayer, const struct unit *punit)
Definition unittools.c:1524
bool is_unit_being_refueled(const struct unit *punit)
Definition unittools.c:1515
const struct unit_type * unit_type_get(const struct unit *punit)
Definition unittype.c:123
int utype_upkeep_cost(const struct unit_type *ut, struct player *pplayer, Output_type_id otype)
Definition unittype.c:132
const char * unit_rule_name(const struct unit *punit)
Definition unittype.c:1587
int unit_build_shield_cost_base(const struct unit *punit)
Definition unittype.c:1484
int utype_pays_mp_for_action_estimate(const struct civ_map *nmap, const struct action *paction, const struct unit_type *putype, const struct player *act_player, const struct tile *act_tile, const struct tile *tgt_tile)
Definition unittype.c:1393
const char * utype_rule_name(const struct unit_type *punittype)
Definition unittype.c:1578
bool unit_can_take_over(const struct unit *punit)
Definition unittype.c:264
bool utype_can_do_action(const struct unit_type *putype, const action_id act_id)
Definition unittype.c:371
static bool uclass_has_flag(const struct unit_class *punitclass, enum unit_class_flag_id flag)
Definition unittype.h:766
#define utype_class(_t_)
Definition unittype.h:749
@ MOVE_NONE
Definition unittype.h:144
#define unit_type_iterate(_p)
Definition unittype.h:855
#define unit_type_iterate_end
Definition unittype.h:862