72 lines
2.2 KiB
C
72 lines
2.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* load_textures.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/12/01 17:46:52 by bgoulard #+# #+# */
|
|
/* Updated: 2024/12/16 14:25:52 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "cub3d_struct.h"
|
|
#include "cub3d_parsing.h"
|
|
|
|
#include "ft_string.h"
|
|
|
|
#include "mlx.h"
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
|
|
static void sv_errno(t_info *inf, int err_code)
|
|
{
|
|
inf->errno_state = errno;
|
|
inf->last_error = err_code;
|
|
}
|
|
|
|
bool load_texture(t_info *info, const char *str, const char **id_str)
|
|
{
|
|
size_t i;
|
|
t_texture texture;
|
|
|
|
i = 0;
|
|
while (i < 4)
|
|
{
|
|
if (ft_strstart_with(str, id_str[i]))
|
|
{
|
|
if (info->map.texture_[i].img != NULL)
|
|
return (sv_errno(info, ERROR_PARSE_ALREADY_SET), false);
|
|
texture.path = ft_strtrim(str + ft_strlen(id_str[i]), " \t");
|
|
if (texture.path == NULL)
|
|
return (sv_errno(info, ERROR_MALLOC), false);
|
|
if (ft_strend_with(texture.path, ".xpm") == false)
|
|
return (sv_errno(info, ERROR_TEXTURE_FORMAT), false);
|
|
texture.img = mlx_xpm_file_to_image(info->mlx_ptr, texture.path,
|
|
&texture.width, &texture.height);
|
|
if (texture.img == NULL)
|
|
return (sv_errno(info, ERROR_MLX), false);
|
|
return (info->map.texture_[i] = texture, true);
|
|
}
|
|
i++;
|
|
}
|
|
return (false);
|
|
}
|
|
|
|
void *load_textures(void *data)
|
|
{
|
|
const char *id_str[] = {"NO ", "SO ", "WE ", "EA ", NULL};
|
|
t_info *info;
|
|
size_t i;
|
|
|
|
i = 0;
|
|
info = (t_info *)data;
|
|
while (info->map.fraw[i])
|
|
{
|
|
if (is_identifier(info->map.fraw[i], id_str) && load_texture(info,
|
|
info->map.fraw[i], id_str) == false)
|
|
return (NULL);
|
|
i++;
|
|
}
|
|
return (info);
|
|
}
|