TODO 1.3 KB

1234567891011121314151617181920212223242526
  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. * auto type info data from types if present
  14. * built-in no-pagination storage - no_pagination page size as limits::max
  15. * any cdynamic to support const ownership construction
  16. * meta non-const allow_cast overloads: (const int &) to (int &) is not allowed, but (const int &) to (double &) is allowed (support only for convertibles)
  17. * paged vector as a standalone class
  18. * resource: shared_from_this?
  19. * archetype-like a-là EnTT support (see my own notes)
  20. * organizer: view/storage only based model, no registry
  21. * explore "runtime" mode for hashed string where the source is copied internally
  22. * storage: shrink_to_fit does not work with reentrant destructor?
  23. * finish the imgui viewer/editor!
  24. * entity io