/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* parsing_body2.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet size_x = 0; y = 0; while (body[y] != NULL) { x = ft_strlen(body[y]); if (x > map->size_x) map->size_x = x; y++; } map->size_y = y; } int body_is_valid2(t_map *map) { int error; error = get_spawn_position((const char **) map->map, &map->ply_x, &map->ply_y); if (error == 1) { ft_eprintf("map: spawn position: multiple definition"); return (0); } else if (error == 2) { ft_eprintf("map: spawn position: not defined"); return (0); } map->direction = map->map[(int) map->ply_y][(int) map->ply_x]; map->map[(int) map->ply_y][(int) map->ply_x] = '0'; error = map_is_in_one_part((const char **)map->map); if (error) { ft_eprintf("map: splitted"); return (0); } if (body_contain_normal_char((const char **)map->map) == 0) return (0); return (1); } int body_is_valid(t_map *map) { int error; if (map->map == NULL) return (0); if (body_is_valid2(map) == 0) return (0); error = map_surround((const char **)map->map); if (error) { ft_eprintf("map: not surrounded"); return (0); } get_size((const char **)map->map, map); return (1); }