axmol/core/base/bitmask.h

116 lines
7.3 KiB
C
Raw Normal View History

2020-02-23 21:36:36 +08:00
/****************************************************************************
2022-04-25 19:15:46 +08:00
Copyright (c) 2020 C4games Ltd.
2020-02-23 21:36:36 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2020-02-23 21:36:36 +08:00
Purpose: Make bitmask operators could be use at different namespace,
the other implementation CCEnumClass.h can't handle.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#pragma once
#include <type_traits>
#if !defined(_STD)
2021-12-25 10:04:45 +08:00
# define _STD ::std::
2020-02-23 21:36:36 +08:00
#endif
// BITMASK OPERATIONS, modified from msvc++ <type_traits> for cross-platform compiling.
2022-07-15 19:17:01 +08:00
#define AX_ENABLE_BITMASK_OPS(_BITMASK) \
2021-12-25 10:04:45 +08:00
constexpr _BITMASK operator&(_BITMASK _Left, _BITMASK _Right) noexcept \
{ /* return _Left & _Right */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return static_cast<_BITMASK>(static_cast<_IntTy>(_Left) & static_cast<_IntTy>(_Right)); \
} \
\
constexpr _BITMASK operator|(_BITMASK _Left, _BITMASK _Right) noexcept \
{ /* return _Left | _Right */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return static_cast<_BITMASK>(static_cast<_IntTy>(_Left) | static_cast<_IntTy>(_Right)); \
} \
\
constexpr _BITMASK operator^(_BITMASK _Left, _BITMASK _Right) noexcept \
{ /* return _Left ^ _Right */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return static_cast<_BITMASK>(static_cast<_IntTy>(_Left) ^ static_cast<_IntTy>(_Right)); \
} \
\
constexpr _BITMASK& operator&=(_BITMASK& _Left, _BITMASK _Right) noexcept \
{ /* return _Left &= _Right */ \
return _Left = _Left & _Right; \
} \
\
constexpr _BITMASK& operator|=(_BITMASK& _Left, _BITMASK _Right) noexcept \
{ /* return _Left |= _Right */ \
return _Left = _Left | _Right; \
} \
\
constexpr _BITMASK& operator^=(_BITMASK& _Left, _BITMASK _Right) noexcept \
{ /* return _Left ^= _Right */ \
return _Left = _Left ^ _Right; \
} \
\
constexpr _BITMASK operator~(_BITMASK _Left) noexcept \
{ /* return ~_Left */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return static_cast<_BITMASK>(~static_cast<_IntTy>(_Left)); \
} \
\
constexpr bool operator!(_BITMASK _Left) noexcept \
{ /* return ~_Left */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return !static_cast<_IntTy>(_Left); \
2020-02-23 21:36:36 +08:00
}
2021-12-25 10:04:45 +08:00
// BITSHIFT OPERATIONS, inspired from msvc++ <type_traits>.
2022-07-15 19:17:01 +08:00
#define AX_ENABLE_BITSHIFT_OPS(_BITMASK) \
2021-12-25 10:04:45 +08:00
constexpr _BITMASK operator>>(_BITMASK _Left, _BITMASK _Right) noexcept \
{ /* return _Left & _Right */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return static_cast<_BITMASK>(static_cast<_IntTy>(_Left) >> static_cast<_IntTy>(_Right)); \
} \
\
constexpr _BITMASK operator<<(_BITMASK _Left, _BITMASK _Right) noexcept \
{ /* return _Left & _Right */ \
using _IntTy = _STD underlying_type<_BITMASK>::type; \
return static_cast<_BITMASK>(static_cast<_IntTy>(_Left) << static_cast<_IntTy>(_Right)); \
}
2021-12-25 10:04:45 +08:00
namespace bitmask
{
template <typename _BITMASK>
constexpr bool none(_BITMASK _Left, _BITMASK _Elements) noexcept
{
return !(_Left & _Elements);
}
2021-12-25 10:04:45 +08:00
template <typename _BITMASK>
constexpr bool any(_BITMASK _Left, _BITMASK _Elements) noexcept
{
return !!(_Left & _Elements);
}
template <typename _BITMASK>
constexpr bool only(_BITMASK _Left, _BITMASK _Elements) noexcept
{
return (_Left & _Elements) == _Elements;
}
} // namespace bitmask