2008-03-28 03:23:49 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +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/>.
|
|
|
|
*/
|
|
|
|
|
2008-03-28 03:23:49 +00:00
|
|
|
/** @file signal_type.h Types and classes related to signals. */
|
|
|
|
|
|
|
|
#ifndef SIGNAL_TYPE_H
|
|
|
|
#define SIGNAL_TYPE_H
|
|
|
|
|
2010-08-26 22:01:16 +00:00
|
|
|
#include "core/enum_type.hpp"
|
2014-01-14 20:32:07 +00:00
|
|
|
#include "track_type.h"
|
|
|
|
#include "tile_type.h"
|
2010-08-26 22:01:16 +00:00
|
|
|
|
2008-03-28 03:23:49 +00:00
|
|
|
/** Variant of the signal, i.e. how does the signal look? */
|
|
|
|
enum SignalVariant {
|
|
|
|
SIG_ELECTRIC = 0, ///< Light signal
|
2011-12-19 17:48:04 +00:00
|
|
|
SIG_SEMAPHORE = 1, ///< Old-fashioned semaphore signal
|
2008-03-28 03:23:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Type of signal, i.e. how does the signal behave? */
|
|
|
|
enum SignalType {
|
2008-08-02 22:48:43 +00:00
|
|
|
SIGTYPE_NORMAL = 0, ///< normal signal
|
|
|
|
SIGTYPE_ENTRY = 1, ///< presignal block entry
|
|
|
|
SIGTYPE_EXIT = 2, ///< presignal block exit
|
|
|
|
SIGTYPE_COMBO = 3, ///< presignal inter-block
|
|
|
|
SIGTYPE_PBS = 4, ///< normal pbs signal
|
|
|
|
SIGTYPE_PBS_ONEWAY = 5, ///< no-entry signal
|
2014-01-14 20:32:07 +00:00
|
|
|
SIGTYPE_PROG = 6, ///< programmable presignal
|
2010-04-17 13:31:41 +00:00
|
|
|
|
|
|
|
SIGTYPE_END,
|
2014-01-14 20:32:07 +00:00
|
|
|
SIGTYPE_LAST = SIGTYPE_PROG,
|
|
|
|
SIGTYPE_FIRST_PBS_SPRITE = SIGTYPE_PBS,
|
2008-03-28 03:23:49 +00:00
|
|
|
};
|
2011-05-01 19:51:52 +00:00
|
|
|
/** Helper information for extract tool. */
|
2010-04-17 13:31:41 +00:00
|
|
|
template <> struct EnumPropsT<SignalType> : MakeEnumPropsT<SignalType, byte, SIGTYPE_NORMAL, SIGTYPE_END, SIGTYPE_END, 3> {};
|
2008-03-28 03:23:49 +00:00
|
|
|
|
2014-01-14 20:32:07 +00:00
|
|
|
/** Reference to a signal
|
|
|
|
*
|
|
|
|
* A reference to a signal by its tile and track
|
|
|
|
*/
|
|
|
|
struct SignalReference {
|
|
|
|
inline SignalReference(TileIndex t, Track tr) : tile(t), track(tr) {}
|
|
|
|
inline bool operator<(const SignalReference& o) const { return tile < o.tile || (tile == o.tile && track < o.track); }
|
|
|
|
inline bool operator==(const SignalReference& o) const { return tile == o.tile && track == o.track; }
|
|
|
|
inline bool operator!=(const SignalReference& o) const { return tile != o.tile || track != o.track; }
|
|
|
|
|
|
|
|
TileIndex tile;
|
|
|
|
Track track;
|
|
|
|
};
|
2008-03-28 03:23:49 +00:00
|
|
|
|
2012-07-01 23:12:50 +00:00
|
|
|
/**
|
|
|
|
* These are states in which a signal can be. Currently these are only two, so
|
|
|
|
* simple boolean logic will do. But do try to compare to this enum instead of
|
|
|
|
* normal boolean evaluation, since that will make future additions easier.
|
|
|
|
*/
|
|
|
|
enum SignalState {
|
|
|
|
SIGNAL_STATE_RED = 0, ///< The signal is red
|
|
|
|
SIGNAL_STATE_GREEN = 1, ///< The signal is green
|
2014-01-14 20:32:07 +00:00
|
|
|
SIGNAL_STATE_MAX = SIGNAL_STATE_GREEN,
|
2012-07-01 23:12:50 +00:00
|
|
|
};
|
|
|
|
|
2008-03-28 03:23:49 +00:00
|
|
|
#endif /* SIGNAL_TYPE_H */
|