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

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

int
	ft_error(uint8_t retval, const char *errmsg, t_cub *clist)
{
	ft_dprintf(STDERR_FILENO, "Error\n");
	ft_dprintf(STDERR_FILENO,
				"\033[1;31m%s\033[0m\n",
				errmsg);
	return (ft_exit(retval, clist));
}

int
	ft_map_error(const char *errmsg, t_cub *clist)
{
	ft_dprintf(STDERR_FILENO, "Error\n");
	ft_dprintf(STDERR_FILENO,
				"\033[1;31mMap error: line %lu: %s\033[0m\n",
				clist->mlist.line_chk,
				errmsg);
	return (ft_exit(FT_RET_MAP_ERR, clist));
}

int
	ft_alloc_error(t_cub *clist)
{
	ft_dprintf(STDERR_FILENO, "Error\n");
	ft_dprintf(STDERR_FILENO,
				"\033[1;31m%s\033[0m\n", FT_ERR_ALLOCATE);
	return (ft_exit(FT_RET_ALLOC_ERR, clist));
}

int
	ft_missing_error(const char *err, t_cub *clist)
{
	ft_dprintf(STDERR_FILENO, "Error\n");
	ft_dprintf(STDERR_FILENO,
				"\033[1;31m%s %s\033[0m\n", FT_ERR_MISS_ELEMENT, err);
	return (ft_exit(FT_ERR_MISSING, clist));
}