show/hide this revision's text 2 added 573 characters in body

Perhaps instead of having a different class for each message, use a flag that identifies the message.

That would drastically reduce the number of messages you have and increase maintainability. My guess is that most of the message classes have about zero difference.

It's hard to pick an additional way of attacking this because the rest of the architecture is unknown (to me).

If you look at Windows, for example, it doesn't natively know how to handle each message that might be thrown about. Instead, the underlying message handlers register callback functions with the main thread.

You might take a similiar approach. Each message class would need to know how to handle itself and could register itself with the larger application. This should greatly simplify the code and get rid of the tight coupling.

show/hide this revision's text 1

Perhaps instead of having a different class for each message, use a flag that identifies the message.

That would drastically reduce the number of messages you have and increase maintainability. My guess is that most of the message classes have about zero difference.