🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.4 KiB

  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. * basic_storage::bind for cross-registry setups
  10. * uses-allocator construction: any (with allocator support), poly, ...
  11. * process scheduler: reviews, use free lists internally
  12. * iterator based try_emplace vs try_insert for perf reasons
  13. * dedicated entity storage, in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  14. * entity-only and exclude-only views
  15. * custom allocators all over (sigh storage mixin, registry, ...)
  16. * consider removing ENTT_NOEXCEPT, use ENTT_NOEXCEPT_IF (or noexcept(...)) as appropriate in any case (ie make compressed_pair conditionally noexcept)
  17. * add test for maximum number of entities reached
  18. WIP:
  19. * add user data to type_info
  20. * write documentation for custom storages and views!!
  21. * make runtime views use opaque storage and therefore return also elements.
  22. * entity-aware observer, add observer functions aside observer class
  23. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views