TODO 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. * debugging tools (#60): the issue online already contains interesting tips on this, look at it
  2. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  3. EXAMPLES
  4. * filter on runtime values/variables (not only types)
  5. * support to polymorphic types (see #859)
  6. DOC:
  7. * storage<void>
  8. * custom storage/view
  9. * examples (and credits) from @alanjfs :)
  10. * document iterator.hpp (see core.md)
  11. * update entity doc when the storage based model is in place
  12. WIP:
  13. * sparse set/storage support for move-only types, internal rework required
  14. * get rid of observers, storage based views made them pointless - document alternatives
  15. * dense_map/set and registry: move ctor/op should be noexcept (op is conditionally noexcept though)
  16. * add storage getter for filters to views and groups
  17. * exploit the tombstone mechanism to allow enabling/disabling entities (see bump, compact and clear for further details)
  18. * emitter: runtime handlers, allocator support (ready for both already)
  19. * basic_storage::bind for cross-registry setups (see and remove todo from entity_copy.cpp)
  20. * uses-allocator construction: any (with allocator support), poly, ...
  21. * process scheduler: reviews, use free lists internally
  22. * iterator based try_emplace vs try_insert for perf reasons
  23. * dedicated entity storage, in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  24. * entity-only and exclude-only views (both solved with entity storage and storage<void>)
  25. * custom allocators all over (registry, ...)
  26. * add test for maximum number of entities reached
  27. * add user data to type_info
  28. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views