-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprite.c
79 lines (73 loc) · 2.88 KB
/
sprite.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* sprite.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mhedeon <mhedeon@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/12/13 16:29:40 by mhedeon #+# #+# */
/* Updated: 2019/01/31 17:26:53 by mhedeon ### ########.fr */
/* */
/* ************************************************************************** */
#include "wolf3d.h"
static void prepare_sprite(t_wolf *wolf, int x)
{
wolf->sp_x = wolf->m_x + 0.5 - wolf->p_x;
wolf->sp_y = wolf->m_y + 0.5 - wolf->p_y;
wolf->inv = 1.0 / (wolf->plane_x * wolf->dir_y -
wolf->plane_y * wolf->dir_x);
wolf->spt_x = wolf->inv * (wolf->dir_y * wolf->sp_x -
wolf->dir_x * wolf->sp_y);
wolf->spt_y = wolf->inv * (-wolf->plane_y * wolf->sp_x +
wolf->plane_x * wolf->sp_y);
wolf->ssx = (int)((SCREEN_WIDTH / 2) * (1 + wolf->spt_x /
wolf->spt_y));
wolf->sp_h = abs((int)(SCREEN_HEIGHT / wolf->spt_y));
wolf->sp_start = (SCREEN_HEIGHT - wolf->sp_h) / 2;
wolf->sp_end = (SCREEN_HEIGHT + wolf->sp_h) / 2;
if (wolf->sp_end >= SCREEN_HEIGHT)
wolf->sp_end = SCREEN_HEIGHT - 1;
if (wolf->sp_start <= 0)
wolf->sp_start = 0;
wolf->t_x = (int)(256 * (x - (-fabs((SCREEN_HEIGHT /
(wolf->spt_y))) / 2 + wolf->ssx)) * SPRITE_WIDTH /
fabs((SCREEN_HEIGHT / (wolf->spt_y)))) / 256;
}
void enemy_shot(t_wolf *wolf, int time)
{
static int start = 0;
if (start == 0)
{
start = SDL_GetTicks();
Mix_PlayChannel(-1, wolf->chunk[7], 0);
wolf->map[wolf->m_y * wolf->m_width + wolf->m_x].sprite = 44;
wolf->hero->health -= 6;
if (wolf->hero->health < 0)
wolf->hero->health = 0;
}
else if ((time - start) > 200 && (time - start) < 2500)
wolf->map[wolf->m_y * wolf->m_width + wolf->m_x].sprite = 43;
else if ((time - start) >= 2500)
start = 0;
}
void draw_sprite(t_wolf *wolf, int x)
{
int y;
prepare_sprite(wolf, x);
if (wolf->map[wolf->m_y * wolf->m_width + wolf->m_x].sprite == 43 ||
wolf->map[wolf->m_y * wolf->m_width + wolf->m_x].sprite == 44)
enemy_shot(wolf, SDL_GetTicks());
y = wolf->sp_start - 1;
while (++y < wolf->sp_end)
{
wolf->t_y = (((y * 2 - SCREEN_HEIGHT + wolf->sp_h) *
SPRITE_WIDTH) / wolf->sp_h) / 2;
if (wolf->t_x < SPRITE_WIDTH && wolf->t_x >= 0 && wolf->t_y <
SPRITE_HEIGHT && wolf->t_y >= 0)
{
get_color(&wolf->sprite[CURRENT_SPRITE], &wolf->color,
wolf->t_x, wolf->t_y);
set_pixel(wolf, &wolf->color, x, y);
}
}
}