diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | inc/cub3d.h | 1 | ||||
-rw-r--r-- | src/ft_key_events.c | 18 | ||||
-rw-r--r-- | src/main.c | 1 |
4 files changed, 21 insertions, 0 deletions
@@ -18,6 +18,7 @@ INCS = cub3d.h #------------------------------------------------------------------------------# SRCS_NAME = main.c SRCS_NAME += ft_init_lists.c +SRCS_NAME += ft_key_events.c # SRCS_NAME += ft_parse_map.c #------------------------------------------------------------------------------# SRCS = $(addprefix ${SRCS_DIR},${SRCS_NAME}) diff --git a/inc/cub3d.h b/inc/cub3d.h index eaac735..ca12f8a 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -17,5 +17,6 @@ typedef struct s_cublist t_cublist *ft_init_cublist(void); t_winlist *ft_init_winlist(void); void ft_parse_map(t_cublist *clist); +int ft_key_event(int keycode, void *param); #endif diff --git a/src/ft_key_events.c b/src/ft_key_events.c new file mode 100644 index 0000000..f333cd0 --- /dev/null +++ b/src/ft_key_events.c @@ -0,0 +1,18 @@ +#include <libft.h> +#include <cub3d.h> +#include <stdlib.h> + +int +ft_key_event(int keycode, void *param) +{ + (void)param; + ft_printf("Key [%d] pressed\n", keycode); + if (keycode == 53) + { + /* ft_memdel(param->wlx); */ + /* ft_memdel(param->winptr); */ + /* ft_memdel(param); */ + exit(0); + } + return (0); +} @@ -11,6 +11,7 @@ int wlist = ft_init_winlist(); clist = ft_init_cublist(); + mlx_key_hook(wlist->winptr, ft_key_event, wlist); mlx_loop(wlist->wlx); ft_memdel(wlist->wlx); ft_memdel(wlist->winptr); |