42_cube3D/map/parsing_body.c

190 lines
3.2 KiB
C
Raw Normal View History

2023-05-03 07:09:06 -04:00
#include "map.h"
#include "parsing_private.h"
#include <stddef.h>
#include <stdlib.h>
char **get_body(const char **file_content, size_t header_size)
{
char **body;
size_t i;
size_t len;
len = 0;
while (file_content[header_size + len] != NULL)
len++;
body = malloc((len + 1) * sizeof(char *));
if (body == NULL)
return (NULL);
body[len] = NULL;
i = 0;
while (i < len)
{
body[i] = ft_strdup(file_content[header_size + i]);
if (body[i] == NULL)
{
ft_cancel((void **) body, i);
return (NULL);
}
i++;
}
return (body);
}
int get_spawn_position(const char **body, long long *spawn_x, long long *spawn_y)
{
size_t x;
size_t y;
*spawn_x = -1;
*spawn_y = -1;
y = 0;
while (body[y] != NULL)
{
x = 0;
while (body[y][x] != '\0')
{
if (ft_is_in("NSEW", body[y][x]))
{
if (*spawn_x != -1)
return (1);
*spawn_x = x;
*spawn_y = y;
}
x++;
}
y++;
}
if (*spawn_x == -1)
return (2);
return (0);
}
static int map_is_in_one_part(const char **body)
{
size_t y;
2023-05-03 10:33:57 -04:00
y = ft_tablen((const void **) body) - 1;
2023-05-03 07:09:06 -04:00
while (body[y][0] == '\0' || ft_contain_only(body[y], ' '))
y--;
while (y > 0)
{
if (body[y][0] == '\0' || ft_contain_only(body[y], ' '))
return (1);
y--;
}
return (0);
}
2023-05-04 07:47:18 -04:00
static char **map_cpy(const char **body)
2023-05-03 07:09:06 -04:00
{
size_t i;
char **copy;
copy = malloc((ft_tablen((const void **) body) + 1) * sizeof(char *));
if (copy == NULL)
2023-05-04 07:47:18 -04:00
return (NULL);
2023-05-03 07:09:06 -04:00
i = 0;
while (body[i] != NULL)
{
copy[i] = ft_strdup(body[i]);
if (copy[i] == NULL)
{
ft_cancel((void **) copy, i);
2023-05-04 07:47:18 -04:00
return (NULL);
2023-05-03 07:09:06 -04:00
}
i++;
}
copy[i] = NULL;
2023-05-04 07:47:18 -04:00
return (copy);
}
static int map_surround(const char **body)
{
char **copy;
size_t y;
size_t x;
copy = map_cpy(body);
if (copy == NULL)
2023-05-03 07:09:06 -04:00
return (1);
2023-05-04 07:47:18 -04:00
y = 0;
while (body[y] != NULL)
{
x = 0;
while (body[y][x] != '\0')
{
if (body[y][x] == '0')
{
if (body[y + 1] == NULL || (y == 0)
|| (body[y][x + 1] == '\0') || (x == 0)
|| (body[y + 1][x] == ' ' || body[y + 1][x] == '\0')
|| (body[y - 1][x] == ' ' || body[y - 1][x] == '\0')
|| (body[y][x - 1] == ' ' || body[y][x - 1] == '\0')
|| (body[y][x + 1] == ' ' || body[y][x + 1] == '\0'))
return (1);
}
x++;
}
y++;
2023-05-03 07:09:06 -04:00
}
ft_freer_tab_ultimate(1, copy);
return (0);
}
static int body_contain_normal_char(const char **body)
{
unsigned int y;
unsigned int x;
y = 0;
while (body[y] != NULL)
{
x = 0;
while (body[y][x] != '\0')
{
if (!ft_is_in(" 01NEWS", body[y][x]))
{
ft_eprintf("map: %c: invalid character at rows=%u, colums=%u", body[y][x], y, x);
return (0);
}
x++;
}
y++;
}
return (1);
}
2023-05-03 07:09:06 -04:00
int body_is_valid(const char **body, t_map *map)
{
int error;
2023-05-03 10:33:57 -04:00
if (body == NULL)
return (0);
2023-05-03 07:09:06 -04:00
error = get_spawn_position(body, &map->spawn_x, &map->spawn_y);
if (error == 1)
{
ft_eprintf("map: spawn position: multiple definition");
2023-05-03 10:33:57 -04:00
return (0);
2023-05-03 07:09:06 -04:00
}
else if (error == 2)
{
ft_eprintf("map: spawn position: not define");
2023-05-03 10:33:57 -04:00
return (0);
2023-05-03 07:09:06 -04:00
}
2023-05-04 07:47:18 -04:00
error = map_surround(body);
2023-05-03 07:09:06 -04:00
if (error)
{
ft_eprintf("map: not surrounded");
2023-05-03 10:33:57 -04:00
return (0);
2023-05-03 07:09:06 -04:00
}
error = map_is_in_one_part(body);
if (error)
{
ft_eprintf("map: splitted");
2023-05-03 10:33:57 -04:00
return (0);
2023-05-03 07:09:06 -04:00
}
if (body_contain_normal_char(body) == 0)
return (0);
2023-05-03 10:33:57 -04:00
return (1);
2023-05-03 07:09:06 -04:00
}