39 lines
2.1 KiB
Plaintext
39 lines
2.1 KiB
Plaintext
EXAMPLES
|
|
* filter on runtime values/variables (not only types)
|
|
* support to polymorphic types (see #859)
|
|
|
|
DOC:
|
|
* custom storage/view
|
|
* update entity doc when the storage based model is in place
|
|
* in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
|
|
* view: single vs multi type views are no longer a thing actually
|
|
* bump entities, reserved bits on identifiers
|
|
|
|
TODO:
|
|
* review all NOLINT
|
|
* bring nested groups back in place (see bd34e7f)
|
|
* work stealing job system (see #100) + mt scheduler based on const awareness for types
|
|
* combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
|
|
* self contained entity traits to avoid explicit specializations (ie enum constants)
|
|
* auto type info data from types if present
|
|
* storage entity: fast range-push from above
|
|
* table: pop back to support swap and pop, single column access, empty type optimization
|
|
* review cmake warning about FetchContent_Populate (need .28 and EXCLUDE_FROM_ALL for FetchContent)
|
|
* suppress -Wself-move on CI with g++13
|
|
* runtime types support for meta for types that aren't backed by C++ types
|
|
* built-in no-pagination storage - no_pagination page size as limits::max
|
|
* any cdynamic to support const ownership construction
|
|
* allow passing arguments to meta setter/getter (we can fallback on meta invoke probably)
|
|
* FetchContent_Populate -> FetchContent_MakeAvailable warnings
|
|
* doc: IMPLICIT_DIR_DOCS for dir docs or \dir
|
|
* meta non-const allow_cast overloads: (const int &) to (int &) is not allowed, but (const int &) to (double &) is allowed (support only for convertibles)
|
|
* review build process for testbed (i.e. tests first due to SDL)
|
|
* use any for meta_custom_node
|
|
* avoid copying meta_type nodes, and use unique_ptr for meta_custom
|
|
* paged vector as a standalone class
|
|
* resource: shared_from_this?
|
|
* change meta_any::base name, it's confusing due to meta_base_node and base types in meta
|
|
* parent link in data and func meta objects
|
|
* remove operator-> from meta_handle, only allow try_cast
|
|
* update natvis and doc for meta (meta_handle and the like changed quite a lot)
|