1
0

TODO 1.7 KB

123456789101112131415161718192021222324252627282930313233
  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. * update entity doc when the storage based model is in place
  7. * in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  8. * view: single vs multi type views are no longer a thing actually
  9. * bump entities, reserved bits on identifiers
  10. TODO:
  11. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  12. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  13. * self contained entity traits to avoid explicit specializations (ie enum constants)
  14. * auto type info data from types if present
  15. * storage entity: fast range-push from above
  16. * suppress -Wself-move on CI with g++13
  17. * built-in no-pagination storage - no_pagination page size as limits::max
  18. * any cdynamic to support const ownership construction
  19. * allow passing arguments to meta setter/getter (we can fallback on meta invoke probably)
  20. * meta non-const allow_cast overloads: (const int &) to (int &) is not allowed, but (const int &) to (double &) is allowed (support only for convertibles)
  21. * review build process for testbed (i.e. tests first due to SDL)
  22. * use unique_ptr or any for meta_custom_node
  23. * paged vector as a standalone class
  24. * resource: shared_from_this?
  25. * archetype-like a-là EnTT support (see my own notes)
  26. * organizer: view/storage only based model, no registry
  27. * redesign snapshot as a whole
  28. * explore "runtime" mode for hashed string where the source is copied internally
  29. * storage: shrink_to_fit does not work with reentrant destructor?
  30. * test trivially_destructible optimization
  31. * finish the imgui viewer/editor!