1
0

TODO 1.2 KB

1234567891011121314151617181920212223242526
  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. * further improve the snapshot stuff, ie component functions
  14. * use fixture for storage tests to reduce loc number and duplication as much as possible
  15. * basic_view<...>::reach(...)
  16. * doc: bump entities
  17. WIP:
  18. * get rid of observers, storage based views made them pointless - document alternatives
  19. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  20. * process scheduler: reviews, use free lists internally
  21. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  22. * bring nested groups back in place (see bd34e7f)
  23. * work stealing job system (see #100) + mt scheduler based on const awareness for types