-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseCharacter.cpp
58 lines (48 loc) · 1.27 KB
/
BaseCharacter.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include "BaseCharacter.h"
#include "raymath.h"
BaseCharacter::BaseCharacter()
{
}
void BaseCharacter::undoMovement()
{
worldPos = worldPostLastFrame;
}
Rectangle BaseCharacter::getCollisionRec()
{
return Rectangle{
getScreenPos().x,
getScreenPos().y,
width * scale,
height * scale
};
}
void BaseCharacter::tick(float deltaTime)
{
worldPostLastFrame = worldPos;
// update animation frame
runningTime += deltaTime;
if (runningTime >= updateTime)
{
frame++;
runningTime = 0.f;
if (frame > maxFrames)
frame = 0;
}
if (Vector2Length(velocity) != 0.0)
{
// set worldPos = worldPos + velocity
worldPos = Vector2Add(worldPos, Vector2Scale(Vector2Normalize(velocity), speed));
velocity.x < 0.f ? rightLeft = -1.f : rightLeft = 1.f;
texture = run;
}
else
{
// setting the currenct spritesheet "knight" to the "knight_idle" spritesheet
texture = idle;
}
velocity = {};
// draw the character
Rectangle source{frame * width, 0.f, rightLeft * width, height};
Rectangle dest{getScreenPos().x, getScreenPos().y, scale * width, scale * height};
DrawTexturePro(texture, source, dest, Vector2{}, 0.f, WHITE);
}