TODO 1.3 KB

123456789101112131415161718192021222324252627
  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. * add examples (and credits) from @alanjfs :)
  4. EXAMPLES
  5. * filter on runtime values/variables (not only types)
  6. * support to polymorphic types (see #859)
  7. WIP:
  8. * view/group: no storage_traits dependency -> use storage instead of components for the definition
  9. * resource<T>::operator</<=/>/>=
  10. * simplify emitter (see uvw), runtime events
  11. * basic_storage::bind for cross-registry setups
  12. * uses-allocator construction: any (with allocator support), poly, ...
  13. * process scheduler: reviews, use free lists internally
  14. * iterator based try_emplace vs try_insert for perf reasons
  15. * dedicated entity storage, in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  16. * entity-only and exclude-only views
  17. * custom allocators all over
  18. * use ENTT_NOEXCEPT_IF as appropriate (ie make compressed_pair conditionally noexcept)
  19. WIP:
  20. * add user data to type_info
  21. * write documentation for custom storages and views!!
  22. * make runtime views use opaque storage and therefore return also elements.
  23. * entity-aware observer, add observer functions aside observer class
  24. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views