OpenTTD Source 20241224-master-gf74b0cf984
signal_func.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
7
10#ifndef SIGNAL_FUNC_H
11#define SIGNAL_FUNC_H
12
13#include "track_type.h"
14#include "tile_type.h"
15#include "direction_type.h"
16#include "company_type.h"
17
22inline uint8_t SignalAlongTrackdir(Trackdir trackdir)
23{
24 extern const uint8_t _signal_along_trackdir[TRACKDIR_END];
25 return _signal_along_trackdir[trackdir];
26}
27
32inline uint8_t SignalAgainstTrackdir(Trackdir trackdir)
33{
34 extern const uint8_t _signal_against_trackdir[TRACKDIR_END];
35 return _signal_against_trackdir[trackdir];
36}
37
42inline uint8_t SignalOnTrack(Track track)
43{
44 extern const uint8_t _signal_on_track[TRACK_END];
45 return _signal_on_track[track];
46}
47
54
56void SetSignalsOnBothDir(TileIndex tile, Track track, Owner owner);
57void AddTrackToSignalBuffer(TileIndex tile, Track track, Owner owner);
60
61#endif /* SIGNAL_FUNC_H */
Types related to companies.
Owner
Enum for all companies/owners.
Different types to 'show' directions.
DiagDirection
Enumeration for diagonal directions.
uint8_t SignalAgainstTrackdir(Trackdir trackdir)
Maps a trackdir to the bit that stores its status in the map arrays, in the direction against the tra...
Definition signal_func.h:32
void AddTrackToSignalBuffer(TileIndex tile, Track track, Owner owner)
Add track to signal update buffer.
Definition signal.cpp:592
SigSegState UpdateSignalsOnSegment(TileIndex tile, DiagDirection side, Owner owner)
Update signals, starting at one side of a tile Will check tile next to this at opposite side too.
Definition signal.cpp:650
void UpdateSignalsInBuffer()
Update signals in buffer Called from 'outside'.
Definition signal.cpp:576
void AddSideToSignalBuffer(TileIndex tile, DiagDirection side, Owner owner)
Add side of tile to signal update buffer.
Definition signal.cpp:624
uint8_t SignalAlongTrackdir(Trackdir trackdir)
Maps a trackdir to the bit that stores its status in the map arrays, in the direction along with the ...
Definition signal_func.h:22
void SetSignalsOnBothDir(TileIndex tile, Track track, Owner owner)
Update signals at segments that are at both ends of given (existent or non-existent) track.
Definition signal.cpp:668
uint8_t SignalOnTrack(Track track)
Maps a Track to the bits that store the status of the two signals that can be present on the given tr...
Definition signal_func.h:42
SigSegState
State of the signal segment.
Definition signal_func.h:49
@ SIGSEG_PBS
Segment is a PBS segment.
Definition signal_func.h:52
@ SIGSEG_FREE
Free and has no pre-signal exits or at least one green exit.
Definition signal_func.h:50
@ SIGSEG_FULL
Occupied by a train.
Definition signal_func.h:51
Types related to tiles.
All types related to tracks.
Trackdir
Enumeration for tracks and directions.
Definition track_type.h:67
@ TRACKDIR_END
Used for iterations.
Definition track_type.h:85
Track
These are used to specify a single track.
Definition track_type.h:19
@ TRACK_END
Used for iterations.
Definition track_type.h:27