aboutsummaryrefslogtreecommitdiff
path: root/player.c
blob: 801dc330f6a7f0de6c89bfc0d8a358db91bdf464 (plain) (blame)
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
#include "animation.h"
#include "components.h"
#include "game_config.h"
#include "input.h"
#include "player.h"
#include "standard.h"
#include "world.h"

void init_player(Player* player, World* world) {
	CSprite* sprite;
	CPosition* pos;
	CAnimated* animated;
	Entity e;

	e = new_entity(world);
	player->entity = e;
	add_components(
		world,
		e,
		ctype_sprite |
		ctype_position |
		ctype_animated
	);
	pos = &world->positions[e];
	sprite = &world->sprites[e];
	animated = &world->animateds[e];

	pos->x = 32;
	pos->y = 70;

	sprite->id = asset_id_char;
	sprite->rect = make_rect(0, 16, 16, 16);

	animated->id = animation_player_walk_left;
	animated->frame = 0;
	animated->timer = 0;

	player->face = 0;
}

void update_player(Player* player, World* world) {
	int dx, dy;
	int face, moving = 0;
	Entity e;
	CPosition* pos;
	CAnimated* animated;

	e = player->entity;
	pos = &world->positions[e];
	animated = &world->animateds[e];

	dx = dy = 0;
	if (button_pressed(btn_dpad_left)) {
		dx -= 1 << fbits;
	}

	if (button_pressed(btn_dpad_right)) {
		dx += 1 << fbits;
	}

	if (button_pressed(btn_dpad_up)) {
		dy -= 1 << fbits;
	}

	if (button_pressed(btn_dpad_down)) {
		dy += 1 << fbits;
	}

	if (dx || dy) {
		vec_nrmise(&dx, &dy);

		if (dx) {
			face = dx < 0 ? 0 : 1;
		} else {
			face = player->face;
		}

		pos->x += (dx * player_move_speed) >> fbits;
		pos->y += (dy * player_move_speed) >> fbits;

		moving = 1;
	}

	if (!moving) {
		animated->frame = 0;
		animated->id =
			player->face ?	
			animation_player_idle_right :
			animation_player_idle_left;
	} else {
		player->face = face;

		animated->id =
			player->face ?
			animation_player_walk_right :
			animation_player_walk_left;
	}
}