lesson#28 finalized

This commit is contained in:
Kirill Saidov 2023-07-13 19:16:01 +06:00
parent 516fbaba58
commit dcf19b890e
7 changed files with 111 additions and 14 deletions

View File

@ -2,8 +2,8 @@ module app;
import game.data;
import game.gstatemanager;
import game.menu;
import game.play;
import game.state.menu;
import game.state.play;
void main() {
validateRaylibBinding();

View File

@ -0,0 +1,62 @@
module game.animation.animation;
import raylib;
struct Animation {
private {
Texture2D texture;
Rectangle[] rectFrames;
int numFrames;
int currentFrame;
float frameTimeSecs;
float frameTimeSecsLeft;
bool isActive;
}
this(in Texture2D texture, in int numFrames, in float frameTimeSecs) {
this.texture = texture;
this.numFrames = numFrames;
this.frameTimeSecs = frameTimeSecs;
this.frameTimeSecsLeft = frameTimeSecs;
this.currentFrame = 0;
this.isActive = true;
// create rectangle frames
immutable frameWidth = texture.width / numFrames;
immutable frameHeight = texture.height;
foreach(i; 0 .. numFrames) {
this.rectFrames ~= Rectangle(i * frameWidth, frameHeight, frameWidth, frameHeight);
}
}
void start() {
isActive = true;
}
void stop() {
isActive = false;
}
void reset() {
currentFrame = 0;
frameTimeSecsLeft = frameTimeSecs;
}
void update() {
if(!isActive) {
return;
}
frameTimeSecsLeft -= GetFrameTime();
if(frameTimeSecsLeft <= 0) {
frameTimeSecsLeft += frameTimeSecs;
currentFrame = (currentFrame + 1) % numFrames;
}
}
void draw(in Vector2 position) {
DrawTextureRec(texture, rectFrames[currentFrame], position, Colors.WHITE);
}
}

View File

@ -26,7 +26,7 @@ class Entity {
Rectangle frame;
Vector2 position;
this(in Texture2D texture, in Rectangle frame, in Vector2 Position) {
this(in Texture2D texture, in Rectangle frame, in Vector2 position) {
this.texture = texture;
this.frame = frame;
this.position = position;

View File

@ -0,0 +1,27 @@
module game.entity.coin;
import game.data;
import game.animation.animation;
class Coin: Entity {
private {
Animation animation;
}
this(in Texture2D texture, in Rectangle frame, in Vector2 position) {
super(texture, frame, position);
animation = Animation(texture, 5, 0.1);
}
override void update() {
animation.update();
}
override void processEvents() {}
override void draw() {
animation.draw(position);
}
}

View File

@ -1,9 +1,9 @@
module game.player;
module game.entity.player;
import game.data;
class Player: Entity {
this(const ref Texture2D texture, const Rectangle frame, const Vector2 position) {
this(in Texture2D texture, in Rectangle frame, in Vector2 position) {
super(texture, frame, position);
}

View File

@ -1,4 +1,4 @@
module game.menu;
module game.state.menu;
import game.data;
import game.gstatemanager;

View File

@ -1,8 +1,9 @@
module game.play;
module game.state.play;
import game.data;
import game.gstatemanager;
import game.player;
import game.entity.player;
import game.entity.coin;
import std.file: getcwd;
import std.path: buildPath;
@ -11,19 +12,24 @@ import std.string: toStringz;
class Play: IState {
// variables
private {
Texture2D texPlayer;
Texture2D texPlayer, texCoin;
Player player;
Coin coin;
}
this() {
texPlayer = LoadTexture(getcwd.buildPath("../../assets/Evil Wizard/Evil Wizard.png").toStringz);
player = new Player(texPlayer, Rectangle(75, 75, 125, 125), Vector2(0, 0));
// texPlayer = LoadTexture(getcwd.buildPath("../../assets/fire/png/blue/loops/burning_loop_1_144x192.png").toStringz);
// player = new Player(texPlayer, Rectangle(0, 0, 144, 192), Vector2(0, 0));
// player
texPlayer = LoadTexture(getcwd.buildPath("../../assets/spritesheets/player/woodcutter/Woodcutter.png").toStringz);
player = new Player(texPlayer, Rectangle(0, 0, 48, 48), Vector2(0, 0));
// coin
texCoin = LoadTexture(getcwd.buildPath("../../assets/spritesheets/coins/MonedaD.png").toStringz);
coin = new Coin(texCoin, Rectangle(0, 0, 16, 16), Vector2(0, 0));
}
~this() {
UnloadTexture(texPlayer);
UnloadTexture(texCoin);
}
// inherited from IState interface
@ -35,6 +41,7 @@ class Play: IState {
void update() {
player.update();
coin.update();
}
void processEvents() {
@ -50,9 +57,10 @@ class Play: IState {
BeginDrawing(); scope(exit) { EndDrawing(); }
// clear background
ClearBackground(Colors.YELLOW);
ClearBackground(Colors.GRAY);
// draw
player.draw();
coin.draw();
}
}