aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_life_bar.c
blob: 17c6dc4329cba76178d6afceabb90c15933c2978 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   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 <cub3d.h>
#include <stdint.h>

static void
	ft_draw_green_life(uint16_t h, t_win *wl, t_cub *cl)
{
	const uint16_t	scl = cl->mlist.scale;
	uint32_t		x;
	uint32_t		y;
	int32_t			col;

	col = 0x0035ae35;
	x = (cl->mlist.map_w * scl) + 20 + 9;
	while (x < (cl->mlist.map_w * scl) + 20 + ((3 * scl) - 9))
	{
		y = (wl->y_size - (cl->mlist.map_h * scl) - 20 + 9)
			+ ((100 - cl->plist.life) * (h / (cl->mlist.map_h * scl) - 1));
		while (y < wl->y_size - 9)
		{
			*(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = col;
			if (!(y % 3))
			{
				if (col < 0x00aaaaaa)
					col += 0x00010101;
			}
			y++;
		}
		col = 0x0035ae35;
		x++;
	}
}

void
	ft_draw_life_bar(t_win *wl, t_cub *cl)
{
	const uint16_t	scl = cl->mlist.scale;
	uint32_t		x;
	uint32_t		y;
	int32_t			col;

	col = 0x00ae3535;
	x = (cl->mlist.map_w * scl) + 20 + 9;
	y = wl->y_size - (cl->mlist.map_h * scl) - 20 + 9;
	while (x < (cl->mlist.map_w * scl) + 20 + ((3 * scl) - 9))
	{
		while (y < wl->y_size - 9)
		{
			*(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = col;
			if (!(y % 3))
			{
				if (col < 0x00aaaaaa)
					col += 0x00010101;
			}
			y++;
		}
		col = 0x00ae3535;
		y = wl->y_size - (cl->mlist.map_h * scl) - 20 + 9;
		x++;
	}
	ft_draw_green_life(y, wl, cl);
}