|
OpenTTD Source
14.0-beta1
|
#include "command_type.h"Go to the source code of this file.
Functions | |
| CommandCost | CmdLandscapeClear (DoCommandFlag flags, TileIndex tile) |
| Clear a piece of landscape. More... | |
| std::tuple< CommandCost, Money > | CmdClearArea (DoCommandFlag flags, TileIndex tile, TileIndex start_tile, bool diagonal) |
| Clear a big piece of landscape. More... | |
Command definitions related to landscape (slopes etc.).
Definition in file landscape_cmd.h.
| std::tuple<CommandCost, Money> CmdClearArea | ( | DoCommandFlag | flags, |
| TileIndex | tile, | ||
| TileIndex | start_tile, | ||
| bool | diagonal | ||
| ) |
Clear a big piece of landscape.
| flags | of operation to conduct |
| tile | end tile of area dragging |
| start_tile | start tile of area dragging |
| diagonal | Whether to use the Orthogonal (false) or Diagonal (true) iterator. |
Definition at line 703 of file landscape.cpp.
References _current_company, _pause_mode, CommandCost::AddCost(), CompanyProperties::clear_limit, CMD_ERROR, TileIterator::Create(), CreateEffectVehicleAbove(), DC_AUTO, DC_BANKRUPT, DC_EXEC, EV_EXPLOSION_LARGE, EV_EXPLOSION_SMALL, EXPENSES_CONSTRUCTION, CommandCost::Failed(), GB(), GetAvailableMoneyForCommand(), CommandCost::GetCost(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::GetIfValid(), INVALID_TILE, PM_UNPAUSED, Map::Size(), TILE_SIZE, TileX(), and TileY().
| CommandCost CmdLandscapeClear | ( | DoCommandFlag | flags, |
| TileIndex | tile | ||
| ) |
Clear a piece of landscape.
| flags | of operation to conduct |
| tile | tile to clear |
Definition at line 655 of file landscape.cpp.
References CommandCost::AddCost(), DC_AUTO, DC_FORCE_CLEAR_TILE, EXPENSES_CONSTRUCTION, GetWaterClass(), HasTileWaterClass(), IsCoastTile(), IsTileOnWater(), IsWaterTile(), return_cmd_error, and WATER_CLASS_CANAL.