TODO 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. * bring nested groups back in place (see bd34e7f)
  12. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  13. * view: reduce inst due to/improve perf with index-based approach in dispatch_get/pick_and_each/each (single type too, define storage ::at and ::at_as_tuple)
  14. * view: update natvis as needed after the last rework, merge pools/filter in the same array, drop check (?) and turn view into a position
  15. * view: type-only view_iterator (dyn get/excl sizes), type-only basic_common_view (dyn get/excl sizes with pointer to array from derived)
  16. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  17. * self contained entity traits to avoid explicit specializations (ie enum constants)
  18. * auto type info data from types if present
  19. * test: push sharing types further
  20. * after non-continuous generation for entity storage:
  21. - get/reset placeholder to position after saving/loading (avoid long lookup)
  22. - allow skipping/reserving entity identifiers
  23. - documentation for reserved entities
  24. * storage entity: fast range-push from above
  25. * table: pop back to support swap and pop, single column access, empty type optimization
  26. * checkout tools workflow
  27. * entity based component_traits
  28. * review cmake warning about FetchContent_Populate (need .28 and EXCLUDE_FROM_ALL for FetchContent)
  29. * suppress -Wself-move on CI with g++13
  30. * view specializations for multi, single and filtered elements
  31. * organizer support to groups
  32. * meta range: move id to meta objects and return plain types (?), then remove id from meta base and meta ctor too
  33. * don't pass reactive storage by default to callback
  34. * runtime types support for meta for types that aren't backed by C++ types
  35. * built-in no-pagination storage - no_pagination page size as limits::max
  36. * any cdynamic to support const ownership construction
  37. * allow passing arguments to meta setter/getter (we can fallback on meta invoke for everything probably)
  38. * delegate/sigh: forward connect/disconnect from & to *
  39. * a few more tests on the improved shrink_to_fit for sparse arrays
  40. * sparse_set/storage/...: difference_type (?)
  41. * -Wextra