42_solong/draw.c

67 lines
1.9 KiB
C
Raw Normal View History

2022-12-22 11:41:31 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* draw.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/13 15:49:23 by cchauvet #+# #+# */
/* Updated: 2023/01/08 17:57:57 by cchauvet ### ########.fr */
2022-12-22 11:41:31 -05:00
/* */
/* ************************************************************************** */
#include "solong.h"
static void ft_draw_xpm(t_data *data, char *img_path, size_t x, size_t y)
2022-12-22 11:41:31 -05:00
{
int bozo;
2023-01-06 13:37:36 -05:00
void *img;
2022-12-22 11:41:31 -05:00
img = mlx_xpm_file_to_image(data->mlx, img_path, &bozo, &bozo);
if (img == NULL)
return ;
mlx_put_image_to_window(data->mlx, data->window, img, x, y);
mlx_destroy_image(data->mlx, img);
2022-12-22 11:41:31 -05:00
}
2023-01-06 13:37:36 -05:00
static char *ft_char2xpm(t_data data, char c)
{
if (c == 'C')
return (data.ccolor);
if (c == '1')
return (data.wcolor);
if (c == 'E')
return (data.ecolor);
if (c == 'P')
return (data.pcolor);
return (NULL);
}
int ft_draw_map(t_data *data, t_map *map)
2023-01-06 13:37:36 -05:00
{
size_t x;
size_t y;
char **patern;
char *path;
2023-01-06 13:37:36 -05:00
patern = ft_get_player_map(*map);
if (patern == NULL)
return (1);
ft_draw_xpm(data, data->bcolor, 0, 0);
2023-01-06 13:37:36 -05:00
y = 0;
while (patern[y] != NULL)
2023-01-06 13:37:36 -05:00
{
x = 0;
while (patern[y][x] != '\0')
{
path = ft_char2xpm(*data, patern[y][x]);
if (path != NULL)
ft_draw_xpm(data, path, x * CASE_SIZE, y * CASE_SIZE);
x++;
}
y++;
2023-01-06 13:37:36 -05:00
}
//ft_freer_tab_ultimate(1, patern);
return (0);
2023-01-06 13:37:36 -05:00
}