TODO 1.5 KB

12345678910111213141516171819202122232425262728293031
  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. * examples (and credits) from @alanjfs :)
  7. * update entity doc when the storage based model is in place
  8. * in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  9. TODO (high prio):
  10. * check natvis files (periodically :)
  11. * resource cache: avoid using shared ptr with loader and the others
  12. * further optimize exclusion lists in multi type views (no existence check)
  13. * doc: bump entities
  14. * deprecate/drop snapshot orphans function, make it a general purpose one
  15. * view with entity storage: begin/end should return filtered iterators
  16. * update view doc: single vs multi type views are no longer a thing actually
  17. * meta container: add value type to resize
  18. * review allow_cast and can_convert, we can merge them in a single function probably
  19. * ===> TEST: review view tests after the last changes
  20. WIP:
  21. * get rid of observers, storage based views made them pointless - document alternatives
  22. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  23. * process scheduler: reviews, use free lists internally
  24. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  25. * bring nested groups back in place (see bd34e7f)
  26. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  27. * review/refine ENTT_ASSERT_CONSTEXPR usage
  28. * bump: tombstone aware and return version