summaryrefslogtreecommitdiff
path: root/src/ship_cmd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-08-15 13:57:43 +0000
committerfrosch <frosch@openttd.org>2008-08-15 13:57:43 +0000
commit844a83ed58cb50d27dcb3757507afd8370e4a428 (patch)
treee439387d0f5c3387188afcb3d06876defc09085e /src/ship_cmd.cpp
parentd7382c86a57b74c513e753b5cb6c155a599cbc4d (diff)
downloadopenttd-844a83ed58cb50d27dcb3757507afd8370e4a428.tar.xz
(svn r14076) -Codechange: Merge the four start/stop commands into a single CMD_START_STOP_VEHICLE.
Diffstat (limited to 'src/ship_cmd.cpp')
-rw-r--r--src/ship_cmd.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp
index 98f718a80..bfd06c2f5 100644
--- a/src/ship_cmd.cpp
+++ b/src/ship_cmd.cpp
@@ -873,43 +873,6 @@ CommandCost CmdSellShip(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
return ret;
}
-/** Start/Stop a ship.
- * @param tile unused
- * @param flags type of operation
- * @param p1 ship ID to start/stop
- * @param p2 unused
- */
-CommandCost CmdStartStopShip(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
-{
- if (!IsValidVehicleID(p1)) return CMD_ERROR;
-
- Vehicle *v = GetVehicle(p1);
-
- if (v->type != VEH_SHIP || !CheckOwnership(v->owner)) return CMD_ERROR;
-
- /* Check if this ship can be started/stopped. The callback will fail or
- * return 0xFF if it can. */
- uint16 callback = GetVehicleCallback(CBID_VEHICLE_START_STOP_CHECK, 0, 0, v->engine_type, v);
- if (callback != CALLBACK_FAILED && GB(callback, 0, 8) != 0xFF) {
- StringID error = GetGRFStringID(GetEngineGRFID(v->engine_type), 0xD000 + callback);
- return_cmd_error(error);
- }
-
- if (flags & DC_EXEC) {
- if (v->IsStoppedInDepot()) {
- DeleteVehicleNews(p1, STR_981C_SHIP_IS_WAITING_IN_DEPOT);
- }
-
- v->vehstatus ^= VS_STOPPED;
- v->cur_speed = 0;
- InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, VVW_WIDGET_START_STOP_VEH);
- InvalidateWindow(WC_VEHICLE_DEPOT, v->tile);
- InvalidateWindowClasses(WC_SHIPS_LIST);
- }
-
- return CommandCost();
-}
-
bool Ship::FindClosestDepot(TileIndex *location, DestinationID *destination, bool *reverse)
{
const Depot *depot = FindClosestShipDepot(this);