TODO 1.2 KB

12345678910111213141516171819202122232425
  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. * remove the static storage from the const assure in the registry
  12. * doc: exclude only views, bump entities, signals on entity creation/destruction
  13. * registry: replace destroy with a drop-all method that doesn't care about validity
  14. * resource cache: avoid using shared ptr with loader and the others
  15. WIP:
  16. * get rid of observers, storage based views made them pointless - document alternatives
  17. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  18. * basic_storage::bind for cross-registry setups (see and remove todo from entity_copy.cpp)
  19. * process scheduler: reviews, use free lists internally
  20. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  21. * bring nested groups back in place (see bd34e7f)
  22. * work stealing job system (see #100) + mt scheduler based on const awareness for types