aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_key_release.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_key_release.c')
-rw-r--r--src/ft_key_release.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/ft_key_release.c b/src/ft_key_release.c
new file mode 100644
index 0000000..e56b9d0
--- /dev/null
+++ b/src/ft_key_release.c
@@ -0,0 +1,43 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_key_release.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/17 18:43:56 by rbousset #+# #+# */
+/* Updated: 2020/02/17 18:43:59 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <libft.h>
+#include <cub3d.h>
+#include <stdint.h>
+
+static void
+ ft_pop_key(uint16_t keycode, t_cub *clist)
+{
+ uint8_t i;
+
+ i = 0;
+ while (i < 5)
+ {
+ if (clist->key_input[i] != keycode)
+ clist->key_input[i] = -1;
+ i++;
+ }
+}
+
+int
+ ft_key_release(int keycode, t_cub *clist)
+{
+ keycode = ft_convert_keycode(keycode);
+ ft_pop_key(keycode, clist);
+ ft_printf("keys [%d][%d][%d][%d][%d]\n",
+ clist->key_input[0],
+ clist->key_input[1],
+ clist->key_input[2],
+ clist->key_input[3],
+ clist->key_input[4]);
+ return (0);
+}