raylib update

This commit is contained in:
Ki Rill 2023-04-02 07:46:09 +06:00
parent 657ce66b59
commit 51d135e9a1
29 changed files with 289 additions and 211 deletions

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -3,5 +3,6 @@ import std.stdio;
import raylib; import raylib;
void main() { void main() {
validateRaylibBinding();
writeln("Edit source/app.d to start your project."); writeln("Edit source/app.d to start your project.");
} }

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -3,6 +3,8 @@ import std.stdio: writeln;
import raylib; import raylib;
void main() { void main() {
validateRaylibBinding();
// creating window // creating window
InitWindow(720, 640, "Dlang Raylib Window"); InitWindow(720, 640, "Dlang Raylib Window");

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -31,6 +31,8 @@ struct Entity {
} }
void main() { void main() {
validateRaylibBinding();
// creating window // creating window
InitWindow(720, 640, "Dlang Raylib Window"); InitWindow(720, 640, "Dlang Raylib Window");
SetTargetFPS(30); // frames per second SetTargetFPS(30); // frames per second

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -3,6 +3,8 @@ import test;
import raylib; import raylib;
void main() { void main() {
validateRaylibBinding();
// creating window // creating window
InitWindow(720, 640, "Dlang Raylib Window"); InitWindow(720, 640, "Dlang Raylib Window");
SetTargetFPS(30); // frames per second SetTargetFPS(30); // frames per second

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -5,6 +5,8 @@ import raylib;
import std.conv: to; import std.conv: to;
void main() { void main() {
validateRaylibBinding();
// init // init
InitWindow(WIDTH, HEIGHT, "Dlang Tic Tac Toe"); InitWindow(WIDTH, HEIGHT, "Dlang Tic Tac Toe");
SetTargetFPS(30); SetTargetFPS(30);

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -2,6 +2,8 @@ import data;
import gstatemanager; import gstatemanager;
void main() { void main() {
validateRaylibBinding();
// init // init
InitWindow(windowWidth, windowHeight, "Mission X"); InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) CloseWindow(); scope(exit) CloseWindow();

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -4,7 +4,10 @@ import gstatemanager;
import menu; import menu;
import play; import play;
void main() {/* void main() {
/*
validateRaylibBinding();
// init // init
InitWindow(windowWidth, windowHeight, "Mission X"); InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) CloseWindow(); scope(exit) CloseWindow();

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -5,6 +5,8 @@ import menu;
import play; import play;
void main() { void main() {
validateRaylibBinding();
// init // init
InitWindow(windowWidth, windowHeight, "Mission X"); InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) { CloseWindow(); } scope(exit) { CloseWindow(); }

View File

@ -2,19 +2,8 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"configurations": [ "configurations": [
{ {
"name": "osx-app",
"platforms": ["osx"],
"targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework", "-framework",
"IOKit", "IOKit",
@ -23,11 +12,16 @@
"-framework", "-framework",
"OpenGL" "OpenGL"
], ],
"libs": [
"raylib"
],
"name": "osx-app",
"platforms": [
"osx"
],
"targetType": "executable"
}, },
{ {
"name": "linux-app",
"platforms": ["linux"],
"targetType": "executable",
"libs": [ "libs": [
"raylib", "raylib",
"GL", "GL",
@ -37,17 +31,29 @@
"rt", "rt",
"X11" "X11"
], ],
"name": "linux-app",
"platforms": [
"linux"
],
"targetType": "executable"
}, },
{ {
"name": "windows-app",
"platforms": ["windows"],
"targetType": "executable",
"libs": [ "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", "description": "D/Raylib minimal setup",
"license": "no license", "license": "no license",
"name": "d-raylib-project-template" "name": "d-raylib-project-template",
"targetPath": "bin"
} }

View File

@ -4,7 +4,7 @@
"ddmp": "0.0.1-0.dev.3", "ddmp": "0.0.1-0.dev.3",
"fluent-asserts": "0.13.3", "fluent-asserts": "0.13.3",
"libdparse": "0.14.0", "libdparse": "0.14.0",
"raylib-d": "4.0.1", "raylib-d": "4.5.0",
"stdx-allocator": "2.77.5" "stdx-allocator": "2.77.5"
} }
} }

View File

@ -6,6 +6,8 @@ import game.menu;
import game.play; import game.play;
void main() { void main() {
validateRaylibBinding();
// init // init
InitWindow(windowWidth, windowHeight, "Mission X"); InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) { CloseWindow(); } scope(exit) { CloseWindow(); }