aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_convert_keycode.c
blob: 5a037c5324bfa5c79db08b23e37f7da1e3912f6b (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_convert_keycode.c                               :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/17 19:00:20 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/17 19:00:21 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <cub3d.h>
#include <stdint.h>

int32_t
	ft_convert_keycode(const int32_t tmp_code)
{
	uint16_t	keycode;

	keycode = UINT16_MAX;
	(tmp_code == FT_W_KEY) ? (keycode = 0) : 0;
	(tmp_code == FT_A_KEY) ? (keycode = 1) : 0;
	(tmp_code == FT_S_KEY) ? (keycode = 2) : 0;
	(tmp_code == FT_D_KEY) ? (keycode = 3) : 0;
	(tmp_code == FT_L_ARR_KEY) ? (keycode = 4) : 0;
	(tmp_code == FT_R_ARR_KEY) ? (keycode = 5) : 0;
	(tmp_code == 3) ? (keycode = UINT16_MAX) : 0;
	(tmp_code == 4) ? (keycode = UINT16_MAX) : 0;
	(tmp_code == 5) ? (keycode = UINT16_MAX) : 0;
	(tmp_code == FT_ESC_KEY) ? (keycode = FT_ESC_KEY) : 0;
	(tmp_code == FT_F1_KEY) ? (keycode = FT_F1_KEY) : 0;
	(tmp_code == FT_TAB_KEY) ? (keycode = FT_TAB_KEY) : 0;
	return (keycode);
}