TODO 1.3 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. * storage swap on views and empty views (once the static storage in the registry is removed)
  10. TODO (high prio):
  11. * check natvis files (periodically :)
  12. * remove the static storage from the const assure in the registry
  13. * doc: exclude only views, bump entities, signals on entity creation/destruction
  14. * registry: replace destroy with a drop-all method that doesn't care about validity
  15. * resource cache: avoid using shared ptr with loader and the others
  16. WIP:
  17. * get rid of observers, storage based views made them pointless - document alternatives
  18. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  19. * basic_storage::bind for cross-registry setups (see and remove todo from entity_copy.cpp)
  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