From d05a39b5cf434818ab07e495799c18112ba68c71 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Sat, 6 Mar 2021 13:15:42 +0600 Subject: [PATCH] observer design pattern --- .../ObserverDesignPattern/main.d | 67 +++++++++++++++++++ .../ourGame/.gitignore | 15 +++++ .../ourGame/dub.json | 15 +++++ .../ourGame/dub.selections.json | 10 +++ .../ourGame/source/app.d | 44 ++++++++++++ .../ourGame/source/data.d | 15 +++++ .../ourGame/source/gstatemanager.d | 47 +++++++++++++ .../ourGame/source/menu.d | 12 ++++ .../ourGame/source/play.d | 12 ++++ 9 files changed, 237 insertions(+) create mode 100644 lesson#24 - Observer Design Pattern/ObserverDesignPattern/main.d create mode 100644 lesson#24 - Observer Design Pattern/ourGame/.gitignore create mode 100644 lesson#24 - Observer Design Pattern/ourGame/dub.json create mode 100644 lesson#24 - Observer Design Pattern/ourGame/dub.selections.json create mode 100644 lesson#24 - Observer Design Pattern/ourGame/source/app.d create mode 100644 lesson#24 - Observer Design Pattern/ourGame/source/data.d create mode 100644 lesson#24 - Observer Design Pattern/ourGame/source/gstatemanager.d create mode 100644 lesson#24 - Observer Design Pattern/ourGame/source/menu.d create mode 100644 lesson#24 - Observer Design Pattern/ourGame/source/play.d diff --git a/lesson#24 - Observer Design Pattern/ObserverDesignPattern/main.d b/lesson#24 - Observer Design Pattern/ObserverDesignPattern/main.d new file mode 100644 index 0000000..1d34cce --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ObserverDesignPattern/main.d @@ -0,0 +1,67 @@ +import std.stdio: writeln; + +interface IObserver { + void update(string msg); +} + +class WhatsApp { + private IObserver[] list; + + this() {} + ~this() {} + + void addClient(IObserver o) { + list ~= o; + } + + void removeClient(IObserver o) { + import std.algorithm: remove; + list = list.remove!(a => a is o); + } + + void notify(string msg) { + foreach(client; list) { + client.update(msg); + } + } +} + +class Person: IObserver { + string name; + + this(string name) { + this.name = name; + } + + void update(string msg) { + writeln(name, "\t: notified. [", msg, "]"); + } +} + +void main() { + WhatsApp app = new WhatsApp(); + + Person anna = new Person("Anna"); + Person john = new Person("John"); + Person markus = new Person("Markus"); + + app.addClient(anna); + app.addClient(john); + app.addClient(markus); + + app.notify("hello, world!"); + + app.removeClient(john); + + app.notify("john left the conversation"); +} + + + + + + + + + + diff --git a/lesson#24 - Observer Design Pattern/ourGame/.gitignore b/lesson#24 - Observer Design Pattern/ourGame/.gitignore new file mode 100644 index 0000000..b2c8b49 --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/.gitignore @@ -0,0 +1,15 @@ +.dub +docs.json +__dummy.html +docs/ +/ourgame +ourgame.so +ourgame.dylib +ourgame.dll +ourgame.a +ourgame.lib +ourgame-test-* +*.exe +*.o +*.obj +*.lst diff --git a/lesson#24 - Observer Design Pattern/ourGame/dub.json b/lesson#24 - Observer Design Pattern/ourGame/dub.json new file mode 100644 index 0000000..fb77399 --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/dub.json @@ -0,0 +1,15 @@ +{ + "authors": [ + "rillk500" + ], + "copyright": "no copyright", + "dependencies": { + "raylib-d": "~>3.0.3" + }, + "description": "2D game", + "libs": [ + "raylib" + ], + "license": "no license", + "name": "ourgame" +} diff --git a/lesson#24 - Observer Design Pattern/ourGame/dub.selections.json b/lesson#24 - Observer Design Pattern/ourGame/dub.selections.json new file mode 100644 index 0000000..6c4a00d --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/dub.selections.json @@ -0,0 +1,10 @@ +{ + "fileVersion": 1, + "versions": { + "ddmp": "0.0.1-0.dev.3", + "fluent-asserts": "0.13.3", + "libdparse": "0.14.0", + "raylib-d": "3.0.3", + "stdx-allocator": "2.77.5" + } +} diff --git a/lesson#24 - Observer Design Pattern/ourGame/source/app.d b/lesson#24 - Observer Design Pattern/ourGame/source/app.d new file mode 100644 index 0000000..d917685 --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/source/app.d @@ -0,0 +1,44 @@ +import data; +import gstatemanager; + +import menu; +import play; + +void main() { + /*// init + InitWindow(windowWidth, windowHeight, "Mission X"); + scope(exit) CloseWindow(); + + // set frames per second + SetTargetFPS(60); + + while(!WindowShouldClose()) { + // process events + + // update + // calling the dummy function + GStateManager.getInstance().hello_world(); + + // render + BeginDrawing(); + scope(exit) EndDrawing(); + + ClearBackground(Colors.WHITE); + // .. draw .. + }*/ +} + + + + + + + + + + + + + + + diff --git a/lesson#24 - Observer Design Pattern/ourGame/source/data.d b/lesson#24 - Observer Design Pattern/ourGame/source/data.d new file mode 100644 index 0000000..031a1a6 --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/source/data.d @@ -0,0 +1,15 @@ +module data; + +// mostly used libraries +public import raylib; +public import std.stdio: writeln, write; + +// window dimensions +immutable windowWidth = 720; +immutable windowHeight = 640; + +// state interface +interface IState { + void run(); +} + diff --git a/lesson#24 - Observer Design Pattern/ourGame/source/gstatemanager.d b/lesson#24 - Observer Design Pattern/ourGame/source/gstatemanager.d new file mode 100644 index 0000000..a83a6ae --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/source/gstatemanager.d @@ -0,0 +1,47 @@ +import data; + +class GStateManager { + // private class instance + private static GStateManager instance; + + // IState interface + private IState state; + + // private constructor + private this() { } + + // return the instance; create the instance, if it wasn't created yet + static GStateManager getInstance() { + if(instance is null) { + instance = new GStateManager(); + } + + return instance; + } + + // set game state + void setState(IState state) { + this.state = state; + } + + // execute the current game state code + void execute() { + if(state is null) { + return; + } + + state.run(); + } +} + + + + + + + + + + + + diff --git a/lesson#24 - Observer Design Pattern/ourGame/source/menu.d b/lesson#24 - Observer Design Pattern/ourGame/source/menu.d new file mode 100644 index 0000000..3484d62 --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/source/menu.d @@ -0,0 +1,12 @@ +module menu; + +import data; + +class Menu: IState { + this() {} + + // inherited from IState interface + void run() { + writeln("*** menu state ***"); + } +} \ No newline at end of file diff --git a/lesson#24 - Observer Design Pattern/ourGame/source/play.d b/lesson#24 - Observer Design Pattern/ourGame/source/play.d new file mode 100644 index 0000000..054cb02 --- /dev/null +++ b/lesson#24 - Observer Design Pattern/ourGame/source/play.d @@ -0,0 +1,12 @@ +module play; + +import data; + +class Play: IState { + this() {} + + // inherited from IState interface + void run() { + writeln("*** play state ***"); + } +} \ No newline at end of file