aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_traps.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_get_traps.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/ft_get_traps.c b/src/ft_get_traps.c
index fef3179..db0699c 100644
--- a/src/ft_get_traps.c
+++ b/src/ft_get_traps.c
@@ -14,35 +14,35 @@
#include <cub3d.h>
#include <stdint.h>
-void
- ft_get_trap_spawn(t_cub *clist)
-{
- size_t x;
- size_t y;
- uint16_t i;
+/* void */
+/* ft_get_trap_spawn(t_cub *clist) */
+/* { */
+/* size_t x; */
+/* size_t y; */
+/* uint16_t i; */
- x = 1;
- y = 1;
- i = 0;
- while (clist->mlist.map[y])
- {
- while (clist->mlist.map[y][x])
- {
- if (clist->mlist.map[y][x] == 'T')
- {
- clist->mlist.traps_nbr++;
- if (clist->mlist.traps_nbr > 512)
- ft_map_error(FT_ERR_TOO_MUCH_TRAPS, clist);
- clist->traps[i].s_pos_x = x;
- clist->traps[i].s_pos_y = y;
- i++;
- }
- x++;
- }
- x = 1;
- y++;
- }
-}
+/* x = 1; */
+/* y = 1; */
+/* i = 0; */
+/* while (clist->mlist.map[y]) */
+/* { */
+/* while (clist->mlist.map[y][x]) */
+/* { */
+/* if (clist->mlist.map[y][x] == 'T') */
+/* { */
+/* clist->mlist.traps_nbr++; */
+/* if (clist->mlist.traps_nbr > 512) */
+/* ft_map_error(FT_ERR_TOO_MUCH_TRAPS, clist); */
+/* clist->traps[i].s_pos_x = x; */
+/* clist->traps[i].s_pos_y = y; */
+/* i++; */
+/* } */
+/* x++; */
+/* } */
+/* x = 1; */
+/* y++; */
+/* } */
+/* } */
int8_t
ft_get_traps(char **words, t_cub *clist)