observer design pattern
This commit is contained in:
parent
d05a39b5cf
commit
6c0a53f7b6
|
@ -1,15 +0,0 @@
|
||||||
.dub
|
|
||||||
docs.json
|
|
||||||
__dummy.html
|
|
||||||
docs/
|
|
||||||
/ourgame
|
|
||||||
ourgame.so
|
|
||||||
ourgame.dylib
|
|
||||||
ourgame.dll
|
|
||||||
ourgame.a
|
|
||||||
ourgame.lib
|
|
||||||
ourgame-test-*
|
|
||||||
*.exe
|
|
||||||
*.o
|
|
||||||
*.obj
|
|
||||||
*.lst
|
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"authors": [
|
|
||||||
"rillk500"
|
|
||||||
],
|
|
||||||
"copyright": "no copyright",
|
|
||||||
"dependencies": {
|
|
||||||
"raylib-d": "~>3.0.3"
|
|
||||||
},
|
|
||||||
"description": "2D game",
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"license": "no license",
|
|
||||||
"name": "ourgame"
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,44 +0,0 @@
|
||||||
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 ..
|
|
||||||
}*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
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();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,47 +0,0 @@
|
||||||
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();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
module menu;
|
|
||||||
|
|
||||||
import data;
|
|
||||||
|
|
||||||
class Menu: IState {
|
|
||||||
this() {}
|
|
||||||
|
|
||||||
// inherited from IState interface
|
|
||||||
void run() {
|
|
||||||
writeln("*** menu state ***");
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,12 +0,0 @@
|
||||||
module play;
|
|
||||||
|
|
||||||
import data;
|
|
||||||
|
|
||||||
class Play: IState {
|
|
||||||
this() {}
|
|
||||||
|
|
||||||
// inherited from IState interface
|
|
||||||
void run() {
|
|
||||||
writeln("*** play state ***");
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
After Width: | Height: | Size: 556 KiB |
Binary file not shown.
After Width: | Height: | Size: 610 KiB |
Binary file not shown.
After Width: | Height: | Size: 687 KiB |
Loading…
Reference in New Issue