/* * 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 . */ /** @file enum_type.hpp Type (helpers) for enums */ #ifndef ENUM_TYPE_HPP #define ENUM_TYPE_HPP /** Some enums need to have allowed incrementing (i.e. StationClassID) */ #define DECLARE_POSTFIX_INCREMENT(enum_type) \ inline constexpr enum_type operator ++(enum_type& e, int) \ { \ enum_type e_org = e; \ e = (enum_type)((std::underlying_type::type)e + 1); \ return e_org; \ } \ inline constexpr enum_type operator --(enum_type& e, int) \ { \ enum_type e_org = e; \ e = (enum_type)((std::underlying_type::type)e - 1); \ return e_org; \ } /** Operators to allow to work with enum as with type safe bit set in C++ */ #define DECLARE_ENUM_AS_BIT_SET(enum_type) \ inline constexpr enum_type operator | (enum_type m1, enum_type m2) {return (enum_type)((std::underlying_type::type)m1 | (std::underlying_type::type)m2);} \ inline constexpr enum_type operator & (enum_type m1, enum_type m2) {return (enum_type)((std::underlying_type::type)m1 & (std::underlying_type::type)m2);} \ inline constexpr enum_type operator ^ (enum_type m1, enum_type m2) {return (enum_type)((std::underlying_type::type)m1 ^ (std::underlying_type::type)m2);} \ inline constexpr enum_type& operator |= (enum_type& m1, enum_type m2) {m1 = m1 | m2; return m1;} \ inline constexpr enum_type& operator &= (enum_type& m1, enum_type m2) {m1 = m1 & m2; return m1;} \ inline constexpr enum_type& operator ^= (enum_type& m1, enum_type m2) {m1 = m1 ^ m2; return m1;} \ inline constexpr enum_type operator ~(enum_type m) {return (enum_type)(~(std::underlying_type::type)m);} /** Operator that allows this enumeration to be added to any other enumeration. */ #define DECLARE_ENUM_AS_ADDABLE(EnumType) \ template , OtherEnumType>::type> \ constexpr OtherEnumType operator + (OtherEnumType m1, EnumType m2) { \ return static_cast(static_cast::type>(m1) + static_cast::type>(m2)); \ } #endif /* ENUM_TYPE_HPP */