TODO 1.2 KB

1234567891011121314
  1. * custom allocators and EnTT allocator-aware in general (long term feature, I don't actually need it at the moment) - see #22
  2. * scene management (I prefer the concept of spaces, that is a kind of scene anyway)
  3. * review doc: separate it in multiple md/dox files, reduce the readme to a minimum and provide users with links to the online documentation on gh-pages
  4. * debugging tools (#60): the issue online already contains interesting tips on this, look at it
  5. * define basic reactive systems (track entities to which component is attached, track entities from which component is removed, and so on)
  6. * define systems as composable mixins (initializazion, reactive, update, whatever) with flexible auto-detected arguments (registry, views, etc)
  7. * create dedicated flat map based on types implementation (sort of "type map") for types to use within the registry and so on...
  8. * registry::create with a "hint" on the entity identifier to use, it should ease combining multiple registries
  9. * add a member function aside current and version to get the actual identifier without its version
  10. * can we do more for shared libraries? who knows... see #144
  11. * work stealing job system (see #100)
  12. * reflection system (maybe)
  13. * C++17. That's all.
  14. * AOB