From 0978388f4ae8f78c53ade14db1d5c1c8819e4310 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Mon, 27 Jan 2020 20:22:14 +0100 Subject: Nice map drawing --- src/ft_drawmap.c | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'src/ft_drawmap.c') diff --git a/src/ft_drawmap.c b/src/ft_drawmap.c index f944b11..c0854e0 100644 --- a/src/ft_drawmap.c +++ b/src/ft_drawmap.c @@ -1,7 +1,25 @@ #include +#include -int -ft_drawmap(void) +void +ft_drawmap(t_cub *clist) { - return (0); + int x; + int y; + + (void)clist; + x = 0; + y = 0; + while (clist->map[x]) + { + while (clist->map[x][y]) + { + if (clist->map[x][y] == '1') + ft_drawsquare(40 + (y * 41), 40 + (x * 41), + clist->f_color, clist); + y++; + } + y = 0; + x++; + } } -- cgit v1.2.3