1
General discussions / Re: SFML Game Development -- A book on SFML
« on: April 07, 2015, 06:29:23 am »Perhaps I could move the World member from GameState into Application, then add it to the State::Context?
What you can do however is put another object in Context, which acts as a bridge between the two states. An example is a dedicated small class that offers a method to query the player's position. World would then initialize that object (or a pointer to it).
Thanks for the suggestion. I later realized that what I'm trying to achieve almost fits an Observer or Mediator pattern:
http://sourcemaking.com/design_patterns/mediator:
Quote
...Mediator defines an object that controls how a set of objects interact..
The "small object" you suggest could be the Mediator between State objects.
http://sourcemaking.com/design_patterns/observer:
Quote
Define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.
Alternatively, the State class could inherit from an Observer interface, allowing State objects to publish and subscribe to whatever changes a state decides to publish.
In any case, you've pointed me in the right direction.
Thanks