summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-02-28 10:44:53 +0000
committeralberth <alberth@openttd.org>2010-02-28 10:44:53 +0000
commit8408b42dee5ced6d121e0676e5b27b8419ef6804 (patch)
treed28db2cf72a80c1f27d4a5b14ddbaa364baadaed /src/vehicle.cpp
parentf73898a4ef4deb9850c1700e9f5dec5a1beb2e07 (diff)
downloadopenttd-8408b42dee5ced6d121e0676e5b27b8419ef6804.tar.xz
(svn r19288) -Codechange: Move EnsureNoVehicleOnGround() and HasVehicleOnTunnelBridge() functions.
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp98
1 files changed, 49 insertions, 49 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 5a00eb1e8..e06137342 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -218,55 +218,6 @@ void ShowNewGrfVehicleError(EngineID engine, StringID part1, StringID part2, GRF
DEBUG(grf, 0, "%s", buffer + 3);
}
-/** Callback that returns 'real' vehicles lower or at height \c *(byte*)data .
- * @param v Vehicle to examine.
- * @param data Pointer to height data.
- * @return \a v if conditions are met, else \c NULL.
- */
-static Vehicle *EnsureNoVehicleProcZ(Vehicle *v, void *data)
-{
- byte z = *(byte*)data;
-
- if (v->type == VEH_DISASTER || (v->type == VEH_AIRCRAFT && v->subtype == AIR_SHADOW)) return NULL;
- if (v->z_pos > z) return NULL;
-
- _error_message = STR_ERROR_TRAIN_IN_THE_WAY + v->type;
- return v;
-}
-
-/* Ensure there is no vehicle at the ground at the given position.
- * @param tile Position to examine.
- * @return A vehicle has been found.
- */
-bool EnsureNoVehicleOnGround(TileIndex tile)
-{
- byte z = GetTileMaxZ(tile);
- return !HasVehicleOnPos(tile, &z, &EnsureNoVehicleProcZ);
-}
-
-/** Procedure called for every vehicle found in tunnel/bridge in the hash map */
-static Vehicle *GetVehicleTunnelBridgeProc(Vehicle *v, void *data)
-{
- if (v->type != VEH_TRAIN && v->type != VEH_ROAD && v->type != VEH_SHIP) return NULL;
- if (v == (const Vehicle *)data) return NULL;
-
- _error_message = STR_ERROR_TRAIN_IN_THE_WAY + v->type;
- return v;
-}
-
-/**
- * Finds vehicle in tunnel / bridge
- * @param tile first end
- * @param endtile second end
- * @param ignore Ignore this vehicle when searching
- * @return true if the bridge has a vehicle
- */
-bool HasVehicleOnTunnelBridge(TileIndex tile, TileIndex endtile, const Vehicle *ignore)
-{
- return HasVehicleOnPos(tile, (void *)ignore, &GetVehicleTunnelBridgeProc) ||
- HasVehicleOnPos(endtile, (void *)ignore, &GetVehicleTunnelBridgeProc);
-}
-
/**
* Vehicle constructor.
* @param type Type of the new vehicle.
@@ -440,6 +391,55 @@ bool HasVehicleOnPos(TileIndex tile, void *data, VehicleFromPosProc *proc)
return VehicleFromPos(tile, data, proc, true) != NULL;
}
+/** Callback that returns 'real' vehicles lower or at height \c *(byte*)data .
+ * @param v Vehicle to examine.
+ * @param data Pointer to height data.
+ * @return \a v if conditions are met, else \c NULL.
+ */
+static Vehicle *EnsureNoVehicleProcZ(Vehicle *v, void *data)
+{
+ byte z = *(byte*)data;
+
+ if (v->type == VEH_DISASTER || (v->type == VEH_AIRCRAFT && v->subtype == AIR_SHADOW)) return NULL;
+ if (v->z_pos > z) return NULL;
+
+ _error_message = STR_ERROR_TRAIN_IN_THE_WAY + v->type;
+ return v;
+}
+
+/* Ensure there is no vehicle at the ground at the given position.
+ * @param tile Position to examine.
+ * @return A vehicle has been found.
+ */
+bool EnsureNoVehicleOnGround(TileIndex tile)
+{
+ byte z = GetTileMaxZ(tile);
+ return !HasVehicleOnPos(tile, &z, &EnsureNoVehicleProcZ);
+}
+
+/** Procedure called for every vehicle found in tunnel/bridge in the hash map */
+static Vehicle *GetVehicleTunnelBridgeProc(Vehicle *v, void *data)
+{
+ if (v->type != VEH_TRAIN && v->type != VEH_ROAD && v->type != VEH_SHIP) return NULL;
+ if (v == (const Vehicle *)data) return NULL;
+
+ _error_message = STR_ERROR_TRAIN_IN_THE_WAY + v->type;
+ return v;
+}
+
+/**
+ * Finds vehicle in tunnel / bridge
+ * @param tile first end
+ * @param endtile second end
+ * @param ignore Ignore this vehicle when searching
+ * @return true if the bridge has a vehicle
+ */
+bool HasVehicleOnTunnelBridge(TileIndex tile, TileIndex endtile, const Vehicle *ignore)
+{
+ return HasVehicleOnPos(tile, (void *)ignore, &GetVehicleTunnelBridgeProc) ||
+ HasVehicleOnPos(endtile, (void *)ignore, &GetVehicleTunnelBridgeProc);
+}
+
static void UpdateNewVehiclePosHash(Vehicle *v, bool remove)
{