| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- #ifndef ENTT_ENTITY_ENTITY_HPP
- #define ENTT_ENTITY_ENTITY_HPP
- #include <cstddef>
- #include <cstdint>
- #include <type_traits>
- #include "../config/config.h"
- #include "fwd.hpp"
- namespace entt {
- /**
- * @cond TURN_OFF_DOXYGEN
- * Internal details not to be documented.
- */
- namespace internal {
- // waiting for C++20 and std::popcount
- template<typename Type>
- constexpr int popcount(Type value) noexcept {
- return value ? (int(value & 1) + popcount(value >> 1)) : 0;
- }
- template<typename, typename = void>
- struct entt_traits;
- template<typename Type>
- struct entt_traits<Type, std::enable_if_t<std::is_enum_v<Type>>>
- : entt_traits<std::underlying_type_t<Type>> {
- using value_type = Type;
- };
- template<typename Type>
- struct entt_traits<Type, std::enable_if_t<std::is_class_v<Type>>>
- : entt_traits<typename Type::entity_type> {
- using value_type = Type;
- };
- template<>
- struct entt_traits<std::uint32_t> {
- using value_type = std::uint32_t;
- using entity_type = std::uint32_t;
- using version_type = std::uint16_t;
- static constexpr entity_type entity_mask = 0xFFFFF;
- static constexpr entity_type version_mask = 0xFFF;
- };
- template<>
- struct entt_traits<std::uint64_t> {
- using value_type = std::uint64_t;
- using entity_type = std::uint64_t;
- using version_type = std::uint32_t;
- static constexpr entity_type entity_mask = 0xFFFFFFFF;
- static constexpr entity_type version_mask = 0xFFFFFFFF;
- };
- } // namespace internal
- /**
- * Internal details not to be documented.
- * @endcond
- */
- /**
- * @brief Common basic entity traits implementation.
- * @tparam Traits Actual entity traits to use.
- */
- template<typename Traits>
- class basic_entt_traits {
- static constexpr auto length = internal::popcount(Traits::entity_mask);
- static_assert(Traits::entity_mask && ((typename Traits::entity_type{1} << length) == (Traits::entity_mask + 1)), "Invalid entity mask");
- static_assert((typename Traits::entity_type{1} << internal::popcount(Traits::version_mask)) == (Traits::version_mask + 1), "Invalid version mask");
- public:
- /*! @brief Value type. */
- using value_type = typename Traits::value_type;
- /*! @brief Underlying entity type. */
- using entity_type = typename Traits::entity_type;
- /*! @brief Underlying version type. */
- using version_type = typename Traits::version_type;
- /*! @brief Entity mask size. */
- static constexpr entity_type entity_mask = Traits::entity_mask;
- /*! @brief Version mask size */
- static constexpr entity_type version_mask = Traits::version_mask;
- /**
- * @brief Converts an entity to its underlying type.
- * @param value The value to convert.
- * @return The integral representation of the given value.
- */
- [[nodiscard]] static constexpr entity_type to_integral(const value_type value) noexcept {
- return static_cast<entity_type>(value);
- }
- /**
- * @brief Returns the entity part once converted to the underlying type.
- * @param value The value to convert.
- * @return The integral representation of the entity part.
- */
- [[nodiscard]] static constexpr entity_type to_entity(const value_type value) noexcept {
- return (to_integral(value) & entity_mask);
- }
- /**
- * @brief Returns the version part once converted to the underlying type.
- * @param value The value to convert.
- * @return The integral representation of the version part.
- */
- [[nodiscard]] static constexpr version_type to_version(const value_type value) noexcept {
- return (static_cast<version_type>(to_integral(value) >> length) & version_mask);
- }
- /**
- * @brief Returns the successor of a given identifier.
- * @param value The identifier of which to return the successor.
- * @return The successor of the given identifier.
- */
- [[nodiscard]] static constexpr value_type next(const value_type value) noexcept {
- const auto vers = to_version(value) + 1;
- return construct(to_integral(value), static_cast<version_type>(vers + (vers == version_mask)));
- }
- /**
- * @brief Constructs an identifier from its parts.
- *
- * If the version part is not provided, a tombstone is returned.<br/>
- * If the entity part is not provided, a null identifier is returned.
- *
- * @param entity The entity part of the identifier.
- * @param version The version part of the identifier.
- * @return A properly constructed identifier.
- */
- [[nodiscard]] static constexpr value_type construct(const entity_type entity, const version_type version) noexcept {
- return value_type{(entity & entity_mask) | (static_cast<entity_type>(version & version_mask) << length)};
- }
- /**
- * @brief Combines two identifiers in a single one.
- *
- * The returned identifier is a copy of the first element except for its
- * version, which is taken from the second element.
- *
- * @param lhs The identifier from which to take the entity part.
- * @param rhs The identifier from which to take the version part.
- * @return A properly constructed identifier.
- */
- [[nodiscard]] static constexpr value_type combine(const entity_type lhs, const entity_type rhs) noexcept {
- return value_type{(lhs & entity_mask) | (rhs & (version_mask << length))};
- }
- };
- /**
- * @brief Entity traits.
- * @tparam Type Type of identifier.
- */
- template<typename Type>
- struct entt_traits: basic_entt_traits<internal::entt_traits<Type>> {
- /*! @brief Base type. */
- using base_type = basic_entt_traits<internal::entt_traits<Type>>;
- /*! @brief Page size, default is `ENTT_SPARSE_PAGE`. */
- static constexpr std::size_t page_size = ENTT_SPARSE_PAGE;
- };
- /**
- * @brief Converts an entity to its underlying type.
- * @tparam Entity The value type.
- * @param value The value to convert.
- * @return The integral representation of the given value.
- */
- template<typename Entity>
- [[nodiscard]] constexpr typename entt_traits<Entity>::entity_type to_integral(const Entity value) noexcept {
- return entt_traits<Entity>::to_integral(value);
- }
- /**
- * @brief Returns the entity part once converted to the underlying type.
- * @tparam Entity The value type.
- * @param value The value to convert.
- * @return The integral representation of the entity part.
- */
- template<typename Entity>
- [[nodiscard]] constexpr typename entt_traits<Entity>::entity_type to_entity(const Entity value) noexcept {
- return entt_traits<Entity>::to_entity(value);
- }
- /**
- * @brief Returns the version part once converted to the underlying type.
- * @tparam Entity The value type.
- * @param value The value to convert.
- * @return The integral representation of the version part.
- */
- template<typename Entity>
- [[nodiscard]] constexpr typename entt_traits<Entity>::version_type to_version(const Entity value) noexcept {
- return entt_traits<Entity>::to_version(value);
- }
- /*! @brief Null object for all identifiers. */
- struct null_t {
- /**
- * @brief Converts the null object to identifiers of any type.
- * @tparam Entity Type of identifier.
- * @return The null representation for the given type.
- */
- template<typename Entity>
- [[nodiscard]] constexpr operator Entity() const noexcept {
- using traits_type = entt_traits<Entity>;
- constexpr auto value = traits_type::construct(traits_type::entity_mask, traits_type::version_mask);
- return value;
- }
- /**
- * @brief Compares two null objects.
- * @param other A null object.
- * @return True in all cases.
- */
- [[nodiscard]] constexpr bool operator==([[maybe_unused]] const null_t other) const noexcept {
- return true;
- }
- /**
- * @brief Compares two null objects.
- * @param other A null object.
- * @return False in all cases.
- */
- [[nodiscard]] constexpr bool operator!=([[maybe_unused]] const null_t other) const noexcept {
- return false;
- }
- /**
- * @brief Compares a null object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @return False if the two elements differ, true otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator==(const Entity entity) const noexcept {
- using traits_type = entt_traits<Entity>;
- return traits_type::to_entity(entity) == traits_type::to_entity(*this);
- }
- /**
- * @brief Compares a null object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @return True if the two elements differ, false otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator!=(const Entity entity) const noexcept {
- return !(entity == *this);
- }
- };
- /**
- * @brief Compares a null object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @param other A null object yet to be converted.
- * @return False if the two elements differ, true otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator==(const Entity entity, const null_t other) noexcept {
- return other.operator==(entity);
- }
- /**
- * @brief Compares a null object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @param other A null object yet to be converted.
- * @return True if the two elements differ, false otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator!=(const Entity entity, const null_t other) noexcept {
- return !(other == entity);
- }
- /*! @brief Tombstone object for all identifiers. */
- struct tombstone_t {
- /**
- * @brief Converts the tombstone object to identifiers of any type.
- * @tparam Entity Type of identifier.
- * @return The tombstone representation for the given type.
- */
- template<typename Entity>
- [[nodiscard]] constexpr operator Entity() const noexcept {
- using traits_type = entt_traits<Entity>;
- constexpr auto value = traits_type::construct(traits_type::entity_mask, traits_type::version_mask);
- return value;
- }
- /**
- * @brief Compares two tombstone objects.
- * @param other A tombstone object.
- * @return True in all cases.
- */
- [[nodiscard]] constexpr bool operator==([[maybe_unused]] const tombstone_t other) const noexcept {
- return true;
- }
- /**
- * @brief Compares two tombstone objects.
- * @param other A tombstone object.
- * @return False in all cases.
- */
- [[nodiscard]] constexpr bool operator!=([[maybe_unused]] const tombstone_t other) const noexcept {
- return false;
- }
- /**
- * @brief Compares a tombstone object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @return False if the two elements differ, true otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator==(const Entity entity) const noexcept {
- using traits_type = entt_traits<Entity>;
- return traits_type::to_version(entity) == traits_type::to_version(*this);
- }
- /**
- * @brief Compares a tombstone object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @return True if the two elements differ, false otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator!=(const Entity entity) const noexcept {
- return !(entity == *this);
- }
- };
- /**
- * @brief Compares a tombstone object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @param other A tombstone object yet to be converted.
- * @return False if the two elements differ, true otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator==(const Entity entity, const tombstone_t other) noexcept {
- return other.operator==(entity);
- }
- /**
- * @brief Compares a tombstone object and an identifier of any type.
- * @tparam Entity Type of identifier.
- * @param entity Identifier with which to compare.
- * @param other A tombstone object yet to be converted.
- * @return True if the two elements differ, false otherwise.
- */
- template<typename Entity>
- [[nodiscard]] constexpr bool operator!=(const Entity entity, const tombstone_t other) noexcept {
- return !(other == entity);
- }
- /**
- * @brief Compile-time constant for null entities.
- *
- * There exist implicit conversions from this variable to identifiers of any
- * allowed type. Similarly, there exist comparison operators between the null
- * entity and any other identifier.
- */
- inline constexpr null_t null{};
- /**
- * @brief Compile-time constant for tombstone entities.
- *
- * There exist implicit conversions from this variable to identifiers of any
- * allowed type. Similarly, there exist comparison operators between the
- * tombstone entity and any other identifier.
- */
- inline constexpr tombstone_t tombstone{};
- } // namespace entt
- #endif
|