Folks, I'm new to Scala and am trying to figure something out. I've been messing around a bit with traits and I really like their ability to "mix in" functionality and interface. I've also been messing around with concurrency and Actors and I really like the ability I get to model highly complicated concurrent systems easily.
The problem I'm having is I can't quite find a pattern for combining both worlds. What I'm really looking for is using traits to determine which types of messages an Actor responds to, allowing for different responses across inheritance hierarchies.
So, to use a battlefield simulator example: I have Simulants, which are traits. All objects on the battlefield are Simulants, and Simulants should respond to "Ping" by sending "Pong" - this is it. I want an IFF trait, which will allow a simulant to identify itself as a friend or foe of the message sender. Another trait should be Mobile, which means the simulant can move and should respond to messages telling the simulant its new destination.
As you can see, I might have : class Tank extends Actor with Simulant with IFF with Mobile , but I might have something like a barrier, e.g. class Barrier extends Actor with Simulant.
What I have not yet been able to do is create the right combination of act() methods, loops, reacts, and so forth to make this scenario possible. In short, is it possible to "mix in message reactors" or does Scala limit me to choosing Actors with single inheritance or mixins without actors?
Thanks!