| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594 |
- #ifndef ENTT_ENTITY_SPARSE_SET_HPP
- #define ENTT_ENTITY_SPARSE_SET_HPP
- #include <iterator>
- #include <utility>
- #include <vector>
- #include <memory>
- #include <cstddef>
- #include <type_traits>
- #include "../config/config.h"
- #include "../core/algorithm.hpp"
- #include "entity.hpp"
- #include "fwd.hpp"
- namespace entt {
- /**
- * @brief Basic sparse set implementation.
- *
- * Sparse set or packed array or whatever is the name users give it.<br/>
- * Two arrays: an _external_ one and an _internal_ one; a _sparse_ one and a
- * _packed_ one; one used for direct access through contiguous memory, the other
- * one used to get the data through an extra level of indirection.<br/>
- * This is largely used by the registry to offer users the fastest access ever
- * to the components. Views and groups in general are almost entirely designed
- * around sparse sets.
- *
- * This type of data structure is widely documented in the literature and on the
- * web. This is nothing more than a customized implementation suitable for the
- * purpose of the framework.
- *
- * @note
- * Internal data structures arrange elements to maximize performance. There are
- * no guarantees that entities are returned in the insertion order when iterate
- * a sparse set. Do not make assumption on the order in any case.
- *
- * @tparam Entity A valid entity type (see entt_traits for more details).
- */
- template<typename Entity>
- class basic_sparse_set {
- static_assert(ENTT_PAGE_SIZE && ((ENTT_PAGE_SIZE & (ENTT_PAGE_SIZE - 1)) == 0), "ENTT_PAGE_SIZE must be a power of two");
- static constexpr auto entt_per_page = ENTT_PAGE_SIZE / sizeof(Entity);
- using traits_type = entt_traits<Entity>;
- using page_type = std::unique_ptr<Entity[]>;
- class sparse_set_iterator final {
- friend class basic_sparse_set<Entity>;
- using packed_type = std::vector<Entity>;
- using index_type = typename traits_type::difference_type;
- sparse_set_iterator(const packed_type &ref, const index_type idx) ENTT_NOEXCEPT
- : packed{&ref}, index{idx}
- {}
- public:
- using difference_type = index_type;
- using value_type = Entity;
- using pointer = const value_type *;
- using reference = const value_type &;
- using iterator_category = std::random_access_iterator_tag;
- sparse_set_iterator() ENTT_NOEXCEPT = default;
- sparse_set_iterator & operator++() ENTT_NOEXCEPT {
- return --index, *this;
- }
- sparse_set_iterator operator++(int) ENTT_NOEXCEPT {
- iterator orig = *this;
- return ++(*this), orig;
- }
- sparse_set_iterator & operator--() ENTT_NOEXCEPT {
- return ++index, *this;
- }
- sparse_set_iterator operator--(int) ENTT_NOEXCEPT {
- sparse_set_iterator orig = *this;
- return operator--(), orig;
- }
- sparse_set_iterator & operator+=(const difference_type value) ENTT_NOEXCEPT {
- index -= value;
- return *this;
- }
- sparse_set_iterator operator+(const difference_type value) const ENTT_NOEXCEPT {
- sparse_set_iterator copy = *this;
- return (copy += value);
- }
- sparse_set_iterator & operator-=(const difference_type value) ENTT_NOEXCEPT {
- return (*this += -value);
- }
- sparse_set_iterator operator-(const difference_type value) const ENTT_NOEXCEPT {
- return (*this + -value);
- }
- difference_type operator-(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return other.index - index;
- }
- [[nodiscard]] reference operator[](const difference_type value) const {
- const auto pos = size_type(index-value-1u);
- return (*packed)[pos];
- }
- [[nodiscard]] bool operator==(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return other.index == index;
- }
- [[nodiscard]] bool operator!=(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return !(*this == other);
- }
- [[nodiscard]] bool operator<(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return index > other.index;
- }
- [[nodiscard]] bool operator>(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return index < other.index;
- }
- [[nodiscard]] bool operator<=(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return !(*this > other);
- }
- [[nodiscard]] bool operator>=(const sparse_set_iterator &other) const ENTT_NOEXCEPT {
- return !(*this < other);
- }
- [[nodiscard]] pointer operator->() const {
- const auto pos = size_type(index-1u);
- return &(*packed)[pos];
- }
- [[nodiscard]] reference operator*() const {
- return *operator->();
- }
- private:
- const packed_type *packed;
- index_type index;
- };
- [[nodiscard]] auto page(const Entity entt) const ENTT_NOEXCEPT {
- return size_type{(to_integral(entt) & traits_type::entity_mask) / entt_per_page};
- }
- [[nodiscard]] auto offset(const Entity entt) const ENTT_NOEXCEPT {
- return size_type{to_integral(entt) & (entt_per_page - 1)};
- }
- [[nodiscard]] page_type & assure(const std::size_t pos) {
- if(!(pos < sparse.size())) {
- sparse.resize(pos+1);
- }
- if(!sparse[pos]) {
- sparse[pos].reset(new entity_type[entt_per_page]);
- // null is safe in all cases for our purposes
- for(auto *first = sparse[pos].get(), *last = first + entt_per_page; first != last; ++first) {
- *first = null;
- }
- }
- return sparse[pos];
- }
- virtual void swap_at(const std::size_t, const std::size_t) {}
- virtual void swap_and_pop(const std::size_t) {}
- virtual void clear_all() {}
- public:
- /*! @brief Underlying entity identifier. */
- using entity_type = Entity;
- /*! @brief Unsigned integer type. */
- using size_type = std::size_t;
- /*! @brief Random access iterator type. */
- using iterator = sparse_set_iterator;
- /*! @brief Reverse iterator type. */
- using reverse_iterator = const entity_type *;
- /*! @brief Default constructor. */
- basic_sparse_set() = default;
- /*! @brief Default move constructor. */
- basic_sparse_set(basic_sparse_set &&) = default;
- /*! @brief Default destructor. */
- virtual ~basic_sparse_set() = default;
- /*! @brief Default move assignment operator. @return This sparse set. */
- basic_sparse_set & operator=(basic_sparse_set &&) = default;
- /**
- * @brief Increases the capacity of a sparse set.
- *
- * If the new capacity is greater than the current capacity, new storage is
- * allocated, otherwise the method does nothing.
- *
- * @param cap Desired capacity.
- */
- void reserve(const size_type cap) {
- packed.reserve(cap);
- }
- /**
- * @brief Returns the number of elements that a sparse set has currently
- * allocated space for.
- * @return Capacity of the sparse set.
- */
- [[nodiscard]] size_type capacity() const ENTT_NOEXCEPT {
- return packed.capacity();
- }
- /*! @brief Requests the removal of unused capacity. */
- void shrink_to_fit() {
- // conservative approach
- if(packed.empty()) {
- sparse.clear();
- }
- sparse.shrink_to_fit();
- packed.shrink_to_fit();
- }
- /**
- * @brief Returns the extent of a sparse set.
- *
- * The extent of a sparse set is also the size of the internal sparse array.
- * There is no guarantee that the internal packed array has the same size.
- * Usually the size of the internal sparse array is equal or greater than
- * the one of the internal packed array.
- *
- * @return Extent of the sparse set.
- */
- [[nodiscard]] size_type extent() const ENTT_NOEXCEPT {
- return sparse.size() * entt_per_page;
- }
- /**
- * @brief Returns the number of elements in a sparse set.
- *
- * The number of elements is also the size of the internal packed array.
- * There is no guarantee that the internal sparse array has the same size.
- * Usually the size of the internal sparse array is equal or greater than
- * the one of the internal packed array.
- *
- * @return Number of elements.
- */
- [[nodiscard]] size_type size() const ENTT_NOEXCEPT {
- return packed.size();
- }
- /**
- * @brief Checks whether a sparse set is empty.
- * @return True if the sparse set is empty, false otherwise.
- */
- [[nodiscard]] bool empty() const ENTT_NOEXCEPT {
- return packed.empty();
- }
- /**
- * @brief Direct access to the internal packed array.
- *
- * The returned pointer is such that range `[data(), data() + size())` is
- * always a valid range, even if the container is empty.
- *
- * @note
- * Entities are in the reverse order as returned by the `begin`/`end`
- * iterators.
- *
- * @return A pointer to the internal packed array.
- */
- [[nodiscard]] const entity_type * data() const ENTT_NOEXCEPT {
- return packed.data();
- }
- /**
- * @brief Returns an iterator to the beginning.
- *
- * The returned iterator points to the first entity of the internal packed
- * array. If the sparse set is empty, the returned iterator will be equal to
- * `end()`.
- *
- * @return An iterator to the first entity of the internal packed array.
- */
- [[nodiscard]] iterator begin() const ENTT_NOEXCEPT {
- const typename traits_type::difference_type pos = packed.size();
- return iterator{packed, pos};
- }
- /**
- * @brief Returns an iterator to the end.
- *
- * The returned iterator points to the element following the last entity in
- * the internal packed array. Attempting to dereference the returned
- * iterator results in undefined behavior.
- *
- * @return An iterator to the element following the last entity of the
- * internal packed array.
- */
- [[nodiscard]] iterator end() const ENTT_NOEXCEPT {
- return iterator{packed, {}};
- }
- /**
- * @brief Returns a reverse iterator to the beginning.
- *
- * The returned iterator points to the first entity of the reversed internal
- * packed array. If the sparse set is empty, the returned iterator will be
- * equal to `rend()`.
- *
- * @return An iterator to the first entity of the reversed internal packed
- * array.
- */
- [[nodiscard]] reverse_iterator rbegin() const ENTT_NOEXCEPT {
- return packed.data();
- }
- /**
- * @brief Returns a reverse iterator to the end.
- *
- * The returned iterator points to the element following the last entity in
- * the reversed internal packed array. Attempting to dereference the
- * returned iterator results in undefined behavior.
- *
- * @return An iterator to the element following the last entity of the
- * reversed internal packed array.
- */
- [[nodiscard]] reverse_iterator rend() const ENTT_NOEXCEPT {
- return rbegin() + packed.size();
- }
- /**
- * @brief Finds an entity.
- * @param entt A valid entity identifier.
- * @return An iterator to the given entity if it's found, past the end
- * iterator otherwise.
- */
- [[nodiscard]] iterator find(const entity_type entt) const {
- return contains(entt) ? --(end() - index(entt)) : end();
- }
- /**
- * @brief Checks if a sparse set contains an entity.
- * @param entt A valid entity identifier.
- * @return True if the sparse set contains the entity, false otherwise.
- */
- [[nodiscard]] bool contains(const entity_type entt) const {
- const auto curr = page(entt);
- // testing against null permits to avoid accessing the packed array
- return (curr < sparse.size() && sparse[curr] && sparse[curr][offset(entt)] != null);
- }
- /**
- * @brief Returns the position of an entity in a sparse set.
- *
- * @warning
- * Attempting to get the position of an entity that doesn't belong to the
- * sparse set results in undefined behavior.
- *
- * @param entt A valid entity identifier.
- * @return The position of the entity in the sparse set.
- */
- [[nodiscard]] size_type index(const entity_type entt) const {
- ENTT_ASSERT(contains(entt));
- return size_type{to_integral(sparse[page(entt)][offset(entt)])};
- }
- /**
- * @brief Assigns an entity to a sparse set.
- *
- * @warning
- * Attempting to assign an entity that already belongs to the sparse set
- * results in undefined behavior.
- *
- * @param entt A valid entity identifier.
- */
- void emplace(const entity_type entt) {
- ENTT_ASSERT(!contains(entt));
- assure(page(entt))[offset(entt)] = entity_type{static_cast<typename traits_type::entity_type>(packed.size())};
- packed.push_back(entt);
- }
- /**
- * @brief Assigns one or more entities to a sparse set.
- *
- * @warning
- * Attempting to assign an entity that already belongs to the sparse set
- * results in undefined behavior.
- *
- * @tparam It Type of input iterator.
- * @param first An iterator to the first element of the range of entities.
- * @param last An iterator past the last element of the range of entities.
- */
- template<typename It>
- void insert(It first, It last) {
- auto next = static_cast<typename traits_type::entity_type>(packed.size());
- packed.insert(packed.end(), first, last);
- for(; first != last; ++first) {
- ENTT_ASSERT(!contains(*first));
- assure(page(*first))[offset(*first)] = entity_type{next++};
- }
- }
- /**
- * @brief Removes an entity from a sparse set.
- *
- * @warning
- * Attempting to remove an entity that doesn't belong to the sparse set
- * results in undefined behavior.
- *
- * @param entt A valid entity identifier.
- */
- void remove(const entity_type entt) {
- ENTT_ASSERT(contains(entt));
- auto &ref = sparse[page(entt)][offset(entt)];
- const auto pos = size_type{to_integral(ref)};
- const auto other = packed.back();
- sparse[page(other)][offset(other)] = ref;
- packed[pos] = other;
- ref = null;
- packed.pop_back();
- swap_and_pop(pos);
- }
- /**
- * @brief Removes multiple entities from a pool.
- * @tparam It Type of input iterator.
- * @param first An iterator to the first element of the range of entities.
- * @param last An iterator past the last element of the range of entities.
- */
- template<typename It>
- void remove(It first, It last) {
- if(std::distance(first, last) == std::distance(packed.begin(), packed.end())) {
- // no validity check, let it be misused
- clear();
- } else {
- for(; first != last; ++first) {
- remove(*first);
- }
- }
- }
- /**
- * @brief Swaps two entities in the internal packed array.
- *
- * For what it's worth, this function affects both the internal sparse array
- * and the internal packed array. Users should not care of that anyway.
- *
- * @warning
- * Attempting to swap entities that don't belong to the sparse set results
- * in undefined behavior.
- *
- * @param lhs A valid entity identifier.
- * @param rhs A valid entity identifier.
- */
- void swap(const entity_type lhs, const entity_type rhs) {
- const auto from = index(lhs);
- const auto to = index(rhs);
- std::swap(sparse[page(lhs)][offset(lhs)], sparse[page(rhs)][offset(rhs)]);
- std::swap(packed[from], packed[to]);
- swap_at(from, to);
- }
- /**
- * @brief Sort the first count elements according to the given comparison
- * function.
- *
- * The comparison function object must return `true` if the first element
- * is _less_ than the second one, `false` otherwise. The signature of the
- * comparison function should be equivalent to the following:
- *
- * @code{.cpp}
- * bool(const Entity, const Entity);
- * @endcode
- *
- * Moreover, the comparison function object shall induce a
- * _strict weak ordering_ on the values.
- *
- * The sort function object must offer a member function template
- * `operator()` that accepts three arguments:
- *
- * * An iterator to the first element of the range to sort.
- * * An iterator past the last element of the range to sort.
- * * A comparison function to use to compare the elements.
- *
- * @tparam Compare Type of comparison function object.
- * @tparam Sort Type of sort function object.
- * @tparam Args Types of arguments to forward to the sort function object.
- * @param count Number of elements to sort.
- * @param compare A valid comparison function object.
- * @param algo A valid sort function object.
- * @param args Arguments to forward to the sort function object, if any.
- */
- template<typename Compare, typename Sort = std_sort, typename... Args>
- void sort_n(const size_type count, Compare compare, Sort algo = Sort{}, Args &&... args) {
- ENTT_ASSERT(!(count > size()));
- algo(packed.rend() - count, packed.rend(), std::move(compare), std::forward<Args>(args)...);
- for(size_type pos{}; pos < count; ++pos) {
- auto curr = pos;
- auto next = index(packed[curr]);
- while(curr != next) {
- swap_at(next, index(packed[next]));
- sparse[page(packed[curr])][offset(packed[curr])] = entity_type{static_cast<typename traits_type::entity_type>(curr)};
- curr = next;
- next = index(packed[curr]);
- }
- }
- }
- /**
- * @brief Sort all elements according to the given comparison function.
- *
- * @sa sort_n
- *
- * @tparam Compare Type of comparison function object.
- * @tparam Sort Type of sort function object.
- * @tparam Args Types of arguments to forward to the sort function object.
- * @param compare A valid comparison function object.
- * @param algo A valid sort function object.
- * @param args Arguments to forward to the sort function object, if any.
- */
- template<typename Compare, typename Sort = std_sort, typename... Args>
- void sort(Compare compare, Sort algo = Sort{}, Args &&... args) {
- sort_n(size(), std::move(compare), std::move(algo), std::forward<Args>(args)...);
- }
- /**
- * @brief Sort entities according to their order in another sparse set.
- *
- * Entities that are part of both the sparse sets are ordered internally
- * according to the order they have in `other`. All the other entities goes
- * to the end of the list and there are no guarantees on their order.<br/>
- * In other terms, this function can be used to impose the same order on two
- * sets by using one of them as a master and the other one as a slave.
- *
- * Iterating the sparse set with a couple of iterators returns elements in
- * the expected order after a call to `respect`. See `begin` and `end` for
- * more details.
- *
- * @param other The sparse sets that imposes the order of the entities.
- */
- void respect(const basic_sparse_set &other) {
- const auto to = other.end();
- auto from = other.begin();
- size_type pos = packed.size() - 1;
- while(pos && from != to) {
- if(contains(*from)) {
- if(*from != packed[pos]) {
- swap(packed[pos], *from);
- }
- --pos;
- }
- ++from;
- }
- }
- /*! @brief Clears a sparse set. */
- void clear() ENTT_NOEXCEPT {
- sparse.clear();
- packed.clear();
- clear_all();
- }
- private:
- std::vector<page_type> sparse;
- std::vector<entity_type> packed;
- };
- }
- #endif
|