From 51d135e9a1224c5d2abdc18953c8d88b23c5c065 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Sun, 2 Apr 2023 07:46:09 +0600 Subject: [PATCH] raylib update --- .../raylib_firstWindow/dub.json | 46 +++++++++++-------- .../raylib_firstWindow/dub.selections.json | 2 +- .../raylib_firstWindow/source/app.d | 1 + .../raylib_firstWindow/dub.json | 46 +++++++++++-------- .../raylib_firstWindow/dub.selections.json | 2 +- .../raylib_firstWindow/source/app.d | 2 + .../raylib_firstWindow/dub.json | 46 +++++++++++-------- .../raylib_firstWindow/dub.selections.json | 2 +- .../raylib_firstWindow/source/app.d | 2 + .../raylib_firstWindow/dub.json | 46 +++++++++++-------- .../raylib_firstWindow/dub.selections.json | 2 +- .../raylib_firstWindow/source/app.d | 2 + lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json | 46 +++++++++++-------- .../ticTacToe/dub.selections.json | 2 +- .../ticTacToe/source/app.d | 2 + lesson#14 - 2D Snake Game/dub.json | 46 +++++++++++-------- lesson#14 - 2D Snake Game/dub.selections.json | 2 +- .../ourGame/dub.json | 46 +++++++++++-------- .../ourGame/dub.selections.json | 2 +- .../ourGame/source/app.d | 2 + .../ourGame/dub.json | 46 +++++++++++-------- .../ourGame/dub.selections.json | 2 +- .../ourGame/source/app.d | 5 +- .../ourGame/dub.json | 46 +++++++++++-------- .../ourGame/dub.selections.json | 2 +- .../ourGame/source/app.d | 2 + lesson#26 - Drawing a player/ourGame/dub.json | 46 +++++++++++-------- .../ourGame/dub.selections.json | 2 +- .../ourGame/source/app.d | 2 + 29 files changed, 289 insertions(+), 211 deletions(-) diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json index e335a0b..54b8fac 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/source/app.d b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/source/app.d index a79b7fc..f597262 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/source/app.d +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/source/app.d @@ -3,5 +3,6 @@ import std.stdio; import raylib; void main() { + validateRaylibBinding(); writeln("Edit source/app.d to start your project."); } diff --git a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json index e335a0b..54b8fac 100644 --- a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json +++ b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json +++ b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d index 21e156b..316d6e1 100644 --- a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d +++ b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d @@ -3,6 +3,8 @@ import std.stdio: writeln; import raylib; void main() { + validateRaylibBinding(); + // creating window InitWindow(720, 640, "Dlang Raylib Window"); diff --git a/lesson#12.1 - Structs/raylib_firstWindow/dub.json b/lesson#12.1 - Structs/raylib_firstWindow/dub.json index e335a0b..54b8fac 100644 --- a/lesson#12.1 - Structs/raylib_firstWindow/dub.json +++ b/lesson#12.1 - Structs/raylib_firstWindow/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json b/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json +++ b/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#12.1 - Structs/raylib_firstWindow/source/app.d b/lesson#12.1 - Structs/raylib_firstWindow/source/app.d index 907ecb7..22f0d35 100644 --- a/lesson#12.1 - Structs/raylib_firstWindow/source/app.d +++ b/lesson#12.1 - Structs/raylib_firstWindow/source/app.d @@ -31,6 +31,8 @@ struct Entity { } void main() { + validateRaylibBinding(); + // creating window InitWindow(720, 640, "Dlang Raylib Window"); SetTargetFPS(30); // frames per second diff --git a/lesson#12.2 - Modules/raylib_firstWindow/dub.json b/lesson#12.2 - Modules/raylib_firstWindow/dub.json index e335a0b..54b8fac 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/dub.json +++ b/lesson#12.2 - Modules/raylib_firstWindow/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json b/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json +++ b/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#12.2 - Modules/raylib_firstWindow/source/app.d b/lesson#12.2 - Modules/raylib_firstWindow/source/app.d index 7b0fc14..773256e 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/source/app.d +++ b/lesson#12.2 - Modules/raylib_firstWindow/source/app.d @@ -3,6 +3,8 @@ import test; import raylib; void main() { + validateRaylibBinding(); + // creating window InitWindow(720, 640, "Dlang Raylib Window"); SetTargetFPS(30); // frames per second diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json index e335a0b..54b8fac 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d b/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d index a6fcd39..b3bbd02 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d @@ -5,6 +5,8 @@ import raylib; import std.conv: to; void main() { + validateRaylibBinding(); + // init InitWindow(WIDTH, HEIGHT, "Dlang Tic Tac Toe"); SetTargetFPS(30); diff --git a/lesson#14 - 2D Snake Game/dub.json b/lesson#14 - 2D Snake Game/dub.json index e335a0b..54b8fac 100644 --- a/lesson#14 - 2D Snake Game/dub.json +++ b/lesson#14 - 2D Snake Game/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#14 - 2D Snake Game/dub.selections.json b/lesson#14 - 2D Snake Game/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#14 - 2D Snake Game/dub.selections.json +++ b/lesson#14 - 2D Snake Game/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#22 - Singleton design pattern/ourGame/dub.json b/lesson#22 - Singleton design pattern/ourGame/dub.json index e335a0b..54b8fac 100644 --- a/lesson#22 - Singleton design pattern/ourGame/dub.json +++ b/lesson#22 - Singleton design pattern/ourGame/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#22 - Singleton design pattern/ourGame/dub.selections.json b/lesson#22 - Singleton design pattern/ourGame/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#22 - Singleton design pattern/ourGame/dub.selections.json +++ b/lesson#22 - Singleton design pattern/ourGame/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#22 - Singleton design pattern/ourGame/source/app.d b/lesson#22 - Singleton design pattern/ourGame/source/app.d index 6014269..3daae8f 100644 --- a/lesson#22 - Singleton design pattern/ourGame/source/app.d +++ b/lesson#22 - Singleton design pattern/ourGame/source/app.d @@ -2,6 +2,8 @@ import data; import gstatemanager; void main() { + validateRaylibBinding(); + // init InitWindow(windowWidth, windowHeight, "Mission X"); scope(exit) CloseWindow(); diff --git a/lesson#23 - State design pattern/ourGame/dub.json b/lesson#23 - State design pattern/ourGame/dub.json index e335a0b..54b8fac 100644 --- a/lesson#23 - State design pattern/ourGame/dub.json +++ b/lesson#23 - State design pattern/ourGame/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#23 - State design pattern/ourGame/dub.selections.json b/lesson#23 - State design pattern/ourGame/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#23 - State design pattern/ourGame/dub.selections.json +++ b/lesson#23 - State design pattern/ourGame/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#23 - State design pattern/ourGame/source/app.d b/lesson#23 - State design pattern/ourGame/source/app.d index bcf1f11..675a3dc 100644 --- a/lesson#23 - State design pattern/ourGame/source/app.d +++ b/lesson#23 - State design pattern/ourGame/source/app.d @@ -4,7 +4,10 @@ import gstatemanager; import menu; import play; -void main() {/* +void main() { + /* + validateRaylibBinding(); + // init InitWindow(windowWidth, windowHeight, "Mission X"); scope(exit) CloseWindow(); diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json index e335a0b..54b8fac 100644 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d index e01d546..36c7ebd 100644 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d @@ -5,6 +5,8 @@ import menu; import play; void main() { + validateRaylibBinding(); + // init InitWindow(windowWidth, windowHeight, "Mission X"); scope(exit) { CloseWindow(); } diff --git a/lesson#26 - Drawing a player/ourGame/dub.json b/lesson#26 - Drawing a player/ourGame/dub.json index e335a0b..54b8fac 100644 --- a/lesson#26 - Drawing a player/ourGame/dub.json +++ b/lesson#26 - Drawing a player/ourGame/dub.json @@ -2,19 +2,8 @@ "authors": [ "rillki" ], - "copyright": "Copyright © 2021, rillki", - "targetPath": "bin", - "dependencies": { - "raylib-d": "~>4.0.1" - }, "configurations": [ { - "name": "osx-app", - "platforms": ["osx"], - "targetType": "executable", - "libs": [ - "raylib" - ], "lflags": [ "-framework", "IOKit", @@ -23,11 +12,16 @@ "-framework", "OpenGL" ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" }, { - "name": "linux-app", - "platforms": ["linux"], - "targetType": "executable", "libs": [ "raylib", "GL", @@ -37,17 +31,29 @@ "rt", "X11" ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" }, { - "name": "windows-app", - "platforms": ["windows"], - "targetType": "executable", "libs": [ - "raylibdll" + "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" + "name": "d-raylib-project-template", + "targetPath": "bin" } \ No newline at end of file diff --git a/lesson#26 - Drawing a player/ourGame/dub.selections.json b/lesson#26 - Drawing a player/ourGame/dub.selections.json index a5f3bf7..c36eb2e 100644 --- a/lesson#26 - Drawing a player/ourGame/dub.selections.json +++ b/lesson#26 - Drawing a player/ourGame/dub.selections.json @@ -4,7 +4,7 @@ "ddmp": "0.0.1-0.dev.3", "fluent-asserts": "0.13.3", "libdparse": "0.14.0", - "raylib-d": "4.0.1", + "raylib-d": "4.5.0", "stdx-allocator": "2.77.5" } } diff --git a/lesson#26 - Drawing a player/ourGame/source/app.d b/lesson#26 - Drawing a player/ourGame/source/app.d index 5524ce1..90244f2 100644 --- a/lesson#26 - Drawing a player/ourGame/source/app.d +++ b/lesson#26 - Drawing a player/ourGame/source/app.d @@ -6,6 +6,8 @@ import game.menu; import game.play; void main() { + validateRaylibBinding(); + // init InitWindow(windowWidth, windowHeight, "Mission X"); scope(exit) { CloseWindow(); }