Freeciv-3.2
Loading...
Searching...
No Matches
api_server_edit.c
Go to the documentation of this file.
1/*****************************************************************************
2 Freeciv - Copyright (C) 2005 - The Freeciv Project
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 "rand.h"
20
21/* common */
22#include "map.h"
23#include "movement.h"
24#include "research.h"
25#include "unittype.h"
26
27/* common/scriptcore */
28#include "api_game_find.h"
29#include "luascript.h"
30
31/* server */
32#include "aiiface.h"
33#include "barbarian.h"
34#include "citytools.h"
35#include "cityturn.h" /* city_refresh() auto_arrange_workers() */
36#include "console.h" /* enum rfc_status */
37#include "gamehand.h"
38#include "maphand.h"
39#include "notify.h"
40#include "plrhand.h"
41#include "srv_main.h" /* game_was_started() */
42#include "stdinhand.h"
43#include "techtools.h"
44#include "unithand.h"
45#include "unittools.h"
46
47/* server/scripting */
48#include "script_server.h"
49
50/* server/generator */
51#include "mapgen_utils.h"
52
53#include "api_server_edit.h"
54
55
56/**********************************************************************/
66
67/**********************************************************************/
71static bool
73 int vet_loss)
74{
76 /* Avoid getting overt veteranship if a user requests increasing it */
77 if (vet_loss < 0) {
79
80 vl = punit->veteran - vl + 1;
81 if (vl >= 0) {
82 vet_loss = 0;
83 } else {
85 }
86 }
88 return TRUE;
89 } else {
90 return FALSE;
91 }
92}
93
94/**********************************************************************/
98 int count, int sq_radius)
99{
101 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 2, Tile);
102 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 3, Player);
103 LUASCRIPT_CHECK_ARG(L, 0 <= sq_radius, 5, "radius must be positive");
105 "no partisans in ruleset");
106
107 return place_partisans(ptile, pplayer, count, sq_radius);
108}
109
110/**********************************************************************/
115 City *homecity, int moves_left)
116{
117 return api_edit_create_unit_full(L, pplayer, ptile, ptype, veteran_level,
118 homecity, moves_left, -1, NULL);
119}
120
121/**********************************************************************/
125 Tile *ptile,
127 City *homecity, int moves_left,
128 int hp_left,
130{
131 struct fc_lua *fcl;
132 struct city *pcity;
133 struct unit *punit;
134#ifndef FREECIV_NDEBUG
135 bool placed;
136#endif
137
139 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player, NULL);
140 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 3, Tile, NULL);
141
143
144 LUASCRIPT_CHECK(L, fcl != NULL, "Undefined Freeciv lua state!", NULL);
145
146 if (ptype == NULL
148 return NULL;
149 }
150
151 if (is_non_allied_unit_tile(ptile, pplayer)) {
152 luascript_log(fcl, LOG_ERROR, "create_unit_full: tile is occupied by "
153 "enemy unit");
154 return NULL;
155 }
156
157 pcity = tile_city(ptile);
158 if (pcity != NULL && !pplayers_allied(pplayer, city_owner(pcity))) {
159 luascript_log(fcl, LOG_ERROR, "create_unit_full: tile is occupied by "
160 "enemy city");
161 return NULL;
162 }
163
166 "create_unit_full: player already has unique unit");
167 return NULL;
168 }
169
171 homecity ? homecity->id : 0,
173 if (ptransport) {
174 /* The unit maybe can't freely load into the transport
175 * but must be able to be in it, see can_unit_load() */
176 int ret = same_pos(ptile, unit_tile(ptransport))
178
179 if (!ret) {
181 luascript_log(fcl, LOG_ERROR, "create_unit_full: '%s' cannot transport "
182 "'%s' here",
185 return NULL;
186 }
187 } else if (!can_exist_at_tile(&(wld.map), ptype, ptile)) {
189 luascript_log(fcl, LOG_ERROR, "create_unit_full: '%s' cannot exist at "
190 "tile", utype_rule_name(ptype));
191 return NULL;
192 }
193
194#ifndef FREECIV_NDEBUG
195 placed =
196#endif
199
200 return punit;
201}
202
203/**********************************************************************/
208 bool conquer_city, bool conquer_extra,
209 bool enter_hut, bool frighten_hut)
210{
211 bool alive;
212
216
218 "Can't both enter and frighten a hut at the same time",
219 TRUE);
220
222 /* Can't leave the transport. */
223 return TRUE;
224 }
225
227 unit_tile(punit), dest, FALSE,
228 embark_to, TRUE) != MR_OK) {
229 /* Can't teleport to target. Return that unit is still alive. */
230 return TRUE;
231 }
232
233 /* Teleport first so destination is revealed even if unit dies */
234 alive = unit_move(punit, dest, 0,
238 if (alive) {
239 struct player *owner = unit_owner(punit);
240 struct city *pcity = tile_city(dest);
241
242 if (!can_unit_exist_at_tile(&(wld.map), punit, dest)
243 && !unit_transported(punit)) {
245 return FALSE;
246 }
248 || (pcity && !pplayers_allied(city_owner(pcity), owner))) {
250 return FALSE;
251 }
252 }
253
254 return alive;
255}
256
257/***********************************************************************/
280
281/***********************************************************************/
306
307/***********************************************************************/
332
333/***********************************************************************/
358
359/***********************************************************************/
363 Action *paction, Tile *tgt)
364{
365 bool enabled = FALSE;
366 const struct civ_map *nmap = &(wld.map);
367
372
375 case ATK_UNITS:
377 break;
378 case ATK_TILE:
380 tgt, NULL);
381 break;
382 case ATK_EXTRAS:
384 tgt, NULL);
385 break;
386 case ATK_CITY:
387 /* Not handled here. */
389 break;
390 case ATK_UNIT:
391 /* Not handled here. */
393 break;
394 case ATK_SELF:
395 /* Not handled here. */
397 break;
398 case ATK_COUNT:
399 /* Should not exist */
401 break;
402 }
403
404 if (enabled) {
409 } else {
410 /* Action not enabled */
411 return FALSE;
412 }
413}
414
415/***********************************************************************/
419 Action *paction, Tile *tgt,
420 const char *sub_tgt)
421{
422 struct extra_type *sub_target;
423 bool enabled = FALSE;
424 const struct civ_map *nmap = &(wld.map);
425
431
432 sub_target = extra_type_by_rule_name(sub_tgt);
433 LUASCRIPT_CHECK_ARG(L, sub_target != NULL, 5, "No such extra", FALSE);
434
437 case ATK_UNITS:
439 break;
440 case ATK_TILE:
442 tgt, sub_target);
443 break;
444 case ATK_EXTRAS:
446 tgt, sub_target);
447 break;
448 case ATK_CITY:
449 /* Not handled here. */
451 break;
452 case ATK_UNIT:
453 /* Not handled here. */
455 break;
456 case ATK_SELF:
457 /* Not handled here. */
459 break;
460 case ATK_COUNT:
461 /* Should not exist */
463 break;
464 }
465
466 if (enabled) {
468 tile_index(tgt), sub_target->id,
471 } else {
472 /* Action not enabled */
473 return FALSE;
474 }
475}
476
477/***********************************************************************/
500
501/**********************************************************************/
505{
508
509 if (direction8_is_valid(dir)) {
510 punit->facing = dir;
511
513 } else {
514 log_error("Illegal direction %d for unit from lua script", dir);
515 }
516}
517
518/**********************************************************************/
535
536/**********************************************************************/
549
550/**********************************************************************/
569
570/**********************************************************************/
574{
575 struct terrain *old_terrain;
576
578 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 2, Tile, FALSE);
580
581 old_terrain = tile_terrain(ptile);
582
583 if (old_terrain == pterr
585 && tile_city(ptile) != NULL)) {
586 return FALSE;
587 }
588
593
594 /* FIXME: adv / ai phase handling like in check_terrain_change() */
595
597 }
598
600
602
603 return TRUE;
604}
605
606/**********************************************************************/
610 const char *name)
611{
613 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player, FALSE);
614 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 3, Tile, FALSE);
615
616 /* TODO: Allow initial citizen to be of nationality other than owner */
617 return create_city_for_player(pplayer, ptile, name);
618}
619
620/**********************************************************************/
624{
626 LUASCRIPT_CHECK_ARG_NIL(L, pcity, 2, City);
627
628 remove_city(pcity);
629}
630
631/**********************************************************************/
642
643/**********************************************************************/
647{
649 LUASCRIPT_CHECK_ARG_NIL(L, pcity, 2, City);
651 /* FIXME: may "Special" impr be buildable? */
653 "It is a special item, not a city building");
654
655 if (!city_has_building(pcity, impr)) {
656 bool need_game_info = FALSE;
657 bool need_plr_info = FALSE;
658 struct player *old_owner = NULL, *pplayer = city_owner(pcity);
659 struct city *oldcity;
660
662 if (oldcity) {
664 }
665 if (old_owner && old_owner != pplayer) {
666 /* Great wonders make more changes. */
668 }
669
670 if (oldcity) {
671 if (city_refresh(oldcity)) {
673 }
675 }
676
677 if (city_refresh(pcity)) {
679 }
680 send_city_info(NULL, pcity);
681 if (need_game_info) {
684 }
685 if (need_plr_info) {
686 send_player_info_c(pplayer, NULL);
687 }
688 }
689}
690
691/**********************************************************************/
695{
697 LUASCRIPT_CHECK_ARG_NIL(L, pcity, 2, City);
699
700 if (city_has_building(pcity, impr)) {
701 city_remove_improvement(pcity, impr);
702 send_city_info(NULL, pcity);
703
704 if (is_wonder(impr)) {
705 if (is_great_wonder(impr)) {
707 }
709 }
710 }
711}
712
713/**********************************************************************/
716Player *api_edit_create_player(lua_State *L, const char *username,
717 Nation_Type *pnation, const char *ai)
718{
719 struct player *pplayer = NULL;
720 char buf[128] = "";
721 struct fc_lua *fcl;
722
724 LUASCRIPT_CHECK_ARG_NIL(L, username, 2, string, NULL);
725 if (!ai) {
727 }
728
730
731 LUASCRIPT_CHECK(L, fcl != NULL, "Undefined Freeciv lua state!", NULL);
732
733 if (game_was_started()) {
734 create_command_newcomer(username, ai, FALSE, pnation, &pplayer,
735 buf, sizeof(buf));
736 } else {
737 create_command_pregame(username, ai, FALSE, &pplayer,
738 buf, sizeof(buf));
739 }
740
741 if (strlen(buf) > 0) {
743 }
744
745 return pplayer;
746}
747
748/**********************************************************************/
752{
754 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player);
755
756 pplayer->economic.gold = MAX(0, pplayer->economic.gold + amount);
757
758 send_player_info_c(pplayer, NULL);
759}
760
761/**********************************************************************/
765{
767 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player);
768
769 pplayer->economic.infra_points
770 = MAX(0, pplayer->economic.infra_points + amount);
771
772 send_player_info_c(pplayer, NULL);
773}
774
775/**********************************************************************/
782 Tech_Type *ptech, int cost,
783 bool notify,
784 const char *reason)
785{
786 struct research *presearch;
788 Tech_Type *result;
789
791 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player, NULL);
792 LUASCRIPT_CHECK_ARG(L, cost >= -3, 4, "Unknown give_tech() cost value", NULL);
793
794 presearch = research_get(pplayer);
795 if (ptech) {
796 id = advance_number(ptech);
797 } else {
799 }
800
801 if (is_future_tech(id)
803 if (cost < 0) {
804 if (cost == -1) {
806 } else if (cost == -2) {
808 } else if (cost == -3) {
810 } else {
811
812 cost = 0;
813 }
814 }
817 result = advance_by_number(id);
818 script_tech_learned(presearch, pplayer, result, reason);
819
820 if (notify && result != NULL) {
822 char research_name[MAX_LEN_NAME * 2];
823
825
827 Q_("?fromscript:You acquire %s."), adv_name);
829 /* TRANS: "The Greeks ..." or "The members of
830 * team Red ..." */
831 Q_("?fromscript:The %s acquire %s and share this "
832 "advance with you."),
835 /* TRANS: "The Greeks ..." or "The members of
836 * team Red ..." */
837 Q_("?fromscript:The %s acquire %s."),
839 }
840
841 return result;
842 } else {
843 return NULL;
844 }
845}
846
847/**********************************************************************/
851 const char *tname, const int mod)
852{
853 enum trait tr;
854
856 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player, FALSE);
857 LUASCRIPT_CHECK_ARG_NIL(L, tname, 3, string, FALSE);
858
860
861 LUASCRIPT_CHECK_ARG(L, trait_is_valid(tr), 3, "no such trait", 0);
862
863 pplayer->ai_common.traits[tr].mod += mod;
864
865 return TRUE;
866}
867
868/**********************************************************************/
872 const char *name, Player *pplayer)
873{
874 struct extra_type *pextra;
875
877 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 2, Tile);
878
879 if (name == NULL) {
880 return;
881 }
882
884
885 if (pextra != NULL) {
886 create_extra(ptile, pextra, pplayer);
889 }
890}
891
892/**********************************************************************/
895void api_edit_create_extra(lua_State *L, Tile *ptile, const char *name)
896{
898}
899
900/**********************************************************************/
903void api_edit_create_base(lua_State *L, Tile *ptile, const char *name,
904 Player *pplayer)
905{
906 api_edit_create_owned_extra(L, ptile, name, pplayer);
907}
908
909/**********************************************************************/
912void api_edit_create_road(lua_State *L, Tile *ptile, const char *name)
913{
915}
916
917/**********************************************************************/
920void api_edit_remove_extra(lua_State *L, Tile *ptile, const char *name)
921{
922 struct extra_type *pextra;
923
925 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 2, Tile);
926
927 if (name == NULL) {
928 return;
929 }
930
932
933 if (pextra != NULL && tile_has_extra(ptile, pextra)) {
934 tile_extra_rm_apply(ptile, pextra);
937 }
938}
939
940/**********************************************************************/
943void api_edit_tile_set_label(lua_State *L, Tile *ptile, const char *label)
944{
946 LUASCRIPT_CHECK_SELF(L, ptile);
947 LUASCRIPT_CHECK_ARG_NIL(L, label, 3, string);
948
949 tile_set_label(ptile, label);
950 if (server_state() >= S_S_RUNNING) {
951 send_tile_info(NULL, ptile, FALSE);
952 }
953}
954
955/**********************************************************************/
958void api_edit_tile_show(lua_State *L, Tile *ptile, Player *pplayer)
959{
961 LUASCRIPT_CHECK_SELF(L, ptile);
962 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 3, Player);
963
964 map_show_tile(pplayer, ptile);
965}
966
967/**********************************************************************/
970bool api_edit_tile_hide(lua_State *L, Tile *ptile, Player *pplayer)
971{
972 struct city *pcity;
973
976 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 3, Player, FALSE);
977
978 if (map_is_known_and_seen(ptile, pplayer, V_MAIN)) {
979 /* Can't hide currently seen tile */
980 return FALSE;
981 }
982
983 pcity = tile_city(ptile);
984
985 if (pcity != NULL) {
986 trade_partners_iterate(pcity, partner) {
987 if (really_gives_vision(pplayer, city_owner(partner))) {
988 /* Can't remove vision about trade partner */
989 return FALSE;
990 }
992 }
993
994 dbv_clr(&pplayer->tile_known, tile_index(ptile));
995
996 send_tile_info(pplayer->connections, ptile, TRUE);
997
998 return TRUE;
999}
1000
1001/**********************************************************************/
1005 int effect)
1006{
1010 2, "invalid climate change type");
1011 LUASCRIPT_CHECK_ARG(L, effect > 0, 3, "effect must be greater than zero");
1012
1014}
1015
1016/**********************************************************************/
1020{
1022 LUASCRIPT_CHECK_ARG_NIL(L, pplayer, 2, Player, NULL);
1024 3, "must be a percentage", NULL);
1025
1026 if (!civil_war_possible(pplayer, FALSE, FALSE)) {
1027 return NULL;
1028 }
1029
1030 if (probability == 0) {
1031 /* Calculate chance with normal rules */
1032 if (!civil_war_triggered(pplayer)) {
1033 return NULL;
1034 }
1035 } else {
1036 /* Fixed chance specified by script */
1037 if (fc_rand(100) >= probability) {
1038 return NULL;
1039 }
1040 }
1041
1042 return civil_war(pplayer);
1043}
1044
1045/**********************************************************************/
1049{
1051 LUASCRIPT_CHECK_SELF(L, pplayer);
1052
1054}
1055
1056/**********************************************************************/
1060 int movecost,
1061 Unit *embark_to, bool disembark,
1062 bool conquer_city, bool conquer_extra,
1063 bool enter_hut, bool frighten_hut)
1064{
1067 LUASCRIPT_CHECK_ARG_NIL(L, ptile, 3, Tile, FALSE);
1068 LUASCRIPT_CHECK_ARG(L, movecost >= 0, 4, "Negative move cost!", FALSE);
1069
1071 "Can't both enter and frighten a hut at the same time",
1072 TRUE);
1073
1074 if (!disembark && unit_transported(punit)) {
1075 /* Can't leave the transport. */
1076 return TRUE;
1077 }
1078
1080 unit_tile(punit), ptile, TRUE,
1081 FALSE, embark_to, TRUE) != MR_OK) {
1082 /* Can't move to target. Return that unit is still alive. */
1083 return TRUE;
1084 }
1085
1086 return unit_move(punit, ptile, movecost,
1090}
1091
1092/**********************************************************************/
1096{
1099
1100 if (punit != NULL) {
1101 punit->stay = TRUE;
1102 }
1103}
1104
1105/**********************************************************************/
1109{
1112
1113 if (punit != NULL) {
1114 punit->stay = FALSE;
1115 }
1116}
1117
1118/**********************************************************************/
1122{
1124 LUASCRIPT_CHECK_SELF(L, pcity);
1125
1126 pcity->history += amount;
1127}
1128
1129/**********************************************************************/
1133{
1135 LUASCRIPT_CHECK_SELF(L, pplayer);
1136
1137 pplayer->history += amount;
1138}
1139
1140/**********************************************************************/
1152 Tech_Type *tech)
1153{
1154 struct research *presearch;
1155
1157 LUASCRIPT_CHECK_SELF(L, pplayer);
1158 presearch = research_get(pplayer);
1160
1161 if (!tech) {
1162 update_bulbs(pplayer, amount, TRUE, TRUE);
1163
1165 } else if (advance_number(tech) == presearch->researching) {
1166 update_bulbs(pplayer, amount, TRUE, FALSE);
1167 /* Clean the saved tech to get no surprizes switching */
1168 presearch->researching_saved = A_UNKNOWN;
1169
1171 } else {
1172 /* Sometimes we may set negative bulbs, it's normal though lurking */
1174 presearch->inventions[advance_number(tech)].bulbs_researched_saved
1175 += amount;
1176 /* Currently, multiresearch data are not sent to clients */
1177 } else {
1178 int oldb = presearch->bulbs_researched;
1179
1180 /* NOTE: We can set a tech we already know / can't research here.
1181 * Probably it's safe as we can't switch into it any way. */
1182 if (presearch->researching_saved != advance_number(tech)) {
1183 presearch->researching_saved = advance_number(tech);
1184 presearch->bulbs_researching_saved
1185 = amount + presearch->free_bulbs;
1186 } else {
1187 presearch->bulbs_researching_saved
1188 += amount + presearch->free_bulbs;
1189 }
1190 /* For consistency, modify current bulbs alongside
1191 * (sometimes getting into "overresearch" situation, but ok) */
1192 presearch->bulbs_researched = amount
1193 - amount * game.server.techpenalty / 100 + presearch->free_bulbs;
1194 if (oldb != presearch->bulbs_researched) {
1196 }
1197 }
1198 }
1199}
enum action_actor_kind action_get_actor_kind(const struct action *paction)
Definition actions.c:1850
bool is_action_enabled_unit_on_self(const action_id wanted_action, const struct unit *actor_unit)
Definition actions.c:4223
bool is_action_enabled_unit_on_stack(const struct civ_map *nmap, const action_id wanted_action, const struct unit *actor_unit, const struct tile *target_tile)
Definition actions.c:3997
bool is_action_enabled_unit_on_tile(const struct civ_map *nmap, const action_id wanted_action, const struct unit *actor_unit, const struct tile *target_tile, const struct extra_type *target_extra)
Definition actions.c:4073
bool is_action_enabled_unit_on_city(const struct civ_map *nmap, const action_id wanted_action, const struct unit *actor_unit, const struct city *target_city)
Definition actions.c:3832
bool is_action_enabled_unit_on_extras(const action_id wanted_action, const struct unit *actor_unit, const struct tile *target_tile, const struct extra_type *target_extra)
Definition actions.c:4150
bool is_action_enabled_unit_on_unit(const struct civ_map *nmap, const action_id wanted_action, const struct unit *actor_unit, const struct unit *target_unit)
Definition actions.c:3909
enum action_target_kind action_get_target_kind(const struct action *paction)
Definition actions.c:1860
#define action_has_result(_act_, _res_)
Definition actions.h:429
const char * default_ai_type_name(void)
Definition aiiface.c:266
static bool ur_transform_unit(struct unit *punit, const struct unit_type *to_unit, int vet_loss)
bool api_edit_perform_action_unit_vs_tile_extra(lua_State *L, Unit *punit, Action *paction, Tile *tgt, const char *sub_tgt)
bool api_edit_perform_action_unit_vs_tile(lua_State *L, Unit *punit, Action *paction, Tile *tgt)
void api_edit_climate_change(lua_State *L, enum climate_change_type type, int effect)
void api_edit_player_give_bulbs(lua_State *L, Player *pplayer, int amount, Tech_Type *tech)
void api_edit_unit_moving_allow(lua_State *L, Unit *punit)
void api_edit_remove_city(lua_State *L, City *pcity)
bool api_edit_trait_mod_set(lua_State *L, Player *pplayer, const char *tname, const int mod)
bool api_edit_unleash_barbarians(lua_State *L, Tile *ptile)
void api_edit_remove_building(lua_State *L, City *pcity, Building_Type *impr)
void api_edit_player_victory(lua_State *L, Player *pplayer)
void api_edit_create_extra(lua_State *L, Tile *ptile, const char *name)
Unit * api_edit_create_unit(lua_State *L, Player *pplayer, Tile *ptile, Unit_Type *ptype, int veteran_level, City *homecity, int moves_left)
bool api_edit_perform_action_unit_vs_unit(lua_State *L, Unit *punit, Action *paction, Unit *tgt)
void api_edit_player_add_history(lua_State *L, Player *pplayer, int amount)
Tech_Type * api_edit_give_technology(lua_State *L, Player *pplayer, Tech_Type *ptech, int cost, bool notify, const char *reason)
bool api_edit_perform_action_unit_vs_city_impr(lua_State *L, Unit *punit, Action *paction, City *tgt, Building_Type *sub_tgt)
void api_edit_create_building(lua_State *L, City *pcity, Building_Type *impr)
Unit * api_edit_create_unit_full(lua_State *L, Player *pplayer, Tile *ptile, Unit_Type *ptype, int veteran_level, City *homecity, int moves_left, int hp_left, Unit *ptransport)
bool api_edit_transfer_city(lua_State *L, City *pcity, Player *new_owner)
bool api_edit_change_terrain(lua_State *L, Tile *ptile, Terrain *pterr)
void api_edit_create_owned_extra(lua_State *L, Tile *ptile, const char *name, Player *pplayer)
void api_edit_tile_show(lua_State *L, Tile *ptile, Player *pplayer)
void api_edit_unit_kill(lua_State *L, Unit *punit, const char *reason, Player *killer)
bool api_edit_tile_hide(lua_State *L, Tile *ptile, Player *pplayer)
void api_edit_unit_turn(lua_State *L, Unit *punit, Direction dir)
void api_edit_place_partisans(lua_State *L, Tile *ptile, Player *pplayer, int count, int sq_radius)
void api_edit_remove_extra(lua_State *L, Tile *ptile, const char *name)
void api_edit_tile_set_label(lua_State *L, Tile *ptile, const char *label)
void api_edit_create_road(lua_State *L, Tile *ptile, const char *name)
bool api_edit_perform_action_unit_vs_city(lua_State *L, Unit *punit, Action *paction, City *tgt)
void api_edit_city_add_history(lua_State *L, City *pcity, int amount)
bool api_edit_create_city(lua_State *L, Player *pplayer, Tile *ptile, const char *name)
bool api_edit_unit_teleport(lua_State *L, Unit *punit, Tile *dest, Unit *embark_to, bool allow_disembark, bool conquer_city, bool conquer_extra, bool enter_hut, bool frighten_hut)
void api_edit_unit_moving_disallow(lua_State *L, Unit *punit)
bool api_edit_unit_upgrade(lua_State *L, Unit *punit, int vet_loss)
bool api_edit_unit_move(lua_State *L, Unit *punit, Tile *ptile, int movecost, Unit *embark_to, bool disembark, bool conquer_city, bool conquer_extra, bool enter_hut, bool frighten_hut)
void api_edit_change_infrapoints(lua_State *L, Player *pplayer, int amount)
bool api_edit_perform_action_unit_vs_self(lua_State *L, Unit *punit, Action *paction)
Player * api_edit_create_player(lua_State *L, const char *username, Nation_Type *pnation, const char *ai)
bool api_edit_unit_transform(lua_State *L, Unit *punit, Unit_Type *ptype, int vet_loss)
void api_edit_change_gold(lua_State *L, Player *pplayer, int amount)
Player * api_edit_civil_war(lua_State *L, Player *pplayer, int probability)
bool api_edit_perform_action_unit_vs_city_tech(lua_State *L, Unit *punit, Action *paction, City *tgt, Tech_Type *sub_tgt)
void api_edit_create_base(lua_State *L, Tile *ptile, const char *name, Player *pplayer)
climate_change_type
@ CLIMATE_CHANGE_GLOBAL_WARMING
@ CLIMATE_CHANGE_NUCLEAR_WINTER
bool unleash_barbarians(struct tile *ptile)
Definition barbarian.c:272
void dbv_clr(struct dbv *pdbv, int bit)
Definition bitvector.c:167
bool city_has_building(const struct city *pcity, const struct impr_type *pimprove)
Definition city.c:1231
void city_remove_improvement(struct city *pcity, const struct impr_type *pimprove)
Definition city.c:3359
#define city_owner(_pcity_)
Definition city.h:563
const char * city_name_suggestion(struct player *pplayer, struct tile *ptile)
Definition citytools.c:453
void send_city_info(struct player *dest, struct city *pcity)
Definition citytools.c:2343
struct city * build_or_move_building(struct city *pcity, struct impr_type *pimprove, struct player **oldcity_owner)
Definition citytools.c:2990
void remove_city(struct city *pcity)
Definition citytools.c:1699
bool create_city_for_player(struct player *pplayer, struct tile *ptile, const char *name)
Definition citytools.c:1673
bool transfer_city(struct player *ptaker, struct city *pcity, int kill_outside, bool transfer_unit_verbose, bool resolve_stack, bool raze, bool build_free)
Definition citytools.c:1071
void auto_arrange_workers(struct city *pcity)
Definition cityturn.c:366
bool city_refresh(struct city *pcity)
Definition cityturn.c:159
char * incite_cost
Definition comments.c:74
static void conquer_city(QVariant data1, QVariant data2)
Definition dialogs.cpp:1853
static void enter_hut(QVariant data1, QVariant data2)
Definition dialogs.cpp:2658
static void frighten_hut(QVariant data1, QVariant data2)
Definition dialogs.cpp:2688
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 cost
Definition dialogs_g.h:74
int int id
Definition editgui_g.h:28
struct extra_type * extra_type_by_rule_name(const char *name)
Definition extras.c:212
int Tech_type_id
Definition fc_types.h:380
#define MAX_LEN_NAME
Definition fc_types.h:66
#define IDENTITY_NUMBER_ZERO
Definition fc_types.h:92
#define Q_(String)
Definition fcintl.h:70
const struct ft_color ftc_server
struct civ_game game
Definition game.c:62
struct world wld
Definition game.c:63
void send_game_info(struct conn_list *dest)
Definition gamehand.c:907
struct city * owner
Definition citydlg.c:220
GType type
Definition repodlgs.c:1313
bool is_special_improvement(const struct impr_type *pimprove)
bool is_wonder(const struct impr_type *pimprove)
bool is_great_wonder(const struct impr_type *pimprove)
const char * name
Definition inputfile.c:127
#define fc_assert_ret(condition)
Definition log.h:191
#define fc_assert(condition)
Definition log.h:176
#define fc_assert_ret_val(condition, val)
Definition log.h:194
#define fc_assert_action(condition, action)
Definition log.h:187
@ LOG_ERROR
Definition log.h:30
@ LOG_NORMAL
Definition log.h:32
#define log_error(message,...)
Definition log.h:103
void luascript_log(struct fc_lua *fcl, enum log_level level, const char *format,...)
Definition luascript.c:410
struct fc_lua * luascript_get_fcl(lua_State *L)
Definition luascript.c:367
#define LUASCRIPT_CHECK_STATE(L,...)
Definition luascript.h:117
#define LUASCRIPT_CHECK_SELF(L, value,...)
Definition luascript.h:146
#define LUASCRIPT_CHECK_ARG_NIL(L, value, narg, type,...)
Definition luascript.h:138
#define LUASCRIPT_CHECK_ARG(L, check, narg, msg,...)
Definition luascript.h:131
#define LUASCRIPT_CHECK(L, check, msg,...)
Definition luascript.h:124
enum direction8 Direction
bool same_pos(const struct tile *tile1, const struct tile *tile2)
Definition map.c:940
void assign_continent_numbers(void)
bool really_gives_vision(struct player *me, struct player *them)
Definition maphand.c:345
void send_tile_info(struct conn_list *dest, struct tile *ptile, bool send_unknown)
Definition maphand.c:491
void send_all_known_tiles(struct conn_list *dest)
Definition maphand.c:444
bool need_to_reassign_continents(const struct terrain *oldter, const struct terrain *newter)
Definition maphand.c:1921
void climate_change(bool warming, int effect)
Definition maphand.c:133
void create_extra(struct tile *ptile, struct extra_type *pextra, struct player *pplayer)
Definition maphand.c:2521
void map_show_tile(struct player *src_player, struct tile *ptile)
Definition maphand.c:768
void tile_change_side_effects(struct tile *ptile, bool refresh_city)
Definition maphand.c:2689
bool map_is_known_and_seen(const struct tile *ptile, const struct player *pplayer, enum vision_layer vlayer)
Definition maphand.c:920
void fix_tile_on_terrain_change(struct tile *ptile, struct terrain *oldter, bool extend_rivers)
Definition maphand.c:1959
void update_tile_knowledge(struct tile *ptile)
Definition maphand.c:1436
bool can_exist_at_tile(const struct civ_map *nmap, const struct unit_type *utype, const struct tile *ptile)
Definition movement.c:290
enum unit_move_result unit_move_to_tile_test(const struct civ_map *nmap, const struct unit *punit, enum unit_activity activity, const struct tile *src_tile, const struct tile *dst_tile, bool igzoc, bool enter_transport, struct unit *embark_to, bool enter_enemy_city)
Definition movement.c:630
bool can_unit_exist_at_tile(const struct civ_map *nmap, const struct unit *punit, const struct tile *ptile)
Definition movement.c:319
enum unit_move_result unit_teleport_to_tile_test(const struct civ_map *nmap, const struct unit *punit, enum unit_activity activity, const struct tile *src_tile, const struct tile *dst_tile, bool enter_transport, struct unit *embark_to, bool enter_enemy_city)
Definition movement.c:774
@ MR_OK
Definition movement.h:35
const char * nation_plural_for_player(const struct player *pplayer)
Definition nation.c:178
void notify_research(const struct research *presearch, const struct player *exclude, enum event_type event, const struct ft_color color, const char *format,...)
Definition notify.c:394
void notify_player(const struct player *pplayer, const struct tile *ptile, enum event_type event, const struct ft_color color, const char *format,...)
Definition notify.c:292
void notify_research_embassies(const struct research *presearch, const struct player *exclude, enum event_type event, const struct ft_color color, const char *format,...)
Definition notify.c:434
bool pplayers_allied(const struct player *pplayer, const struct player *pplayer2)
Definition player.c:1405
void player_status_add(struct player *plr, enum player_status pstatus)
Definition plrhand.c:3208
bool civil_war_triggered(struct player *pplayer)
Definition plrhand.c:2951
void send_player_info_c(struct player *src, struct conn_list *dest)
Definition plrhand.c:1142
struct player * civil_war(struct player *pplayer)
Definition plrhand.c:3001
bool civil_war_possible(struct player *pplayer, bool conquering_city, bool honour_server_option)
Definition plrhand.c:2904
#define fc_rand(_size)
Definition rand.h:56
const char * research_advance_name_translation(const struct research *presearch, Tech_type_id tech)
Definition research.c:273
struct research * research_get(const struct player *pplayer)
Definition research.c:128
enum tech_state research_invention_state(const struct research *presearch, Tech_type_id tech)
Definition research.c:619
int research_pretty_name(const struct research *presearch, char *buf, size_t buf_len)
Definition research.c:169
#define MAX(x, y)
Definition shared.h:54
bool game_was_started(void)
Definition srv_main.c:349
enum server_states server_state(void)
Definition srv_main.c:333
enum rfc_status create_command_newcomer(const char *name, const char *ai, bool check, struct nation_type *pnation, struct player **newplayer, char *buf, size_t buflen)
Definition stdinhand.c:811
enum rfc_status create_command_pregame(const char *name, const char *ai, bool check, struct player **newplayer, char *buf, size_t buflen)
Definition stdinhand.c:995
int mod
Definition traits.h:39
Definition city.h:320
int history
Definition city.h:410
int id
Definition city.h:326
bool multiresearch
Definition game.h:163
int diplbulbcost
Definition game.h:139
int conquercost
Definition game.h:136
int freecost
Definition game.h:148
struct civ_game::@31::@35 server
int techpenalty
Definition game.h:196
int id
Definition extras.h:89
struct ai_trait * traits
Definition player.h:124
int infra_points
Definition player.h:65
struct player_ai ai_common
Definition player.h:286
struct dbv tile_known
Definition player.h:308
struct conn_list * connections
Definition player.h:296
struct player_economic economic
Definition player.h:282
int history
Definition player.h:314
Definition tile.h:50
Definition unit.h:138
int moves_left
Definition unit.h:150
int id
Definition unit.h:145
bool stay
Definition unit.h:205
enum direction8 facing
Definition unit.h:142
int homecity
Definition unit.h:146
int veteran
Definition unit.h:152
struct civ_map map
int fc_strcasecmp(const char *str0, const char *str1)
Definition support.c:189
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
struct advance * advance_by_number(const Tech_type_id atype)
Definition tech.c:107
bool is_future_tech(Tech_type_id tech)
Definition tech.c:281
Tech_type_id advance_number(const struct advance *padvance)
Definition tech.c:98
#define A_UNKNOWN
Definition tech.h:49
void found_new_tech(struct research *presearch, Tech_type_id tech_found, bool was_discovery, bool saving_bulbs)
Definition techtools.c:347
void research_apply_penalty(struct research *presearch, Tech_type_id tech, int penalty_percent)
Definition techtools.c:67
Tech_type_id pick_free_tech(struct research *presearch)
Definition techtools.c:1387
void send_research_info(const struct research *presearch, const struct conn_list *dest)
Definition techtools.c:293
void script_tech_learned(struct research *presearch, struct player *originating_plr, struct advance *tech, const char *reason)
Definition techtools.c:84
void update_bulbs(struct player *pplayer, int bulbs, bool check_tech, bool free_bulbs)
Definition techtools.c:654
#define terrain_has_flag(terr, flag)
Definition terrain.h:283
void tile_change_terrain(struct tile *ptile, struct terrain *pterrain)
Definition tile.c:496
bool tile_extra_rm_apply(struct tile *ptile, struct extra_type *tgt)
Definition tile.c:601
bool tile_set_label(struct tile *ptile, const char *label)
Definition tile.c:1095
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
#define tile_index(_pt_)
Definition tile.h:88
#define tile_terrain(_tile)
Definition tile.h:110
#define tile_has_extra(ptile, pextra)
Definition tile.h:147
#define trade_partners_iterate_end
#define trade_partners_iterate(c, p)
enum unit_upgrade_result unit_transform_result(const struct civ_map *nmap, const struct unit *punit, const struct unit_type *to_unittype)
Definition unit.c:1952
void unit_virtual_destroy(struct unit *punit)
Definition unit.c:1725
bool unit_transported(const struct unit *pcargo)
Definition unit.c:2421
bool could_unit_be_in_transport(const struct unit *pcargo, const struct unit *ptrans)
Definition unit.c:664
#define unit_tile(_pu)
Definition unit.h:390
#define unit_owner(_pu)
Definition unit.h:389
@ UU_OK
Definition unit.h:61
static bool is_non_allied_unit_tile(const struct tile *ptile, const struct player *pplayer)
Definition unit.h:425
bool unit_perform_action(struct player *pplayer, const int actor_id, const int target_id, const int sub_tgt_id_incoming, const char *name, const action_id action_type, const enum action_requester requester)
Definition unithand.c:3311
void place_partisans(struct tile *pcenter, struct player *powner, int count, int sq_radius)
Definition unittools.c:1161
void transform_unit(struct unit *punit, const struct unit_type *to_unit, int vet_loss)
Definition unittools.c:1549
void send_unit_info(struct conn_list *dest, struct unit *punit)
Definition unittools.c:2725
bool place_unit(struct unit *punit, struct player *pplayer, struct city *pcity, struct unit *ptrans, bool force)
Definition unittools.c:1709
struct unit * unit_virtual_prepare(struct player *pplayer, struct tile *ptile, const struct unit_type *type, int veteran_level, int homecity_id, int moves_left, int hp_left)
Definition unittools.c:1661
void wipe_unit(struct unit *punit, enum unit_loss_reason reason, struct player *killer)
Definition unittools.c:2135
bool unit_move(struct unit *punit, struct tile *pdesttile, int move_cost, struct unit *embark_to, bool find_embark_target, bool conquer_city_allowed, bool conquer_extras_allowed, bool enter_hut, bool frighten_hut)
Definition unittools.c:3916
const struct unit_type * unit_type_get(const struct unit *punit)
Definition unittype.c:123
struct unit_type * unit_type_array_first(void)
Definition unittype.c:58
int num_role_units(int role)
Definition unittype.c:2203
bool utype_player_already_has_this_unique(const struct player *pplayer, const struct unit_type *putype)
Definition unittype.c:1927
const struct unit_type * can_upgrade_unittype(const struct player *pplayer, const struct unit_type *punittype)
Definition unittype.c:1703
int utype_veteran_levels(const struct unit_type *punittype)
Definition unittype.c:2613
const char * utype_rule_name(const struct unit_type *punittype)
Definition unittype.c:1578
const struct unit_type * unit_type_array_last(void)
Definition unittype.c:69