42_solong/mandatory/solong.h
Camille Chauvet d4f3a72f76 fix
2023-01-27 13:58:11 +01:00

67 lines
2.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* solong.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/04 16:20:03 by cchauvet #+# #+# */
/* Updated: 2023/01/18 17:29:43 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SOLONG_H
# define SOLONG_H
# include "../libftx/libftx.h"
# define XPM_PATH "./textures/"
# include <unistd.h>
# include <fcntl.h>
# include "../minilibx-linux/mlx.h"
# define CASE_SIZE 64
# define XPM_HEADER "\nstatic char * XFACE[] = {\""
# define COLORS "gold|white|pink|red|gray"
# define NB_COLORS 4
# define RENDER_DISTANCE 5
typedef struct s_square
{
char *color;
size_t size;
} t_square;
typedef struct s_map
{
size_t x_len;
size_t y_len;
size_t nb_collectable;
char **patern;
size_t player_pos[2];
size_t exit_pos[2];
} t_map;
typedef struct s_data
{
void *mlx;
void *window;
void *assets[NB_COLORS + 1];
size_t nb_foots;
t_map *map;
} t_data;
int ft_test_map_is_finishable(t_map *map);
int ft_exit(t_data *data);
int ft_test_map_content2(char **patern);
int ft_key(int key, t_data *data);
void ft_fill_pos(t_map *map);
char *name_generator(t_square square);
t_map *ft_getmap(char *path);
char *ft_xpm_gen_file(t_square square);
char **ft_readfile(char *path);
int ft_map_is_correct(t_map *map);
int ft_gen_assets(t_data *data);
char **ft_get_player_map(t_map map);
int ft_draw_map(t_data *data);
char *name_generator(t_square square);
void ft_draw_img(t_data *data, void *img, size_t x, size_t y);
#endif