blob: 4ae497a6a55c40d7b4842e0ef9c66e52e3218fe1 (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_draw_hud.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 <cub3d.h>
#include <mlx.h>
#include <stdint.h>
static void
ft_draw_minimap_back(size_t map_h, size_t map_w, t_win *wl, t_cub *cl)
{
const uint16_t scl = cl->mlist.scale;
uint32_t x;
uint32_t y;
int32_t col;
col = 0x00353535;
x = 0;
y = wl->y_size - (map_h * scl) - 20;
while (x < (map_w * scl) + 20)
{
while (y < wl->y_size)
{
*(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = col;
if (!(y % 3))
{
if (col < 0x00aaaaaa)
col += 0x00010101;
}
y++;
}
col = 0x00353535;
y = wl->y_size - (map_h * scl) - 20;
x++;
}
}
static void
ft_draw_stage_back(t_cub *clist)
{
float x;
uint32_t y;
int32_t col;
uint16_t x_dest;
const uint16_t scl = clist->mlist.scale;
col = 0x00353535;
x = 0;
y = clist->wlist.y_size - (clist->mlist.map_h * scl) - 45;
x_dest = 1.5 * clist->mlist.scale + 70;
while (x_dest > (clist->mlist.map_w * scl) + 20)
{
x_dest--;
}
while (x < x_dest)
{
while (y < clist->wlist.y_size - (clist->mlist.map_h * scl) - 20)
{
*(int*)(clist->img.ptr +
((uint8_t)x * 4 + (y * clist->img.sizeline))) = col;
y++;
}
y = clist->wlist.y_size - (clist->mlist.map_h * scl) - 45;
x += 1.0;
}
}
int8_t
ft_draw_hud(t_cub *clist)
{
ft_draw_minimap_back(clist->mlist.map_h,
clist->mlist.map_w, &clist->wlist, clist);
ft_draw_map(clist->mlist.map, clist);
if (clist->mlist.isnlvl)
{
ft_draw_stage_back(clist);
}
return (0);
}
|