summaryrefslogtreecommitdiff
path: root/src/roadveh.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-04-29 21:24:08 +0000
committerrubidium <rubidium@openttd.org>2007-04-29 21:24:08 +0000
commit202009522c3075e26b675ed0408075b8663b0859 (patch)
tree776fa0d9e85c7423a43aaea0f6277b62b8acecf9 /src/roadveh.h
parent95e48eacaca785dacdda7d601ae7060b00b1f719 (diff)
downloadopenttd-202009522c3075e26b675ed0408075b8663b0859.tar.xz
(svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
Diffstat (limited to 'src/roadveh.h')
-rw-r--r--src/roadveh.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/roadveh.h b/src/roadveh.h
index 410dab64e..1e9ec8180 100644
--- a/src/roadveh.h
+++ b/src/roadveh.h
@@ -22,4 +22,23 @@ static inline bool IsRoadVehInDepotStopped(const Vehicle* v)
void CcBuildRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2);
void CcCloneRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2);
+
+/**
+ * This class 'wraps' Vehicle; you do not actually instantiate this class.
+ * You create a Vehicle using AllocateVehicle, so it is added to the pool
+ * and you reinitialize that to a Train using:
+ * v = new (v) RoadVehicle();
+ *
+ * As side-effect the vehicle type is set correctly.
+ */
+struct RoadVehicle : public Vehicle {
+ /** Initializes the Vehicle to a road vehicle */
+ RoadVehicle() { this->type = VEH_ROAD; }
+
+ /** We want to 'destruct' the right class. */
+ virtual ~RoadVehicle() {}
+
+ const char *GetTypeString() { return "road vehicle"; }
+};
+
#endif /* ROADVEH_H */