TODO 1.4 KB

123456789101112131415161718192021222324252627
  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. * doc: exclude only views, bump entities, signals on entity creation/destruction
  12. * registry: replace destroy with a drop-all method that doesn't care about validity
  13. * resource cache: avoid using shared ptr with loader and the others
  14. * rework view tests with typed tests and whatnot
  15. * further optimize exclusion lists in multi type views (no existence check)
  16. * further improve the snapshot stuff, ie component functions
  17. * do not include entity storage in the storage list (37f396bfe385d78b3ff67605e261ec20f16acb76)
  18. WIP:
  19. * get rid of observers, storage based views made them pointless - document alternatives
  20. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  21. * process scheduler: reviews, use free lists internally
  22. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  23. * bring nested groups back in place (see bd34e7f)
  24. * work stealing job system (see #100) + mt scheduler based on const awareness for types