2006-03-24 08:55:08 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-04-04 01:35:16 +00:00
|
|
|
/** @file station_map.h */
|
|
|
|
|
2006-03-26 14:41:39 +00:00
|
|
|
#ifndef STATION_MAP_H
|
|
|
|
#define STATION_MAP_H
|
|
|
|
|
2006-06-18 15:28:29 +00:00
|
|
|
#include "rail_map.h"
|
2007-05-20 19:14:08 +00:00
|
|
|
#include "road_map.h"
|
2006-03-24 08:55:08 +00:00
|
|
|
#include "station.h"
|
2007-12-25 23:42:52 +00:00
|
|
|
#include "rail.h"
|
2006-03-24 08:55:08 +00:00
|
|
|
|
2006-04-14 01:54:07 +00:00
|
|
|
typedef byte StationGfx;
|
|
|
|
|
2006-03-24 08:55:08 +00:00
|
|
|
static inline StationID GetStationIndex(TileIndex t)
|
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_STATION));
|
2006-03-24 08:55:08 +00:00
|
|
|
return (StationID)_m[t].m2;
|
|
|
|
}
|
|
|
|
|
2007-07-24 17:01:23 +00:00
|
|
|
static inline Station *GetStationByTile(TileIndex t)
|
2006-03-24 08:55:08 +00:00
|
|
|
{
|
|
|
|
return GetStation(GetStationIndex(t));
|
|
|
|
}
|
2006-03-26 14:41:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
enum {
|
2007-07-16 23:55:22 +00:00
|
|
|
GFX_RADAR_LARGE_FIRST = 31,
|
|
|
|
GFX_RADAR_LARGE_LAST = 42,
|
|
|
|
GFX_WINDSACK_FIRST = 50,
|
|
|
|
GFX_WINDSACK_LAST = 53,
|
|
|
|
|
|
|
|
GFX_DOCK_BASE_WATER_PART = 4,
|
|
|
|
GFX_TRUCK_BUS_DRIVETHROUGH_OFFSET = 4,
|
|
|
|
|
|
|
|
GFX_RADAR_INTERNATIONAL_FIRST = 66,
|
|
|
|
GFX_RADAR_INTERNATIONAL_LAST = 77,
|
|
|
|
GFX_RADAR_METROPOLITAN_FIRST = 78,
|
|
|
|
GFX_RADAR_METROPOLITAN_LAST = 89,
|
|
|
|
GFX_RADAR_DISTRICTWE_FIRST = 121,
|
|
|
|
GFX_RADAR_DISTRICTWE_LAST = 132,
|
|
|
|
GFX_WINDSACK_INTERCON_FIRST = 140,
|
|
|
|
GFX_WINDSACK_INTERCON_LAST = 143,
|
2006-03-26 14:41:39 +00:00
|
|
|
};
|
|
|
|
|
2007-07-16 23:55:22 +00:00
|
|
|
static inline StationType GetStationType(TileIndex t)
|
|
|
|
{
|
|
|
|
return (StationType)GB(_m[t].m6, 3, 3);
|
|
|
|
}
|
2006-03-26 14:41:39 +00:00
|
|
|
|
2007-01-25 10:06:58 +00:00
|
|
|
static inline RoadStop::Type GetRoadStopType(TileIndex t)
|
2006-03-29 19:37:18 +00:00
|
|
|
{
|
|
|
|
assert(GetStationType(t) == STATION_TRUCK || GetStationType(t) == STATION_BUS);
|
2007-01-25 10:06:58 +00:00
|
|
|
return GetStationType(t) == STATION_TRUCK ? RoadStop::TRUCK : RoadStop::BUS;
|
2006-03-29 19:37:18 +00:00
|
|
|
}
|
|
|
|
|
2006-04-14 01:54:07 +00:00
|
|
|
static inline StationGfx GetStationGfx(TileIndex t)
|
2006-04-12 20:01:52 +00:00
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_STATION));
|
|
|
|
return _m[t].m5;
|
|
|
|
}
|
|
|
|
|
2006-04-14 01:54:07 +00:00
|
|
|
static inline void SetStationGfx(TileIndex t, StationGfx gfx)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_STATION));
|
2006-04-12 20:01:52 +00:00
|
|
|
_m[t].m5 = gfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsRailwayStation(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return GetStationType(t) == STATION_RAIL;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-04 11:35:52 +00:00
|
|
|
static inline bool IsRailwayStationTile(TileIndex t)
|
|
|
|
{
|
|
|
|
return IsTileType(t, MP_STATION) && IsRailwayStation(t);
|
|
|
|
}
|
|
|
|
|
2007-07-16 23:55:22 +00:00
|
|
|
static inline bool IsAirport(TileIndex t)
|
|
|
|
{
|
|
|
|
return GetStationType(t) == STATION_AIRPORT;
|
|
|
|
}
|
|
|
|
|
2007-07-24 21:48:50 +00:00
|
|
|
bool IsHangar(TileIndex t);
|
2006-03-26 14:41:39 +00:00
|
|
|
|
|
|
|
static inline bool IsTruckStop(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return GetStationType(t) == STATION_TRUCK;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsBusStop(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return GetStationType(t) == STATION_BUS;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsRoadStop(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
assert(IsTileType(t, MP_STATION));
|
2006-03-26 14:41:39 +00:00
|
|
|
return IsTruckStop(t) || IsBusStop(t);
|
|
|
|
}
|
|
|
|
|
2006-03-31 19:10:54 +00:00
|
|
|
static inline bool IsRoadStopTile(TileIndex t)
|
|
|
|
{
|
|
|
|
return IsTileType(t, MP_STATION) && IsRoadStop(t);
|
|
|
|
}
|
|
|
|
|
2007-02-14 16:37:16 +00:00
|
|
|
static inline bool IsStandardRoadStopTile(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return IsRoadStopTile(t) && GetStationGfx(t) < GFX_TRUCK_BUS_DRIVETHROUGH_OFFSET;
|
2007-02-14 16:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsDriveThroughStopTile(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return IsRoadStopTile(t) && GetStationGfx(t) >= GFX_TRUCK_BUS_DRIVETHROUGH_OFFSET;
|
2007-02-14 16:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool GetStopBuiltOnTownRoad(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsDriveThroughStopTile(t));
|
2007-11-19 21:02:30 +00:00
|
|
|
return HasBit(_m[t].m6, 2);
|
2007-02-14 16:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-31 19:10:54 +00:00
|
|
|
/**
|
|
|
|
* Gets the direction the road stop entrance points towards.
|
|
|
|
*/
|
2006-04-12 20:01:52 +00:00
|
|
|
static inline DiagDirection GetRoadStopDir(TileIndex t)
|
2006-03-31 19:10:54 +00:00
|
|
|
{
|
2007-02-14 16:37:16 +00:00
|
|
|
StationGfx gfx = GetStationGfx(t);
|
2006-04-12 20:01:52 +00:00
|
|
|
assert(IsRoadStopTile(t));
|
2007-07-16 23:55:22 +00:00
|
|
|
if (gfx < GFX_TRUCK_BUS_DRIVETHROUGH_OFFSET) {
|
|
|
|
return (DiagDirection)(gfx);
|
2007-02-14 16:37:16 +00:00
|
|
|
} else {
|
2007-07-16 23:55:22 +00:00
|
|
|
return (DiagDirection)(gfx - GFX_TRUCK_BUS_DRIVETHROUGH_OFFSET);
|
2007-02-14 16:37:16 +00:00
|
|
|
}
|
2006-03-31 19:10:54 +00:00
|
|
|
}
|
|
|
|
|
2006-03-26 14:41:39 +00:00
|
|
|
static inline bool IsOilRig(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return GetStationType(t) == STATION_OILRIG;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsDock(TileIndex t)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return GetStationType(t) == STATION_DOCK;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 07:48:06 +00:00
|
|
|
static inline bool IsBuoy(TileIndex t)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return GetStationType(t) == STATION_BUOY;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-04 11:35:52 +00:00
|
|
|
static inline bool IsBuoyTile(TileIndex t)
|
|
|
|
{
|
2007-02-02 07:48:06 +00:00
|
|
|
return IsTileType(t, MP_STATION) && IsBuoy(t);
|
2006-04-04 11:35:52 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 19:48:58 +00:00
|
|
|
static inline bool IsCanalBuoyTile(TileIndex t)
|
|
|
|
{
|
|
|
|
return IsBuoyTile(t) && !IsTileOwner(t, OWNER_WATER);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsSeaBuoyTile(TileIndex t)
|
|
|
|
{
|
|
|
|
return IsBuoyTile(t) && IsTileOwner(t, OWNER_WATER);
|
|
|
|
}
|
2006-03-26 14:41:39 +00:00
|
|
|
|
2006-03-26 19:20:15 +00:00
|
|
|
static inline bool IsHangarTile(TileIndex t)
|
|
|
|
{
|
|
|
|
return IsTileType(t, MP_STATION) && IsHangar(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-26 14:41:39 +00:00
|
|
|
static inline Axis GetRailStationAxis(TileIndex t)
|
|
|
|
{
|
2006-04-12 20:33:01 +00:00
|
|
|
assert(IsRailwayStation(t));
|
2007-11-19 21:02:30 +00:00
|
|
|
return HasBit(GetStationGfx(t), 0) ? AXIS_Y : AXIS_X;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline Track GetRailStationTrack(TileIndex t)
|
|
|
|
{
|
2006-07-22 08:59:52 +00:00
|
|
|
return AxisToTrack(GetRailStationAxis(t));
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-04 11:51:16 +00:00
|
|
|
static inline bool IsCompatibleTrainStationTile(TileIndex t1, TileIndex t2)
|
|
|
|
{
|
|
|
|
assert(IsRailwayStationTile(t2));
|
|
|
|
return
|
|
|
|
IsRailwayStationTile(t1) &&
|
|
|
|
IsCompatibleRail(GetRailType(t1), GetRailType(t2)) &&
|
2006-05-06 22:08:14 +00:00
|
|
|
GetRailStationAxis(t1) == GetRailStationAxis(t2) &&
|
|
|
|
!IsStationTileBlocked(t1);
|
2006-04-04 11:51:16 +00:00
|
|
|
}
|
|
|
|
|
2006-03-26 14:41:39 +00:00
|
|
|
|
|
|
|
static inline DiagDirection GetDockDirection(TileIndex t)
|
|
|
|
{
|
2006-04-14 01:54:07 +00:00
|
|
|
StationGfx gfx = GetStationGfx(t);
|
2007-07-16 23:55:22 +00:00
|
|
|
assert(IsDock(t) && gfx < GFX_DOCK_BASE_WATER_PART);
|
|
|
|
return (DiagDirection)(gfx);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-07 15:57:03 +00:00
|
|
|
static inline TileIndexDiffC GetDockOffset(TileIndex t)
|
|
|
|
{
|
|
|
|
static const TileIndexDiffC buoy_offset = {0, 0};
|
|
|
|
static const TileIndexDiffC oilrig_offset = {2, 0};
|
|
|
|
static const TileIndexDiffC dock_offset[DIAGDIR_END] = {
|
|
|
|
{-2, 0},
|
|
|
|
{ 0, 2},
|
|
|
|
{ 2, 0},
|
|
|
|
{ 0, -2},
|
|
|
|
};
|
|
|
|
assert(IsTileType(t, MP_STATION));
|
|
|
|
|
2007-02-02 07:48:06 +00:00
|
|
|
if (IsBuoy(t)) return buoy_offset;
|
2006-04-07 15:57:03 +00:00
|
|
|
if (IsOilRig(t)) return oilrig_offset;
|
|
|
|
|
|
|
|
assert(IsDock(t));
|
|
|
|
|
|
|
|
return dock_offset[GetDockDirection(t)];
|
|
|
|
}
|
2006-03-26 14:41:39 +00:00
|
|
|
|
2006-04-16 17:29:37 +00:00
|
|
|
static inline bool IsCustomStationSpecIndex(TileIndex t)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_STATION));
|
2006-04-16 17:29:37 +00:00
|
|
|
return _m[t].m4 != 0;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-16 17:29:37 +00:00
|
|
|
static inline void SetCustomStationSpecIndex(TileIndex t, byte specindex)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_STATION));
|
2006-04-16 17:29:37 +00:00
|
|
|
_m[t].m4 = specindex;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-16 17:29:37 +00:00
|
|
|
static inline uint GetCustomStationSpecIndex(TileIndex t)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_STATION));
|
2006-03-26 14:41:39 +00:00
|
|
|
return _m[t].m4;
|
|
|
|
}
|
|
|
|
|
2006-05-03 21:25:49 +00:00
|
|
|
static inline void SetStationTileRandomBits(TileIndex t, byte random_bits)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_STATION));
|
|
|
|
SB(_m[t].m3, 4, 4, random_bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline byte GetStationTileRandomBits(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_STATION));
|
|
|
|
return GB(_m[t].m3, 4, 4);
|
|
|
|
}
|
|
|
|
|
2007-07-16 23:55:22 +00:00
|
|
|
static inline void MakeStation(TileIndex t, Owner o, StationID sid, StationType st, byte section)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
|
|
|
SetTileType(t, MP_STATION);
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
_m[t].m2 = sid;
|
|
|
|
_m[t].m3 = 0;
|
|
|
|
_m[t].m4 = 0;
|
2007-07-16 23:55:22 +00:00
|
|
|
_m[t].m5 = section;
|
|
|
|
SB(_m[t].m6, 3, 3, st);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeRailStation(TileIndex t, Owner o, StationID sid, Axis a, byte section, RailType rt)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, o, sid, STATION_RAIL, section + a);
|
2006-03-26 14:41:39 +00:00
|
|
|
SetRailType(t, rt);
|
|
|
|
}
|
|
|
|
|
2007-05-20 19:14:08 +00:00
|
|
|
static inline void MakeRoadStop(TileIndex t, Owner o, StationID sid, RoadStop::Type rst, RoadTypes rt, DiagDirection d)
|
2006-03-26 14:41:39 +00:00
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, o, sid, (rst == RoadStop::BUS ? STATION_BUS : STATION_TRUCK), d);
|
2007-05-20 19:14:08 +00:00
|
|
|
SetRoadTypes(t, rt);
|
2007-02-21 19:46:37 +00:00
|
|
|
}
|
|
|
|
|
2007-05-20 19:14:08 +00:00
|
|
|
static inline void MakeDriveThroughRoadStop(TileIndex t, Owner o, StationID sid, RoadStop::Type rst, RoadTypes rt, Axis a, bool on_town_road)
|
2007-02-21 19:46:37 +00:00
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, o, sid, (rst == RoadStop::BUS ? STATION_BUS : STATION_TRUCK), GFX_TRUCK_BUS_DRIVETHROUGH_OFFSET + a);
|
|
|
|
SB(_m[t].m6, 2, 1, on_town_road);
|
2007-05-20 19:14:08 +00:00
|
|
|
SetRoadTypes(t, rt);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeAirport(TileIndex t, Owner o, StationID sid, byte section)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, o, sid, STATION_AIRPORT, section);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeBuoy(TileIndex t, StationID sid)
|
|
|
|
{
|
2007-02-07 17:52:21 +00:00
|
|
|
/* Make the owner of the buoy tile the same as the current owner of the
|
|
|
|
* water tile. In this way, we can reset the owner of the water to its
|
|
|
|
* original state when the buoy gets removed. */
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, GetTileOwner(t), sid, STATION_BUOY, 0);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeDock(TileIndex t, Owner o, StationID sid, DiagDirection d)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, o, sid, STATION_DOCK, d);
|
|
|
|
MakeStation(t + TileOffsByDiagDir(d), o, sid, STATION_DOCK, GFX_DOCK_BASE_WATER_PART + DiagDirToAxis(d));
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeOilrig(TileIndex t, StationID sid)
|
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeStation(t, OWNER_NONE, sid, STATION_OILRIG, 0);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
|
|
|
|
2006-09-28 18:42:35 +00:00
|
|
|
#endif /* STATION_MAP_H */
|