TODO 1.6 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. * update view doc: single vs multi type views are no longer a thing actually
  15. * further improve meta resolve function by id (bimap)
  16. * storage-based invoke helpers (update sigh mixin to also support storage based cbs)
  17. * make nth_argument use function types rather than pointers
  18. * use fixed_size_sequence_container_v to skip calls in meta.hpp, make funcs ret type void
  19. * review storage entity value_type and type passed to sparse set
  20. * storage entity tests for sort and sort_as (instead of pack)
  21. * ===> TEST: view (scoped begin) tests after the last changes
  22. WIP:
  23. * get rid of observers, storage based views made them pointless - document alternatives
  24. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  25. * process scheduler: reviews, use free lists internally
  26. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  27. * bring nested groups back in place (see bd34e7f)
  28. * work stealing job system (see #100) + mt scheduler based on const awareness for types