2009-08-21 20:21:05 +00:00
/*
* This file is part of OpenTTD .
* 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.
* 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 .
* 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/>.
*/
2008-05-06 15:11:33 +00:00
/** @file command.cpp Handling of commands. */
2007-02-23 11:50:43 +00:00
2004-08-09 17:04:08 +00:00
# include "stdafx.h"
2007-04-12 13:07:15 +00:00
# include "landscape.h"
2011-12-10 13:54:10 +00:00
# include "error.h"
2004-08-09 17:04:08 +00:00
# include "gui.h"
2007-12-21 21:50:46 +00:00
# include "command_func.h"
2010-08-18 17:06:45 +00:00
# include "network/network_type.h"
2007-01-02 17:34:03 +00:00
# include "network/network.h"
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
# include "genworld.h"
2007-12-21 19:49:27 +00:00
# include "strings_func.h"
2011-02-07 22:22:20 +00:00
# include "texteff.hpp"
2008-01-09 17:47:05 +00:00
# include "town.h"
2008-01-11 00:30:32 +00:00
# include "date_func.h"
2008-09-30 20:51:04 +00:00
# include "company_func.h"
# include "company_base.h"
2008-01-16 01:18:15 +00:00
# include "signal_func.h"
2010-06-05 13:32:42 +00:00
# include "core/backup_type.hpp"
2010-09-03 21:50:51 +00:00
# include "object_base.h"
2004-08-09 17:04:08 +00:00
2008-01-13 01:21:35 +00:00
# include "table/strings.h"
2014-04-23 20:13:33 +00:00
# include "safeguards.h"
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildRailroadTrack ;
CommandProc CmdRemoveRailroadTrack ;
CommandProc CmdBuildSingleRail ;
CommandProc CmdRemoveSingleRail ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdLandscapeClear ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildBridge ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildRailStation ;
CommandProc CmdRemoveFromRailStation ;
CommandProc CmdConvertRail ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildSingleSignal ;
CommandProc CmdRemoveSingleSignal ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdTerraformLand ;
2004-08-09 17:04:08 +00:00
2010-08-08 10:59:30 +00:00
CommandProc CmdBuildObject ;
2010-01-11 22:46:00 +00:00
CommandProc CmdSellLandArea ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildTunnel ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildTrainDepot ;
CommandProc CmdBuildRailWaypoint ;
CommandProc CmdRenameWaypoint ;
CommandProc CmdRemoveFromRailWaypoint ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildRoadStop ;
CommandProc CmdRemoveRoadStop ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildLongRoad ;
CommandProc CmdRemoveLongRoad ;
CommandProc CmdBuildRoad ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildRoadDepot ;
2004-08-09 17:04:08 +00:00
2019-04-06 06:46:15 +00:00
CommandProc CmdConvertRoad ;
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildAirport ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildDock ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildShipDepot ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildBuoy ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdPlantTree ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdMoveRailVehicle ;
2004-08-09 17:04:08 +00:00
2010-08-17 23:15:55 +00:00
CommandProc CmdBuildVehicle ;
2010-08-17 23:55:22 +00:00
CommandProc CmdSellVehicle ;
2010-08-18 00:47:31 +00:00
CommandProc CmdRefitVehicle ;
2010-09-08 18:55:58 +00:00
CommandProc CmdSendVehicleToDepot ;
2014-09-07 16:12:58 +00:00
CommandProc CmdSetVehicleVisibility ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdForceTrainProceed ;
CommandProc CmdReverseTrainDirection ;
2004-08-09 17:04:08 +00:00
2010-08-18 20:48:38 +00:00
CommandProc CmdClearOrderBackup ;
2010-01-11 22:46:00 +00:00
CommandProc CmdModifyOrder ;
CommandProc CmdSkipToOrder ;
CommandProc CmdDeleteOrder ;
CommandProc CmdInsertOrder ;
CommandProc CmdChangeServiceInt ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildIndustry ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdSetCompanyManagerFace ;
CommandProc CmdSetCompanyColour ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdIncreaseLoan ;
CommandProc CmdDecreaseLoan ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdWantEnginePreview ;
2020-01-15 17:46:26 +00:00
CommandProc CmdEngineCtrl ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdRenameVehicle ;
CommandProc CmdRenameEngine ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdRenameCompany ;
CommandProc CmdRenamePresident ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdRenameStation ;
2010-05-12 20:50:10 +00:00
CommandProc CmdRenameDepot ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdPlaceSign ;
CommandProc CmdRenameSign ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdTurnRoadVeh ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdPause ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuyShareInCompany ;
CommandProc CmdSellShareInCompany ;
CommandProc CmdBuyCompany ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdFoundTown ;
CommandProc CmdRenameTown ;
CommandProc CmdDoTownAction ;
2011-12-19 20:59:19 +00:00
CommandProc CmdTownGrowthRate ;
2020-01-04 16:31:52 +00:00
CommandProc CmdTownRating ;
2011-12-19 20:59:19 +00:00
CommandProc CmdTownCargoGoal ;
2011-12-19 21:00:55 +00:00
CommandProc CmdTownSetText ;
2010-08-02 21:06:06 +00:00
CommandProc CmdExpandTown ;
2010-08-02 21:07:23 +00:00
CommandProc CmdDeleteTown ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdChangeSetting ;
CommandProc CmdChangeCompanySetting ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdOrderRefit ;
CommandProc CmdCloneOrder ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdClearArea ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdGiveMoney ;
CommandProc CmdMoneyCheat ;
2013-09-21 13:07:42 +00:00
CommandProc CmdChangeBankBalance ;
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildCanal ;
CommandProc CmdBuildLock ;
2004-08-09 17:04:08 +00:00
2011-12-19 21:01:12 +00:00
CommandProc CmdCreateSubsidy ;
2010-01-11 22:46:00 +00:00
CommandProc CmdCompanyCtrl ;
2011-12-19 21:01:03 +00:00
CommandProc CmdCustomNewsItem ;
2011-12-19 21:03:17 +00:00
CommandProc CmdCreateGoal ;
CommandProc CmdRemoveGoal ;
2013-05-26 19:54:43 +00:00
CommandProc CmdSetGoalText ;
CommandProc CmdSetGoalProgress ;
CommandProc CmdSetGoalCompleted ;
2012-01-03 16:36:24 +00:00
CommandProc CmdGoalQuestion ;
CommandProc CmdGoalQuestionAnswer ;
2013-06-09 12:19:09 +00:00
CommandProc CmdCreateStoryPage ;
CommandProc CmdCreateStoryPageElement ;
CommandProc CmdUpdateStoryPageElement ;
CommandProc CmdSetStoryPageTitle ;
2014-02-06 19:48:19 +00:00
CommandProc CmdSetStoryPageDate ;
2013-06-09 12:57:22 +00:00
CommandProc CmdShowStoryPage ;
2013-06-09 12:19:09 +00:00
CommandProc CmdRemoveStoryPage ;
2014-02-06 19:48:19 +00:00
CommandProc CmdRemoveStoryPageElement ;
2018-04-24 17:19:01 +00:00
CommandProc CmdScrollViewport ;
2020-05-22 20:22:55 +00:00
CommandProc CmdStoryPageButton ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdLevelLand ;
2004-08-09 17:04:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdBuildSignalTrack ;
CommandProc CmdRemoveSignalTrack ;
2004-08-15 20:23:42 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdSetAutoReplace ;
2004-12-27 18:18:44 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdCloneVehicle ;
CommandProc CmdStartStopVehicle ;
CommandProc CmdMassStartStopVehicle ;
CommandProc CmdAutoreplaceVehicle ;
CommandProc CmdDepotSellAllVehicles ;
CommandProc CmdDepotMassAutoReplace ;
2005-07-31 13:08:08 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdCreateGroup ;
2014-04-08 21:09:06 +00:00
CommandProc CmdAlterGroup ;
2010-01-11 22:46:00 +00:00
CommandProc CmdDeleteGroup ;
CommandProc CmdAddVehicleGroup ;
CommandProc CmdAddSharedVehicleGroup ;
CommandProc CmdRemoveAllVehiclesGroup ;
CommandProc CmdSetGroupReplaceProtection ;
2019-01-31 13:57:44 +00:00
CommandProc CmdSetGroupLivery ;
2007-05-22 19:48:11 +00:00
2010-01-11 22:46:00 +00:00
CommandProc CmdMoveOrder ;
CommandProc CmdChangeTimetable ;
CommandProc CmdSetVehicleOnTime ;
CommandProc CmdAutofillTimetable ;
CommandProc CmdSetTimetableStart ;
2007-09-10 15:21:14 +00:00
2012-04-17 19:43:18 +00:00
CommandProc CmdOpenCloseAirport ;
2011-11-14 20:38:56 +00:00
# define DEF_CMD(proc, flags, type) {proc, #proc, (CommandFlags)flags, type}
2010-04-11 10:11:26 +00:00
2007-09-10 15:21:14 +00:00
/**
* The master command table
*
* This table contains all possible CommandProc functions with
2010-03-14 12:39:24 +00:00
* the flags which belongs to it . The indices are the same
2007-09-10 15:21:14 +00:00
* as the value from the CMD_ * enums .
*/
2005-05-14 19:25:18 +00:00
static const Command _command_proc_table [ ] = {
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdBuildRailroadTrack , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_RAILROAD_TRACK
DEF_CMD ( CmdRemoveRailroadTrack , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_RAILROAD_TRACK
DEF_CMD ( CmdBuildSingleRail , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_SINGLE_RAIL
DEF_CMD ( CmdRemoveSingleRail , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_SINGLE_RAIL
2019-09-03 20:50:58 +00:00
DEF_CMD ( CmdLandscapeClear , CMD_DEITY , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_LANDSCAPE_CLEAR
2011-12-19 21:02:33 +00:00
DEF_CMD ( CmdBuildBridge , CMD_DEITY | CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_BRIDGE
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdBuildRailStation , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_RAIL_STATION
DEF_CMD ( CmdBuildTrainDepot , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_TRAIN_DEPOT
DEF_CMD ( CmdBuildSingleSignal , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_SIGNALS
DEF_CMD ( CmdRemoveSingleSignal , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_SIGNALS
DEF_CMD ( CmdTerraformLand , CMD_ALL_TILES | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_TERRAFORM_LAND
DEF_CMD ( CmdBuildObject , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_OBJECT
2011-12-19 21:02:33 +00:00
DEF_CMD ( CmdBuildTunnel , CMD_DEITY | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_TUNNEL
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdRemoveFromRailStation , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_FROM_RAIL_STATION
DEF_CMD ( CmdConvertRail , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_CONVERT_RAILD
DEF_CMD ( CmdBuildRailWaypoint , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_RAIL_WAYPOINT
2013-11-24 19:46:16 +00:00
DEF_CMD ( CmdRenameWaypoint , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_WAYPOINT
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdRemoveFromRailWaypoint , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_FROM_RAIL_WAYPOINT
DEF_CMD ( CmdBuildRoadStop , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_ROAD_STOP
DEF_CMD ( CmdRemoveRoadStop , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_ROAD_STOP
2011-12-19 21:02:33 +00:00
DEF_CMD ( CmdBuildLongRoad , CMD_DEITY | CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_LONG_ROAD
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdRemoveLongRoad , CMD_NO_TEST | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_LONG_ROAD; towns may disallow removing road bits (as they are connected) in test, but in exec they're removed and thus removing is allowed.
2011-12-19 21:02:33 +00:00
DEF_CMD ( CmdBuildRoad , CMD_DEITY | CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_ROAD
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdBuildRoadDepot , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_ROAD_DEPOT
2019-04-06 06:46:15 +00:00
DEF_CMD ( CmdConvertRoad , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_CONVERT_ROAD
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdBuildAirport , CMD_NO_WATER | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_AIRPORT
DEF_CMD ( CmdBuildDock , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_DOCK
DEF_CMD ( CmdBuildShipDepot , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_SHIP_DEPOT
DEF_CMD ( CmdBuildBuoy , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_BUOY
DEF_CMD ( CmdPlantTree , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_PLANT_TREE
DEF_CMD ( CmdBuildVehicle , CMD_CLIENT_ID , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_BUILD_VEHICLE
DEF_CMD ( CmdSellVehicle , CMD_CLIENT_ID , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_SELL_VEHICLE
DEF_CMD ( CmdRefitVehicle , 0 , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_REFIT_VEHICLE
DEF_CMD ( CmdSendVehicleToDepot , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_SEND_VEHICLE_TO_DEPOT
2014-09-07 16:12:58 +00:00
DEF_CMD ( CmdSetVehicleVisibility , 0 , CMDT_COMPANY_SETTING ) , // CMD_SET_VEHICLE_VISIBILITY
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdMoveRailVehicle , 0 , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_MOVE_RAIL_VEHICLE
DEF_CMD ( CmdForceTrainProceed , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_FORCE_TRAIN_PROCEED
DEF_CMD ( CmdReverseTrainDirection , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_REVERSE_TRAIN_DIRECTION
2014-08-03 14:26:32 +00:00
DEF_CMD ( CmdClearOrderBackup , CMD_CLIENT_ID , CMDT_SERVER_SETTING ) , // CMD_CLEAR_ORDER_BACKUP
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdModifyOrder , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_MODIFY_ORDER
DEF_CMD ( CmdSkipToOrder , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_SKIP_TO_ORDER
DEF_CMD ( CmdDeleteOrder , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_DELETE_ORDER
DEF_CMD ( CmdInsertOrder , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_INSERT_ORDER
DEF_CMD ( CmdChangeServiceInt , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_CHANGE_SERVICE_INT
2012-10-22 18:56:21 +00:00
DEF_CMD ( CmdBuildIndustry , CMD_DEITY , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_INDUSTRY
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdSetCompanyManagerFace , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_COMPANY_MANAGER_FACE
DEF_CMD ( CmdSetCompanyColour , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_COMPANY_COLOUR
DEF_CMD ( CmdIncreaseLoan , 0 , CMDT_MONEY_MANAGEMENT ) , // CMD_INCREASE_LOAN
DEF_CMD ( CmdDecreaseLoan , 0 , CMDT_MONEY_MANAGEMENT ) , // CMD_DECREASE_LOAN
DEF_CMD ( CmdWantEnginePreview , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_WANT_ENGINE_PREVIEW
2020-01-15 17:46:26 +00:00
DEF_CMD ( CmdEngineCtrl , CMD_DEITY , CMDT_VEHICLE_MANAGEMENT ) , // CMD_ENGINE_CTRL
2010-12-07 21:05:27 +00:00
2013-06-27 19:56:54 +00:00
DEF_CMD ( CmdRenameVehicle , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_VEHICLE
DEF_CMD ( CmdRenameEngine , CMD_SERVER , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_ENGINE
2010-12-07 21:05:27 +00:00
2013-06-27 19:56:54 +00:00
DEF_CMD ( CmdRenameCompany , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_COMPANY
DEF_CMD ( CmdRenamePresident , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_PRESIDENT
2010-12-07 21:05:27 +00:00
2013-06-27 19:56:54 +00:00
DEF_CMD ( CmdRenameStation , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_STATION
DEF_CMD ( CmdRenameDepot , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_DEPOT
2010-12-07 21:05:27 +00:00
2013-06-27 19:56:54 +00:00
DEF_CMD ( CmdPlaceSign , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_PLACE_SIGN
DEF_CMD ( CmdRenameSign , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_SIGN
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdTurnRoadVeh , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_TURN_ROADVEH
2019-02-04 17:19:21 +00:00
DEF_CMD ( CmdPause , CMD_SERVER | CMD_NO_EST , CMDT_SERVER_SETTING ) , // CMD_PAUSE
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdBuyShareInCompany , 0 , CMDT_MONEY_MANAGEMENT ) , // CMD_BUY_SHARE_IN_COMPANY
DEF_CMD ( CmdSellShareInCompany , 0 , CMDT_MONEY_MANAGEMENT ) , // CMD_SELL_SHARE_IN_COMPANY
DEF_CMD ( CmdBuyCompany , 0 , CMDT_MONEY_MANAGEMENT ) , // CMD_BUY_COMANY
2013-09-19 18:48:05 +00:00
DEF_CMD ( CmdFoundTown , CMD_DEITY | CMD_NO_TEST , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_FOUND_TOWN; founding random town can fail only in exec run
DEF_CMD ( CmdRenameTown , CMD_DEITY | CMD_SERVER , CMDT_OTHER_MANAGEMENT ) , // CMD_RENAME_TOWN
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdDoTownAction , 0 , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_DO_TOWN_ACTION
2011-12-19 20:59:19 +00:00
DEF_CMD ( CmdTownCargoGoal , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_TOWN_CARGO_GOAL
DEF_CMD ( CmdTownGrowthRate , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_TOWN_GROWTH_RATE
2020-01-04 16:31:52 +00:00
DEF_CMD ( CmdTownRating , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_TOWN_RATING
2011-12-19 21:06:06 +00:00
DEF_CMD ( CmdTownSetText , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_TOWN_SET_TEXT
2011-12-19 20:57:51 +00:00
DEF_CMD ( CmdExpandTown , CMD_DEITY , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_EXPAND_TOWN
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdDeleteTown , CMD_OFFLINE , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_DELETE_TOWN
DEF_CMD ( CmdOrderRefit , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_ORDER_REFIT
DEF_CMD ( CmdCloneOrder , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_CLONE_ORDER
DEF_CMD ( CmdClearArea , CMD_NO_TEST , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_CLEAR_AREA; destroying multi-tile houses makes town rating differ between test and execution
2011-02-07 22:23:37 +00:00
DEF_CMD ( CmdMoneyCheat , CMD_OFFLINE , CMDT_CHEAT ) , // CMD_MONEY_CHEAT
2013-09-21 13:07:42 +00:00
DEF_CMD ( CmdChangeBankBalance , CMD_DEITY , CMDT_MONEY_MANAGEMENT ) , // CMD_CHANGE_BANK_BALANCE
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdBuildCanal , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_CANAL
2011-12-19 21:01:12 +00:00
DEF_CMD ( CmdCreateSubsidy , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_CREATE_SUBSIDY
2019-02-04 17:19:21 +00:00
DEF_CMD ( CmdCompanyCtrl , CMD_SPECTATOR | CMD_CLIENT_ID | CMD_NO_EST , CMDT_SERVER_SETTING ) , // CMD_COMPANY_CTRL
2011-12-19 21:06:06 +00:00
DEF_CMD ( CmdCustomNewsItem , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_CUSTOM_NEWS_ITEM
DEF_CMD ( CmdCreateGoal , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_CREATE_GOAL
2011-12-19 21:03:17 +00:00
DEF_CMD ( CmdRemoveGoal , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_REMOVE_GOAL
2013-05-26 19:54:43 +00:00
DEF_CMD ( CmdSetGoalText , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_GOAL_TEXT
DEF_CMD ( CmdSetGoalProgress , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_GOAL_PROGRESS
DEF_CMD ( CmdSetGoalCompleted , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_GOAL_COMPLETED
2012-01-03 16:36:24 +00:00
DEF_CMD ( CmdGoalQuestion , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_GOAL_QUESTION
DEF_CMD ( CmdGoalQuestionAnswer , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_GOAL_QUESTION_ANSWER
2013-06-09 12:19:09 +00:00
DEF_CMD ( CmdCreateStoryPage , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_CREATE_STORY_PAGE
DEF_CMD ( CmdCreateStoryPageElement , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_CREATE_STORY_PAGE_ELEMENT
DEF_CMD ( CmdUpdateStoryPageElement , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_UPDATE_STORY_PAGE_ELEMENT
DEF_CMD ( CmdSetStoryPageTitle , CMD_STR_CTRL | CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_STORY_PAGE_TITLE
2014-02-06 19:48:19 +00:00
DEF_CMD ( CmdSetStoryPageDate , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SET_STORY_PAGE_DATE
2013-06-09 12:57:22 +00:00
DEF_CMD ( CmdShowStoryPage , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SHOW_STORY_PAGE
2014-02-06 19:03:04 +00:00
DEF_CMD ( CmdRemoveStoryPage , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_REMOVE_STORY_PAGE
2014-02-06 19:48:19 +00:00
DEF_CMD ( CmdRemoveStoryPageElement , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_REMOVE_STORY_ELEMENT_PAGE
2018-04-24 17:19:01 +00:00
DEF_CMD ( CmdScrollViewport , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_SCROLL_VIEWPORT
2020-05-22 20:22:55 +00:00
DEF_CMD ( CmdStoryPageButton , CMD_DEITY , CMDT_OTHER_MANAGEMENT ) , // CMD_STORY_PAGE_BUTTON
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdLevelLand , CMD_ALL_TILES | CMD_NO_TEST | CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_LEVEL_LAND; test run might clear tiles multiple times, in execution that only happens once
DEF_CMD ( CmdBuildLock , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_LOCK
DEF_CMD ( CmdBuildSignalTrack , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_BUILD_SIGNAL_TRACK
DEF_CMD ( CmdRemoveSignalTrack , CMD_AUTO , CMDT_LANDSCAPE_CONSTRUCTION ) , // CMD_REMOVE_SIGNAL_TRACK
DEF_CMD ( CmdGiveMoney , 0 , CMDT_MONEY_MANAGEMENT ) , // CMD_GIVE_MONEY
DEF_CMD ( CmdChangeSetting , CMD_SERVER , CMDT_SERVER_SETTING ) , // CMD_CHANGE_SETTING
DEF_CMD ( CmdChangeCompanySetting , 0 , CMDT_COMPANY_SETTING ) , // CMD_CHANGE_COMPANY_SETTING
DEF_CMD ( CmdSetAutoReplace , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_SET_AUTOREPLACE
DEF_CMD ( CmdCloneVehicle , CMD_NO_TEST , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_CLONE_VEHICLE; NewGRF callbacks influence building and refitting making it impossible to correctly estimate the cost
DEF_CMD ( CmdStartStopVehicle , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_START_STOP_VEHICLE
DEF_CMD ( CmdMassStartStopVehicle , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_MASS_START_STOP
DEF_CMD ( CmdAutoreplaceVehicle , 0 , CMDT_VEHICLE_MANAGEMENT ) , // CMD_AUTOREPLACE_VEHICLE
DEF_CMD ( CmdDepotSellAllVehicles , 0 , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_DEPOT_SELL_ALL_VEHICLES
DEF_CMD ( CmdDepotMassAutoReplace , 0 , CMDT_VEHICLE_CONSTRUCTION ) , // CMD_DEPOT_MASS_AUTOREPLACE
DEF_CMD ( CmdCreateGroup , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_CREATE_GROUP
DEF_CMD ( CmdDeleteGroup , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_DELETE_GROUP
2014-04-08 21:09:06 +00:00
DEF_CMD ( CmdAlterGroup , 0 , CMDT_OTHER_MANAGEMENT ) , // CMD_ALTER_GROUP
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdAddVehicleGroup , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_ADD_VEHICLE_GROUP
DEF_CMD ( CmdAddSharedVehicleGroup , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_ADD_SHARE_VEHICLE_GROUP
DEF_CMD ( CmdRemoveAllVehiclesGroup , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_REMOVE_ALL_VEHICLES_GROUP
DEF_CMD ( CmdSetGroupReplaceProtection , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_SET_GROUP_REPLACE_PROTECTION
2019-01-31 13:57:44 +00:00
DEF_CMD ( CmdSetGroupLivery , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_SET_GROUP_LIVERY
2010-12-07 21:05:27 +00:00
DEF_CMD ( CmdMoveOrder , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_MOVE_ORDER
DEF_CMD ( CmdChangeTimetable , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_CHANGE_TIMETABLE
DEF_CMD ( CmdSetVehicleOnTime , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_SET_VEHICLE_ON_TIME
DEF_CMD ( CmdAutofillTimetable , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_AUTOFILL_TIMETABLE
DEF_CMD ( CmdSetTimetableStart , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_SET_TIMETABLE_START
2012-04-17 19:43:18 +00:00
DEF_CMD ( CmdOpenCloseAirport , 0 , CMDT_ROUTE_MANAGEMENT ) , // CMD_OPEN_CLOSE_AIRPORT
2004-08-09 17:04:08 +00:00
} ;
2007-09-10 15:21:14 +00:00
/*!
2019-04-10 21:07:06 +00:00
* This function range - checks a cmd , and checks if the cmd is not nullptr
2007-09-10 15:21:14 +00:00
*
2013-01-08 22:46:42 +00:00
* @ param cmd The integer value of a command
2007-09-10 15:21:14 +00:00
* @ return true if the command is valid ( and got a CommandProc function )
*/
2008-10-14 18:49:21 +00:00
bool IsValidCommand ( uint32 cmd )
2005-01-05 14:39:48 +00:00
{
2009-01-07 13:26:48 +00:00
cmd & = CMD_ID_MASK ;
2005-01-05 14:39:48 +00:00
2019-04-10 21:07:06 +00:00
return cmd < lengthof ( _command_proc_table ) & & _command_proc_table [ cmd ] . proc ! = nullptr ;
2005-01-05 14:39:48 +00:00
}
2007-09-10 15:21:14 +00:00
/*!
2009-01-07 13:26:48 +00:00
* This function mask the parameter with CMD_ID_MASK and returns
2007-09-10 15:21:14 +00:00
* the flags which belongs to the given command .
*
* @ param cmd The integer value of the command
* @ return The flags for this command
*/
2011-11-14 20:38:56 +00:00
CommandFlags GetCommandFlags ( uint32 cmd )
2006-06-10 08:37:41 +00:00
{
2008-10-14 18:49:21 +00:00
assert ( IsValidCommand ( cmd ) ) ;
2009-01-07 13:26:48 +00:00
return _command_proc_table [ cmd & CMD_ID_MASK ] . flags ;
2006-06-10 08:37:41 +00:00
}
2005-05-14 19:25:18 +00:00
2010-04-11 10:11:26 +00:00
/*!
* This function mask the parameter with CMD_ID_MASK and returns
* the name which belongs to the given command .
*
* @ param cmd The integer value of the command
* @ return The name for this command
*/
const char * GetCommandName ( uint32 cmd )
{
assert ( IsValidCommand ( cmd ) ) ;
return _command_proc_table [ cmd & CMD_ID_MASK ] . name ;
}
2010-12-07 21:08:35 +00:00
/**
* Returns whether the command is allowed while the game is paused .
* @ param cmd The command to check .
* @ return True if the command is allowed while paused , false otherwise .
*/
bool IsCommandAllowedWhilePaused ( uint32 cmd )
{
/* Lookup table for the command types that are allowed for a given pause level setting. */
static const int command_type_lookup [ ] = {
CMDPL_ALL_ACTIONS , ///< CMDT_LANDSCAPE_CONSTRUCTION
CMDPL_NO_LANDSCAPING , ///< CMDT_VEHICLE_CONSTRUCTION
CMDPL_NO_LANDSCAPING , ///< CMDT_MONEY_MANAGEMENT
CMDPL_NO_CONSTRUCTION , ///< CMDT_VEHICLE_MANAGEMENT
CMDPL_NO_CONSTRUCTION , ///< CMDT_ROUTE_MANAGEMENT
CMDPL_NO_CONSTRUCTION , ///< CMDT_OTHER_MANAGEMENT
CMDPL_NO_CONSTRUCTION , ///< CMDT_COMPANY_SETTING
CMDPL_NO_ACTIONS , ///< CMDT_SERVER_SETTING
2011-02-07 22:23:37 +00:00
CMDPL_NO_ACTIONS , ///< CMDT_CHEAT
2010-12-07 21:08:35 +00:00
} ;
assert_compile ( lengthof ( command_type_lookup ) = = CMDT_END ) ;
assert ( IsValidCommand ( cmd ) ) ;
2010-12-07 21:13:00 +00:00
return _game_mode = = GM_EDITOR | | command_type_lookup [ _command_proc_table [ cmd & CMD_ID_MASK ] . type ] < = _settings_game . construction . command_pause_level ;
2010-12-07 21:08:35 +00:00
}
2008-01-09 17:47:05 +00:00
static int _docommand_recursive = 0 ;
2005-08-07 10:03:14 +00:00
2009-01-08 14:55:28 +00:00
/**
* Shorthand for calling the long DoCommand with a container .
*
* @ param container Container with ( almost ) all information
* @ param flags Flags for the command and how to execute the command
* @ see CommandProc
* @ return the cost
*/
2009-02-09 21:20:05 +00:00
CommandCost DoCommand ( const CommandContainer * container , DoCommandFlag flags )
2009-01-08 14:55:28 +00:00
{
2009-01-08 16:35:45 +00:00
return DoCommand ( container - > tile , container - > p1 , container - > p2 , flags , container - > cmd & CMD_ID_MASK , container - > text ) ;
2009-01-08 14:55:28 +00:00
}
2007-09-10 15:21:14 +00:00
/*!
* This function executes a given command with the parameters from the # CommandProc parameter list .
* Depending on the flags parameter it execute or test a command .
*
* @ param tile The tile to apply the command on ( for the # CommandProc )
* @ param p1 Additional data for the command ( for the # CommandProc )
* @ param p2 Additional data for the command ( for the # CommandProc )
* @ param flags Flags for the command and how to execute the command
2008-12-28 14:37:19 +00:00
* @ param cmd The command - id to execute ( a value of the CMD_ * enums )
2009-09-18 14:23:58 +00:00
* @ param text The text to pass
2007-09-10 15:21:14 +00:00
* @ see CommandProc
2009-01-08 14:55:28 +00:00
* @ return the cost
2007-09-10 15:21:14 +00:00
*/
2009-02-09 21:20:05 +00:00
CommandCost DoCommand ( TileIndex tile , uint32 p1 , uint32 p2 , DoCommandFlag flags , uint32 cmd , const char * text )
2004-08-09 17:04:08 +00:00
{
2007-06-18 10:48:15 +00:00
CommandCost res ;
2004-09-10 19:02:27 +00:00
2005-05-07 10:26:45 +00:00
/* Do not even think about executing out-of-bounds tile-commands */
2009-01-21 02:31:55 +00:00
if ( tile ! = 0 & & ( tile > = MapSize ( ) | | ( ! IsValidTile ( tile ) & & ( flags & DC_ALL_TILES ) = = 0 ) ) ) return CMD_ERROR ;
2005-05-07 10:26:45 +00:00
2009-07-22 23:39:35 +00:00
/* Chop of any CMD_MSG or other flags; we don't need those here */
CommandProc * proc = _command_proc_table [ cmd & CMD_ID_MASK ] . proc ;
2004-08-09 17:04:08 +00:00
_docommand_recursive + + ;
2007-02-23 11:50:43 +00:00
/* only execute the test call if it's toplevel, or we're not execing. */
2008-02-04 22:44:05 +00:00
if ( _docommand_recursive = = 1 | | ! ( flags & DC_EXEC ) ) {
2018-09-20 22:44:14 +00:00
if ( _docommand_recursive = = 1 ) _cleared_object_areas . clear ( ) ;
2008-01-09 17:47:05 +00:00
SetTownRatingTestMode ( true ) ;
2008-12-28 14:37:19 +00:00
res = proc ( tile , flags & ~ DC_EXEC , p1 , p2 , text ) ;
2008-01-09 17:47:05 +00:00
SetTownRatingTestMode ( false ) ;
2010-01-18 22:57:21 +00:00
if ( res . Failed ( ) ) {
2004-08-09 17:04:08 +00:00
goto error ;
}
2006-06-10 08:37:41 +00:00
if ( _docommand_recursive = = 1 & &
! ( flags & DC_QUERY_COST ) & &
2008-02-09 15:07:31 +00:00
! ( flags & DC_BANKRUPT ) & &
2010-03-14 12:58:51 +00:00
! CheckCompanyHasMoney ( res ) ) { // CheckCompanyHasMoney() modifies 'res' to an error if it fails.
2006-06-10 08:37:41 +00:00
goto error ;
2004-08-09 17:04:08 +00:00
}
if ( ! ( flags & DC_EXEC ) ) {
_docommand_recursive - - ;
return res ;
}
}
2005-01-04 17:11:03 +00:00
/* Execute the command here. All cost-relevant functions set the expenses type
2008-01-09 16:55:48 +00:00
* themselves to the cost object at some point */
2018-09-20 22:44:14 +00:00
if ( _docommand_recursive = = 1 ) _cleared_object_areas . clear ( ) ;
2008-12-28 14:37:19 +00:00
res = proc ( tile , flags , p1 , p2 , text ) ;
2010-01-18 22:57:21 +00:00
if ( res . Failed ( ) ) {
2004-08-09 17:04:08 +00:00
error :
_docommand_recursive - - ;
2010-03-14 12:58:51 +00:00
return res ;
2004-08-09 17:04:08 +00:00
}
2007-02-23 11:50:43 +00:00
/* if toplevel, subtract the money. */
2008-02-09 15:07:31 +00:00
if ( - - _docommand_recursive = = 0 & & ! ( flags & DC_BANKRUPT ) ) {
2008-09-30 20:39:50 +00:00
SubtractMoneyFromCompany ( res ) ;
2004-08-09 17:04:08 +00:00
}
return res ;
}
2007-09-10 15:21:14 +00:00
/*!
* This functions returns the money which can be used to execute a command .
2008-09-30 20:39:50 +00:00
* This is either the money of the current company or INT64_MAX if there
* is no such a company " at the moment " like the server itself .
2007-09-10 15:21:14 +00:00
*
2008-09-30 20:39:50 +00:00
* @ return The available money of a company or INT64_MAX
2007-09-10 15:21:14 +00:00
*/
2007-06-21 14:32:27 +00:00
Money GetAvailableMoneyForCommand ( )
2004-08-09 17:04:08 +00:00
{
2008-09-30 20:39:50 +00:00
CompanyID company = _current_company ;
2009-05-17 01:00:56 +00:00
if ( ! Company : : IsValidID ( company ) ) return INT64_MAX ;
2009-05-16 23:34:14 +00:00
return Company : : Get ( company ) - > money ;
2004-08-09 17:04:08 +00:00
}
2009-01-08 14:55:28 +00:00
/**
* Shortcut for the long DoCommandP when having a container with the data .
* @ param container the container with information .
* @ param my_cmd indicator if the command is from a company or server ( to display error messages for a user )
* @ return true if the command succeeded , else false
*/
bool DoCommandP ( const CommandContainer * container , bool my_cmd )
{
return DoCommandP ( container - > tile , container - > p1 , container - > p2 , container - > cmd , container - > callback , container - > text , my_cmd ) ;
}
2007-09-10 15:21:14 +00:00
/*!
2008-09-30 20:39:50 +00:00
* Toplevel network safe docommand function for the current company . Must not be called recursively .
2007-09-10 15:21:14 +00:00
* The callback is called when the command succeeded or failed . The parameters
2010-03-14 12:39:24 +00:00
* \ a tile , \ a p1 , and \ a p2 are from the # CommandProc function . The parameter \ a cmd is the command to execute .
* The parameter \ a my_cmd is used to indicate if the command is from a company or the server .
2007-09-10 15:21:14 +00:00
*
* @ param tile The tile to perform a command on ( see # CommandProc )
* @ param p1 Additional data for the command ( see # CommandProc )
* @ param p2 Additional data for the command ( see # CommandProc )
* @ param cmd The command to execute ( a CMD_ * value )
2008-12-28 14:37:19 +00:00
* @ param callback A callback function to call after the command is finished
* @ param text The text to pass
2008-09-30 20:39:50 +00:00
* @ param my_cmd indicator if the command is from a company or server ( to display error messages for a user )
2010-03-14 12:39:24 +00:00
* @ return \ c true if the command succeeded , else \ c false .
2007-09-10 15:21:14 +00:00
*/
2008-12-28 14:37:19 +00:00
bool DoCommandP ( TileIndex tile , uint32 p1 , uint32 p2 , uint32 cmd , CommandCallback * callback , const char * text , bool my_cmd )
2004-08-09 17:04:08 +00:00
{
2010-01-11 20:39:38 +00:00
/* Cost estimation is generally only done when the
2019-09-29 20:27:32 +00:00
* local user presses shift while doing something .
2010-01-11 20:39:38 +00:00
* However , in case of incoming network commands ,
2011-08-21 12:46:46 +00:00
* map generation or the pause button we do want
2010-01-11 20:39:38 +00:00
* to execute . */
bool estimate_only = _shift_pressed & & IsLocalCompany ( ) & &
2011-08-21 12:46:46 +00:00
! _generating_world & &
2010-01-11 20:39:38 +00:00
! ( cmd & CMD_NETWORK_COMMAND ) & &
2019-02-04 17:19:21 +00:00
! ( GetCommandFlags ( cmd ) & CMD_NO_EST ) ;
2004-08-09 17:04:08 +00:00
2010-01-11 20:39:38 +00:00
/* We're only sending the command, so don't do
* fancy things for ' success ' . */
bool only_sending = _networking & & ! ( cmd & CMD_NETWORK_COMMAND ) ;
2009-01-07 13:31:09 +00:00
2010-01-11 20:39:38 +00:00
/* Where to show the message? */
2009-01-07 13:31:09 +00:00
int x = TileX ( tile ) * TILE_SIZE ;
int y = TileY ( tile ) * TILE_SIZE ;
2004-08-09 17:04:08 +00:00
2020-06-14 11:04:26 +00:00
if ( _pause_mode ! = PM_UNPAUSED & & ! IsCommandAllowedWhilePaused ( cmd ) & & ! estimate_only ) {
2010-12-07 21:09:30 +00:00
ShowErrorMessage ( GB ( cmd , 16 , 16 ) , STR_ERROR_NOT_ALLOWED_WHILE_PAUSED , WL_INFO , x , y ) ;
return false ;
}
2010-08-18 18:57:58 +00:00
/* Only set p2 when the command does not come from the network. */
2010-08-18 20:48:38 +00:00
if ( ! ( cmd & CMD_NETWORK_COMMAND ) & & GetCommandFlags ( cmd ) & CMD_CLIENT_ID & & p2 = = 0 ) p2 = CLIENT_ID_SERVER ;
2010-08-18 17:06:45 +00:00
2010-01-11 20:39:38 +00:00
CommandCost res = DoCommandPInternal ( tile , p1 , p2 , cmd , callback , text , my_cmd , estimate_only ) ;
2010-01-18 22:57:21 +00:00
if ( res . Failed ( ) ) {
2010-01-11 20:39:38 +00:00
/* Only show the error when it's for us. */
StringID error_part1 = GB ( cmd , 16 , 16 ) ;
if ( estimate_only | | ( IsLocalCompany ( ) & & error_part1 ! = 0 & & my_cmd ) ) {
2014-01-12 18:00:39 +00:00
ShowErrorMessage ( error_part1 , res . GetErrorMessage ( ) , WL_INFO , x , y , res . GetTextRefStackGRF ( ) , res . GetTextRefStackSize ( ) , res . GetTextRefStack ( ) ) ;
2010-01-11 20:39:38 +00:00
}
} else if ( estimate_only ) {
ShowEstimatedCostOrIncome ( res . GetCost ( ) , x , y ) ;
} else if ( ! only_sending & & res . GetCost ( ) ! = 0 & & tile ! = 0 & & IsLocalCompany ( ) & & _game_mode ! = GM_EDITOR ) {
/* Only show the cost animation when we did actually
* execute the command , i . e . we ' re not sending it to
* the server , when it has cost the local company
* something . Furthermore in the editor there is no
* concept of cost , so don ' t show it there either . */
2011-11-04 10:18:13 +00:00
ShowCostOrIncomeAnimation ( x , y , GetSlopePixelZ ( x , y ) , res . GetCost ( ) ) ;
2010-01-11 20:39:38 +00:00
}
2019-04-10 21:07:06 +00:00
if ( ! estimate_only & & ! only_sending & & callback ! = nullptr ) {
2019-09-07 16:37:01 +00:00
callback ( res , tile , p1 , p2 , cmd ) ;
2010-01-11 20:39:38 +00:00
}
2010-01-18 22:57:21 +00:00
return res . Succeeded ( ) ;
2010-01-11 20:39:38 +00:00
}
/**
* Helper to deduplicate the code for returning .
* @ param cmd the command cost to return .
*/
2014-02-23 22:03:08 +00:00
# define return_dcpi(cmd) { _docommand_recursive = 0; return cmd; }
2010-01-11 20:39:38 +00:00
/*!
* Helper function for the toplevel network safe docommand function for the current company .
*
* @ param tile The tile to perform a command on ( see # CommandProc )
* @ param p1 Additional data for the command ( see # CommandProc )
* @ param p2 Additional data for the command ( see # CommandProc )
* @ param cmd The command to execute ( a CMD_ * value )
* @ param callback A callback function to call after the command is finished
* @ param text The text to pass
* @ param my_cmd indicator if the command is from a company or server ( to display error messages for a user )
* @ param estimate_only whether to give only the estimate or also execute the command
* @ return the command cost of this function .
*/
CommandCost DoCommandPInternal ( TileIndex tile , uint32 p1 , uint32 p2 , uint32 cmd , CommandCallback * callback , const char * text , bool my_cmd , bool estimate_only )
{
/* Prevent recursion; it gives a mess over the network */
assert ( _docommand_recursive = = 0 ) ;
_docommand_recursive = 1 ;
/* Reset the state. */
2004-08-09 17:04:08 +00:00
_additional_cash_required = 0 ;
2010-01-11 20:39:38 +00:00
/* Get pointer to command handler */
2009-01-07 13:26:48 +00:00
byte cmd_id = cmd & CMD_ID_MASK ;
assert ( cmd_id < lengthof ( _command_proc_table ) ) ;
2009-01-07 13:31:09 +00:00
CommandProc * proc = _command_proc_table [ cmd_id ] . proc ;
2010-01-11 20:39:38 +00:00
/* Shouldn't happen, but you never know when someone adds
* NULLs to the _command_proc_table . */
2019-04-10 21:07:06 +00:00
assert ( proc ! = nullptr ) ;
2004-08-09 17:04:08 +00:00
2009-01-07 13:31:09 +00:00
/* Command flags are used internally */
2011-11-14 20:38:56 +00:00
CommandFlags cmd_flags = GetCommandFlags ( cmd ) ;
2009-01-12 15:27:39 +00:00
/* Flags get send to the DoCommand */
2009-02-09 21:20:05 +00:00
DoCommandFlag flags = CommandFlagsToDCFlags ( cmd_flags ) ;
2009-01-07 13:31:09 +00:00
2010-08-18 17:06:45 +00:00
/* Make sure p2 is properly set to a ClientID. */
assert ( ! ( cmd_flags & CMD_CLIENT_ID ) | | p2 ! = 0 ) ;
2009-01-21 02:31:55 +00:00
/* Do not even think about executing out-of-bounds tile-commands */
2014-02-23 22:03:08 +00:00
if ( tile ! = 0 & & ( tile > = MapSize ( ) | | ( ! IsValidTile ( tile ) & & ( cmd_flags & CMD_ALL_TILES ) = = 0 ) ) ) return_dcpi ( CMD_ERROR ) ;
2009-01-21 02:31:55 +00:00
2009-05-26 21:24:11 +00:00
/* Always execute server and spectator commands as spectator */
2010-06-23 14:38:17 +00:00
bool exec_as_spectator = ( cmd_flags & ( CMD_SPECTATOR | CMD_SERVER ) ) ! = 0 ;
2009-05-26 21:55:49 +00:00
2009-05-26 19:23:02 +00:00
/* If the company isn't valid it may only do server command or start a new company!
* The server will ditch any server commands a client sends to it , so effectively
* this guards the server from executing functions for an invalid company . */
2011-12-19 20:50:36 +00:00
if ( _game_mode = = GM_NORMAL & & ! exec_as_spectator & & ! Company : : IsValidID ( _current_company ) & & ! ( _current_company = = OWNER_DEITY & & ( cmd_flags & CMD_DEITY ) ! = 0 ) ) {
2014-02-23 22:03:08 +00:00
return_dcpi ( CMD_ERROR ) ;
2009-05-26 19:23:02 +00:00
}
2009-02-04 16:57:40 +00:00
2019-04-22 08:10:04 +00:00
Backup < CompanyID > cur_company ( _current_company , FILE_LINE ) ;
2010-06-05 13:32:42 +00:00
if ( exec_as_spectator ) cur_company . Change ( COMPANY_SPECTATOR ) ;
2010-01-11 20:39:38 +00:00
bool test_and_exec_can_differ = ( cmd_flags & CMD_NO_TEST ) ! = 0 ;
2012-01-09 22:21:45 +00:00
/* Test the command. */
2018-09-20 22:44:14 +00:00
_cleared_object_areas . clear ( ) ;
2012-01-09 22:21:45 +00:00
SetTownRatingTestMode ( true ) ;
2014-02-23 22:03:08 +00:00
BasePersistentStorageArray : : SwitchMode ( PSM_ENTER_TESTMODE ) ;
2012-01-09 22:21:45 +00:00
CommandCost res = proc ( tile , flags , p1 , p2 , text ) ;
2014-02-23 22:03:08 +00:00
BasePersistentStorageArray : : SwitchMode ( PSM_LEAVE_TESTMODE ) ;
2012-01-09 22:21:45 +00:00
SetTownRatingTestMode ( false ) ;
/* Make sure we're not messing things up here. */
assert ( exec_as_spectator ? _current_company = = COMPANY_SPECTATOR : cur_company . Verify ( ) ) ;
/* If the command fails, we're doing an estimate
* or the player does not have enough money
* ( unless it ' s a command where the test and
* execution phase might return different costs )
* we bail out here . */
if ( res . Failed ( ) | | estimate_only | |
( ! test_and_exec_can_differ & & ! CheckCompanyHasMoney ( res ) ) ) {
2012-01-14 19:44:25 +00:00
if ( ! _networking | | _generating_world | | ( cmd & CMD_NETWORK_COMMAND ) ! = 0 ) {
/* Log the failed command as well. Just to be able to be find
* causes of desyncs due to bad command test implementations . */
DEBUG ( desync , 1 , " cmdf: %08x; %02x; %02x; %06x; %08x; %08x; %08x; \" %s \" (%s) " , _date , _date_fract , ( int ) _current_company , tile , p1 , p2 , cmd & ~ CMD_NETWORK_COMMAND , text , GetCommandName ( cmd ) ) ;
}
2012-01-09 22:21:45 +00:00
cur_company . Restore ( ) ;
2014-02-23 22:03:08 +00:00
return_dcpi ( res ) ;
2004-08-09 17:04:08 +00:00
}
2009-05-26 19:23:02 +00:00
/*
* If we are in network , and the command is not from the network
2005-05-17 20:52:52 +00:00
* send it to the command - queue and abort execution
*/
2011-12-19 20:56:50 +00:00
if ( _networking & & ! _generating_world & & ! ( cmd & CMD_NETWORK_COMMAND ) ) {
2010-11-30 13:38:46 +00:00
NetworkSendCommand ( tile , p1 , p2 , cmd & ~ CMD_FLAGS_MASK , callback , text , _current_company ) ;
2010-06-05 13:32:42 +00:00
cur_company . Restore ( ) ;
2010-01-11 20:39:38 +00:00
/* Don't return anything special here; no error, no costs.
* This way it ' s not handled by DoCommand and only the
* actual execution of the command causes messages . Also
* reset the storages as we ' ve not executed the command . */
2014-02-23 22:03:08 +00:00
return_dcpi ( CommandCost ( ) ) ;
2004-08-09 17:04:08 +00:00
}
2010-04-11 10:11:26 +00:00
DEBUG ( desync , 1 , " cmd: %08x; %02x; %02x; %06x; %08x; %08x; %08x; \" %s \" (%s) " , _date , _date_fract , ( int ) _current_company , tile , p1 , p2 , cmd & ~ CMD_NETWORK_COMMAND , text , GetCommandName ( cmd ) ) ;
2004-08-09 17:04:08 +00:00
2005-01-04 17:11:03 +00:00
/* Actually try and execute the command. If no cost-type is given
* use the construction one */
2018-09-20 22:44:14 +00:00
_cleared_object_areas . clear ( ) ;
2014-02-23 22:03:08 +00:00
BasePersistentStorageArray : : SwitchMode ( PSM_ENTER_COMMAND ) ;
2010-01-11 20:39:38 +00:00
CommandCost res2 = proc ( tile , flags | DC_EXEC , p1 , p2 , text ) ;
2014-02-23 22:03:08 +00:00
BasePersistentStorageArray : : SwitchMode ( PSM_LEAVE_COMMAND ) ;
2004-09-10 19:02:27 +00:00
2010-06-05 13:32:42 +00:00
if ( cmd_id = = CMD_COMPANY_CTRL ) {
cur_company . Trash ( ) ;
/* We are a new company -> Switch to new local company.
* We were closed down - > Switch to spectator
* Some other company opened / closed down - > The outside function will switch back */
_current_company = _local_company ;
} else {
/* Make sure nothing bad happened, like changing the current company. */
assert ( exec_as_spectator ? _current_company = = COMPANY_SPECTATOR : cur_company . Verify ( ) ) ;
cur_company . Restore ( ) ;
}
2009-02-07 18:09:30 +00:00
2012-01-09 22:21:45 +00:00
/* If the test and execution can differ we have to check the
* return of the command . Otherwise we can check whether the
* test and execution have yielded the same result ,
* i . e . cost and error state are the same . */
if ( ! test_and_exec_can_differ ) {
2010-01-18 22:57:21 +00:00
assert ( res . GetCost ( ) = = res2 . GetCost ( ) & & res . Failed ( ) = = res2 . Failed ( ) ) ; // sanity check
} else if ( res2 . Failed ( ) ) {
2014-02-23 22:03:08 +00:00
return_dcpi ( res2 ) ;
2004-08-09 17:04:08 +00:00
}
2010-01-11 20:39:38 +00:00
/* If we're needing more money and we haven't done
* anything yet , ask for the money ! */
if ( _additional_cash_required ! = 0 & & res2 . GetCost ( ) = = 0 ) {
2010-04-17 20:21:33 +00:00
/* It could happen we removed rail, thus gained money, and deleted something else.
* So make sure the signal buffer is empty even in this case */
UpdateSignalsInBuffer ( ) ;
2010-01-11 20:39:38 +00:00
SetDParam ( 0 , _additional_cash_required ) ;
2014-02-23 22:03:08 +00:00
return_dcpi ( CommandCost ( STR_ERROR_NOT_ENOUGH_CASH_REQUIRES_CURRENCY ) ) ;
2004-08-09 17:04:08 +00:00
}
2010-01-11 20:39:38 +00:00
/* update last build coordinate of company. */
if ( tile ! = 0 ) {
Company * c = Company : : GetIfValid ( _current_company ) ;
2019-04-10 21:07:06 +00:00
if ( c ! = nullptr ) c - > last_build_coordinate = tile ;
2006-03-12 10:15:36 +00:00
}
2004-08-09 17:04:08 +00:00
2010-01-11 20:39:38 +00:00
SubtractMoneyFromCompany ( res2 ) ;
/* update signals if needed */
UpdateSignalsInBuffer ( ) ;
2004-09-10 19:02:27 +00:00
2014-02-23 22:03:08 +00:00
return_dcpi ( res2 ) ;
2004-08-09 17:04:08 +00:00
}
2010-01-11 20:39:38 +00:00
# undef return_dcpi
2008-04-07 20:02:36 +00:00
2010-02-14 15:30:08 +00:00
/**
* Adds the cost of the given command return value to this cost .
* Also takes a possible error message when it is set .
* @ param ret The command to add the cost of .
*/
2010-02-14 15:44:21 +00:00
void CommandCost : : AddCost ( const CommandCost & ret )
2008-04-07 20:02:36 +00:00
{
this - > AddCost ( ret . cost ) ;
if ( this - > success & & ! ret . success ) {
this - > message = ret . message ;
this - > success = false ;
}
}
2011-07-03 14:32:15 +00:00
/**
* Values to put on the # TextRefStack for the error message .
* There is only one static instance of the array , just like there is only one
* instance of normal DParams .
*/
uint32 CommandCost : : textref_stack [ 16 ] ;
/**
* Activate usage of the NewGRF # TextRefStack for the error message .
2014-01-12 18:00:39 +00:00
* @ param grffile NewGRF that provides the # TextRefStack
* @ param num_registers number of entries to copy from the temporary NewGRF registers
2011-07-03 14:32:15 +00:00
*/
2014-01-12 18:00:39 +00:00
void CommandCost : : UseTextRefStack ( const GRFFile * grffile , uint num_registers )
2011-07-03 14:32:15 +00:00
{
extern TemporaryStorageArray < int32 , 0x110 > _temp_store ;
assert ( num_registers < lengthof ( textref_stack ) ) ;
2014-01-12 18:00:39 +00:00
this - > textref_stack_grffile = grffile ;
2011-07-03 14:32:15 +00:00
this - > textref_stack_size = num_registers ;
for ( uint i = 0 ; i < num_registers ; i + + ) {
textref_stack [ i ] = _temp_store . GetValue ( 0x100 + i ) ;
}
}