In this exciting tutorial we are going to learn about the observer pattern. Not your typical observer pattern tutorial. We toss the wikipedia article aside and apply the observer pattern to a game.
The game is simple, click the buttons at the top of the screen and the characters will perform the action. We coordinate the actions through the observer pattern.
At its core the pattern revolves around a subject that the observer will observe. The subject has a list of observers(one-to-many relationship). Observers can choose to register with the subject. The subject at any point in time can notify the observers by looping through all observers and calling the update method.
For example let's say the our subject is the YouTube channel Coding With Adam. The observers would be YouTube users. YouTube users can register with the subject by subscribing. When the YouTube channel owner(subject) uploads a new video they can notify all subscribers(observers).
Learn more by watching the video.
Github:
https://github.com/CodingWith-Adam/ob...
Try it here:
https://codingwith-adam.github.io/obs...
Watch video Observer Pattern Tutorial online without registration, duration hours minute second in high quality. This video was added by user Coding With Adam 01 November 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 5,612 once and liked it 146 people.