/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_drawmap.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2020/02/02 17:19:18 by rbousset #+# ## ## #+# */ /* Updated: 2020/02/02 17:19:19 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include #include #include static void ft_draw_core_map(char **map, t_cub *clist) { size_t x; size_t y; x = 0; y = 0; while (map[y]) { while (map[y][x]) { if (map[y][x] == '1') ft_drawsquare(40 + (x * 41), 40 + (y * 41), 0x00aa99aa, clist); else if (map[y][x] == '2') ft_drawsquare(40 + (x * 41), 40 + (y * 41), 0x0033ccff, clist); else ft_drawsquare(40 + (x * 41), 40 + (y * 41), clist->f_color, clist); x++; } x = 0; y++; } } static void ft_draw_player(t_player *plist, t_cub *clist) { const float x = plist->pos_x; const float y = plist->pos_y; ft_drawsquare(40 + (x * 41), 40 + (y * 41), 0x009843fa, clist); } void ft_drawmap(t_cub *clist) { mlx_clear_window(clist->wlist->wlx, clist->wlist->winptr); ft_draw_core_map(clist->map, clist); ft_draw_player(clist->plist, clist); }