aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_drawmap.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_drawmap.c24
1 files changed, 21 insertions, 3 deletions
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 <libft.h>
+#include <cub3d.h>
-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++;
+ }
}