diff --git a/lesson#27 - in, out, inout type qualifiers/main.d b/lesson#27 - in, out, inout type qualifiers/in_out_inout.d similarity index 87% rename from lesson#27 - in, out, inout type qualifiers/main.d rename to lesson#27 - in, out, inout type qualifiers/in_out_inout.d index 79c0feb..16e5919 100644 --- a/lesson#27 - in, out, inout type qualifiers/main.d +++ b/lesson#27 - in, out, inout type qualifiers/in_out_inout.d @@ -3,13 +3,14 @@ module main; import std.stdio; void main() { + // --- `in` qualifier --- int kg = 5; int g = kg2g(kg); writeln("kg: ", kg); writeln(" g: ", g); - // --- --- --- + // --- `out` qualifier --- writeln("--- --- ---"); int remainder = 0; @@ -18,7 +19,7 @@ void main() { writeln(" result: ", result); writeln("remainder: ", remainder); - // --- --- --- + // --- `inout` qualifier --- writeln("--- --- ---"); int[] array = [1, 2, 3, 4]; @@ -29,7 +30,7 @@ void main() { const int[] constArrayResult = doSomething(constArray); immutable int[] immutableArrayResult = doSomething(immutableArray); - int[] arr = doSomething(constArray); // error! cannot do implicit conversion between type qualifiers + // int[] arr = doSomething(constArray); // error! cannot do implicit conversion between type qualifiers // Error: cannot implicitly convert expression `doSomething(constArray)` of type `const(int)[]` to `int[]` writeln(" a: ", arrayResult); diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/.gitignore b/lesson#27 - in, out, inout type qualifiers/ourGame/.gitignore new file mode 100644 index 0000000..b2c8b49 --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/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#27 - in, out, inout type qualifiers/ourGame/dub.json b/lesson#27 - in, out, inout type qualifiers/ourGame/dub.json new file mode 100644 index 0000000..54b8fac --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/dub.json @@ -0,0 +1,59 @@ +{ + "authors": [ + "rillki" + ], + "configurations": [ + { + "lflags": [ + "-framework", + "IOKit", + "-framework", + "Cocoa", + "-framework", + "OpenGL" + ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" + }, + { + "libs": [ + "raylib", + "GL", + "m", + "pthread", + "dl", + "rt", + "X11" + ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" + }, + { + "libs": [ + "raylib" + ], + "name": "windows-app", + "platforms": [ + "windows" + ], + "targetType": "executable" + } + ], + "copyright": "Copyright © 2021, rillki", + "dependencies": { + "raylib-d": "~>4.5.0" + }, + "description": "D/Raylib minimal setup", + "license": "no license", + "name": "d-raylib-project-template", + "targetPath": "bin" +} \ No newline at end of file diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/dub.selections.json b/lesson#27 - in, out, inout type qualifiers/ourGame/dub.selections.json new file mode 100644 index 0000000..c36eb2e --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/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": "4.5.0", + "stdx-allocator": "2.77.5" + } +} diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/raylib.dll b/lesson#27 - in, out, inout type qualifiers/ourGame/raylib.dll new file mode 100644 index 0000000..df58566 Binary files /dev/null and b/lesson#27 - in, out, inout type qualifiers/ourGame/raylib.dll differ diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/raylib.lib b/lesson#27 - in, out, inout type qualifiers/ourGame/raylib.lib new file mode 100644 index 0000000..d454613 Binary files /dev/null and b/lesson#27 - in, out, inout type qualifiers/ourGame/raylib.lib differ diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/source/app.d b/lesson#27 - in, out, inout type qualifiers/ourGame/source/app.d new file mode 100644 index 0000000..90244f2 --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/source/app.d @@ -0,0 +1,47 @@ +module app; + +import game.data; +import game.gstatemanager; +import game.menu; +import game.play; + +void main() { + validateRaylibBinding(); + + // init + InitWindow(windowWidth, windowHeight, "Mission X"); + scope(exit) { CloseWindow(); } + + // set frames per second + SetTargetFPS(60); + + // declaring and initializing menu and play states + Menu menu = new Menu(); + Play play = new Play(); + + // init GStateManager + GStateManager.getInstance.setState(GameState.MainMenu); + GStateManager.getInstance.add(menu, GameState.MainMenu); + GStateManager.getInstance.add(play, GameState.Play); + GStateManager.getInstance.add(null, GameState.Exit); + + // game loop + while(!WindowShouldClose() && GStateManager.getInstance.getState != GameState.Exit) { + GStateManager.getInstance.execute(); + } +} + + + + + + + + + + + + + + + diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/data.d b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/data.d new file mode 100644 index 0000000..9d53fb8 --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/data.d @@ -0,0 +1,78 @@ +module game.data; + +// mostly used libraries +public import raylib; +public import std.stdio: writeln, write; + +// window dimensions +immutable windowWidth = 720; +immutable windowHeight = 640; + +// Game states +enum GameState { + MainMenu, + Play, + Exit +} + +// state interface +interface IState { + void run(); +} + +// entity interface +class Entity { + Texture2D texture; + Rectangle frame; + Vector2 position; + + this(in ref Texture2D texture, in Rectangle frame, in Vector2 Position) { + this.texture = texture; + this.frame = frame; + this.position = position; + } + + void move(in float x, in float y) { + position.x += x; + position.y += y; + } + + void draw() { + DrawTextureRec(texture, frame, position, Colors.WHITE); + } + + abstract void update(); + abstract void processEvents(); +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/gstatemanager.d b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/gstatemanager.d new file mode 100644 index 0000000..5426732 --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/gstatemanager.d @@ -0,0 +1,55 @@ +module game.gstatemanager; + +import game.data; + +class GStateManager { + // private class instance + private static GStateManager instance; + + // IState interface + private IState[GameState] state; + + // current game state + private GameState currGameState; + + // 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; + } + + // add game state + void add(IState state, GameState gs) { + this.state[gs] = state; + } + + // remove game state + void remove(GameState gs) { + this.state.remove(gs); + } + + // set game state + void setState(GameState gs) { + currGameState = gs; + } + + // return the current game state + GameState getState() { + return currGameState; + } + + // execute the current game state code + void execute() { + if(state is null) { + return; + } + + state[currGameState].run(); + } +} diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/menu.d b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/menu.d new file mode 100644 index 0000000..d98b5ef --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/menu.d @@ -0,0 +1,34 @@ +module game.menu; + +import game.data; +import game.gstatemanager; + +class Menu: IState { + this() {} + + // inherited from IState interface + void run() { + update(); + processEvents(); + render(); + } + + void update() {} + + void processEvents() { + if(IsKeyPressed(KeyboardKey.KEY_P)) { + GStateManager.getInstance.setState(GameState.Play); + } + } + + void render() { + // enable drawing + BeginDrawing(); scope(exit) { EndDrawing(); } + + // clear background + ClearBackground(Colors.GREEN); + + // draw + // ... + } +} diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/play.d b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/play.d new file mode 100644 index 0000000..b299eb8 --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/play.d @@ -0,0 +1,52 @@ +module game.play; + +import game.data; +import game.gstatemanager; +import game.player; + +import std.file: getcwd; +import std.path: buildPath; +import std.string: toStringz; + +class Play: IState { + // variables + private { + Texture2D texPlayer; + Player player; + } + + this() { + texPlayer = LoadTexture(getcwd.buildPath("../../assets/Evil Wizard/Sprites/Idle.png").toStringz); + player = new Player(texPlayer, Rectangle(0, 0, 256, 256), Vector2(0, 0)); + } + + ~this() { + UnloadTexture(texPlayer); + } + + // inherited from IState interface + void run() { + update(); + processEvents(); + render(); + } + + void update() {} + + void processEvents() { + if(IsKeyPressed(KeyboardKey.KEY_M)) { + GStateManager.getInstance.setState(GameState.MainMenu); + } + } + + void render() { + // enable drawing + BeginDrawing(); scope(exit) { EndDrawing(); } + + // clear background + ClearBackground(Colors.YELLOW); + + // draw + player.draw(); + } +} diff --git a/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/player.d b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/player.d new file mode 100644 index 0000000..53f62b6 --- /dev/null +++ b/lesson#27 - in, out, inout type qualifiers/ourGame/source/game/player.d @@ -0,0 +1,20 @@ +module game.player; + +import game.data; + +class Player: Entity { + this(const ref Texture2D texture, const Rectangle frame, const Vector2 position) { + super(texture, frame, position); + } + + override void update() {} + override void processEvents() {} +} + + + + + + + +