summaryrefslogtreecommitdiff
path: root/depot.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-26 14:44:55 +0000
committertruelight <truelight@openttd.org>2006-08-26 14:44:55 +0000
commitf73a2829f364b07d6f944b8b49e156b9774db39b (patch)
tree8b932464c532068bc8cf1bd6798a38de736ed602 /depot.h
parent7a58659fefe7e007b4cd3d13bed21831e6c27171 (diff)
downloadopenttd-f73a2829f364b07d6f944b8b49e156b9774db39b.tar.xz
(svn r6141) -Codechange: introduced DepotID and used it as much as possible
-Codechange: DeleteDepot removes a depot from the pool -Codechange: DestroyDepot is called by DeleteDepot to remove all things where a depot depends on. Last 2 changes to prepare for new pool system. Not pretty now, will be soon. -Codechange: Removed DoDeleteDepot as it was stupid
Diffstat (limited to 'depot.h')
-rw-r--r--depot.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/depot.h b/depot.h
index 864237cf0..45b97f503 100644
--- a/depot.h
+++ b/depot.h
@@ -14,7 +14,7 @@
struct Depot {
TileIndex xy;
TownID town_index;
- StationID index;
+ DepotID index;
};
extern MemoryPool _depot_pool;
@@ -22,7 +22,7 @@ extern MemoryPool _depot_pool;
/**
* Get the pointer to the depot with index 'index'
*/
-static inline Depot *GetDepot(uint index)
+static inline Depot *GetDepot(DepotID index)
{
return (Depot*)GetItemFromPool(&_depot_pool, index);
}
@@ -38,9 +38,9 @@ static inline uint16 GetDepotPoolSize(void)
/**
* Check if a depot really exists.
*/
-static inline bool IsValidDepot(const Depot* depot)
+static inline bool IsValidDepot(const Depot *depot)
{
- return depot->xy != 0;
+ return depot != NULL && depot->xy != 0;
}
static inline bool IsValidDepotID(uint index)
@@ -48,6 +48,14 @@ static inline bool IsValidDepotID(uint index)
return index < GetDepotPoolSize() && IsValidDepot(GetDepot(index));
}
+void DestroyDepot(Depot *depot);
+
+static inline void DeleteDepot(Depot *depot)
+{
+ DestroyDepot(depot);
+ depot->xy = 0;
+}
+
#define FOR_ALL_DEPOTS_FROM(d, start) for (d = GetDepot(start); d != NULL; d = (d->index + 1 < GetDepotPoolSize()) ? GetDepot(d->index + 1) : NULL) if (IsValidDepot(d))
#define FOR_ALL_DEPOTS(d) FOR_ALL_DEPOTS_FROM(d, 0)
@@ -56,7 +64,8 @@ static inline bool IsValidDepotID(uint index)
#define MIN_SERVINT_DAYS 30
#define MAX_SERVINT_DAYS 800
-/** Get the service interval domain.
+/**
+ * Get the service interval domain.
* Get the new proposed service interval for the vehicle is indeed, clamped
* within the given bounds. @see MIN_SERVINT_PERCENT ,etc.
* @param index proposed service interval
@@ -108,10 +117,8 @@ static inline bool CanBuildDepotByTileh(uint32 direction, Slope tileh)
return ((0x4C >> direction) & tileh) != 0;
}
-
Depot *GetDepotByTile(TileIndex tile);
void InitializeDepots(void);
Depot *AllocateDepot(void);
-void DoDeleteDepot(TileIndex tile);
#endif /* DEPOT_H */