Add non-animated SSSE3 blitter
[openttd/fttd.git] / src / command_func.h
blobc4cc51e3daf0e073521fa1b481ba17ed829a2129
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file command_func.h Functions related to commands. */
12 #ifndef COMMAND_FUNC_H
13 #define COMMAND_FUNC_H
15 #include "command_type.h"
16 #include "company_type.h"
18 /**
19 * Define a default return value for a failed command.
21 * This variable contains a CommandCost object with is declared as "failed".
22 * Other functions just need to return this error if there is an error,
23 * which doesn't need to specific by a StringID.
25 static const CommandCost CMD_ERROR = CommandCost(INVALID_STRING_ID);
27 /**
28 * Returns from a function with a specific StringID as error.
30 * This macro is used to return from a function. The parameter contains the
31 * StringID which will be returned.
33 * @param errcode The StringID to return
35 #define return_cmd_error(errcode) return CommandCost(errcode);
37 CommandCost DoCommand(TileIndex tile, uint32 p1, uint32 p2, DoCommandFlag flags, uint32 cmd, const char *text = NULL);
38 CommandCost DoCommand(const CommandContainer *container, DoCommandFlag flags);
40 bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallback *callback = NULL, const char *text = NULL, bool my_cmd = true);
41 bool DoCommandP(const CommandContainer *container, bool my_cmd = true);
43 CommandCost DoCommandPInternal(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallback *callback, const char *text, bool my_cmd, bool estimate_only);
45 #ifdef ENABLE_NETWORK
46 void NetworkSendCommand(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallback *callback, const char *text, CompanyID company);
47 #endif /* ENABLE_NETWORK */
49 extern Money _additional_cash_required;
51 bool IsValidCommand(uint32 cmd);
52 CommandFlags GetCommandFlags(uint32 cmd);
53 const char *GetCommandName(uint32 cmd);
54 Money GetAvailableMoneyForCommand();
55 bool IsCommandAllowedWhilePaused(uint32 cmd);
57 /**
58 * Extracts the DC flags needed for DoCommand from the flags returned by GetCommandFlags
59 * @param cmd_flags Flags from GetCommandFlags
60 * @return flags for DoCommand
62 static inline DoCommandFlag CommandFlagsToDCFlags(CommandFlags cmd_flags)
64 DoCommandFlag flags = DC_NONE;
65 if (cmd_flags & CMD_NO_WATER) flags |= DC_NO_WATER;
66 if (cmd_flags & CMD_AUTO) flags |= DC_AUTO;
67 if (cmd_flags & CMD_ALL_TILES) flags |= DC_ALL_TILES;
68 return flags;
71 /*** All command callbacks that exist ***/
73 /* ai/ai_instance.cpp */
74 CommandCallback CcAI;
76 /* airport_gui.cpp */
77 CommandCallback CcBuildAirport;
79 /* bridge_gui.cpp */
80 CommandCallback CcBuildBridge;
82 /* dock_gui.cpp */
83 CommandCallback CcBuildDocks;
84 CommandCallback CcBuildCanal;
86 /* depot_gui.cpp */
87 CommandCallback CcCloneVehicle;
89 /* game/game_instance.cpp */
90 CommandCallback CcGame;
92 /* group_gui.cpp */
93 CommandCallback CcCreateGroup;
94 CommandCallback CcAddVehicleNewGroup;
96 /* industry_gui.cpp */
97 CommandCallback CcBuildIndustry;
99 /* main_gui.cpp */
100 CommandCallback CcPlaySound10;
101 CommandCallback CcPlaceSign;
102 CommandCallback CcTerraform;
103 CommandCallback CcGiveMoney;
105 /* rail_gui.cpp */
106 CommandCallback CcPlaySound1E;
107 CommandCallback CcRailDepot;
108 CommandCallback CcStation;
109 CommandCallback CcBuildRailTunnel;
111 /* road_gui.cpp */
112 CommandCallback CcPlaySound1D;
113 CommandCallback CcBuildRoadTunnel;
114 CommandCallback CcRoadDepot;
115 CommandCallback CcRoadStop;
117 /* train_gui.cpp */
118 CommandCallback CcBuildWagon;
120 /* town_gui.cpp */
121 CommandCallback CcFoundTown;
122 CommandCallback CcFoundRandomTown;
124 /* vehicle_gui.cpp */
125 CommandCallback CcBuildPrimaryVehicle;
126 CommandCallback CcStartStopVehicle;
128 #endif /* COMMAND_FUNC_H */