TODO 2.0 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. * review all NOLINT
  12. * bring nested groups back in place (see bd34e7f)
  13. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  14. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  15. * self contained entity traits to avoid explicit specializations (ie enum constants)
  16. * auto type info data from types if present
  17. * storage entity: fast range-push from above
  18. * table: pop back to support swap and pop, single column access, empty type optimization
  19. * review cmake warning about FetchContent_Populate (need .28 and EXCLUDE_FROM_ALL for FetchContent)
  20. * suppress -Wself-move on CI with g++13
  21. * runtime types support for meta for types that aren't backed by C++ types
  22. * built-in no-pagination storage - no_pagination page size as limits::max
  23. * any cdynamic to support const ownership construction
  24. * allow passing arguments to meta setter/getter (we can fallback on meta invoke probably)
  25. * FetchContent_Populate -> FetchContent_MakeAvailable warnings
  26. * doc: IMPLICIT_DIR_DOCS for dir docs or \dir
  27. * meta non-const allow_cast overloads: (const int &) to (int &) is not allowed, but (const int &) to (double &) is allowed (support only for convertibles)
  28. * review build process for testbed (i.e. tests first due to SDL)
  29. * use unique_ptr or any for meta_custom_node
  30. * paged vector as a standalone class
  31. * resource: shared_from_this?
  32. * finish the imgui viewer/editor!
  33. * archetype-like a-là EnTT support (see my own notes)
  34. * meta: conversion_helper machinery has lot of room for improvements
  35. * organizer: view/storage only based model, no registry