2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "map.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "gui.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "player.h"
|
2004-12-04 17:54:56 +00:00
|
|
|
#include "network.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.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"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-15 18:50:55 +00:00
|
|
|
const char* _cmd_text = NULL;
|
|
|
|
|
2006-04-10 07:15:58 +00:00
|
|
|
#define DEF_COMMAND(yyyy) int32 yyyy(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildRailroadTrack);
|
|
|
|
DEF_COMMAND(CmdRemoveRailroadTrack);
|
|
|
|
DEF_COMMAND(CmdBuildSingleRail);
|
|
|
|
DEF_COMMAND(CmdRemoveSingleRail);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdLandscapeClear);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildBridge);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildRailroadStation);
|
|
|
|
DEF_COMMAND(CmdRemoveFromRailroadStation);
|
|
|
|
DEF_COMMAND(CmdConvertRail);
|
|
|
|
|
2005-01-30 15:57:38 +00:00
|
|
|
DEF_COMMAND(CmdBuildSingleSignal);
|
|
|
|
DEF_COMMAND(CmdRemoveSingleSignal);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DEF_COMMAND(CmdTerraformLand);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdPurchaseLandArea);
|
|
|
|
DEF_COMMAND(CmdSellLandArea);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildTunnel);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildTrainDepot);
|
2004-11-14 13:07:07 +00:00
|
|
|
DEF_COMMAND(CmdBuildTrainWaypoint);
|
|
|
|
DEF_COMMAND(CmdRenameWaypoint);
|
|
|
|
DEF_COMMAND(CmdRemoveTrainWaypoint);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-29 19:41:44 +00:00
|
|
|
DEF_COMMAND(CmdBuildRoadStop);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildLongRoad);
|
|
|
|
DEF_COMMAND(CmdRemoveLongRoad);
|
|
|
|
DEF_COMMAND(CmdBuildRoad);
|
|
|
|
DEF_COMMAND(CmdRemoveRoad);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildRoadDepot);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildAirport);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildDock);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildShipDepot);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildBuoy);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdPlantTree);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildRailVehicle);
|
|
|
|
DEF_COMMAND(CmdMoveRailVehicle);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdStartStopTrain);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdSellRailWagon);
|
|
|
|
|
2005-05-12 00:18:30 +00:00
|
|
|
DEF_COMMAND(CmdSendTrainToDepot);
|
2004-08-09 17:04:08 +00:00
|
|
|
DEF_COMMAND(CmdForceTrainProceed);
|
|
|
|
DEF_COMMAND(CmdReverseTrainDirection);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdModifyOrder);
|
|
|
|
DEF_COMMAND(CmdSkipOrder);
|
|
|
|
DEF_COMMAND(CmdDeleteOrder);
|
|
|
|
DEF_COMMAND(CmdInsertOrder);
|
2006-01-05 21:35:54 +00:00
|
|
|
DEF_COMMAND(CmdChangeServiceInt);
|
2004-08-09 17:04:08 +00:00
|
|
|
DEF_COMMAND(CmdRestoreOrderIndex);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildIndustry);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildCompanyHQ);
|
|
|
|
DEF_COMMAND(CmdSetPlayerFace);
|
|
|
|
DEF_COMMAND(CmdSetPlayerColor);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdIncreaseLoan);
|
|
|
|
DEF_COMMAND(CmdDecreaseLoan);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdWantEnginePreview);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdNameVehicle);
|
|
|
|
DEF_COMMAND(CmdRenameEngine);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdChangeCompanyName);
|
|
|
|
DEF_COMMAND(CmdChangePresidentName);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdRenameStation);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdSellAircraft);
|
|
|
|
DEF_COMMAND(CmdStartStopAircraft);
|
|
|
|
DEF_COMMAND(CmdBuildAircraft);
|
|
|
|
DEF_COMMAND(CmdSendAircraftToHangar);
|
|
|
|
DEF_COMMAND(CmdRefitAircraft);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdPlaceSign);
|
|
|
|
DEF_COMMAND(CmdRenameSign);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildRoadVeh);
|
|
|
|
DEF_COMMAND(CmdStartStopRoadVeh);
|
|
|
|
DEF_COMMAND(CmdSellRoadVeh);
|
|
|
|
DEF_COMMAND(CmdSendRoadVehToDepot);
|
|
|
|
DEF_COMMAND(CmdTurnRoadVeh);
|
2006-06-09 07:45:26 +00:00
|
|
|
DEF_COMMAND(CmdRefitRoadVeh);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DEF_COMMAND(CmdPause);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuyShareInCompany);
|
|
|
|
DEF_COMMAND(CmdSellShareInCompany);
|
|
|
|
DEF_COMMAND(CmdBuyCompany);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdBuildTown);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdRenameTown);
|
|
|
|
DEF_COMMAND(CmdDoTownAction);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdSetRoadDriveSide);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdChangeDifficultyLevel);
|
2004-12-04 17:54:56 +00:00
|
|
|
DEF_COMMAND(CmdChangePatchSetting);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DEF_COMMAND(CmdStartStopShip);
|
|
|
|
DEF_COMMAND(CmdSellShip);
|
|
|
|
DEF_COMMAND(CmdBuildShip);
|
|
|
|
DEF_COMMAND(CmdSendShipToDepot);
|
|
|
|
DEF_COMMAND(CmdRefitShip);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdCloneOrder);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdClearArea);
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
DEF_COMMAND(CmdGiveMoney);
|
2004-08-09 17:04:08 +00:00
|
|
|
DEF_COMMAND(CmdMoneyCheat);
|
|
|
|
DEF_COMMAND(CmdBuildCanal);
|
2004-09-01 21:54:12 +00:00
|
|
|
DEF_COMMAND(CmdBuildLock);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DEF_COMMAND(CmdPlayerCtrl);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdLevelLand);
|
|
|
|
|
|
|
|
DEF_COMMAND(CmdRefitRailVehicle);
|
|
|
|
|
2005-01-30 15:57:38 +00:00
|
|
|
DEF_COMMAND(CmdBuildSignalTrack);
|
|
|
|
DEF_COMMAND(CmdRemoveSignalTrack);
|
2004-08-15 20:23:42 +00:00
|
|
|
|
2005-01-02 17:23:04 +00:00
|
|
|
DEF_COMMAND(CmdReplaceVehicle);
|
2004-12-27 18:18:44 +00:00
|
|
|
|
2005-07-31 13:08:08 +00:00
|
|
|
DEF_COMMAND(CmdCloneVehicle);
|
|
|
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* The master command table */
|
2005-05-14 19:25:18 +00:00
|
|
|
static const Command _command_proc_table[] = {
|
|
|
|
{CmdBuildRailroadTrack, 0}, /* 0 */
|
|
|
|
{CmdRemoveRailroadTrack, 0}, /* 1 */
|
|
|
|
{CmdBuildSingleRail, 0}, /* 2 */
|
|
|
|
{CmdRemoveSingleRail, 0}, /* 3 */
|
|
|
|
{CmdLandscapeClear, 0}, /* 4 */
|
|
|
|
{CmdBuildBridge, 0}, /* 5 */
|
|
|
|
{CmdBuildRailroadStation, 0}, /* 6 */
|
|
|
|
{CmdBuildTrainDepot, 0}, /* 7 */
|
|
|
|
{CmdBuildSingleSignal, 0}, /* 8 */
|
|
|
|
{CmdRemoveSingleSignal, 0}, /* 9 */
|
|
|
|
{CmdTerraformLand, 0}, /* 10 */
|
|
|
|
{CmdPurchaseLandArea, 0}, /* 11 */
|
|
|
|
{CmdSellLandArea, 0}, /* 12 */
|
|
|
|
{CmdBuildTunnel, 0}, /* 13 */
|
|
|
|
{CmdRemoveFromRailroadStation, 0}, /* 14 */
|
|
|
|
{CmdConvertRail, 0}, /* 15 */
|
|
|
|
{CmdBuildTrainWaypoint, 0}, /* 16 */
|
|
|
|
{CmdRenameWaypoint, 0}, /* 17 */
|
|
|
|
{CmdRemoveTrainWaypoint, 0}, /* 18 */
|
|
|
|
{NULL, 0}, /* 19 */
|
|
|
|
{NULL, 0}, /* 20 */
|
|
|
|
{CmdBuildRoadStop, 0}, /* 21 */
|
|
|
|
{NULL, 0}, /* 22 */
|
|
|
|
{CmdBuildLongRoad, 0}, /* 23 */
|
|
|
|
{CmdRemoveLongRoad, 0}, /* 24 */
|
|
|
|
{CmdBuildRoad, 0}, /* 25 */
|
|
|
|
{CmdRemoveRoad, 0}, /* 26 */
|
|
|
|
{CmdBuildRoadDepot, 0}, /* 27 */
|
|
|
|
{NULL, 0}, /* 28 */
|
|
|
|
{CmdBuildAirport, 0}, /* 29 */
|
|
|
|
{CmdBuildDock, 0}, /* 30 */
|
|
|
|
{CmdBuildShipDepot, 0}, /* 31 */
|
|
|
|
{CmdBuildBuoy, 0}, /* 32 */
|
|
|
|
{CmdPlantTree, 0}, /* 33 */
|
|
|
|
{CmdBuildRailVehicle, 0}, /* 34 */
|
|
|
|
{CmdMoveRailVehicle, 0}, /* 35 */
|
|
|
|
{CmdStartStopTrain, 0}, /* 36 */
|
|
|
|
{NULL, 0}, /* 37 */
|
|
|
|
{CmdSellRailWagon, 0}, /* 38 */
|
|
|
|
{CmdSendTrainToDepot, 0}, /* 39 */
|
|
|
|
{CmdForceTrainProceed, 0}, /* 40 */
|
|
|
|
{CmdReverseTrainDirection, 0}, /* 41 */
|
|
|
|
|
|
|
|
{CmdModifyOrder, 0}, /* 42 */
|
|
|
|
{CmdSkipOrder, 0}, /* 43 */
|
|
|
|
{CmdDeleteOrder, 0}, /* 44 */
|
|
|
|
{CmdInsertOrder, 0}, /* 45 */
|
|
|
|
|
2006-01-05 21:35:54 +00:00
|
|
|
{CmdChangeServiceInt, 0}, /* 46 */
|
2005-05-14 19:25:18 +00:00
|
|
|
|
|
|
|
{CmdBuildIndustry, 0}, /* 47 */
|
|
|
|
{CmdBuildCompanyHQ, 0}, /* 48 */
|
|
|
|
{CmdSetPlayerFace, 0}, /* 49 */
|
|
|
|
{CmdSetPlayerColor, 0}, /* 50 */
|
|
|
|
|
|
|
|
{CmdIncreaseLoan, 0}, /* 51 */
|
|
|
|
{CmdDecreaseLoan, 0}, /* 52 */
|
|
|
|
|
|
|
|
{CmdWantEnginePreview, 0}, /* 53 */
|
|
|
|
|
|
|
|
{CmdNameVehicle, 0}, /* 54 */
|
|
|
|
{CmdRenameEngine, 0}, /* 55 */
|
|
|
|
|
|
|
|
{CmdChangeCompanyName, 0}, /* 56 */
|
|
|
|
{CmdChangePresidentName, 0}, /* 57 */
|
|
|
|
|
|
|
|
{CmdRenameStation, 0}, /* 58 */
|
|
|
|
|
|
|
|
{CmdSellAircraft, 0}, /* 59 */
|
|
|
|
{CmdStartStopAircraft, 0}, /* 60 */
|
|
|
|
|
|
|
|
{CmdBuildAircraft, 0}, /* 61 */
|
|
|
|
{CmdSendAircraftToHangar, 0}, /* 62 */
|
2006-01-05 21:35:54 +00:00
|
|
|
{NULL, 0}, /* 63 */
|
2005-05-14 19:25:18 +00:00
|
|
|
{CmdRefitAircraft, 0}, /* 64 */
|
|
|
|
|
|
|
|
{CmdPlaceSign, 0}, /* 65 */
|
|
|
|
{CmdRenameSign, 0}, /* 66 */
|
|
|
|
|
|
|
|
{CmdBuildRoadVeh, 0}, /* 67 */
|
|
|
|
{CmdStartStopRoadVeh, 0}, /* 68 */
|
|
|
|
{CmdSellRoadVeh, 0}, /* 69 */
|
|
|
|
{CmdSendRoadVehToDepot, 0}, /* 70 */
|
|
|
|
{CmdTurnRoadVeh, 0}, /* 71 */
|
2006-06-09 07:45:26 +00:00
|
|
|
{CmdRefitRoadVeh, 0}, /* 72 */
|
2005-05-14 19:25:18 +00:00
|
|
|
|
|
|
|
{CmdPause, CMD_SERVER}, /* 73 */
|
|
|
|
|
|
|
|
{CmdBuyShareInCompany, 0}, /* 74 */
|
|
|
|
{CmdSellShareInCompany, 0}, /* 75 */
|
|
|
|
{CmdBuyCompany, 0}, /* 76 */
|
|
|
|
|
|
|
|
{CmdBuildTown, CMD_OFFLINE}, /* 77 */
|
|
|
|
{NULL, 0}, /* 78 */
|
|
|
|
{NULL, 0}, /* 79 */
|
|
|
|
{CmdRenameTown, CMD_SERVER}, /* 80 */
|
|
|
|
{CmdDoTownAction, 0}, /* 81 */
|
|
|
|
|
|
|
|
{CmdSetRoadDriveSide, CMD_SERVER}, /* 82 */
|
|
|
|
{NULL, 0}, /* 83 */
|
|
|
|
{NULL, 0}, /* 84 */
|
|
|
|
{CmdChangeDifficultyLevel, CMD_SERVER}, /* 85 */
|
|
|
|
|
|
|
|
{CmdStartStopShip, 0}, /* 86 */
|
|
|
|
{CmdSellShip, 0}, /* 87 */
|
|
|
|
{CmdBuildShip, 0}, /* 88 */
|
|
|
|
{CmdSendShipToDepot, 0}, /* 89 */
|
2006-01-05 21:35:54 +00:00
|
|
|
{NULL, 0}, /* 90 */
|
2005-05-14 19:25:18 +00:00
|
|
|
{CmdRefitShip, 0}, /* 91 */
|
|
|
|
|
|
|
|
{NULL, 0}, /* 92 */
|
|
|
|
{NULL, 0}, /* 93 */
|
|
|
|
{NULL, 0}, /* 94 */
|
|
|
|
{NULL, 0}, /* 95 */
|
|
|
|
{NULL, 0}, /* 96 */
|
|
|
|
{NULL, 0}, /* 97 */
|
|
|
|
{NULL, 0}, /* 98 */
|
|
|
|
|
|
|
|
{CmdCloneOrder, 0}, /* 99 */
|
|
|
|
|
|
|
|
{CmdClearArea, 0}, /* 100 */
|
|
|
|
{NULL, 0}, /* 101 */
|
|
|
|
|
|
|
|
{CmdMoneyCheat, CMD_OFFLINE}, /* 102 */
|
|
|
|
{CmdBuildCanal, 0}, /* 103 */
|
|
|
|
{CmdPlayerCtrl, 0}, /* 104 */
|
|
|
|
|
|
|
|
{CmdLevelLand, 0}, /* 105 */
|
|
|
|
|
|
|
|
{CmdRefitRailVehicle, 0}, /* 106 */
|
|
|
|
{CmdRestoreOrderIndex, 0}, /* 107 */
|
|
|
|
{CmdBuildLock, 0}, /* 108 */
|
|
|
|
{NULL, 0}, /* 109 */
|
|
|
|
{CmdBuildSignalTrack, 0}, /* 110 */
|
|
|
|
{CmdRemoveSignalTrack, 0}, /* 111 */
|
|
|
|
{NULL, 0}, /* 112 */
|
|
|
|
{CmdGiveMoney, 0}, /* 113 */
|
|
|
|
{CmdChangePatchSetting, CMD_SERVER}, /* 114 */
|
|
|
|
{CmdReplaceVehicle, 0}, /* 115 */
|
2006-06-09 08:26:22 +00:00
|
|
|
{CmdCloneVehicle, 0}, /* 116 */
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2005-01-05 14:39:48 +00:00
|
|
|
/* This function range-checks a cmd, and checks if the cmd is not NULL */
|
2005-01-09 21:25:44 +00:00
|
|
|
bool IsValidCommand(uint cmd)
|
2005-01-05 14:39:48 +00:00
|
|
|
{
|
2005-11-15 09:47:25 +00:00
|
|
|
cmd &= 0xFF;
|
2005-01-05 14:39:48 +00:00
|
|
|
|
2005-11-15 09:47:25 +00:00
|
|
|
return
|
|
|
|
cmd < lengthof(_command_proc_table) &&
|
|
|
|
_command_proc_table[cmd].proc != NULL;
|
2005-01-05 14:39:48 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 08:37:41 +00:00
|
|
|
byte GetCommandFlags(uint cmd)
|
|
|
|
{
|
|
|
|
return _command_proc_table[cmd & 0xFF].flags;
|
|
|
|
}
|
2005-05-14 19:25:18 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-08-07 10:03:14 +00:00
|
|
|
static int _docommand_recursive;
|
|
|
|
|
2006-04-10 07:15:58 +00:00
|
|
|
int32 DoCommand(TileIndex tile, uint32 p1, uint32 p2, uint32 flags, uint procc)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
int32 res;
|
|
|
|
CommandProc *proc;
|
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 */
|
2006-04-10 07:15:58 +00:00
|
|
|
if (tile >= MapSize()) {
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
2005-05-07 10:26:45 +00:00
|
|
|
|
2005-05-14 19:25:18 +00:00
|
|
|
proc = _command_proc_table[procc].proc;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-12-13 21:21:57 +00:00
|
|
|
if (_docommand_recursive == 0) _error_message = INVALID_STRING_ID;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
_docommand_recursive++;
|
|
|
|
|
|
|
|
// only execute the test call if it's toplevel, or we're not execing.
|
|
|
|
if (_docommand_recursive == 1 || !(flags & DC_EXEC) || (flags & DC_FORCETEST) ) {
|
2006-04-10 07:15:58 +00:00
|
|
|
res = proc(tile, flags & ~DC_EXEC, p1, p2);
|
2005-04-14 11:17:36 +00:00
|
|
|
if (CmdFailed(res)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (res & 0xFFFF) _error_message = res & 0xFFFF;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2006-06-10 08:37:41 +00:00
|
|
|
if (_docommand_recursive == 1 &&
|
|
|
|
!(flags & DC_QUERY_COST) &&
|
|
|
|
res != 0 &&
|
|
|
|
!CheckPlayerHasMoney(res)) {
|
|
|
|
goto error;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & DC_EXEC)) {
|
|
|
|
_docommand_recursive--;
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-04 17:11:03 +00:00
|
|
|
/* Execute the command here. All cost-relevant functions set the expenses type
|
|
|
|
* themselves with "SET_EXPENSES_TYPE(...);" at the beginning of the function */
|
2006-04-10 07:15:58 +00:00
|
|
|
res = proc(tile, flags, p1, p2);
|
2005-04-14 11:17:36 +00:00
|
|
|
if (CmdFailed(res)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (res & 0xFFFF) _error_message = res & 0xFFFF;
|
|
|
|
error:
|
|
|
|
_docommand_recursive--;
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if toplevel, subtract the money.
|
|
|
|
if (--_docommand_recursive == 0) {
|
|
|
|
SubtractMoneyFromPlayer(res);
|
2005-12-18 22:48:45 +00:00
|
|
|
// XXX - Old AI hack which doesn't use DoCommandDP; update last build coord of player
|
2006-04-10 07:15:58 +00:00
|
|
|
if (tile != 0 && _current_player < MAX_PLAYERS) {
|
|
|
|
GetPlayer(_current_player)->last_build_coordinate = tile;
|
2005-12-18 22:48:45 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
int32 GetAvailableMoneyForCommand(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-05-12 00:18:30 +00:00
|
|
|
PlayerID pid = _current_player;
|
2004-09-01 21:54:12 +00:00
|
|
|
if (pid >= MAX_PLAYERS) return 0x7FFFFFFF; // max int
|
2005-06-21 16:28:17 +00:00
|
|
|
return GetPlayer(pid)->player_money;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// toplevel network safe docommand function for the current player. must not be called recursively.
|
|
|
|
// the callback is called when the command succeeded or failed.
|
|
|
|
bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback, uint32 cmd)
|
|
|
|
{
|
|
|
|
int32 res = 0,res2;
|
|
|
|
CommandProc *proc;
|
|
|
|
uint32 flags;
|
|
|
|
bool notest;
|
2006-03-12 10:15:36 +00:00
|
|
|
StringID error_part1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
int x = TileX(tile) * TILE_SIZE;
|
|
|
|
int y = TileY(tile) * TILE_SIZE;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-07 10:26:45 +00:00
|
|
|
/* Do not even think about executing out-of-bounds tile-commands */
|
2006-01-05 21:50:09 +00:00
|
|
|
if (tile >= MapSize()) {
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
2005-05-07 10:26:45 +00:00
|
|
|
|
2004-09-10 19:02:27 +00:00
|
|
|
assert(_docommand_recursive == 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
_error_message = INVALID_STRING_ID;
|
2006-03-12 10:15:36 +00:00
|
|
|
error_part1 = GB(cmd, 16, 16);
|
2004-08-09 17:04:08 +00:00
|
|
|
_additional_cash_required = 0;
|
|
|
|
|
2005-05-17 18:22:59 +00:00
|
|
|
/** Spectator has no rights except for the dedicated server which
|
|
|
|
* is a spectator but is the server, so can do anything */
|
|
|
|
if (_current_player == OWNER_SPECTATOR && !_network_dedicated) {
|
2006-03-12 10:15:36 +00:00
|
|
|
ShowErrorMessage(_error_message, error_part1, x, y);
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
if (cmd & CMD_AUTO) flags |= DC_AUTO;
|
|
|
|
if (cmd & CMD_NO_WATER) flags |= DC_NO_WATER;
|
|
|
|
|
|
|
|
// get pointer to command handler
|
|
|
|
assert((cmd & 0xFF) < lengthof(_command_proc_table));
|
2005-05-14 19:25:18 +00:00
|
|
|
proc = _command_proc_table[cmd & 0xFF].proc;
|
2005-05-30 14:45:36 +00:00
|
|
|
if (proc == NULL) {
|
|
|
|
_cmd_text = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-29 13:13:29 +00:00
|
|
|
// Some commands have a different output in dryrun than the realrun
|
2004-12-04 17:54:56 +00:00
|
|
|
// e.g.: if you demolish a whole town, the dryrun would say okay.
|
|
|
|
// but by really destroying, your rating drops and at a certain point
|
|
|
|
// it will fail. so res and res2 are different
|
2004-11-20 02:25:31 +00:00
|
|
|
// CMD_REMOVE_ROAD: This command has special local authority
|
|
|
|
// restrictions which may cause the test run to fail (the previous
|
|
|
|
// road fragments still stay there and the town won't let you
|
|
|
|
// disconnect the road system), but the exec will succeed and this
|
|
|
|
// fact will trigger an assertion failure. --pasky
|
2004-09-10 19:02:27 +00:00
|
|
|
notest =
|
|
|
|
(cmd & 0xFF) == CMD_CLEAR_AREA ||
|
|
|
|
(cmd & 0xFF) == CMD_CONVERT_RAIL ||
|
2004-08-09 17:04:08 +00:00
|
|
|
(cmd & 0xFF) == CMD_LEVEL_LAND ||
|
2005-04-15 20:23:54 +00:00
|
|
|
(cmd & 0xFF) == CMD_REMOVE_ROAD ||
|
2005-04-14 22:07:39 +00:00
|
|
|
(cmd & 0xFF) == CMD_REMOVE_LONG_ROAD;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
_docommand_recursive = 1;
|
|
|
|
|
|
|
|
// cost estimation only?
|
(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
|
|
|
if (!IsGeneratingWorld() && _shift_pressed && IsLocalPlayer() && !(cmd & (CMD_NETWORK_COMMAND | CMD_SHOW_NO_ERROR))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
// estimate the cost.
|
2006-04-10 07:15:58 +00:00
|
|
|
res = proc(tile, flags, p1, p2);
|
2005-04-14 11:17:36 +00:00
|
|
|
if (CmdFailed(res)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (res & 0xFFFF) _error_message = res & 0xFFFF;
|
2006-03-12 10:15:36 +00:00
|
|
|
ShowErrorMessage(_error_message, error_part1, x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
|
|
|
ShowEstimatedCostOrIncome(res, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
_docommand_recursive = 0;
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
if (!((cmd & CMD_NO_TEST_IF_IN_NETWORK) && _networking)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
// first test if the command can be executed.
|
2006-04-10 07:15:58 +00:00
|
|
|
res = proc(tile, flags, p1, p2);
|
2005-04-14 11:17:36 +00:00
|
|
|
if (CmdFailed(res)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (res & 0xFFFF) _error_message = res & 0xFFFF;
|
|
|
|
goto show_error;
|
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
// no money? Only check if notest is off
|
(svn r3313) Remove GPMI related changes from trunk
Revisions in detail: 2542, 3226 (partial), 3229, 3231, 3232, 3238, 3242-3245, 3251, 3253, 3260, 3263, 3265, 3266, 3269, 3277, 3278, 3279, 3283 (partial), 3304, 3305, 3306
2005-12-18 12:10:46 +00:00
|
|
|
if (!notest && res != 0 && !CheckPlayerHasMoney(res)) goto show_error;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2005-05-17 20:52:52 +00:00
|
|
|
/** If we are in network, and the command is not from the network
|
|
|
|
* send it to the command-queue and abort execution
|
|
|
|
* If we are a dedicated server temporarily switch local player, otherwise
|
|
|
|
* the other parties won't be able to execute our command and will desync.
|
|
|
|
* @todo Rewrite dedicated server to something more than a dirty hack!
|
|
|
|
*/
|
2004-12-04 17:54:56 +00:00
|
|
|
if (_networking && !(cmd & CMD_NETWORK_COMMAND)) {
|
2005-05-17 20:52:52 +00:00
|
|
|
if (_network_dedicated) _local_player = 0;
|
2004-12-04 17:54:56 +00:00
|
|
|
NetworkSend_Command(tile, p1, p2, cmd, callback);
|
2005-05-17 20:52:52 +00:00
|
|
|
if (_network_dedicated) _local_player = OWNER_SPECTATOR;
|
2004-12-04 17:54:56 +00:00
|
|
|
_docommand_recursive = 0;
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-12-04 17:54:56 +00:00
|
|
|
return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
#endif /* ENABLE_NETWORK */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
// update last build coordinate of player.
|
2006-06-10 08:37:41 +00:00
|
|
|
if (tile != 0 && _current_player < MAX_PLAYERS) {
|
|
|
|
GetPlayer(_current_player)->last_build_coordinate = tile;
|
|
|
|
}
|
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 */
|
|
|
|
_yearly_expenses_type = EXPENSES_CONSTRUCTION;
|
2006-06-10 08:37:41 +00:00
|
|
|
res2 = proc(tile, flags | DC_EXEC, p1, p2);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-29 13:13:29 +00:00
|
|
|
// If notest is on, it means the result of the test can be different than
|
2004-12-04 17:54:56 +00:00
|
|
|
// the real command.. so ignore the test
|
2004-12-14 18:13:02 +00:00
|
|
|
if (!notest && !((cmd & CMD_NO_TEST_IF_IN_NETWORK) && _networking)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
assert(res == res2); // sanity check
|
|
|
|
} else {
|
2005-04-15 21:37:56 +00:00
|
|
|
if (CmdFailed(res2)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (res2 & 0xFFFF) _error_message = res2 & 0xFFFF;
|
|
|
|
goto show_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SubtractMoneyFromPlayer(res2);
|
|
|
|
|
2005-09-14 18:03:38 +00:00
|
|
|
if (IsLocalPlayer() && _game_mode != GM_EDITOR) {
|
2006-06-10 08:37:41 +00:00
|
|
|
if (res2 != 0) ShowCostOrIncomeAnimation(x, y, GetSlopeZ(x, y), res2);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (_additional_cash_required) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, _additional_cash_required);
|
2006-03-12 10:15:36 +00:00
|
|
|
ShowErrorMessage(STR_0003_NOT_ENOUGH_CASH_REQUIRES, error_part1, x,y);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (res2 == 0) goto callb_err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_docommand_recursive = 0;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (callback) callback(true, tile, p1, p2);
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
show_error:
|
|
|
|
// show error message if the command fails?
|
2006-03-12 10:15:36 +00:00
|
|
|
if (IsLocalPlayer() && error_part1 != 0) {
|
|
|
|
ShowErrorMessage(_error_message, error_part1, x,y);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
callb_err:
|
|
|
|
_docommand_recursive = 0;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (callback) callback(false, tile, p1, p2);
|
2005-05-15 18:50:55 +00:00
|
|
|
_cmd_text = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
return false;
|
|
|
|
}
|