TODO 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. EXAMPLES
  2. * filter on runtime values/variables (not only types)
  3. * support to polymorphic types (see #859)
  4. DOC:
  5. * custom storage/view
  6. * update entity doc when the storage based model is in place
  7. * in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  8. * view: single vs multi type views are no longer a thing actually
  9. * bump entities, reserved bits on identifiers
  10. TODO:
  11. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  12. * bring nested groups back in place (see bd34e7f)
  13. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  14. * view: reduce inst due to/improve perf with index-based approach in dispatch_get/pick_and_each/each (single type too, define storage ::at and ::at_as_tuple)
  15. * view: update natvis as needed after the last rework, merge pools/filter in the same array, drop check (?) and turn view into a position
  16. * view: type-only view_iterator (dyn get/excl sizes), type-only basic_common_view (dyn get/excl sizes with pointer to array from derived)
  17. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  18. * self contained entity traits to avoid explicit specializations (ie enum constants)
  19. * auto type info data from types if present
  20. * test: push sharing types further
  21. * after non-continuous generation for entity storage:
  22. - get/reset placeholder to position after saving/loading (avoid long lookup)
  23. - allow skipping/reserving entity identifiers
  24. - documentation for reserved entities
  25. * storage entity: no emplace/insert, rename and add a fast range-push from above
  26. * view: propagate tombstone check request to iterator
  27. * table: pop back to support swap and pop, single column access, empty type optimization
  28. * checkout tools workflow
  29. * improve front (no multiple checks) and back (ie no contains) for multi-type view
  30. * cleanup common view from tricks to handle single swap-only and in-place, if constexpr branches
  31. * entity based component_traits
  32. * review cmake warning about FetchContent_Populate (need .28 and EXCLUDE_FROM_ALL for FetchContent)
  33. * after removing meta prop vectors, copy meta objects in their handles directly
  34. * suppress -Wself-move on CI with g++13
  35. * view and view iterator specializations for multi, single and filtered elements
  36. * organizer support to groups
  37. * meta range: move id to meta objects and return plain types (?), then remove id from meta base and meta ctor too
  38. * refine the storage fallback mechanism for views (ie alloc?)
  39. * sigh_mixin: automatic signal registration
  40. * sigh_mixin: change cb signature from reg/entt to storage/entt (breaking for the good)
  41. * don't pass reactive storage by default to callback
  42. * runtime types support for meta for types that aren't backed by C++ types