// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team // SPDX-License-Identifier: LGPL-3.0+ #pragma once #include // Template function for casting enumerations to their underlying type template typename std::underlying_type::type enum_cast(Enumeration E) { return static_cast::type>(E); } namespace detail { /// Marks an enum as supporting boolean operators template struct enum_is_flags : public std::false_type {}; /// For return types that should be convertible to bool template struct enum_bool_helper { Enum value; constexpr enum_bool_helper(Enum value): value(value) {} constexpr operator Enum() const { return value; } constexpr operator bool() const { return static_cast(static_cast::type>(value)); } }; }; #define MARK_ENUM_AS_FLAGS(T) template<> struct detail::enum_is_flags : public std::true_type {} template constexpr typename std::enable_if::value, Enum>::type operator|(Enum lhs, Enum rhs) noexcept { using underlying = typename std::underlying_type::type; return static_cast(static_cast(lhs) | static_cast(rhs)); } template constexpr typename std::enable_if::value, detail::enum_bool_helper>::type operator&(Enum lhs, Enum rhs) noexcept { using underlying = typename std::underlying_type::type; return static_cast(static_cast(lhs) & static_cast(rhs)); } template constexpr typename std::enable_if::value, Enum>::type operator^(Enum lhs, Enum rhs) noexcept { using underlying = typename std::underlying_type::type; return static_cast(static_cast(lhs) ^ static_cast(rhs)); } template constexpr typename std::enable_if::value, Enum&>::type operator|=(Enum& lhs, Enum rhs) noexcept { return lhs = lhs | rhs; } template constexpr typename std::enable_if::value, Enum&>::type operator&=(Enum& lhs, Enum rhs) noexcept { return lhs = lhs & rhs; } template constexpr typename std::enable_if::value, Enum&>::type operator^=(Enum& lhs, Enum rhs) noexcept { return lhs = lhs ^ rhs; } template constexpr typename std::enable_if::value, bool>::type operator!(Enum e) noexcept { return !static_cast::type>(e); } template constexpr typename std::enable_if::value, Enum>::type operator~(Enum e) noexcept { return static_cast(~static_cast::type>(e)); }