aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_sprite.c
blob: 43de2901c17eb32eaff7a1116f378f1116d9a628 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_get_sprite.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_sprite_spawn(t_cub *clist)
{

	(void)clist;
}

int8_t
	ft_get_sprite(char **words, t_cub *clist)
{
	if (!(*words) || !words[1] || words[2])
	{
		ft_strlcpy(clist->errmsg, FT_ERR_ARGS, ft_strlen(FT_ERR_ARGS) + 1);
		return (-1);
	}
	if (ft_check_ext(*(words + 1), ".xpm") < 0)
	{
		ft_strlcpy(clist->errmsg, FT_ERR_NOT_A_XPM,
				ft_strlen(FT_ERR_NOT_A_XPM) + 1);
		return (-1);
	}
	ft_memdel((void**)&clist->mlist->sprite_path);
	if (!(clist->mlist->sprite_path = ft_strdup(*(words + 1))))
	{
		ft_strlcpy(clist->errmsg, FT_ERR_ALLOCATE,
				ft_strlen(FT_ERR_ALLOCATE) + 1);
		return (-1);
	}
	if (ft_check_not_found(clist->mlist->sprite_path) < 0)
	{
		ft_strlcpy(clist->errmsg, FT_ERR_RD_SP, ft_strlen(FT_ERR_RD_SP) + 1);
		return (-1);
	}
	return (0);
}