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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_draw_life_bar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/22 20:02:47 by rbousset #+# #+# */
/* Updated: 2020/02/22 20:02:48 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
static void
ft_draw_tnum(int8_t id, int16_t y, int16_t x, t_cub *cl)
{
const int16_t scl = cl->mlist.scale;
cl->img.ptr[x * 4 + (cl->img.sizeline * (y +
cl->wlist.y_size - (cl->mlist.map_h * scl) - 10))] =
(uint8_t)cl->tnum[id].ptr[cl->tnum[id].tex_x * 4 + 4 *
cl->tnum[id].img_w * cl->tnum[id].tex_y];
cl->img.ptr[x * 4 + (cl->img.sizeline * (y +
cl->wlist.y_size - (cl->mlist.map_h * scl) - 10)) + 1] =
(uint8_t)cl->tnum[id].ptr[cl->tnum[id].tex_x * 4 + 4 *
cl->tnum[id].img_w * cl->tnum[id].tex_y + 1];
cl->img.ptr[x * 4 + (cl->img.sizeline * (y +
cl->wlist.y_size - (cl->mlist.map_h * scl) - 10)) + 2] =
(uint8_t)cl->tnum[id].ptr[cl->tnum[id].tex_x * 4 + 4 *
cl->tnum[id].img_w * cl->tnum[id].tex_y + 2];
}
/* static void */
/* ft_put_image_from_number(char *num, t_cub *cl) */
/* { */
/* } */
static void
ft_put_percent_image(uint16_t h, uint16_t w, t_cub *cl)
{
int32_t x_ratio;
int32_t y_ratio;
int16_t x;
int16_t y;
const int16_t scl = cl->mlist.scale;
x_ratio = (int)(((cl->tnum[10].img_w) << 16) / w) + 1;
y_ratio = (int)(((cl->tnum[10].img_h) << 16) / h) + 1;
y = 0;
while (y < h)
{
cl->tnum[10].tex_y = ((y * y_ratio) >> 16);
x = ((cl->mlist.map_w * scl) + 20) + (32 * scl) - ((32 * scl) / 4);
while (x < (int32_t)((cl->mlist.map_w * scl) + 10 + ((32 * scl))))
{
cl->tnum[10].tex_x = ((x * x_ratio) >> 16);
if (cl->tnum[10].ptr[cl->tnum[10].tex_x * 4 + 4 *
cl->tnum[10].img_h * cl->tnum[10].tex_y])
{
ft_draw_tnum(10, y, x, cl);
}
x++;
}
y++;
}
}
static void
ft_get_hw(t_cub *cl)
{
int16_t x;
int16_t y;
const int16_t scl = cl->mlist.scale;
y = cl->wlist.y_size - (cl->mlist.map_h * scl) - 10;
while (y < (int16_t)(cl->wlist.y_size - 10))
{
x = ((cl->mlist.map_w * scl) + 20) + (32 * scl) - ((32 * scl) / 4);
while (x < (int16_t)((cl->mlist.map_w * scl) + 10 + ((32 * scl))))
x++;
y++;
}
y -= cl->wlist.y_size - (cl->mlist.map_h * scl) - 10;
x -= ((cl->mlist.map_w * scl) + 20) + (32 * scl) - ((32 * scl) / 4);
ft_put_percent_image(y, x, cl);
}
void
ft_draw_life_bar(t_cub *cl)
{
char *num;
float calc;
ft_get_hw(cl);
calc = ((float)cl->plist.life / (float)FT_STRT_LIFE) * 100.0;
if (!(num = ft_itoa((int64_t)calc)))
ft_error(FT_RET_ALLOC_ERR, FT_ERR_ALLOCATE, cl);
ft_put_image_from_number(num, cl);
ft_memdel((void*)&num);
}
|