XianForce wrote:Thank you

. I've been walking around through some of it, the only thing I don't understand is, why have a listener and handler? To me it seems like an unnecessary step, considering (from what I see at least), the only purpose of the listener, is to call the handler

?
Well I certainly wont claim to have the best design to a message system, but here is my reasoning to have a abstract listener to a handler as well.
Lets say we want to make something like a landmine, so basically we want to have some object that listens for some event. But generally a generic listener is only called by a defined event, lets say a key press, or an explicit key stroke or whatever.
So what I would do I create a listener called something like cMonitorListener, and what It would do is call a piece of code that does whatever we want each loop/ or perhaps each time a assigned sub space is changed. so in our landmine application I would just have a piece of code that would look if any entities have walked on it. then that would call the event handler that does the "boom" could be a piece of code, a script, whatever.
all while keeping your process messages loop/construct the same.
Also, having an abstract listener also makes it really easy to isolate messages, you literally don't have to do any special handling if your message dispatch loop is robust enough.
So lets assume I have 10000 listeners, but only 5 of those are really listening for key strokes, Now I don't have to loop though 10k listeners to not sent messages to 19995 of them.
Rest assured you can still to this with only having one kind of listener, but I feel that extending a base listener makes it a bit more clearer.
one caveat of the way I did things, is that anything that needs to have an event listener and handler added to it, needs to be a component. but that is nice about that is that it really easy to add, remove and change event listeners at run time with no real issue.