OpenTTD Source  20241108-master-g80f628063a
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 <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef WATER_CMD_H
11 #define WATER_CMD_H
12 
13 #include "command_type.h"
14 #include "water_map.h"
15 
17 CommandCost CmdBuildCanal(DoCommandFlag flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal);
19 
23 
24 #endif /* WATER_CMD_H */
Common return value for all commands.
Definition: command_type.h:23
Types related to commands.
@ CMDT_LANDSCAPE_CONSTRUCTION
Construction and destruction of objects on the map.
Definition: command_type.h:414
DoCommandFlag
List of flags for a command.
Definition: command_type.h:374
@ CMD_BUILD_SHIP_DEPOT
build a ship depot
Definition: command_type.h:225
@ CMD_BUILD_CANAL
build a canal
Definition: command_type.h:297
@ CMD_BUILD_LOCK
build a lock
Definition: command_type.h:324
@ CMD_AUTO
set the DC_AUTO flag on this command
Definition: command_type.h:400
Axis
Allow incrementing of DiagDirDiff variables.
CommandCost CmdBuildLock(DoCommandFlag flags, TileIndex tile)
Builds a lock.
Definition: water_cmd.cpp:435
CommandCost CmdBuildShipDepot(DoCommandFlag flags, TileIndex tile, Axis axis)
Build a ship depot.
Definition: water_cmd.cpp:112
CommandCost CmdBuildCanal(DoCommandFlag flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal)
Build a piece of canal.
Definition: water_cmd.cpp:472
Map accessors for water tiles.
WaterClass
classes of water (for WATER_TILE_CLEAR water tile type).
Definition: water_map.h:39