2016-09-18 18:48:52 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file bridge_signal_map.h Map accessor functions for bridge signal simulation. */
|
|
|
|
|
|
|
|
#ifndef BRIDGE_SIGNAL_MAP_H
|
|
|
|
#define BRIDGE_SIGNAL_MAP_H
|
|
|
|
|
|
|
|
#include "tile_type.h"
|
|
|
|
#include "map_func.h"
|
|
|
|
#include "signal_type.h"
|
|
|
|
#include "core/bitmath_func.hpp"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
struct LongBridgeSignalStorage {
|
|
|
|
std::vector<uint64> signal_red_bits;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern std::unordered_map<TileIndex, LongBridgeSignalStorage> _long_bridge_signal_sim_map;
|
|
|
|
|
|
|
|
SignalState GetBridgeEntranceSimulatedSignalStateExtended(TileIndex t, uint16 signal);
|
|
|
|
|
2018-07-02 17:29:10 +00:00
|
|
|
enum {
|
|
|
|
BRIDGE_M2_SIGNAL_STATE_COUNT = 11,
|
|
|
|
BRIDGE_M2_SIGNAL_STATE_FIELD_SIZE = 12,
|
|
|
|
BRIDGE_M2_SIGNAL_STATE_OFFSET = 4,
|
|
|
|
BRIDGE_M2_SIGNAL_STATE_EXT_FLAG = 0x8000,
|
|
|
|
};
|
|
|
|
|
2016-09-18 18:48:52 +00:00
|
|
|
static inline SignalState GetBridgeEntranceSimulatedSignalState(TileIndex t, uint16 signal)
|
|
|
|
{
|
2018-07-02 17:29:10 +00:00
|
|
|
if (signal < BRIDGE_M2_SIGNAL_STATE_COUNT) {
|
|
|
|
return GB(_m[t].m2, signal + BRIDGE_M2_SIGNAL_STATE_OFFSET, 1) ? SIGNAL_STATE_RED : SIGNAL_STATE_GREEN;
|
2016-09-18 18:48:52 +00:00
|
|
|
} else {
|
|
|
|
return GetBridgeEntranceSimulatedSignalStateExtended(t, signal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetBridgeEntranceSimulatedSignalStateExtended(TileIndex t, uint16 signal, SignalState state);
|
|
|
|
|
|
|
|
static inline void SetBridgeEntranceSimulatedSignalState(TileIndex t, uint16 signal, SignalState state)
|
|
|
|
{
|
2018-07-02 17:29:10 +00:00
|
|
|
if (signal < BRIDGE_M2_SIGNAL_STATE_COUNT) {
|
|
|
|
SB(_m[t].m2, signal + BRIDGE_M2_SIGNAL_STATE_OFFSET, 1, (state == SIGNAL_STATE_RED) ? 1 : 0);
|
2016-09-18 18:48:52 +00:00
|
|
|
} else {
|
|
|
|
SetBridgeEntranceSimulatedSignalStateExtended(t, signal, state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-05 01:04:52 +00:00
|
|
|
bool SetAllBridgeEntranceSimulatedSignalsGreenExtended(TileIndex t);
|
2016-09-18 18:48:52 +00:00
|
|
|
|
2021-01-05 01:04:52 +00:00
|
|
|
static inline bool SetAllBridgeEntranceSimulatedSignalsGreen(TileIndex t)
|
2016-09-18 18:48:52 +00:00
|
|
|
{
|
2018-07-02 17:29:10 +00:00
|
|
|
if (_m[t].m2 & BRIDGE_M2_SIGNAL_STATE_EXT_FLAG) {
|
2021-01-05 01:04:52 +00:00
|
|
|
return SetAllBridgeEntranceSimulatedSignalsGreenExtended(t);
|
2016-09-18 18:48:52 +00:00
|
|
|
} else {
|
2021-01-05 01:04:52 +00:00
|
|
|
bool changed = GB(_m[t].m2, BRIDGE_M2_SIGNAL_STATE_OFFSET, BRIDGE_M2_SIGNAL_STATE_FIELD_SIZE) != 0;
|
2018-07-02 17:29:10 +00:00
|
|
|
SB(_m[t].m2, BRIDGE_M2_SIGNAL_STATE_OFFSET, BRIDGE_M2_SIGNAL_STATE_FIELD_SIZE, 0);
|
2021-01-05 01:04:52 +00:00
|
|
|
return changed;
|
2016-09-18 18:48:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearBridgeEntranceSimulatedSignalsExtended(TileIndex t);
|
|
|
|
|
|
|
|
static inline void ClearBridgeEntranceSimulatedSignals(TileIndex t)
|
|
|
|
{
|
2018-07-02 17:29:10 +00:00
|
|
|
if (_m[t].m2 & BRIDGE_M2_SIGNAL_STATE_EXT_FLAG) {
|
2016-09-18 18:48:52 +00:00
|
|
|
ClearBridgeEntranceSimulatedSignalsExtended(t);
|
|
|
|
} else {
|
2018-07-02 17:29:10 +00:00
|
|
|
SB(_m[t].m2, BRIDGE_M2_SIGNAL_STATE_OFFSET, BRIDGE_M2_SIGNAL_STATE_FIELD_SIZE, 0);
|
2016-09-18 18:48:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearBridgeSimulatedSignalMapping();
|
|
|
|
|
2021-08-30 00:46:40 +00:00
|
|
|
void MarkSingleBridgeSignalDirty(TileIndex tile, TileIndex bridge_start_tile);
|
|
|
|
|
2016-09-18 18:48:52 +00:00
|
|
|
#endif /* BRIDGE_SIGNAL_MAP_H */
|