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/>.
|
|
|
|
*/
|
|
|
|
|
2007-12-18 20:10:21 +00:00
|
|
|
/** @file rail_type.h The different types of rail */
|
|
|
|
|
|
|
|
#ifndef RAIL_TYPE_H
|
|
|
|
#define RAIL_TYPE_H
|
|
|
|
|
2008-01-13 00:28:01 +00:00
|
|
|
#include "core/enum_type.hpp"
|
|
|
|
|
2009-02-08 18:11:06 +00:00
|
|
|
typedef uint32 RailTypeLabel;
|
|
|
|
|
2010-03-23 11:05:28 +00:00
|
|
|
static const RailTypeLabel RAILTYPE_RAIL_LABEL = 'RAIL';
|
|
|
|
static const RailTypeLabel RAILTYPE_ELECTRIC_LABEL = 'ELRL';
|
|
|
|
static const RailTypeLabel RAILTYPE_MONO_LABEL = 'MONO';
|
|
|
|
static const RailTypeLabel RAILTYPE_MAGLEV_LABEL = 'MGLV';
|
|
|
|
|
2007-12-18 20:10:21 +00:00
|
|
|
/**
|
|
|
|
* Enumeration for all possible railtypes.
|
|
|
|
*
|
|
|
|
* This enumeration defines all 4 possible railtypes.
|
|
|
|
*/
|
2019-04-22 06:39:52 +00:00
|
|
|
enum RailType : byte {
|
2007-12-18 20:10:21 +00:00
|
|
|
RAILTYPE_BEGIN = 0, ///< Used for iterations
|
|
|
|
RAILTYPE_RAIL = 0, ///< Standard non-electric rails
|
|
|
|
RAILTYPE_ELECTRIC = 1, ///< Electric rails
|
|
|
|
RAILTYPE_MONO = 2, ///< Monorail
|
|
|
|
RAILTYPE_MAGLEV = 3, ///< Maglev
|
2018-07-22 23:05:23 +00:00
|
|
|
RAILTYPE_END = 64, ///< Used for iterations
|
2009-07-22 16:56:36 +00:00
|
|
|
INVALID_RAILTYPE = 0xFF, ///< Flag for invalid railtype
|
2007-12-18 20:10:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Allow incrementing of Track variables */
|
2010-03-23 22:25:43 +00:00
|
|
|
DECLARE_POSTFIX_INCREMENT(RailType)
|
2007-12-18 20:10:21 +00:00
|
|
|
/** Define basic enum properties */
|
2018-07-22 23:05:23 +00:00
|
|
|
template <> struct EnumPropsT<RailType> : MakeEnumPropsT<RailType, byte, RAILTYPE_BEGIN, RAILTYPE_END, INVALID_RAILTYPE, 6> {};
|
2007-12-18 20:10:21 +00:00
|
|
|
|
2008-01-09 21:05:03 +00:00
|
|
|
/**
|
2018-10-30 14:54:08 +00:00
|
|
|
* The different railtypes we support, but then a bitmask of them.
|
|
|
|
* @note Must be treated as a uint64 type, narrowing it causes bit membership tests to give wrong results, as in bug #6951.
|
2008-01-09 21:05:03 +00:00
|
|
|
*/
|
2018-10-30 14:54:08 +00:00
|
|
|
enum RailTypes : uint64 {
|
2008-01-09 21:05:03 +00:00
|
|
|
RAILTYPES_NONE = 0, ///< No rail types
|
|
|
|
RAILTYPES_RAIL = 1 << RAILTYPE_RAIL, ///< Non-electrified rails
|
|
|
|
RAILTYPES_ELECTRIC = 1 << RAILTYPE_ELECTRIC, ///< Electrified rails
|
|
|
|
RAILTYPES_MONO = 1 << RAILTYPE_MONO, ///< Monorail!
|
|
|
|
RAILTYPES_MAGLEV = 1 << RAILTYPE_MAGLEV, ///< Ever fast maglev
|
2018-07-22 23:05:23 +00:00
|
|
|
INVALID_RAILTYPES = UINT64_MAX, ///< Invalid railtypes
|
2008-01-09 21:05:03 +00:00
|
|
|
};
|
2010-03-23 22:25:43 +00:00
|
|
|
DECLARE_ENUM_AS_BIT_SET(RailTypes)
|
2008-01-09 21:05:03 +00:00
|
|
|
|
2007-12-18 20:10:21 +00:00
|
|
|
#endif /* RAIL_TYPE_H */
|