TODO 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. * further optimize exclusion lists in multi type views (no existence check)
  12. * further improve meta resolve function by id (bimap)
  13. * get rid of observers, storage based views made them pointless - document alternatives
  14. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  15. * bring nested groups back in place (see bd34e7f)
  16. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  17. * 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)
  18. * view: update natvis as needed after the last rework, merge pools/filter in the same array, drop check (?) and turn view into a position
  19. * view: type-only view_iterator (dyn get/excl sizes), type-only basic_common_view (dyn get/excl sizes with pointer to array from derived)
  20. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  21. * review all // NOLINT
  22. * self contained entity traits to avoid explicit specializations (ie enum constants)
  23. * auto type info data from types if present
  24. * test: push sharing types further
  25. * after non-continuous generation for entity storage:
  26. - get/reset placeholder to position after saving/loading (avoid long lookup)
  27. - allow skipping/reserving entity identifiers
  28. - documentation for reserved entities
  29. * storage entity: no emplace/insert, rename and add a fast range-push from above
  30. * view: propagate tombostone check request to iterator
  31. * review the short-circuit model now that all storage are freely available
  32. * more test around views and storage entity - ie view ::back
  33. * table: pop back to support swap and pop, single column access, empty type optimization
  34. * checkout tools workflow
  35. * meta: avoid unnecessary copies of iterators with meta containers
  36. * review constrained noexcept-ness (ie sigh)
  37. * offer 16b from meta_traits to users or change type