TODO 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. * resource cache: avoid using shared ptr with loader and the others
  12. * further optimize exclusion lists in multi type views (no existence check)
  13. * further improve meta resolve function by id (bimap)
  14. * get rid of observers, storage based views made them pointless - document alternatives
  15. * deprecate non-owning groups in favor of owning views and view packs, introduce lazy owning views
  16. * bring nested groups back in place (see bd34e7f)
  17. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  18. * 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)
  19. * view: update natvis as needed after the last rework, merge pools/filter in the same array, drop check (?) and turn view into a position
  20. * view: type-only view_iterator (dyn get/excl sizes), type-only basic_common_view (dyn get/excl sizes with pointer to array from derived)
  21. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  22. * maybe drop begin(v)/end(v) from sparse set and only use scoped begin/end at call sites
  23. * review all // NOLINT + linter workflow + review clang-tidy file
  24. * self contained entity traits to avoid explicit specializations (ie enum constants)
  25. * allow zero-sized versions with non-regression tests (almost done: full-mask identifier not allowed yet, tests still needed)
  26. * auto type info data from types if present
  27. * group review: use handler as base with protected members and arrays of common type (see view for further details)
  28. * swap sets in swap-only mode, return scoped iterators by default, make ::free_list return an iterator if possible
  29. * test: push sharing types further
  30. * range sparse_set::push should return a reverse iterator, it's kinda wrong now
  31. * after non-continuous generation for entity storage:
  32. - get/reset placeholder to position after saving/loading (avoid long lookup)
  33. - documentation for reserved entities
  34. * no-version entities always return true when compared to tombstones (fixed but test needed)
  35. * storage entity: no emplace/insert, rename and add a fast range-push from above