summaryrefslogtreecommitdiff
path: root/depot.c
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2005-02-06 22:36:08 +0000
committermatthijs <matthijs@openttd.org>2005-02-06 22:36:08 +0000
commitc5c5c9b17c1c4fd543873f866534d3fa06f9f1cb (patch)
treeb4e6f6fce72b1b3fcb2b25b635ad70c6bd5b6741 /depot.c
parenteed181245dffbc04a2e527e8e7cccf44ce4fda86 (diff)
downloadopenttd-c5c5c9b17c1c4fd543873f866534d3fa06f9f1cb.tar.xz
(svn r1834) - Fix: NPF does not check the owner of its target, busses try to enter other players' depots. TODO
- Add: asserts to find the v->u.rail.track == 0 problem. - Add: IsValidDepot(), IsValidTown(), IsValidSign(), IsValidVehicle(), IsValidStation() - Add: GetTileOwner(), IsTileOwner() - Codechange: Replaced IsShipDepotTile(), IsTrainDepotTile(), IsRoadDepotTile() by IsTileDepotType(). - Codechange: typedeffed the MAP_OWNERS as Owner. Should be used as variable type. - Codechange: Replaced a few uint by TileIndex.
Diffstat (limited to 'depot.c')
-rw-r--r--depot.c31
1 files changed, 2 insertions, 29 deletions
diff --git a/depot.c b/depot.c
index 0430162d2..f52bd2573 100644
--- a/depot.c
+++ b/depot.c
@@ -46,33 +46,6 @@ Depot *GetDepotByTile(uint tile)
}
/**
- * Check if a tile is a road-depot
- */
-bool IsRoadDepotTile(TileIndex tile)
-{
- return IsTileType(tile, MP_STREET) &&
- (_map5[tile] & 0xF0) == 0x20;
-}
-
-/**
- * Check if a tile is a train-depot
- */
-bool IsTrainDepotTile(TileIndex tile)
-{
- return IsTileType(tile, MP_RAILWAY) &&
- (_map5[tile] & 0xFC) == 0xC0;
-}
-
-/**
- * Check if a tile is a ship-depot
- */
-bool IsShipDepotTile(TileIndex tile)
-{
- return IsTileType(tile, MP_WATER) &&
- (_map5[tile] & ~3) == 0x80;
-}
-
-/**
* Allocate a new depot
*/
Depot *AllocateDepot(void)
@@ -80,7 +53,7 @@ Depot *AllocateDepot(void)
Depot *depot;
FOR_ALL_DEPOTS(depot) {
- if (depot->xy == 0) {
+ if (!IsValidDepot(depot)) {
uint index = depot->index;
memset(depot, 0, sizeof(Depot));
@@ -142,7 +115,7 @@ static void Save_DEPT(void)
Depot *depot;
FOR_ALL_DEPOTS(depot) {
- if (depot->xy != 0) {
+ if (IsValidDepot(depot)) {
SlSetArrayIndex(depot->index);
SlObject(depot, _depot_desc);
}