summaryrefslogtreecommitdiff
path: root/uisimulator/buttonmap/samsung-ypr0.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/buttonmap/samsung-ypr0.c')
-rw-r--r--uisimulator/buttonmap/samsung-ypr0.c81
1 files changed, 81 insertions, 0 deletions
diff --git a/uisimulator/buttonmap/samsung-ypr0.c b/uisimulator/buttonmap/samsung-ypr0.c
new file mode 100644
index 0000000000..8936c98296
--- /dev/null
+++ b/uisimulator/buttonmap/samsung-ypr0.c
@@ -0,0 +1,81 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2013 by Lorenzo Miori
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21
22#include <SDL.h>
23#include "button.h"
24#include "buttonmap.h"
25
26int key_to_button(int keyboard_button)
27{
28 int new_btn = BUTTON_NONE;
29 switch (keyboard_button)
30 {
31 case SDLK_KP4:
32 case SDLK_LEFT:
33 new_btn = BUTTON_LEFT;
34 break;
35 case SDLK_KP6:
36 case SDLK_RIGHT:
37 new_btn = BUTTON_RIGHT;
38 break;
39 case SDLK_KP8:
40 case SDLK_UP:
41 new_btn = BUTTON_UP;
42 break;
43 case SDLK_KP2:
44 case SDLK_DOWN:
45 new_btn = BUTTON_DOWN;
46 break;
47 case SDLK_PAGEUP:
48 case SDLK_KP9:
49 new_btn = BUTTON_MENU;
50 break;
51 case SDLK_KP7:
52 new_btn = BUTTON_BACK;
53 break;
54 case SDLK_KP5:
55 case SDLK_SPACE:
56 case SDLK_KP_ENTER:
57 case SDLK_RETURN:
58 new_btn = BUTTON_SELECT;
59 break;
60 case SDLK_KP3:
61 new_btn = BUTTON_POWER;
62 break;
63 case SDLK_KP1:
64 new_btn = BUTTON_USER;
65 break;
66 }
67 return new_btn;
68}
69
70struct button_map bm[] = {
71 { SDLK_KP7, 66, 423, 25, "Back" },
72 { SDLK_KP8, 152, 406, 25, "Up" },
73 { SDLK_KP9, 249, 429, 25, "Menu" },
74 { SDLK_KP4, 105, 451, 25, "Left" },
75 { SDLK_KP5, 155, 450, 25, "Select" },
76 { SDLK_KP6, 208, 449, 25, "Right" },
77 { SDLK_KP1, 65, 484, 25, "User" },
78 { SDLK_KP2, 154, 501, 25, "Down" },
79 { SDLK_KP3, 248, 484, 25, "Power" },
80 { 0, 0, 0, 0, "None" }
81};