Michele Caini
3c4d13d8b9
sparse_set/view:
...
* added basic_sparse_set<E>::current to return known version of identifiers in set
* sparse arrays also contain updated entity versions, no more unused bits
* basic_sparse_set<E>::contains performs a strict version check
* sparse sets manage correctly foreign entities in all cases now
* no tombstone checks for multi-type views, zero-cost pointer stability model
2021-08-16 17:07:52 +02:00
Michele Caini
ab24a50de7
doc: fixed typo
2021-07-27 18:56:16 +02:00
Michele Caini
99198fb07f
doc: added a note about the no-policy trick
2021-07-27 18:56:08 +02:00
Michele Caini
3df6b05c00
doc: fixed typo ( close #742 )
2021-07-26 09:17:11 +02:00
Michele Caini
2d5a3f24aa
doc: updated documentation
2021-07-21 00:07:02 +02:00
Michele Caini
c6bf82664c
doc: added a note about optimized range-destroy
2021-06-28 11:20:40 +02:00
Michele Caini
1f8c896181
registry:
...
* deprecated ::destroyed (use ::released instead)
* added ::release overloads (aka force-destroy)
2021-06-24 10:51:03 +02:00
Michele Caini
538425e35c
doc: in-place delete and pointer stability
2021-06-22 09:53:56 +02:00
Michele Caini
88b58cf23d
doc: added a note about tombstones
2021-06-03 09:06:36 +02:00
Michele Caini
3e7dc7af29
entity:
...
* review of entt_traits design
* added static constexpr member function entt_traits::to_integral
* added static constexpr member function entt_traits::to_entity
* added static constexpr member function entt_traits::to_version
* added static constexpr member function entt_traits::to_type
* custom class identifiers must expose member type entity_field
* it's no longer required to specialize entt_traits (breaking change)
2021-05-28 08:59:50 +02:00
Michele Caini
b062bbf58d
storage/view/group: reintroduce (opaque) ::raw functions as it ought to be
2021-05-17 11:59:51 +02:00
Michele Caini
6194e12616
entity:
...
* allocator support for sparse set and storage
* pointer stability when assigning components
* removed ::raw functions (registry, view, group)
* to_entity returns null for invalid components
2021-05-14 15:12:16 +02:00
Michele Caini
daf72a7c61
entity: registry ::remove/::erase entity/range and safe/unsafe versions ( close #486 )
2021-05-04 11:36:02 +02:00
Michele Caini
b5617398ad
doc: fixed typo
2021-04-06 16:47:20 +02:00
Michele Caini
5a4b067cee
view:
...
* removed view_pack and its tests
* added the possibility of combining different views
* updated documentation
2021-03-17 14:57:51 +01:00
Michele Caini
a0b431e8c4
doc: context aliased properties
2021-03-08 09:01:13 +01:00
Michele Caini
c3f7f83c55
registry/view ( close #660 ):
...
* const registry::view is no longer thread safe
* views are always valid when created from a registry, either const or not
* added a note to the doc about const registry and multithreading
2021-02-23 17:01:38 +01:00
Michele Caini
3ebe827b51
doc: minor changes
2021-02-05 11:10:04 +01:00
Michele Caini
0ff5c18743
registry: rename ::any to ::any_of
2021-02-04 09:45:11 +01:00
Michele Caini
240814cc85
registry: rename ::has to ::all_of
2021-02-04 09:36:28 +01:00
Michele Caini
f0d7408f94
doc: minor changes
2020-12-13 23:52:16 +01:00
Keith Rosenberg
7154678347
doc: mention aggregate initialization usage in registry::emplace, refs #592 ( #593 )
...
* update example to explain aggregate initialization usage, refs #592
* cleanup example; add details about parameterized constructors and aggregate initialization
Co-authored-by: kthrose <kthrose@netpoetica.com >
2020-12-13 23:29:01 +01:00
Michele Caini
5f539ddfb7
doc: updated documentation (core, entity, poly)
2020-12-12 15:13:46 +01:00
Michele Caini
35bce924f8
handle: added support for destroy ( close #598 )
2020-12-03 12:17:49 +01:00
Michele Caini
37ba7316e0
doc: fixed typo
2020-12-02 11:09:51 +01:00
Michele Caini
60475d3354
view/group: safe invalid views/groups ( close #470 )
2020-12-02 11:09:51 +01:00
Zoltán Kurucz
14e051f970
Fixed const, non-const types section intro in entity.md ( #589 )
2020-11-14 16:49:11 +01:00
Michele Caini
503791d3c0
view: removed chunked iteration, no real benefits so far and there is no way to make it consistent across all views in future
2020-11-05 15:10:23 +01:00
Michele Caini
09da190e93
entity/*: rollback erase -> remove (no longer a breaking change :)
2020-10-28 16:24:44 +01:00
Michele Caini
5e1d77fcd5
doc: updated documentation for registry remove/erase
2020-10-28 13:03:15 +01:00
Michele Caini
dbbb131424
view_pack: added more functionalities
2020-10-26 12:38:45 +01:00
Michele Caini
9a574aa00c
doc: more on view_pack
2020-10-17 18:11:09 +02:00
Michele Caini
9983faef70
view/group: consistent ::get without template arguments (breaking changes)
2020-10-16 16:15:04 +02:00
Michele Caini
559ee931fb
view/group: proxy() -> each() (breaking changes - I know, I shouldn't have changed it before)
2020-10-15 10:06:00 +02:00
Michele Caini
2d11bdc736
doc: minor changes
2020-10-14 16:47:39 +02:00
Michele Caini
9e69f62a39
doc: updated doc for multi component views
2020-10-14 16:08:09 +02:00
Michele Caini
dec0f28a2b
organizer: added new type to entt/entity
2020-10-02 10:41:56 +02:00
Michele Caini
de7d79f1f4
doc: added a reference to ENTT_USE_ATOMIC where it matters ( close #562 )
2020-10-02 10:10:55 +02:00
Michele Caini
3721a1f90b
handle: fixed an issue with the comparison operators + minor changes
2020-09-29 08:47:14 +02:00
Vennor
897850c3eb
Truly invalid entt::handle ( #551 )
2020-09-28 22:45:40 +02:00
Michele Caini
5ac76d29fc
doc: minor changes
2020-09-24 08:44:41 +02:00
Michele Caini
ecc3c56cb1
doc: removed all references to old type_info class template
2020-09-24 08:25:49 +02:00
Michele Caini
cf395f707a
doc: minor changes
2020-09-24 00:13:58 +02:00
Michele Caini
826d7b7c26
registry: reintroduce old function type for signals, the registry is now provided to listeners
2020-09-23 23:02:49 +02:00
Michele Caini
2d69e5f6ff
doc: updated documentation about signals from a registry
2020-09-22 08:07:14 +02:00
Michele Caini
be38919758
doc: removed references to entt::component ( close #557 )
2020-09-22 08:03:44 +02:00
Michele Caini
7f923bb389
doc: added more details about observers ( close #536 )
2020-08-10 10:04:12 +02:00
Michele Caini
7ab7ebb3f6
doc: added a note about in-place sorting
2020-08-10 10:04:12 +02:00
Michele Caini
4eacb58a3e
doc: minor changes
2020-08-10 10:04:12 +02:00
Michele Caini
24248832d1
group/view: explicit proxy object
2020-08-10 10:04:11 +02:00