diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-09 02:11:22 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-09 02:11:31 +0100 |
commit | 40108b83398240f50c6045bfb2bf114bded43c72 (patch) | |
tree | 61e0e483e31e17724b2dd7e1a70088659e5be1bd /src/ft_get_tex_extra.c | |
parent | Boy (diff) | |
download | 42-cub3d-40108b83398240f50c6045bfb2bf114bded43c72.tar.gz 42-cub3d-40108b83398240f50c6045bfb2bf114bded43c72.tar.bz2 42-cub3d-40108b83398240f50c6045bfb2bf114bded43c72.tar.xz 42-cub3d-40108b83398240f50c6045bfb2bf114bded43c72.tar.zst 42-cub3d-40108b83398240f50c6045bfb2bf114bded43c72.zip |
Reparse, may not compile
Diffstat (limited to 'src/ft_get_tex_extra.c')
-rw-r--r-- | src/ft_get_tex_extra.c | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/ft_get_tex_extra.c b/src/ft_get_tex_extra.c new file mode 100644 index 0000000..acb7495 --- /dev/null +++ b/src/ft_get_tex_extra.c @@ -0,0 +1,70 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_get_tex_extra.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/28 18:24:52 by rbousset #+# #+# */ +/* Updated: 2020/02/28 18:24:56 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include <libft.h> +#include <cub3d.h> + +int8_t + ft_get_f_tex(char **words, t_cub *clist) +{ + if (!(*words) || !(*(words + 1)) || (*(words + 2))) + { + ft_sprintf(clist->errmsg, "%s", FT_ERR_ARGS); + return (-1); + } + if (ft_check_ext(*(words + 1), ".xpm") < 0) + { + ft_sprintf(clist->errmsg, "%s", FT_ERR_NOT_A_XPM); + return (-1); + } + ft_memdel((void**)&clist->mlist.fl_tex_path); + if (!(clist->mlist.fl_tex_path = ft_strdup(*(words + 1)))) + { + ft_sprintf(clist->errmsg, "%s", FT_ERR_ALLOCATE); + return (-1); + } + if (ft_check_not_found(clist->mlist.fl_tex_path) < 0) + { + ft_sprintf(clist->errmsg, FT_ERR_RD_NL_TEX); + return (-1); + } + clist->isftex = 1; + return (0); +} + +int8_t + ft_get_c_tex(char **words, t_cub *clist) +{ + if (!(*words) || !(*(words + 1)) || (*(words + 2))) + { + ft_sprintf(clist->errmsg, "%s", FT_ERR_ARGS); + return (-1); + } + if (ft_check_ext(*(words + 1), ".xpm") < 0) + { + ft_sprintf(clist->errmsg, "%s", FT_ERR_NOT_A_XPM); + return (-1); + } + ft_memdel((void**)&clist->mlist.ce_tex_path); + if (!(clist->mlist.ce_tex_path = ft_strdup(*(words + 1)))) + { + ft_sprintf(clist->errmsg, "%s", FT_ERR_ALLOCATE); + return (-1); + } + if (ft_check_not_found(clist->mlist.ce_tex_path) < 0) + { + ft_sprintf(clist->errmsg, FT_ERR_RD_NL_TEX); + return (-1); + } + clist->isctex = 1; + return (0); +} |