![]() |
Freeciv21
Develop your civilization from humble roots to a global empire
|
#include "log.h"#include "rand.h"#include "city.h"#include "game.h"#include "player.h"#include "citizens.h"
Include dependency graph for citizens.cpp:Go to the source code of this file.
Functions | |
| void | citizens_init (struct city *pcity) |
| Initialise citizens data. More... | |
| void | citizens_free (struct city *pcity) |
| Free citizens data. More... | |
| citizens | citizens_nation_get (const struct city *pcity, const struct player_slot *pslot) |
| Get the number of citizens with the given nationality. More... | |
| citizens | citizens_nation_foreign (const struct city *pcity) |
| Get the number of foreign citizens. More... | |
| void | citizens_nation_add (struct city *pcity, const struct player_slot *pslot, int add) |
| Add a (positive or negative) value to the citizens of the given nationality. More... | |
| void | citizens_nation_move (struct city *pcity, const struct player_slot *pslot_from, const struct player_slot *pslot_to, int move) |
| Convert a (positive or negative) value to the citizens from one nation to another. More... | |
| void | citizens_nation_set (struct city *pcity, const struct player_slot *pslot, citizens count) |
| Set the number of citizens with the given nationality. More... | |
| citizens | citizens_count (const struct city *pcity) |
| Return the number of citizens in a city. More... | |
| struct player_slot * | citizens_random (const struct city *pcity) |
| Return random citizen from city. More... | |
Return the number of citizens in a city.
Definition at line 154 of file citizens.cpp.
Referenced by citizens_nation_foreign(), citizens_print(), citizens_random(), citizens_update(), handle_city_info(), and sg_load_player_city_citizens().
| void citizens_free | ( | struct city * | pcity | ) |
Free citizens data.
Definition at line 51 of file citizens.cpp.
Referenced by destroy_city_virtual().
| void citizens_init | ( | struct city * | pcity | ) |
Initialise citizens data.
Definition at line 26 of file citizens.cpp.
Referenced by create_city(), handle_city_info(), and sg_load_player_city_citizens().
| void citizens_nation_add | ( | struct city * | pcity, |
| const struct player_slot * | pslot, | ||
| int | add | ||
| ) |
Add a (positive or negative) value to the citizens of the given nationality.
As citizens is an unsigned value use int for the parameter 'add'.
The player_slot has to be used as the client does not has the exact knowledge about the players at certain points (especially at connecting).
Definition at line 96 of file citizens.cpp.
Referenced by citizens_nation_move(), citizens_update(), and do_city_migration().
Get the number of foreign citizens.
Definition at line 82 of file citizens.cpp.
Referenced by citizens_convert().
| citizens citizens_nation_get | ( | const struct city * | pcity, |
| const struct player_slot * | pslot | ||
| ) |
Get the number of citizens with the given nationality.
The player_slot has to be used as the client does not has the exact knowledge about the players at certain points (especially at connecting).
Definition at line 65 of file citizens.cpp.
Referenced by api_methods_city_inspire_partisans(), check_city_migrations_player(), citizens_nation_add(), citizens_nation_foreign(), citizens_update(), city_incite_cost(), do_city_migration(), package_city(), player_limit_to_max_rates(), sg_save_player_cities(), and city_dialog::update_nation_table().
| void citizens_nation_move | ( | struct city * | pcity, |
| const struct player_slot * | pslot_from, | ||
| const struct player_slot * | pslot_to, | ||
| int | move | ||
| ) |
Convert a (positive or negative) value to the citizens from one nation to another.
As citizens is an unsigned value use int for the parameter 'move'.
The player_slot has to be used as the client does not has the exact knowledge about the players at certain points (especially at connecting).
Definition at line 123 of file citizens.cpp.
Referenced by citizens_convert(), citizens_convert_conquest(), and player_limit_to_max_rates().
| void citizens_nation_set | ( | struct city * | pcity, |
| const struct player_slot * | pslot, | ||
| citizens | count | ||
| ) |
Set the number of citizens with the given nationality.
The player_slot has to be used as the client does not has the exact knowledge about the players at certain points (especially at connecting).
Definition at line 137 of file citizens.cpp.
Referenced by citizens_nation_add(), citizens_update(), handle_city_info(), and sg_load_player_city_citizens().
| struct player_slot* citizens_random | ( | const struct city * | pcity | ) |
Return random citizen from city.
Definition at line 185 of file citizens.cpp.
Referenced by do_city_migration().