(svn r9581) -Revert (r9562): This broke as much as it fixed, so revert until a proper way of paying for refits when cloning can be found.
authormaedhros
Tue, 10 Apr 2007 09:01:56 +0000
changeset 6940 4b98537a4c58
parent 6939 50b3cf596ce2
child 6941 abe90de6f781
(svn r9581) -Revert (r9562): This broke as much as it fixed, so revert until a proper way of paying for refits when cloning can be found.
src/command.cpp
src/vehicle.cpp
--- a/src/command.cpp	Mon Apr 09 15:06:24 2007 +0000
+++ b/src/command.cpp	Tue Apr 10 09:01:56 2007 +0000
@@ -455,17 +455,13 @@
 	 * 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
-	 * CMD_CLONE_VEHICLE: You can only refit vehicles once they have been
-	 * bought, so you can't estimate the cost of cloning if the vehicle to be
-	 * cloned has been refitted. */
+	 * fact will trigger an assertion failure. --pasky */
 	notest =
 		(cmd & 0xFF) == CMD_CLEAR_AREA ||
 		(cmd & 0xFF) == CMD_CONVERT_RAIL ||
 		(cmd & 0xFF) == CMD_LEVEL_LAND ||
 		(cmd & 0xFF) == CMD_REMOVE_ROAD ||
-		(cmd & 0xFF) == CMD_REMOVE_LONG_ROAD ||
-		(cmd & 0xFF) == CMD_CLONE_VEHICLE;
+		(cmd & 0xFF) == CMD_REMOVE_LONG_ROAD;
 
 	_docommand_recursive = 1;
 
--- a/src/vehicle.cpp	Mon Apr 09 15:06:24 2007 +0000
+++ b/src/vehicle.cpp	Tue Apr 10 09:01:56 2007 +0000
@@ -1807,9 +1807,10 @@
 	w_front = NULL;
 	w_rear = NULL;
 
+
 	/*
 	 * v_front is the front engine in the original vehicle
-	 * v is the car/vehicle of the original vehicle that is currently being copied
+	 * v is the car/vehicle of the original vehicle, that is currently being copied
 	 * w_front is the front engine of the cloned vehicle
 	 * w is the car/vehicle currently being cloned
 	 * w_rear is the rear end of the cloned train. It's used to add more cars and is only used by trains
@@ -1854,18 +1855,11 @@
 			Vehicle *v2 = v;
 			do {
 				if (v2->cargo_type != w2->cargo_type || v2->cargo_subtype != w2->cargo_subtype) {
-					/* We need to check the whole chain if it is a train
-					 * because some newgrf articulated engines can refit some
-					 * units only (and not the front). */
-					cost = DoCommand(0, w->index, v2->cargo_type | (v2->cargo_subtype << 8), flags, GetCmdRefitVeh(v));
-					if (CmdFailed(cost)) return cost;
-
-					total_cost += cost;
-
-					/* The refit command will refit all the remaining
-					 * articulated parts if possible, so we don't need to
-					 * carry on checking. */
-					break;
+					/* We can't pay for refitting because we can't estimate refitting costs for a vehicle before it's build.
+					 * If we pay for it anyway, the cost and the estimated cost will not be the same and we will have an assert.
+					 * We need to check the whole chain if it is a train because some newgrf articulated engines can refit some units only (and not the front) */
+					DoCommand(0, w->index, v2->cargo_type | (v2->cargo_subtype << 8), flags, GetCmdRefitVeh(v));
+					break; // We learned that the engine in question needed a refit. No need to check anymore
 				}
 			} while (v->type == VEH_TRAIN && (w2 = w2->next) != NULL && (v2 = v2->next) != NULL);