blob: ab16bd9202bfa3b5abae5aa8a10acf65faf40928 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* parse_floor_color.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/15 09:29:32 by cacharle #+# #+# */
/* Updated: 2019/11/18 17:23:26 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "cub3d.h"
t_bool parse_floor_color(t_parsing *parsing, char *line)
{
line++;
if ((parsing->floor_color.rgb.r = ft_atoi(line)) > 255)
return (FALSE);
line = ft_strchr(line, ',') + 1;
if ((parsing->floor_color.rgb.g = ft_atoi(line)) > 255)
return (FALSE);
line = ft_strchr(line, ',') + 1;
if ((parsing->floor_color.rgb.b = ft_atoi(line)) > 255)
return (FALSE);
return (TRUE);
}
|