1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/*****************************************************************************
Freeciv - Copyright (C) 2005 - The Freeciv Project
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*****************************************************************************/
#ifndef FC__API_SERVER_EDIT_H
#define FC__API_SERVER_EDIT_H
/* common/scriptcore */
#include "luascript_types.h"
struct lua_State;
/* Type of climate change */
enum climate_change_type {
CLIMATE_CHANGE_GLOBAL_WARMING,
CLIMATE_CHANGE_NUCLEAR_WINTER
};
bool api_edit_unleash_barbarians(lua_State *L, Tile *ptile);
void api_edit_place_partisans(lua_State *L, Tile *ptile, Player *pplayer,
int count, int sq_radius);
Unit *api_edit_create_unit(lua_State *L, Player *pplayer, Tile *ptile,
Unit_Type *ptype, int veteran_level,
City *homecity, int moves_left);
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_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);
bool api_edit_perform_action_unit_vs_city(lua_State *L, Unit *punit,
Action *paction, City *tgt);
bool api_edit_perform_action_unit_vs_city_impr(lua_State *L, Unit *punit,
Action *paction, City *tgt,
Building_Type *sub_tgt);
bool api_edit_perform_action_unit_vs_city_tech(lua_State *L, Unit *punit,
Action *paction, City *tgt,
Tech_Type *sub_tgt);
bool api_edit_perform_action_unit_vs_unit(lua_State *L, Unit *punit,
Action *paction, Unit *tgt);
bool api_edit_perform_action_unit_vs_tile(lua_State *L, Unit *punit,
Action *paction, Tile *tgt);
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_self(lua_State *L, Unit *punit,
Action *paction);
void api_edit_unit_turn(lua_State *L, Unit *punit, Direction dir);
bool api_edit_unit_upgrade(lua_State *L, Unit *punit, int vet_loss);
bool api_edit_unit_transform(lua_State *L, Unit *punit, Unit_Type *ptype,
int vet_loss);
void api_edit_unit_kill(lua_State *L, Unit *punit, const char *reason,
Player *killer);
bool api_edit_unit_hitpoints(lua_State *L, Unit *self, int change,
const char *reason, Player *killer);
void api_edit_unit_movepoints(lua_State *L, Unit *self, int change);
bool api_edit_change_terrain(lua_State *L, Tile *ptile, Terrain *pterr);
bool api_edit_create_city(lua_State *L, Player *pplayer, Tile *ptile,
const char *name);
void api_edit_remove_city(lua_State *L, City *pcity);
bool api_edit_transfer_city(lua_State *L, City *pcity, Player *new_owner);
void api_edit_create_building(lua_State *L, City *pcity, Building_Type *impr);
void api_edit_remove_building(lua_State *L, City *pcity, Building_Type *impr);
Player *api_edit_create_player(lua_State *L, const char *username,
Nation_Type *pnation, const char *ai);
void api_edit_change_gold(lua_State *L, Player *pplayer, int amount);
void api_edit_change_infrapoints(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_trait_mod_set(lua_State *L, Player *pplayer,
const char *tname, const int mod);
void api_edit_create_owned_extra(lua_State *L, Tile *ptile, const char *name,
struct player *pplayer);
void api_edit_create_extra(lua_State *L, Tile *ptile, const char *name);
void api_edit_create_base(lua_State *L, Tile *ptile, const char *name,
struct player *pplayer);
void api_edit_create_road(lua_State *L, Tile *ptile, const char *name);
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_tile_show(lua_State *L, Tile *ptile, Player *pplayer);
bool api_edit_tile_hide(lua_State *L, Tile *ptile, Player *pplayer);
void api_edit_climate_change(lua_State *L, enum climate_change_type type,
int effect);
Player *api_edit_civil_war(lua_State *L, Player *pplayer, int probability);
void api_edit_player_victory(lua_State *L, Player *pplayer);
bool api_edit_unit_move(lua_State *L, Unit *punit, Tile *ptile,
int movecost,
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);
void api_edit_unit_moving_allow(lua_State *L, Unit *punit);
void api_edit_city_add_history(lua_State *L, City *pcity, int amount);
void api_edit_player_add_history(lua_State *L, Player *pplayer, int amount);
void api_edit_player_give_bulbs(lua_State *L, Player *pplayer, int amount,
Tech_Type *tech);
#endif /* API_SERVER_EDIT_H */
|