42_solong/main.c
Camille Chauvet 195f7bc66a ca marche
2023-01-09 20:41:06 +01:00

61 lines
1.9 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/12 17:20:17 by cchauvet #+# #+# */
/* Updated: 2023/01/09 20:39:28 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#include "solong.h"
int ft_initialised(char *path)
{
t_data *data;
t_map *map;
data = ft_calloc(1, sizeof(t_data));
if (data == NULL)
return (1);
map = ft_getmap(path);
if (map == NULL)
{
ft_printf("Map error\n");
return (1);
}
data->map = map;
data->mlx = mlx_init();
data->window = mlx_new_window(data->mlx, WINDOW_SIZE, WINDOW_SIZE, "solong");
ft_draw_map(data);
mlx_key_hook(data->window, ft_key, data);
mlx_loop(data->mlx);
ft_freer_tab_ultimate(1, map->patern);
mlx_destroy_window(data->mlx, data->window);
mlx_destroy_display(data->mlx);
free(data->mlx);
ft_freer_ultimate(5, data->bcolor, data->pcolor, data->ccolor, data->wcolor, data->ecolor);
free(data);
free(map);
return (0);
}
int main(int ac, char **av)
{
if (ac != 2)
{
ft_printf("Map error\n");
return (1);
}
ft_printf("Generating assets ...\n");
ft_gen_assets();
ft_printf("Generating assets [FINISHED]\n");
ft_initialised(av[1]);
// mlx_destroy_window(data.mlx, data.window);
// mlx_destroy_display(data.mlx);
// free(data.mlx);
return (1);
}