Le 11/01/15 02:05, Klaim - Joël Lamotte a écrit :
On Sat, Jan 10, 2015 at 8:46 PM, Vicente J. Botet Escriba < vicente.botet@wanadoo.fr> wrote:
First of all, I want to say that I like your library too much. It is quite close to a library I was working one EntityRoleSubject. You library could be extended to to take in account the subjective programming paradigm (see below).
I have some comments/remarks/questions:
* I have some doubts about the name mixin. What a mixin has more than a facet or an aspect? Mixins in C++ have a specific mean in the context of CRTP. Why have you chosen the mixin name?
I aree with this remark. As I mentionned in previous discussions on this mailing list, it looks far more like a "flexible but not performant" implementation the Entity Component "pattern". Wikipedia: http://en.wikipedia.org/wiki/Entity_component_system Explainations about why it's used a lot in game engine code: http://gameprogrammingpatterns.com/component.html
Basically allow very flexible composition even at runtime (which helps tools dev too). It's also have been mentionned in the documentation after these discussions. (the doc is actually wrong in thinking that all engines component systems rely on inheritance by the way).
Last months I have seen mentionned several implemetnations of this pattern in C++11/14 on github but was not pleased with any design so far. The design of Boost.Mixin is close to what I want but don't reach my needs yet (or at least last time I looked at it).
* Respect to subjective programming: it would be great to be able to create subject from an entity so that only the mixins of the subject would play when a reference to this subject is addressed.
subject
s (o); o.get
() works as expected. o.get<Other>() compile fails if not equal to any Mix_k
Interesting. Instead of subject I should be used view. A subject must have the listed mixin. You can be interested in reading this old paper
Roles: conceptual abstraction theory and practical language issue Bent Bruun Kristensen and Kasper sterbye http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0CC8QFjAB&url=http%3A%2F%2Fwww.itu.dk%2Fpeople%2Fkasper%2Fpapers%2Fosterbye_R8.pdf&ei=QjWyVMO4CoaaygOC4YCQBA&usg=AFQjCNEczlV4c-61kWGJ_qoUe0AhDGhRYg&sig2=PKFjzFly_B9jvY26uNLKcA&bvm=bv.83339334,d.bGQ
* The entity-mixin relation is not recursive, that is, a mixin can not have associated mixins, or can them?
Usually it makes no sense, except if you mean that one mixin type require another mixin type to be available for the object instance to work. Yes this is what I mean. In which case I don't see a mechanism for automating this check in Boost.Mixin, and I'm not sure if it's the right place for that.
It seems this is achievable at run-time adapting the mutation rules. :( I'm locking for something that can be checked at compile-time.
* Can a mixin D inherit from another mixin B? Could the mixing D be retrieved when getting the mixing B?
mutate(o).add<D>;
o.get<B>()->f() // f been a virtual function on B?
I am failing to see the point or usefulness of this?
If suggest you to read the paper. In principle as for classes, the user must be able to specialize mixins. I'm not talking about the Game domain that don't know and for which maybe this is not what they need. You can think of a class This is needed when you associate a mixing to a specific kind of entity. The Mixin library don't classify the entities, something that I'm locking for. Having a classification of Entities, it is reasonable to state which roles/facets/subjects/mixins it can support. This allows to have a first compile type checking. A specialized entity could require a specialized role. entity B {}; entity D : B {}; B role X {}; D role Y : X {};
* The example of the mixin headphones_player show that the play() implementation makes use of get_sound() provided by other mixins. This dependency is not explicit. I would expect to be able to say that headphones_player depends on another mixing providing the get_sound message.
I believe that there are a lot of better (non game related) example for such library. A simple 3D space editor allowing to associate behaviours to 3D objects is a good enough example and is very simple to visualize mentally.
I'm sure you are right, and that the library has its value. I find, however that this framework don't help to force compile type integrity. If the entity don't has an associated mixing that plays the get_sound function, the user will get an exception in the best case. When we work with strongle typed languages as C++ we expect something better. Vicente