aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_darkness.c
blob: a6f8ed0a4bf6060d6cc2ee393581cb57a517bbf5 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_get_darkness.c                                  :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: joelecle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:28:53 by joelecle          #+#    #+#             */
/*   Updated: 2020/02/14 17:28:53 by joelecle         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <cub3d.h>

static int8_t
	ft_checkdigit(const char *word, t_cub *clist)
{
	size_t	i;

	i = 0;
	while (ft_isdigit(word[i]))
		i++;
	if (i != ft_strlen(word))
	{
		ft_sprintf(clist->errmsg, FT_ERR_SH_ALPHA);
		return (-1);
	}
	return (0);
}

int8_t
	ft_get_darkness(char **words, t_cub *clist)
{
	if (!(*words) || !words[1] || words[2])
	{
		ft_sprintf(clist->errmsg, FT_ERR_ARGS);
		return (-1);
	}
	if (ft_checkdigit(words[1], clist))
		return (-1);
	if (ft_atoi(words[1]) < 0 || ft_atoi(words[1]) > 20)
	{
		ft_sprintf(clist->errmsg, FT_ERR_SH_RANGE);
		return (-1);
	}
	clist->mlist.darklvl = ft_atoi(words[1]);
	return (0);
}