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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cub3d.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/15 06:40:37 by cacharle #+# #+# */
/* Updated: 2019/11/15 09:28:43 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#ifndef CUB3D_H
# define CUB3D_H
# define MLXK_W 13
# define MLXK_A 0
# define MLXK_S 1
# define MLXK_D 2
# define MLXK_ESC 53
# include <unistd.h>
# include <fcntl.h>
# include <stdlib.h>
# include "mlx.h"
# include "libft.h"
# define TRUE 1
# define FALSE 0
typedef int t_bool;
typedef struct
{
int x;
int y;
} t_vector;
typedef struct
{
int r;
int g;
int b;
} t_color;
typedef enum
{
CELL_EMPTY,
CELL_WALL,
CELL_ITEM,
CELL_LOOK_NORTH,
CELL_LOOK_SOUTH,
CELL_LOOK_WEST,
CELL_LOOK_EAST
} t_cell;
typedef t_cell** t_map;
typedef struct
{
int resolution_height;
int resolution_width;
char *north_texture_path;
char *south_texture_path;
char *west_texture_path;
char *east_texture_path;
char *sprite_texture_path;
t_color floor_color;
t_color ceilling_color;
t_map map;
int map_width;
int map_height;
} t_parsing;
typedef struct s_state
{
t_bool running;
t_vector pos;
t_vector dir;
t_vector plane;
} t_state;
typedef t_bool (*t_option_parser_func)(t_parsing *parsing, char *line);
typedef struct s_option_parser
{
char *id;
t_option_parser_func func;
} t_option_parser;
/*
** parse.c
*/
t_parsing *parse(char *filename);
char **get_file_lines(char *filename);
t_bool parse_line(t_parsing *parsing, char *line);
t_parsing *parse_map(t_parsing *parsing, char **lines);
t_cell *create_map_row(char *line);
/*
** parse_*.c
*/
t_bool parse_resolution(t_parsing *parsing, char *line);
t_bool parse_north_texture(t_parsing *parsing, char *line);
t_bool parse_south_texture(t_parsing *parsing, char *line);
t_bool parse_west_texture(t_parsing *parsing, char *line);
t_bool parse_east_texture(t_parsing *parsing, char *line);
t_bool parse_sprite_texture(t_parsing *parsing, char *line);
t_bool parse_floor_color(t_parsing *parsing, char *line);
t_bool parse_ceilling_color(t_parsing *parsing, char *line);
/*
** event.c
*/
int handle_key(int key, void *param);
#endif
|