aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_tex.c
blob: 0e394dc135f261eb716eca5488d28007f7d28fd7 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <libft.h>
#include <cub3d.h>
#include <stdlib.h>

static int
ft_get_tex_no(int fd, t_win *wlist)
{
	char	*line;
	char	**words;
	size_t	len;

	get_next_line(fd, &line);
	if (!(words = ft_split(line, ' ')))
	{
		ft_memdel(line);
		return (ft_exit(5, wlist));
	}
	if (!(*words) || ft_strcmp(*words, "NO")
		|| !(*(words + 1)) || (*(words + 2)))
	{
		ft_free_words(words, line);
		return (ft_map_error(2, wlist));
	}
	ft_memdel(wlist->clist->no_tex_path);
	len = ft_strlen(*(words + 1));
	if (!(wlist->clist->no_tex_path = (char*)malloc((len + 1) * sizeof(char))))
	{
		ft_free_words(words, line);
		return (-1);
	}
	ft_strlcpy(wlist->clist->no_tex_path, *(words + 1), len + 1);
	ft_free_words(words, line);
	return (0);
}

static int
ft_get_tex_so(int fd, t_win *wlist)
{
	char	*line;
	char	**words;
	size_t	len;

	get_next_line(fd, &line);
	if (!(words = ft_split(line, ' ')))
	{
		ft_memdel(line);
		return (ft_exit(5, wlist));
	}
	if (!(*words) || ft_strcmp(*words, "SO")
		|| !(*(words + 1)) || (*(words + 2)))
	{
		ft_free_words(words, line);
		return (ft_map_error(3, wlist));
	}
	ft_memdel(wlist->clist->so_tex_path);
	len = ft_strlen(*(words + 1));
	if (!(wlist->clist->so_tex_path = (char*)malloc((len + 1) * sizeof(char))))
	{
		ft_free_words(words, line);
		return (-1);
	}
	ft_strlcpy(wlist->clist->so_tex_path, *(words + 1), len + 1);
	ft_free_words(words, line);
	return (0);
}

static int
ft_get_tex_we(int fd, t_win *wlist)
{
	char	*line;
	char	**words;
	size_t	len;

	get_next_line(fd, &line);
	if (!(words = ft_split(line, ' ')))
	{
		ft_memdel(line);
		return (ft_exit(5, wlist));
	}
	if (!(*words) || ft_strcmp(*words, "WE")
		|| !(*(words + 1)) || (*(words + 2)))
	{
		ft_free_words(words, line);
		return (ft_map_error(4, wlist));
	}
	ft_memdel(wlist->clist->we_tex_path);
	len = ft_strlen(*(words + 1));
	if (!(wlist->clist->we_tex_path = (char*)malloc((len + 1) * sizeof(char))))
	{
		ft_free_words(words, line);
		return (-1);
	}
	ft_strlcpy(wlist->clist->we_tex_path, *(words + 1), len + 1);
	ft_free_words(words, line);
	return (0);
}

static int
ft_get_tex_ea(int fd, t_win *wlist)
{
	char	*line;
	char	**words;
	size_t	len;

	get_next_line(fd, &line);
	if (!(words = ft_split(line, ' ')))
	{
		ft_memdel(line);
		return (ft_exit(5, wlist));
	}
	if (!(*words) || ft_strcmp(*words, "EA")
		|| !(*(words + 1)) || (*(words + 2)))
	{
		ft_free_words(words, line);
		return (ft_map_error(5, wlist));
	}
	ft_memdel(wlist->clist->ea_tex_path);
	len = ft_strlen(*(words + 1));
	if (!(wlist->clist->ea_tex_path = (char*)malloc((len + 1) * sizeof(char))))
	{
		ft_free_words(words, line);
		return (-1);
	}
	ft_strlcpy(wlist->clist->ea_tex_path, *(words + 1), len + 1);
	ft_free_words(words, line);
	return (0);
}

int
ft_get_tex(int fd, t_win *wlist)
{
	if (ft_get_tex_no(fd, wlist) < 0 ||
		ft_get_tex_so(fd, wlist) < 0 ||
		ft_get_tex_we(fd, wlist) < 0 ||
		ft_get_tex_ea(fd, wlist) < 0)
		return (-1);
	return (0);
}