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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
#include "player.h"
void input_player_direction(player_t *p){
Vector2 v = {0, 0};
if (IsKeyDown(KEY_W)){
v.y = -1;
} else if (IsKeyDown(KEY_S)) {
v.y = 1;
}
if (IsKeyDown(KEY_D)){
v.x = 1;
} else if (IsKeyDown(KEY_A)){
v.x = -1;
}
int new_offset = get_dir((v.x + 1) + 3 * (v.y + 1));
if (new_offset != p->animation.index_offset){
animation_player_t *anim = &p->animation;
anim->index_offset = new_offset;
anim->frame_current = anim->index_start + anim->index_offset;
}
if (v.x != 0 || v.y != 0){
v = normalize_vector(v);
}
p->direction = v;
}
void update_player(player_t *p, float dt){
if (p->state.iframe_active){
p->iframe_duration -= dt;
if (p->iframe_duration <= 0){
p->state.iframe_active = 0;
p->iframe_duration = 0;
}
}
input_player_direction(p);
update_frame(&p->animation);
if (p->direction.x == 0 && p->direction.y == 0){
p->state.move = PS_STANDING;
p->animation.frame_speed = 0;
p->animation.frame_current = 20;
animation_player_t *anim = &p->animation;
anim->frame_rec.x = (anim->frame_current % 8) * anim->frame_width;
anim->frame_rec.y = (anim->frame_current / 8) * anim->frame_height;
} else if (IsKeyDown(KEY_LEFT_SHIFT)){
p->speed = PLAYER_SPEED_SPRINT;
p->state.move = PS_RUNNING;
p->animation.frame_speed = 10;
} else /* (IsKeyReleased(KEY_LEFT_SHIFT)) */ {
p->speed = PLAYER_SPEED_NORMAL;
p->state.move = PS_WALKING;
p->animation.frame_speed = 5;
}
float delta_x = p->direction.x * p->speed * dt;
float delta_y = p->direction.y * p->speed * dt;
p->position.x += delta_x;
p->position.y += delta_y;
p->hitbox.x += delta_x;
p->hitbox.y += delta_y;
p->camera.target = p->position;
p->camera.zoom += ((float)GetMouseWheelMove()*0.05f);
if (p->camera.zoom > 3.0f) p->camera.zoom = 3.0f;
else if (p->camera.zoom < 0.1f) p->camera.zoom = 0.1f;
}
void draw_player(player_t *p){
draw_frame(&p->animation, p->position, p->state.iframe_active ? RED : WHITE);
draw_frame_box(&p->animation, p->position);
DrawRectangleLinesEx(p->hitbox, 1, LIGHTGRAY);
Rectangle hb = p->hitbox;
Rectangle health_box = { hb.x, hb.y + hb.height + 5, hb.width, 5};
float per_health_width = health_box.width / p->health_max;
DrawRectangleLinesEx(health_box, 1, BLACK);
DrawRectangleRec((Rectangle){health_box.x, health_box.y, per_health_width * p->health, 5}, RED);
/* animation_player_t *anim = &p->animation; */
/* /\* draw_frame(anim); *\/ */
/* DrawTextureRec(*anim->sheet, anim->frame_rec, p->position, WHITE); */
/* if (p->state == RUNNING){ */
/* /\* DrawTexture(Texture2D texture, int posX, int posY, Color tint); *\/ */
/* } */
}
player_t make_player(Texture2D *texture){
animation_player_t anim = {
.sheet = texture,
.frame_counter = 0,
.frame_speed = 5,
.frame_width = texture->width / 8.0,
.frame_height = texture->height / 12.0,
.index_start = 8,
.index_end = 32,
.index_increment = 8,
.index_offset = 0
};
anim.frame_current = anim.index_start;
anim.frame_rec = (Rectangle){0, 0, anim.frame_width, anim.frame_height};
player_t player = {
.position = (Vector2){ WINDOW_WIDTH / 2, WINDOW_HEIGHT / 2 - 100 },
.speed = PLAYER_SPEED_NORMAL,
.animation = anim,
.health = 3,
.health_max = 3,
.iframe_duration = 0,
.iframe_duration_max = 1,
.state = (player_state_t){
.move = PS_STANDING,
.can_move = 1,
.iframe_active = 0,
.alive = 1
}
};
player.hitbox = (Rectangle){
player.position.x,
player.position.y + 5,
anim.frame_rec.width,
anim.frame_height - 5
};
player.camera = (Camera2D){
.target = (Vector2){ player.position.x, player.position.y },
.offset = (Vector2){ WINDOW_WIDTH/2.0f, WINDOW_HEIGHT /2.0f },
.rotation = 0.0f,
.zoom = 1.0f
};
return player;
}
sprite_dir_enum _directions[9] = {
SP_NORTH_WEST,
SP_NORTH,
SP_NORTH_EAST,
SP_WEST,
SP_SOUTH,
SP_EAST,
SP_SOUTH_WEST,
SP_SOUTH,
SP_SOUTH_EAST,
};
sprite_dir_enum get_dir(int index){
return _directions[index];
}
int take_damage(player_t *p, int amount){
if (p->state.iframe_active){
return p->health;
}
p->health -= amount;
p->state.iframe_active = 1;
p->iframe_duration = p->iframe_duration_max;
if (p->health <= 0){
p->state.alive = 0;
return 0;
} else {
return p->health;
}
}
|