blob: f4d7e1e1de1a55717b96d657bbddbb0b112ad157 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_get_sprite_spawns.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:28:51 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:28:51 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
void
ft_get_next_sprite(t_cub *clist, int s_n, char c, size_t x)
{
size_t y;
int16_t i;
y = 0;
i = 0;
clist->mlist.sprite_nbr[s_n] = 0;
while (clist->mlist.map[++y])
{
while (clist->mlist.map[y][++x])
{
if (clist->mlist.map[y][x] == c)
{
clist->mlist.sprite_nbr[s_n]++;
clist->sprites[s_n][i].s_pos_x = x;
clist->sprites[s_n][i].s_pos_y = y;
i++;
}
}
x = 0;
}
if (clist->sprites[s_n][(i - 1 < 0) ? (0) : (i - 1)].s_pos_x != 0
&& s_n + 1 < 7)
{
ft_get_next_sprite(clist, s_n + 1, c + 1, 0);
}
}
void
ft_get_sprite_spawn(t_cub *clist)
{
size_t x;
size_t y;
uint8_t i;
x = 1;
y = 1;
i = 0;
clist->mlist.sprite_nbr[0] = 0;
while (clist->mlist.map[y])
{
while (clist->mlist.map[y][x])
{
if (ft_ischarset("2", clist->mlist.map[y][x]))
{
clist->mlist.sprite_nbr[0]++;
clist->sprites[0][i].s_pos_x = x;
clist->sprites[0][i].s_pos_y = y;
i++;
ft_get_next_sprite(clist, 1, '3', 0);
}
x++;
}
x = 1;
y++;
}
}
|