aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_key_events.c
blob: 8c8167ac9666b38d634c45e19e58a2f8b669ff70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <libft.h>
#include <cub3d.h>
#include <stdlib.h>

static int
ft_w_key(void)
{
	ft_printf("[W]\n");
	return (0);
}

static int
ft_a_key(void)
{
	ft_printf("[A]\n");
	return (0);
}

static int
ft_s_key(void)
{
	ft_printf("[S]\n");
	return (0);
}

static int
ft_d_key(void)
{
	ft_printf("[D]\n");
	return (0);
}

int
ft_key_event(int keycode, void *param)
{
	int (*fun_ptr[4])(void);

	fun_ptr[0] = ft_w_key;
	fun_ptr[1] = ft_a_key;
	fun_ptr[2] = ft_s_key;
	fun_ptr[3] = ft_d_key;
	ft_printf("Key [%d] pressed\n", keycode);
	(keycode == FT_W_KEY) ? (keycode = 0) : 0;
	(keycode == FT_A_KEY) ? (keycode = 1) : 0;
	(keycode == FT_S_KEY) ? (keycode = 2) : 0;
	(keycode == FT_D_KEY) ? (keycode = 3) : 0;
	(keycode <= 3) ? ((*fun_ptr[keycode])()) : 0;
	if (keycode == FT_ESC_KEY)
		ft_exit(0, ((t_win*)param));
	return (0);
}