I mentioned in a comment @Arkadiy that the circular dependency he brought up between System and Subsystem is a bit unpleasant. It can easily be remedied by having System derive from an interface on which Subsystem depends, an application of Robert C Martin's Dependency Inversion Principle. Better still would be to isolate the functionality that Subsystems need from their parent, write an interface for that, then hold onto an implementor of that interface in System and pass it to the Subsystems, which would hold it via a shared_ptr. For example, you might have LoggerInterface, which your Subsystem uses to write to the log, then you could derive CoutLogger or FileLogger from it, and keep an instance of such in System.
|
6 | Updated UML Diagram, Added Additional detail to "Other Thoughts". | ||
|
|
||||
|
5 | Added some thoughts | ||
Other Thoughts:An interesting article I read in one of the Game Programming Gems books talks about using Null Objects for debugging and development. They were specifically talking about using Null Graphics Models and Textures, such as a checkerboard texture to make missing models really stand out. The same could be applied here by changing out the I mentioned in a comment @Arkadiy that the circular dependency he brought up between |
||||
|
4 | Revised my answer slightly, added full compiling, working example. | ||
Subsystems, allowing their removal at the right time.You need to change
|
||||
|
3 | improved answer, added details.. | ||
|
2 | Minor edit to clarify | ||
|
1 |
|
||
