TODO 2.0 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. * 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. * suppress -Wself-move on CI with g++13
  20. * runtime types support for meta for types that aren't backed by C++ types
  21. * built-in no-pagination storage - no_pagination page size as limits::max
  22. * any cdynamic to support const ownership construction
  23. * allow passing arguments to meta setter/getter (we can fallback on meta invoke probably)
  24. * meta non-const allow_cast overloads: (const int &) to (int &) is not allowed, but (const int &) to (double &) is allowed (support only for convertibles)
  25. * review build process for testbed (i.e. tests first due to SDL)
  26. * use unique_ptr or any for meta_custom_node
  27. * paged vector as a standalone class
  28. * resource: shared_from_this?
  29. * finish the imgui viewer/editor!
  30. * archetype-like a-là EnTT support (see my own notes)
  31. * meta: conversion_helper machinery has lot of room for improvements
  32. * organizer: view/storage only based model, no registry
  33. * introduce a way to inject stl from outside too
  34. * redesign snapshot as a whole
  35. * explore "runtime" mode for hashed string where the source is copied internally
  36. * storage: shrink_to_fit does not work with reentrant destructor?
  37. * test trivially_destructible optimization