summaryrefslogtreecommitdiff
path: root/src/order_backup.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-18 15:58:30 +0000
committerrubidium <rubidium@openttd.org>2010-08-18 15:58:30 +0000
commit287ee8c01d900ef15bd434e61607c0f341ec2d7e (patch)
treea42028ee5beaf4a395062e7e382d34a792a3e095 /src/order_backup.cpp
parentd28985fe8e701f061344f457d7c8704ad63d1ad8 (diff)
downloadopenttd-287ee8c01d900ef15bd434e61607c0f341ec2d7e.tar.xz
(svn r20541) -Fix: when removing a vehicle update the "clone orders of"-vehicle of a backed up order, or remove it if there is no vehicle sharing orders with that vehicle.
Diffstat (limited to 'src/order_backup.cpp')
-rw-r--r--src/order_backup.cpp27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/order_backup.cpp b/src/order_backup.cpp
index 3a462e3ce..ccbe93abe 100644
--- a/src/order_backup.cpp
+++ b/src/order_backup.cpp
@@ -37,15 +37,10 @@ OrderBackup::OrderBackup(const Vehicle *v)
/* If we have shared orders, store the vehicle we share the order with. */
if (v->IsOrderListShared()) {
- const Vehicle *u = (v->FirstShared() == v) ? v->NextShared() : v->FirstShared();
-
- this->clone = u->index;
+ this->clone = (v->FirstShared() == v) ? v->NextShared() : v->FirstShared();
} else {
/* Else copy the orders */
- /* We do not have shared orders */
- this->clone = INVALID_VEHICLE;
-
/* Count the number of orders */
uint cnt = 0;
const Order *order;
@@ -72,9 +67,9 @@ void OrderBackup::RestoreTo(const Vehicle *v)
if (this->name != NULL) DoCommandP(0, v->index, 0, CMD_RENAME_VEHICLE, NULL, this->name);
/* If we had shared orders, recover that */
- if (this->clone != INVALID_VEHICLE) {
- DoCommandP(0, v->index | (this->clone << 16), CO_SHARE, CMD_CLONE_ORDER);
- } else {
+ if (this->clone != NULL) {
+ DoCommandP(0, v->index | (this->clone->index << 16), CO_SHARE, CMD_CLONE_ORDER);
+ } else if (this->orders != NULL) {
/* CMD_NO_TEST_IF_IN_NETWORK is used here, because CMD_INSERT_ORDER checks if the
* order number is one more than the current amount of orders, and because
@@ -140,6 +135,20 @@ void OrderBackup::RestoreTo(const Vehicle *v)
}
}
+/* static */ void OrderBackup::ClearVehicle(const Vehicle *v)
+{
+ assert(v != NULL);
+ OrderBackup *ob;
+ FOR_ALL_ORDER_BACKUPS(ob) {
+ if (ob->clone == v) {
+ /* Get another item in the shared list. */
+ ob->clone = (v->FirstShared() == v) ? v->NextShared() : v->FirstShared();
+ /* But if that isn't there, remove it. */
+ if (ob->clone == NULL) delete ob;
+ }
+ }
+}
+
void InitializeOrderBackups()
{
_order_backup_pool.CleanPool();