diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-23 17:36:01 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-23 17:36:01 +0100 |
commit | 3a6bed0d03a3e73a6ad2704d1f858174520863c6 (patch) | |
tree | d74b4aa36febc25612d8d56eae100dd7a9d1f59f | |
parent | nice (diff) | |
download | 42-cub3d-3a6bed0d03a3e73a6ad2704d1f858174520863c6.tar.gz 42-cub3d-3a6bed0d03a3e73a6ad2704d1f858174520863c6.tar.bz2 42-cub3d-3a6bed0d03a3e73a6ad2704d1f858174520863c6.tar.xz 42-cub3d-3a6bed0d03a3e73a6ad2704d1f858174520863c6.tar.zst 42-cub3d-3a6bed0d03a3e73a6ad2704d1f858174520863c6.zip |
window now closes
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); |