TODO 1.5 KB

12345678910111213141516
  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. * is it possible to allow multiple components for registry remove, reset, reserve, (maybe) managed, empty, get (tags), move and so on?
  8. * create dedicated flat map based on types implementation (sort of "type map") for types to use within the registry and so on...
  9. * does it worth it to add an optional functor to the member functions of snapshot so as to filter out instances and entities?
  10. * ease the assignment of tags as string (use a template class with a non-type template parameter behind the scene)
  11. * define a dedicated specialization for multi component view in case of two components
  12. * is it possible to reduce the storage used to manage empty components?
  13. * reintroduce meaningful copy/clone functionalities into the registry
  14. * is registry/utility.hpp really required?
  15. * "singleton mode" for tags (see #66)
  16. * AOB