aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_check_map_line.c
blob: 0d164cdbca417282361d560c12ec5b229c2d5b06 (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
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>

size_t
ft_get_line_len(char *line)
{
	size_t	i;
	size_t	j;

	i = 0;
	j = 0;
	while (line[i])
	{
		if (line[i] == ' ')
			j++;
		i++;
	}
	return (i - j);
}

int8_t
ft_check_map_line(char *line, uint8_t l, t_cub *clist)
{
	size_t	i;

	i = 0;
	while (line[i])
	{
		if (l != 1)
		{
			if (!ft_ischarset("012NSEW ", line[i]))
				return (-1);
			if (ft_ischarset("NSEW", line[i]))
				clist->nsew += 1;
			if (clist->nsew > 1)
				return (-1);
		}
		else
		{
			if (!ft_ischarset("1 ", line[i]))
				return (-1);
		}
		i++;
	}
	if (line[0] != '1' || line[i - 1] != '1'
		|| ft_get_line_len(line) != clist->map_w)
		return (-1);
	return (0);
}