OpenTTD Source 20260206-master-g4d4e37dbf1
water_cmd.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD 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, version 2.
4 * OpenTTD 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.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#ifndef WATER_CMD_H
11#define WATER_CMD_H
12
13#include "command_type.h"
14#include "water_map.h"
15
16CommandCost CmdBuildShipDepot(DoCommandFlags flags, TileIndex tile, Axis axis);
17CommandCost CmdBuildCanal(DoCommandFlags flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal);
18CommandCost CmdBuildLock(DoCommandFlags flags, TileIndex tile);
19
23
24#endif /* WATER_CMD_H */
Common return value for all commands.
Types related to commands.
@ LandscapeConstruction
Construction and destruction of objects on the map.
@ Auto
set the DoCommandFlag::Auto flag on this command
@ BuildCanal
build a canal
@ BuildShipDepot
build a ship depot
@ BuildLock
build a lock
Axis
Allow incrementing of DiagDirDiff variables.
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > > TileIndex
The index/ID of a Tile.
Definition tile_type.h:92
CommandCost CmdBuildLock(DoCommandFlags flags, TileIndex tile)
Builds a lock.
CommandCost CmdBuildShipDepot(DoCommandFlags flags, TileIndex tile, Axis axis)
Build a ship depot.
CommandCost CmdBuildCanal(DoCommandFlags flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal)
Build a piece of canal.
CommandCost CmdBuildLock(DoCommandFlags flags, TileIndex tile)
Builds a lock.
CommandCost CmdBuildShipDepot(DoCommandFlags flags, TileIndex tile, Axis axis)
Build a ship depot.
CommandCost CmdBuildCanal(DoCommandFlags flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal)
Build a piece of canal.
Map accessors for water tiles.
WaterClass
classes of water (for WaterTileType::Clear water tile type).
Definition water_map.h:39