| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968 |
- #ifndef ENTT_ENTITY_VIEW_HPP
- #define ENTT_ENTITY_VIEW_HPP
- #include <array>
- #include <cstddef>
- #include <iterator>
- #include <tuple>
- #include <type_traits>
- #include <utility>
- #include "../config/config.h"
- #include "../core/iterator.hpp"
- #include "../core/type_traits.hpp"
- #include "component.hpp"
- #include "entity.hpp"
- #include "fwd.hpp"
- namespace entt {
- /*! @cond TURN_OFF_DOXYGEN */
- namespace internal {
- template<typename It, typename Entity>
- [[nodiscard]] bool all_of(It first, const It last, const Entity entt) noexcept {
- for(; (first != last) && (*first)->contains(entt); ++first) {}
- return first == last;
- }
- template<typename It, typename Entity>
- [[nodiscard]] bool none_of(It first, const It last, const Entity entt) noexcept {
- for(; (first != last) && !(*first && (*first)->contains(entt)); ++first) {}
- return first == last;
- }
- template<typename Type>
- [[nodiscard]] bool fully_initialized(const Type *const *it, const std::size_t len) noexcept {
- std::size_t pos{};
- for(; (pos != len) && it[pos]; ++pos) {}
- return pos == len;
- }
- template<typename Result, typename View, typename Other, std::size_t... VGet, std::size_t... VExclude, std::size_t... OGet, std::size_t... OExclude>
- [[nodiscard]] Result view_pack(const View &view, const Other &other, std::index_sequence<VGet...>, std::index_sequence<VExclude...>, std::index_sequence<OGet...>, std::index_sequence<OExclude...>) {
- Result elem{};
- // friend-initialization, avoid multiple calls to refresh
- elem.pools = {view.template storage<VGet>()..., other.template storage<OGet>()...};
- elem.filter = {view.template storage<sizeof...(VGet) + VExclude>()..., other.template storage<sizeof...(OGet) + OExclude>()...};
- elem.refresh();
- return elem;
- }
- template<typename Type, std::size_t Get, std::size_t Exclude>
- class view_iterator final {
- template<typename, typename...>
- friend struct extended_view_iterator;
- using iterator_type = typename Type::const_iterator;
- using iterator_traits = std::iterator_traits<iterator_type>;
- [[nodiscard]] bool valid(const typename iterator_traits::value_type entt) const noexcept {
- return ((Get != 1u) || (entt != tombstone))
- && internal::all_of(pools.begin(), pools.begin() + index, entt) && internal::all_of(pools.begin() + index + 1, pools.end(), entt)
- && internal::none_of(filter.begin(), filter.end(), entt);
- }
- public:
- using value_type = typename iterator_traits::value_type;
- using pointer = typename iterator_traits::pointer;
- using reference = typename iterator_traits::reference;
- using difference_type = typename iterator_traits::difference_type;
- using iterator_category = std::forward_iterator_tag;
- constexpr view_iterator() noexcept
- : it{},
- last{},
- pools{},
- filter{},
- index{} {}
- view_iterator(iterator_type first, std::array<const Type *, Get> value, std::array<const Type *, Exclude> excl, const std::size_t idx) noexcept
- : it{first},
- last{value[idx]->end()},
- pools{value},
- filter{excl},
- index{idx} {
- while(it != last && !valid(*it)) {
- ++it;
- }
- }
- view_iterator &operator++() noexcept {
- while(++it != last && !valid(*it)) {}
- return *this;
- }
- view_iterator operator++(int) noexcept {
- view_iterator orig = *this;
- return ++(*this), orig;
- }
- [[nodiscard]] pointer operator->() const noexcept {
- return &*it;
- }
- [[nodiscard]] reference operator*() const noexcept {
- return *operator->();
- }
- template<typename LhsType, auto... LhsArgs, typename RhsType, auto... RhsArgs>
- friend constexpr bool operator==(const view_iterator<LhsType, LhsArgs...> &, const view_iterator<RhsType, RhsArgs...> &) noexcept;
- private:
- iterator_type it;
- iterator_type last;
- std::array<const Type *, Get> pools;
- std::array<const Type *, Exclude> filter;
- std::size_t index;
- };
- template<typename LhsType, auto... LhsArgs, typename RhsType, auto... RhsArgs>
- [[nodiscard]] constexpr bool operator==(const view_iterator<LhsType, LhsArgs...> &lhs, const view_iterator<RhsType, RhsArgs...> &rhs) noexcept {
- return lhs.it == rhs.it;
- }
- template<typename LhsType, auto... LhsArgs, typename RhsType, auto... RhsArgs>
- [[nodiscard]] constexpr bool operator!=(const view_iterator<LhsType, LhsArgs...> &lhs, const view_iterator<RhsType, RhsArgs...> &rhs) noexcept {
- return !(lhs == rhs);
- }
- template<typename It, typename... Type>
- struct extended_view_iterator final {
- using iterator_type = It;
- using value_type = decltype(std::tuple_cat(std::make_tuple(*std::declval<It>()), std::declval<Type>().get_as_tuple({})...));
- using pointer = input_iterator_pointer<value_type>;
- using reference = value_type;
- using difference_type = std::ptrdiff_t;
- using iterator_category = std::input_iterator_tag;
- using iterator_concept = std::forward_iterator_tag;
- constexpr extended_view_iterator()
- : it{} {}
- extended_view_iterator(iterator_type from)
- : it{from} {}
- extended_view_iterator &operator++() noexcept {
- return ++it, *this;
- }
- extended_view_iterator operator++(int) noexcept {
- extended_view_iterator orig = *this;
- return ++(*this), orig;
- }
- [[nodiscard]] reference operator*() const noexcept {
- return std::apply([entt = *it](auto *...curr) { return std::tuple_cat(std::make_tuple(entt), static_cast<Type *>(const_cast<constness_as_t<typename Type::base_type, Type> *>(curr))->get_as_tuple(entt)...); }, it.pools);
- }
- [[nodiscard]] pointer operator->() const noexcept {
- return operator*();
- }
- [[nodiscard]] constexpr iterator_type base() const noexcept {
- return it;
- }
- template<typename... Lhs, typename... Rhs>
- friend bool constexpr operator==(const extended_view_iterator<Lhs...> &, const extended_view_iterator<Rhs...> &) noexcept;
- private:
- It it;
- };
- template<typename... Lhs, typename... Rhs>
- [[nodiscard]] constexpr bool operator==(const extended_view_iterator<Lhs...> &lhs, const extended_view_iterator<Rhs...> &rhs) noexcept {
- return lhs.it == rhs.it;
- }
- template<typename... Lhs, typename... Rhs>
- [[nodiscard]] constexpr bool operator!=(const extended_view_iterator<Lhs...> &lhs, const extended_view_iterator<Rhs...> &rhs) noexcept {
- return !(lhs == rhs);
- }
- } // namespace internal
- /*! @endcond */
- /**
- * @brief View implementation.
- *
- * Primary template isn't defined on purpose. All the specializations give a
- * compile-time error, but for a few reasonable cases.
- *
- * @b Important
- *
- * View iterators aren't invalidated if:
- *
- * * New elements are added to the storage iterated by the view.
- * * The entity currently returned is modified (for example, elements are added
- * or removed from it).
- * * The entity currently returned is destroyed.
- *
- * In all other cases, modifying the storage iterated by a view in any way can
- * invalidate all iterators.
- */
- template<typename, typename, typename>
- class basic_view;
- /**
- * @brief Basic storage view implementation.
- * @warning For internal use only, backward compatibility not guaranteed.
- * @tparam Type Common type among all storage types.
- * @tparam Get Number of storage iterated by the view.
- * @tparam Exclude Number of storage used to filter the view.
- */
- template<typename Type, std::size_t Get, std::size_t Exclude>
- class basic_common_view {
- template<typename Return, typename View, typename Other, std::size_t... VGet, std::size_t... VExclude, std::size_t... OGet, std::size_t... OExclude>
- friend Return internal::view_pack(const View &, const Other &, std::index_sequence<VGet...>, std::index_sequence<VExclude...>, std::index_sequence<OGet...>, std::index_sequence<OExclude...>);
- [[nodiscard]] auto offset() const noexcept {
- ENTT_ASSERT(index != Get, "Invalid view");
- const auto *view = pools[index];
- const std::array len{view->size(), view->free_list()};
- return len[view->policy() == deletion_policy::swap_only];
- }
- void unchecked_refresh() noexcept {
- index = 0u;
- if constexpr(Get > 1u) {
- for(size_type pos{1u}; pos < Get; ++pos) {
- if(pools[pos]->size() < pools[index]->size()) {
- index = pos;
- }
- }
- }
- }
- protected:
- /*! @cond TURN_OFF_DOXYGEN */
- basic_common_view() noexcept = default;
- basic_common_view(std::array<const Type *, Get> value, std::array<const Type *, Exclude> excl) noexcept
- : pools{value},
- filter{excl},
- index{Get} {
- unchecked_refresh();
- }
- void use(const std::size_t pos) noexcept {
- index = (index != Get) ? pos : Get;
- }
- /*! @endcond */
- public:
- /*! @brief Common type among all storage types. */
- using common_type = Type;
- /*! @brief Underlying entity identifier. */
- using entity_type = typename Type::entity_type;
- /*! @brief Unsigned integer type. */
- using size_type = std::size_t;
- /*! @brief Forward iterator type. */
- using iterator = internal::view_iterator<common_type, Get, Exclude>;
- /*! @brief Updates the internal leading view if required. */
- void refresh() noexcept {
- size_type pos = (index != Get) * Get;
- for(; pos < Get && pools[pos] != nullptr; ++pos) {}
- if(pos == Get) {
- unchecked_refresh();
- }
- }
- /**
- * @brief Returns the leading storage of a view, if any.
- * @return The leading storage of the view.
- */
- [[nodiscard]] const common_type *handle() const noexcept {
- return (index != Get) ? pools[index] : nullptr;
- }
- /**
- * @brief Estimates the number of entities iterated by the view.
- * @return Estimated number of entities iterated by the view.
- */
- [[nodiscard]] size_type size_hint() const noexcept {
- return (index != Get) ? pools[index]->size() : size_type{};
- }
- /**
- * @brief Returns an iterator to the first entity of the view.
- *
- * If the view is empty, the returned iterator will be equal to `end()`.
- *
- * @return An iterator to the first entity of the view.
- */
- [[nodiscard]] iterator begin() const noexcept {
- return (index != Get) ? iterator{pools[index]->end() - static_cast<typename iterator::difference_type>(offset()), pools, filter, index} : iterator{};
- }
- /**
- * @brief Returns an iterator that is past the last entity of the view.
- * @return An iterator to the entity following the last entity of the view.
- */
- [[nodiscard]] iterator end() const noexcept {
- return (index != Get) ? iterator{pools[index]->end(), pools, filter, index} : iterator{};
- }
- /**
- * @brief Returns the first entity of the view, if any.
- * @return The first entity of the view if one exists, the null entity
- * otherwise.
- */
- [[nodiscard]] entity_type front() const noexcept {
- const auto it = begin();
- return it != end() ? *it : null;
- }
- /**
- * @brief Returns the last entity of the view, if any.
- * @return The last entity of the view if one exists, the null entity
- * otherwise.
- */
- [[nodiscard]] entity_type back() const noexcept {
- if(index != Get) {
- auto it = pools[index]->rbegin();
- const auto last = it + static_cast<typename iterator::difference_type>(offset());
- for(; it != last && !contains(*it); ++it) {}
- return it == last ? null : *it;
- }
- return null;
- }
- /**
- * @brief Finds an entity.
- * @param entt A valid 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 noexcept {
- return contains(entt) ? iterator{pools[index]->find(entt), pools, filter, index} : end();
- }
- /**
- * @brief Checks if a view is fully initialized.
- * @return True if the view is fully initialized, false otherwise.
- */
- [[nodiscard]] explicit operator bool() const noexcept {
- return (index != Get) && internal::fully_initialized(filter.data(), Exclude);
- }
- /**
- * @brief Checks if a view contains an entity.
- * @param entt A valid identifier.
- * @return True if the view contains the given entity, false otherwise.
- */
- [[nodiscard]] bool contains(const entity_type entt) const noexcept {
- return (index != Get)
- && internal::all_of(pools.begin(), pools.end(), entt)
- && internal::none_of(filter.begin(), filter.end(), entt)
- && pools[index]->index(entt) < offset();
- }
- protected:
- /*! @cond TURN_OFF_DOXYGEN */
- std::array<const common_type *, Get> pools{};
- std::array<const common_type *, Exclude> filter{};
- size_type index{Get};
- /*! @endcond */
- };
- /**
- * @brief General purpose view.
- *
- * This view visits all entities that are at least in the given storage. During
- * initialization, it also looks at the number of elements available for each
- * storage and uses the smallest set in order to get a performance boost.
- *
- * @sa basic_view
- *
- * @tparam Get Types of storage iterated by the view.
- * @tparam Exclude Types of storage used to filter the view.
- */
- template<typename... Get, typename... Exclude>
- class basic_view<get_t<Get...>, exclude_t<Exclude...>>: public basic_common_view<std::common_type_t<typename Get::base_type..., typename Exclude::base_type...>, sizeof...(Get), sizeof...(Exclude)> {
- using base_type = basic_common_view<std::common_type_t<typename Get::base_type..., typename Exclude::base_type...>, sizeof...(Get), sizeof...(Exclude)>;
- template<typename Type>
- static constexpr std::size_t index_of = type_list_index_v<std::remove_const_t<Type>, type_list<typename Get::element_type..., typename Exclude::element_type...>>;
- static constexpr bool tombstone_check_required = ((sizeof...(Get) == 1u) && ... && (Get::storage_policy == deletion_policy::in_place));
- template<std::size_t... Index>
- [[nodiscard]] auto get(const typename base_type::entity_type entt, std::index_sequence<Index...>) const noexcept {
- return std::tuple_cat(storage<Index>()->get_as_tuple(entt)...);
- }
- template<std::size_t Curr, std::size_t Other, typename... Args>
- [[nodiscard]] auto dispatch_get(const std::tuple<typename base_type::entity_type, Args...> &curr) const {
- if constexpr(Curr == Other) {
- return std::forward_as_tuple(std::get<Args>(curr)...);
- } else {
- return storage<Other>()->get_as_tuple(std::get<0>(curr));
- }
- }
- template<std::size_t Curr, typename Func, std::size_t... Index>
- void each(Func &func, std::index_sequence<Index...>) const {
- for(const auto curr: storage<Curr>()->each()) {
- if(const auto entt = std::get<0>(curr); (!tombstone_check_required || (entt != tombstone)) && ((Curr == Index || this->pools[Index]->contains(entt)) && ...) && internal::none_of(this->filter.begin(), this->filter.end(), entt)) {
- if constexpr(is_applicable_v<Func, decltype(std::tuple_cat(std::tuple<entity_type>{}, std::declval<basic_view>().get({})))>) {
- std::apply(func, std::tuple_cat(std::make_tuple(entt), dispatch_get<Curr, Index>(curr)...));
- } else {
- std::apply(func, std::tuple_cat(dispatch_get<Curr, Index>(curr)...));
- }
- }
- }
- }
- template<typename Func, std::size_t... Index>
- void pick_and_each(Func &func, std::index_sequence<Index...> seq) const {
- ((Index == this->index ? each<Index>(func, seq) : void()), ...);
- }
- public:
- /*! @brief Common type among all storage types. */
- using common_type = typename base_type::common_type;
- /*! @brief Underlying entity identifier. */
- using entity_type = typename base_type::entity_type;
- /*! @brief Unsigned integer type. */
- using size_type = typename base_type::size_type;
- /*! @brief Forward iterator type. */
- using iterator = typename base_type::iterator;
- /*! @brief Iterable view type. */
- using iterable = iterable_adaptor<internal::extended_view_iterator<iterator, Get...>>;
- /*! @brief Default constructor to use to create empty, invalid views. */
- basic_view() noexcept
- : base_type{} {}
- /**
- * @brief Constructs a view from a set of storage classes.
- * @param value The storage for the types to iterate.
- * @param excl The storage for the types used to filter the view.
- */
- basic_view(Get &...value, Exclude &...excl) noexcept
- : base_type{{&value...}, {&excl...}} {
- }
- /**
- * @brief Constructs a view from a set of storage classes.
- * @param value The storage for the types to iterate.
- * @param excl The storage for the types used to filter the view.
- */
- basic_view(std::tuple<Get &...> value, std::tuple<Exclude &...> excl = {}) noexcept
- : basic_view{std::make_from_tuple<basic_view>(std::tuple_cat(value, excl))} {}
- /**
- * @brief Forces a view to use a given element to drive iterations
- * @tparam Type Type of element to use to drive iterations.
- */
- template<typename Type>
- void use() noexcept {
- use<index_of<Type>>();
- }
- /**
- * @brief Forces a view to use a given element to drive iterations
- * @tparam Index Index of the element to use to drive iterations.
- */
- template<std::size_t Index>
- void use() noexcept {
- base_type::use(Index);
- }
- /**
- * @brief Returns the storage for a given element type, if any.
- * @tparam Type Type of element of which to return the storage.
- * @return The storage for the given element type.
- */
- template<typename Type>
- [[nodiscard]] auto *storage() const noexcept {
- return storage<index_of<Type>>();
- }
- /**
- * @brief Returns the storage for a given index, if any.
- * @tparam Index Index of the storage to return.
- * @return The storage for the given index.
- */
- template<std::size_t Index>
- [[nodiscard]] auto *storage() const noexcept {
- using type = type_list_element_t<Index, type_list<Get..., Exclude...>>;
- if constexpr(Index < sizeof...(Get)) {
- return static_cast<type *>(const_cast<constness_as_t<common_type, type> *>(this->pools[Index]));
- } else {
- return static_cast<type *>(const_cast<constness_as_t<common_type, type> *>(this->filter[Index - sizeof...(Get)]));
- }
- }
- /**
- * @brief Assigns a storage to a view.
- * @tparam Type Type of storage to assign to the view.
- * @param elem A storage to assign to the view.
- */
- template<typename Type>
- void storage(Type &elem) noexcept {
- storage<index_of<typename Type::element_type>>(elem);
- }
- /**
- * @brief Assigns a storage to a view.
- * @tparam Index Index of the storage to assign to the view.
- * @tparam Type Type of storage to assign to the view.
- * @param elem A storage to assign to the view.
- */
- template<std::size_t Index, typename Type>
- void storage(Type &elem) noexcept {
- static_assert(std::is_convertible_v<Type &, type_list_element_t<Index, type_list<Get..., Exclude...>> &>, "Unexpected type");
- if constexpr(Index < sizeof...(Get)) {
- this->pools[Index] = &elem;
- base_type::refresh();
- } else {
- this->filter[Index - sizeof...(Get)] = &elem;
- }
- }
- /**
- * @brief Returns the elements assigned to the given entity.
- * @param entt A valid identifier.
- * @return The elements assigned to the given entity.
- */
- [[nodiscard]] decltype(auto) operator[](const entity_type entt) const {
- return get(entt);
- }
- /**
- * @brief Returns the elements assigned to the given entity.
- * @tparam Type Type of the element to get.
- * @tparam Other Other types of elements to get.
- * @param entt A valid identifier.
- * @return The elements assigned to the entity.
- */
- template<typename Type, typename... Other>
- [[nodiscard]] decltype(auto) get(const entity_type entt) const {
- return get<index_of<Type>, index_of<Other>...>(entt);
- }
- /**
- * @brief Returns the elements assigned to the given entity.
- * @tparam Index Indexes of the elements to get.
- * @param entt A valid identifier.
- * @return The elements assigned to the entity.
- */
- template<std::size_t... Index>
- [[nodiscard]] decltype(auto) get(const entity_type entt) const {
- if constexpr(sizeof...(Index) == 0) {
- return get(entt, std::index_sequence_for<Get...>{});
- } else if constexpr(sizeof...(Index) == 1) {
- return (storage<Index>()->get(entt), ...);
- } else {
- return std::tuple_cat(storage<Index>()->get_as_tuple(entt)...);
- }
- }
- /**
- * @brief Iterates entities and elements and applies the given function
- * object to them.
- *
- * The signature of the function must be equivalent to one of the following
- * (non-empty types only, constness as requested):
- *
- * @code{.cpp}
- * void(const entity_type, Type &...);
- * void(Type &...);
- * @endcode
- *
- * @tparam Func Type of the function object to invoke.
- * @param func A valid function object.
- */
- template<typename Func>
- void each(Func func) const {
- pick_and_each(func, std::index_sequence_for<Get...>{});
- }
- /**
- * @brief Returns an iterable object to use to _visit_ a view.
- *
- * The iterable object returns a tuple that contains the current entity and
- * a set of references to its non-empty elements. The _constness_ of the
- * elements is as requested.
- *
- * @return An iterable object to use to _visit_ the view.
- */
- [[nodiscard]] iterable each() const noexcept {
- return iterable{base_type::begin(), base_type::end()};
- }
- /**
- * @brief Combines two views in a _more specific_ one.
- * @tparam OGet Element list of the view to combine with.
- * @tparam OExclude Filter list of the view to combine with.
- * @param other The view to combine with.
- * @return A more specific view.
- */
- template<typename... OGet, typename... OExclude>
- [[nodiscard]] auto operator|(const basic_view<get_t<OGet...>, exclude_t<OExclude...>> &other) const noexcept {
- return internal::view_pack<basic_view<get_t<Get..., OGet...>, exclude_t<Exclude..., OExclude...>>>(
- *this, other, std::index_sequence_for<Get...>{}, std::index_sequence_for<Exclude...>{}, std::index_sequence_for<OGet...>{}, std::index_sequence_for<OExclude...>{});
- }
- };
- /**
- * @brief Basic storage view implementation.
- * @warning For internal use only, backward compatibility not guaranteed.
- * @tparam Type Common type among all storage types.
- */
- template<typename Type>
- class basic_storage_view {
- protected:
- /*! @cond TURN_OFF_DOXYGEN */
- basic_storage_view() noexcept = default;
- basic_storage_view(const Type *value) noexcept
- : leading{value} {}
- /*! @endcond */
- public:
- /*! @brief Common type among all storage types. */
- using common_type = Type;
- /*! @brief Underlying entity identifier. */
- using entity_type = typename common_type::entity_type;
- /*! @brief Unsigned integer type. */
- using size_type = std::size_t;
- /*! @brief Random access iterator type. */
- using iterator = typename common_type::iterator;
- /*! @brief Reverse iterator type. */
- using reverse_iterator = typename common_type::reverse_iterator;
- /**
- * @brief Returns the leading storage of a view, if any.
- * @return The leading storage of the view.
- */
- [[nodiscard]] const common_type *handle() const noexcept {
- return leading;
- }
- /**
- * @brief Returns the number of entities that have the given element.
- * @return Number of entities that have the given element.
- */
- [[nodiscard]] size_type size() const noexcept {
- return leading ? leading->size() : size_type{};
- }
- /**
- * @brief Checks whether a view is empty.
- * @return True if the view is empty, false otherwise.
- */
- [[nodiscard]] bool empty() const noexcept {
- return !leading || leading->empty();
- }
- /**
- * @brief Returns an iterator to the first entity of the view.
- *
- * If the view is empty, the returned iterator will be equal to `end()`.
- *
- * @return An iterator to the first entity of the view.
- */
- [[nodiscard]] iterator begin() const noexcept {
- return leading ? leading->begin() : iterator{};
- }
- /**
- * @brief Returns an iterator that is past the last entity of the view.
- * @return An iterator to the entity following the last entity of the view.
- */
- [[nodiscard]] iterator end() const noexcept {
- return leading ? leading->end() : iterator{};
- }
- /**
- * @brief Returns an iterator to the first entity of the reversed view.
- *
- * If the view is empty, the returned iterator will be equal to `rend()`.
- *
- * @return An iterator to the first entity of the reversed view.
- */
- [[nodiscard]] reverse_iterator rbegin() const noexcept {
- return leading ? leading->rbegin() : reverse_iterator{};
- }
- /**
- * @brief Returns an iterator that is past the last entity of the reversed
- * view.
- * @return An iterator to the entity following the last entity of the
- * reversed view.
- */
- [[nodiscard]] reverse_iterator rend() const noexcept {
- return leading ? leading->rend() : reverse_iterator{};
- }
- /**
- * @brief Returns the first entity of the view, if any.
- * @return The first entity of the view if one exists, the null entity
- * otherwise.
- */
- [[nodiscard]] entity_type front() const noexcept {
- return empty() ? null : *leading->begin();
- }
- /**
- * @brief Returns the last entity of the view, if any.
- * @return The last entity of the view if one exists, the null entity
- * otherwise.
- */
- [[nodiscard]] entity_type back() const noexcept {
- return empty() ? null : *leading->rbegin();
- }
- /**
- * @brief Finds an entity.
- * @param entt A valid 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 noexcept {
- return leading ? leading->find(entt) : iterator{};
- }
- /**
- * @brief Checks if a view is fully initialized.
- * @return True if the view is fully initialized, false otherwise.
- */
- [[nodiscard]] explicit operator bool() const noexcept {
- return (leading != nullptr);
- }
- /**
- * @brief Checks if a view contains an entity.
- * @param entt A valid identifier.
- * @return True if the view contains the given entity, false otherwise.
- */
- [[nodiscard]] bool contains(const entity_type entt) const noexcept {
- return leading && leading->contains(entt);
- }
- private:
- const common_type *leading{};
- };
- /**
- * @brief Storage view specialization.
- *
- * This specialization offers a boost in terms of performance. It can access the
- * underlying data structure directly and avoid superfluous checks.
- *
- * @sa basic_view
- *
- * @tparam Get Type of storage iterated by the view.
- */
- template<typename Get>
- class basic_view<get_t<Get>, exclude_t<>, std::void_t<std::enable_if_t<!component_traits<typename Get::value_type>::in_place_delete>>>: public basic_storage_view<typename Get::base_type> {
- using base_type = basic_storage_view<typename Get::base_type>;
- public:
- /*! @brief Common type among all storage types. */
- using common_type = typename base_type::common_type;
- /*! @brief Underlying entity identifier. */
- using entity_type = typename base_type::entity_type;
- /*! @brief Unsigned integer type. */
- using size_type = typename base_type::size_type;
- /*! @brief Random access iterator type. */
- using iterator = typename base_type::iterator;
- /*! @brief Reverse iterator type. */
- using reverse_iterator = typename base_type::reverse_iterator;
- /*! @brief Iterable view type. */
- using iterable = decltype(std::declval<Get>().each());
- /*! @brief Default constructor to use to create empty, invalid views. */
- basic_view() noexcept
- : base_type{} {}
- /**
- * @brief Constructs a view from a storage class.
- * @param value The storage for the type to iterate.
- */
- basic_view(Get &value) noexcept
- : base_type{&value} {
- }
- /**
- * @brief Constructs a view from a storage class.
- * @param value The storage for the type to iterate.
- */
- basic_view(std::tuple<Get &> value, std::tuple<> = {}) noexcept
- : basic_view{std::get<0>(value)} {}
- /**
- * @brief Returns the storage for a given element type, if any.
- * @tparam Type Type of element of which to return the storage.
- * @return The storage for the given element type.
- */
- template<typename Type = typename Get::element_type>
- [[nodiscard]] auto *storage() const noexcept {
- static_assert(std::is_same_v<std::remove_const_t<Type>, typename Get::element_type>, "Invalid element type");
- return storage<0>();
- }
- /**
- * @brief Returns the storage for a given index, if any.
- * @tparam Index Index of the storage to return.
- * @return The storage for the given index.
- */
- template<std::size_t Index>
- [[nodiscard]] auto *storage() const noexcept {
- static_assert(Index == 0u, "Index out of bounds");
- return static_cast<Get *>(const_cast<constness_as_t<common_type, Get> *>(this->handle()));
- }
- /**
- * @brief Assigns a storage to a view.
- * @param elem A storage to assign to the view.
- */
- void storage(Get &elem) noexcept {
- storage<0>(elem);
- }
- /**
- * @brief Assigns a storage to a view.
- * @tparam Index Index of the storage to assign to the view.
- * @param elem A storage to assign to the view.
- */
- template<std::size_t Index>
- void storage(Get &elem) noexcept {
- static_assert(Index == 0u, "Index out of bounds");
- *this = basic_view{elem};
- }
- /**
- * @brief Returns a pointer to the underlying storage.
- * @return A pointer to the underlying storage.
- */
- [[nodiscard]] Get *operator->() const noexcept {
- return storage();
- }
- /**
- * @brief Returns the element assigned to the given entity.
- * @param entt A valid identifier.
- * @return The element assigned to the given entity.
- */
- [[nodiscard]] decltype(auto) operator[](const entity_type entt) const {
- return storage()->get(entt);
- }
- /**
- * @brief Returns the element assigned to the given entity.
- * @tparam Elem Type of the element to get.
- * @param entt A valid identifier.
- * @return The element assigned to the entity.
- */
- template<typename Elem>
- [[nodiscard]] decltype(auto) get(const entity_type entt) const {
- static_assert(std::is_same_v<std::remove_const_t<Elem>, typename Get::element_type>, "Invalid element type");
- return get<0>(entt);
- }
- /**
- * @brief Returns the element assigned to the given entity.
- * @tparam Index Index of the element to get.
- * @param entt A valid identifier.
- * @return The element assigned to the entity.
- */
- template<std::size_t... Index>
- [[nodiscard]] decltype(auto) get(const entity_type entt) const {
- if constexpr(sizeof...(Index) == 0) {
- return storage()->get_as_tuple(entt);
- } else {
- return storage<Index...>()->get(entt);
- }
- }
- /**
- * @brief Iterates entities and elements and applies the given function
- * object to them.
- *
- * The signature of the function must be equivalent to one of the following
- * (non-empty types only, constness as requested):
- *
- * @code{.cpp}
- * void(const entity_type, Type &);
- * void(typename Type &);
- * @endcode
- *
- * @tparam Func Type of the function object to invoke.
- * @param func A valid function object.
- */
- template<typename Func>
- void each(Func func) const {
- if(auto *elem = storage(); elem) {
- if constexpr(is_applicable_v<Func, decltype(*elem->each().begin())>) {
- for(const auto pack: elem->each()) {
- std::apply(func, pack);
- }
- } else if constexpr(std::is_invocable_v<Func, decltype(*elem->begin())>) {
- for(auto &&curr: *elem) {
- func(curr);
- }
- } else {
- for(size_type pos = elem->size(); pos; --pos) {
- func();
- }
- }
- }
- }
- /**
- * @brief Returns an iterable object to use to _visit_ a view.
- *
- * The iterable object returns a tuple that contains the current entity and
- * a reference to its element if it's a non-empty one. The _constness_ of
- * the element is as requested.
- *
- * @return An iterable object to use to _visit_ the view.
- */
- [[nodiscard]] iterable each() const noexcept {
- auto *elem = storage();
- return elem ? elem->each() : iterable{};
- }
- /**
- * @brief Combines two views in a _more specific_ one.
- * @tparam OGet Element list of the view to combine with.
- * @tparam OExclude Filter list of the view to combine with.
- * @param other The view to combine with.
- * @return A more specific view.
- */
- template<typename... OGet, typename... OExclude>
- [[nodiscard]] auto operator|(const basic_view<get_t<OGet...>, exclude_t<OExclude...>> &other) const noexcept {
- return internal::view_pack<basic_view<get_t<Get, OGet...>, exclude_t<OExclude...>>>(
- *this, other, std::index_sequence_for<Get>{}, std::index_sequence_for<>{}, std::index_sequence_for<OGet...>{}, std::index_sequence_for<OExclude...>{});
- }
- };
- /**
- * @brief Deduction guide.
- * @tparam Type Type of storage classes used to create the view.
- * @param storage The storage for the types to iterate.
- */
- template<typename... Type>
- basic_view(Type &...storage) -> basic_view<get_t<Type...>, exclude_t<>>;
- /**
- * @brief Deduction guide.
- * @tparam Get Types of elements iterated by the view.
- * @tparam Exclude Types of elements used to filter the view.
- */
- template<typename... Get, typename... Exclude>
- basic_view(std::tuple<Get &...>, std::tuple<Exclude &...> = {}) -> basic_view<get_t<Get...>, exclude_t<Exclude...>>;
- } // namespace entt
- #endif
|