2006-03-13 12:55:20 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef BRIDGE_MAP_H
|
|
|
|
#define BRIDGE_MAP_H
|
|
|
|
|
2006-03-14 12:00:11 +00:00
|
|
|
#include "direction.h"
|
2006-03-13 12:55:20 +00:00
|
|
|
#include "macros.h"
|
|
|
|
#include "map.h"
|
|
|
|
#include "rail.h"
|
2006-03-16 15:16:27 +00:00
|
|
|
#include "road_map.h"
|
2006-03-13 12:55:20 +00:00
|
|
|
#include "tile.h"
|
|
|
|
|
|
|
|
|
2006-03-16 15:16:27 +00:00
|
|
|
static inline bool IsBridge(TileIndex t)
|
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_TUNNELBRIDGE));
|
2006-03-16 15:16:27 +00:00
|
|
|
return HASBIT(_m[t].m5, 7);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsBridgeTile(TileIndex t)
|
|
|
|
{
|
|
|
|
return IsTileType(t, MP_TUNNELBRIDGE) && IsBridge(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline bool IsBridgeRamp(TileIndex t)
|
2006-03-15 16:44:50 +00:00
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeTile(t));
|
|
|
|
return !HASBIT(_m[t].m5, 6);
|
2006-03-15 16:44:50 +00:00
|
|
|
}
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline bool IsBridgeMiddle(TileIndex t)
|
2006-03-16 05:28:15 +00:00
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeTile(t));
|
|
|
|
return HASBIT(_m[t].m5, 6);
|
2006-06-02 13:05:41 +00:00
|
|
|
}
|
|
|
|
|
2006-03-16 05:28:15 +00:00
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
/**
|
|
|
|
* Determines which piece of a bridge is contained in the current tile
|
|
|
|
* @param tile The tile to analyze
|
|
|
|
* @return the piece
|
|
|
|
*/
|
|
|
|
static inline uint GetBridgePiece(TileIndex t)
|
2006-03-16 10:00:50 +00:00
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
return GB(_m[t].m2, 0, 4);
|
2006-03-16 10:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines the type of bridge on a tile
|
|
|
|
* @param tile The tile to analyze
|
|
|
|
* @return The bridge type
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline uint GetBridgeType(TileIndex t)
|
2006-03-16 10:00:50 +00:00
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsBridgeTile(t));
|
|
|
|
return GB(_m[t].m2, 4, 4);
|
2006-03-16 10:00:50 +00:00
|
|
|
}
|
|
|
|
|
2006-03-15 16:44:50 +00:00
|
|
|
|
2006-03-14 12:00:11 +00:00
|
|
|
/**
|
|
|
|
* Get the direction pointing onto the bridge
|
|
|
|
*/
|
|
|
|
static inline DiagDirection GetBridgeRampDirection(TileIndex t)
|
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeRamp(t));
|
2006-06-04 16:04:15 +00:00
|
|
|
return ReverseDiagDir(XYNSToDiagDir((Axis)GB(_m[t].m5, 0, 1), GB(_m[t].m5, 5, 1)));
|
2006-03-14 12:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-16 05:28:15 +00:00
|
|
|
static inline Axis GetBridgeAxis(TileIndex t)
|
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
return (Axis)GB(_m[t].m5, 0, 1);
|
2006-03-16 05:28:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-16 15:16:27 +00:00
|
|
|
static inline TransportType GetBridgeTransportType(TileIndex t)
|
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsBridgeTile(t));
|
2006-03-16 15:16:27 +00:00
|
|
|
return (TransportType)GB(_m[t].m5, 1, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline bool IsClearUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
return GB(_m[t].m5, 3, 3) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsWaterUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
return GB(_m[t].m5, 3, 3) == 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline bool IsTransportUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
return HASBIT(_m[t].m5, 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline TransportType GetTransportTypeUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTransportUnderBridge(t));
|
|
|
|
return (TransportType)GB(_m[t].m5, 3, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline RoadBits GetRoadBitsUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(GetTransportTypeUnderBridge(t) == TRANSPORT_ROAD);
|
|
|
|
return GetBridgeAxis(t) == AXIS_X ? ROAD_Y : ROAD_X;
|
|
|
|
}
|
|
|
|
|
2006-07-22 08:59:52 +00:00
|
|
|
static inline Track GetRailUnderBridge(TileIndex t)
|
2006-06-07 19:35:21 +00:00
|
|
|
{
|
|
|
|
assert(GetTransportTypeUnderBridge(t) == TRANSPORT_RAIL);
|
2006-07-22 08:59:52 +00:00
|
|
|
return AxisToTrack(OtherAxis(GetBridgeAxis(t)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline TrackBits GetRailBitsUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
return TrackToTrackBits(GetRailUnderBridge(t));
|
2006-06-07 19:35:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-16 05:28:15 +00:00
|
|
|
/**
|
|
|
|
* Finds the end of a bridge in the specified direction starting at a middle tile
|
|
|
|
*/
|
|
|
|
TileIndex GetBridgeEnd(TileIndex, DiagDirection);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds the southern end of a bridge starting at a middle tile
|
|
|
|
*/
|
|
|
|
TileIndex GetSouthernBridgeEnd(TileIndex t);
|
|
|
|
|
|
|
|
|
2006-03-15 16:44:50 +00:00
|
|
|
/**
|
|
|
|
* Starting at one bridge end finds the other bridge end
|
|
|
|
*/
|
|
|
|
TileIndex GetOtherBridgeEnd(TileIndex);
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
uint GetBridgeHeight(TileIndex t);
|
2006-03-15 16:44:50 +00:00
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline void SetClearUnderBridge(TileIndex t)
|
2006-03-13 12:55:20 +00:00
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
SetTileOwner(t, OWNER_NONE);
|
|
|
|
SB(_m[t].m5, 3, 3, 0 << 2 | 0);
|
|
|
|
SB(_m[t].m3, 0, 4, 0);
|
2006-03-13 12:55:20 +00:00
|
|
|
}
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline void SetWaterUnderBridge(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
SetTileOwner(t, OWNER_WATER);
|
|
|
|
SB(_m[t].m5, 3, 3, 0 << 2 | 1);
|
|
|
|
SB(_m[t].m3, 0, 4, 0);
|
|
|
|
}
|
2006-03-13 12:55:20 +00:00
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline void SetCanalUnderBridge(TileIndex t, Owner o)
|
2006-03-13 12:55:20 +00:00
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
SB(_m[t].m5, 3, 3, 0 << 2 | 1);
|
|
|
|
SB(_m[t].m3, 0, 4, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void SetRailUnderBridge(TileIndex t, Owner o, RailType r)
|
|
|
|
{
|
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
SB(_m[t].m5, 3, 3, 1 << 2 | TRANSPORT_RAIL);
|
|
|
|
SB(_m[t].m3, 0, 4, r);
|
2006-03-13 12:55:20 +00:00
|
|
|
}
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline void SetRoadUnderBridge(TileIndex t, Owner o)
|
2006-03-13 12:55:20 +00:00
|
|
|
{
|
2006-06-07 19:35:21 +00:00
|
|
|
assert(IsBridgeMiddle(t));
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
SB(_m[t].m5, 3, 3, 1 << 2 | TRANSPORT_ROAD);
|
|
|
|
SB(_m[t].m3, 0, 4, 0);
|
2006-03-13 12:55:20 +00:00
|
|
|
}
|
|
|
|
|
2006-03-15 07:10:41 +00:00
|
|
|
|
|
|
|
static inline void MakeBridgeRamp(TileIndex t, Owner o, uint bridgetype, DiagDirection d, TransportType tt)
|
|
|
|
{
|
|
|
|
uint northsouth = (d == DIAGDIR_NE || d == DIAGDIR_NW);
|
|
|
|
|
|
|
|
SetTileType(t, MP_TUNNELBRIDGE);
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
_m[t].m2 = bridgetype << 4;
|
|
|
|
_m[t].m4 = 0;
|
|
|
|
_m[t].m5 = 1 << 7 | 0 << 6 | northsouth << 5 | tt << 1 | DiagDirToAxis(d);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeRoadBridgeRamp(TileIndex t, Owner o, uint bridgetype, DiagDirection d)
|
|
|
|
{
|
|
|
|
MakeBridgeRamp(t, o, bridgetype, d, TRANSPORT_ROAD);
|
|
|
|
_m[t].m3 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeRailBridgeRamp(TileIndex t, Owner o, uint bridgetype, DiagDirection d, RailType r)
|
|
|
|
{
|
|
|
|
MakeBridgeRamp(t, o, bridgetype, d, TRANSPORT_RAIL);
|
|
|
|
_m[t].m3 = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
static inline void MakeBridgeMiddle(TileIndex t, uint bridgetype, uint piece, Axis a, TransportType tt)
|
|
|
|
{
|
|
|
|
SetTileType(t, MP_TUNNELBRIDGE);
|
|
|
|
SetTileOwner(t, OWNER_NONE);
|
|
|
|
_m[t].m2 = bridgetype << 4 | piece;
|
|
|
|
_m[t].m3 = 0;
|
|
|
|
_m[t].m4 = 0;
|
|
|
|
_m[t].m5 = 1 << 7 | 1 << 6 | 0 << 5 | 0 << 3 | tt << 1 | a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeRoadBridgeMiddle(TileIndex t, uint bridgetype, uint piece, Axis a)
|
|
|
|
{
|
|
|
|
MakeBridgeMiddle(t, bridgetype, piece, a, TRANSPORT_ROAD);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void MakeRailBridgeMiddle(TileIndex t, uint bridgetype, uint piece, Axis a, RailType r)
|
|
|
|
{
|
|
|
|
MakeBridgeMiddle(t, bridgetype, piece, a, TRANSPORT_RAIL);
|
|
|
|
SB(_m[t].m3, 4, 4, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-28 18:42:35 +00:00
|
|
|
#endif /* BRIDGE_MAP_H */
|