OpenTTD Source
20241108-master-g80f628063a
|
Command definitions related to towns. More...
Go to the source code of this file.
Typedefs | |
using | HouseID = uint8_t uint16_t |
Functions | |
std::tuple< CommandCost, Money, TownID > | CmdFoundTown (DoCommandFlag flags, TileIndex tile, TownSize size, bool city, TownLayout layout, bool random_location, uint32_t townnameparts, const std::string &text) |
Create a new town. More... | |
CommandCost | CmdRenameTown (DoCommandFlag flags, TownID town_id, const std::string &text) |
Rename a town (server-only). More... | |
CommandCost | CmdDoTownAction (DoCommandFlag flags, TownID town_id, uint8_t action) |
Do a town action. More... | |
CommandCost | CmdTownGrowthRate (DoCommandFlag flags, TownID town_id, uint16_t growth_rate) |
Change the growth rate of the town. More... | |
CommandCost | CmdTownRating (DoCommandFlag flags, TownID town_id, CompanyID company_id, int16_t rating) |
Change the rating of a company in a town. More... | |
CommandCost | CmdTownCargoGoal (DoCommandFlag flags, TownID town_id, TownAcceptanceEffect tae, uint32_t goal) |
Change the cargo goal of a town. More... | |
CommandCost | CmdTownSetText (DoCommandFlag flags, TownID town_id, const std::string &text) |
Set a custom text in the Town window. More... | |
CommandCost | CmdExpandTown (DoCommandFlag flags, TownID town_id, uint32_t grow_amount) |
Expand a town (scenario editor only). More... | |
CommandCost | CmdDeleteTown (DoCommandFlag flags, TownID town_id) |
Delete a town (scenario editor or worldgen only). More... | |
CommandCost | CmdPlaceHouse (DoCommandFlag flags, TileIndex tile, HouseID house) |
DEF_CMD_TRAIT (CMD_FOUND_TOWN, CmdFoundTown, CMD_DEITY|CMD_NO_TEST, CMDT_LANDSCAPE_CONSTRUCTION) CommandCallback CcFoundTown | |
void | CcFoundRandomTown (Commands cmd, const CommandCost &result, Money, TownID town_id) |
Command definitions related to towns.
Definition in file town_cmd.h.
CommandCost CmdDeleteTown | ( | DoCommandFlag | flags, |
TownID | town_id | ||
) |
Delete a town (scenario editor or worldgen only).
flags | Type of operation. |
town_id | Town ID to delete. |
Definition at line 3193 of file town_cmd.cpp.
CommandCost CmdDoTownAction | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
uint8_t | action | ||
) |
Do a town action.
This performs an action such as advertising, building a statue, funding buildings, but also bribing the town-council
flags | type of operation |
town_id | town to do the action at |
action | action to perform, |
Definition at line 3636 of file town_cmd.cpp.
References Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::GetIfValid(), and lengthof.
CommandCost CmdExpandTown | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
uint32_t | grow_amount | ||
) |
Expand a town (scenario editor only).
flags | Type of operation. |
TownID | Town ID to expand. |
grow_amount | Amount to grow, or 0 to grow a random size up to the current amount of houses. |
Definition at line 3156 of file town_cmd.cpp.
std::tuple<CommandCost, Money, TownID> CmdFoundTown | ( | DoCommandFlag | flags, |
TileIndex | tile, | ||
TownSize | size, | ||
bool | city, | ||
TownLayout | layout, | ||
bool | random_location, | ||
uint32_t | townnameparts, | ||
const std::string & | text | ||
) |
Create a new town.
flags | The type of operation. |
tile | The coordinates where town is built. |
size | The size of the town ( |
city | Should we build a city? |
layout | The town road layout ( |
random_location | Should we use a random location? (randomize tile ) |
townnameparts | Town name parts. |
text | Custom name for the town. If empty, the town name parts will be used. |
Definition at line 2115 of file town_cmd.cpp.
References _settings_game, CMD_ERROR, GameSettings::game_creation, GameCreationSettings::town_name, and TSZ_END.
CommandCost CmdRenameTown | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
const std::string & | text | ||
) |
Rename a town (server-only).
flags | type of operation |
town_id | town ID to rename |
text | the new name or an empty string when resetting to the default |
Definition at line 2992 of file town_cmd.cpp.
References Town::cached_name, CMD_ERROR, DC_EXEC, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::GetIfValid(), InvalidateWindowData(), IsUniqueTownName(), MAX_LENGTH_TOWN_NAME_CHARS, Town::name, return_cmd_error, Town::UpdateVirtCoord(), Utf8StringLength(), and WC_TOWN_DIRECTORY.
CommandCost CmdTownCargoGoal | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
TownAcceptanceEffect | tae, | ||
uint32_t | goal | ||
) |
Change the cargo goal of a town.
flags | Type of operation. |
town_id | Town ID to cargo game of. |
tae | TownEffect to change the game of. |
goal | The new goal value. |
Definition at line 3042 of file town_cmd.cpp.
References _current_company, CMD_ERROR, DC_EXEC, FindFirstCargoWithTownAcceptanceEffect(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::GetIfValid(), Town::goal, InvalidateWindowData(), OWNER_DEITY, TAE_END, UpdateTownGrowth(), and WC_TOWN_VIEW.
CommandCost CmdTownGrowthRate | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
uint16_t | growth_rate | ||
) |
Change the growth rate of the town.
flags | Type of operation. |
town_id | Town ID to cargo game of. |
growth_rate | Amount of days between growth, or TOWN_GROWTH_RATE_NONE, or 0 to reset custom growth rate. |
Definition at line 3093 of file town_cmd.cpp.
CommandCost CmdTownRating | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
CompanyID | company_id, | ||
int16_t | rating | ||
) |
Change the rating of a company in a town.
flags | Type of operation. |
town_id | Town ID to change, bit 16..23 = |
company_id | Company ID to change. |
rating | New rating of company (signed int16_t). |
Definition at line 3131 of file town_cmd.cpp.
References _current_company, Clamp(), CMD_ERROR, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::GetIfValid(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::IsValidID(), and OWNER_DEITY.
CommandCost CmdTownSetText | ( | DoCommandFlag | flags, |
TownID | town_id, | ||
const std::string & | text | ||
) |
Set a custom text in the Town window.
flags | Type of operation. |
town_id | Town ID to change the text of. |
text | The new text (empty to remove the text). |
Definition at line 3071 of file town_cmd.cpp.
References _current_company, CMD_ERROR, DC_EXEC, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::GetIfValid(), InvalidateWindowData(), OWNER_DEITY, Town::text, and WC_TOWN_VIEW.