1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2009 Mark Arigo
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
25 #include "buttonmap.h"
27 int key_to_button(int keyboard_button
)
29 int new_btn
= BUTTON_NONE
;
30 switch (keyboard_button
)
34 new_btn
= BUTTON_LEFT
;
38 new_btn
= BUTTON_RIGHT
;
46 new_btn
= BUTTON_DOWN
;
49 new_btn
= BUTTON_MENU
;
53 new_btn
= BUTTON_PLAY
;
56 new_btn
= BUTTON_PREV
;
59 new_btn
= BUTTON_NEXT
;
63 new_btn
= BUTTON_POWER
;
66 new_btn
= BUTTON_VOL_UP
;
69 new_btn
= BUTTON_VOL_DOWN
;
75 struct button_map bm
[] = {
76 { SDLK_KP_ENTER
, 25, 155, 33, "Power" },
77 { SDLK_PAGEUP
, 210, 98, 31, "Vol Up" },
78 { SDLK_PAGEDOWN
, 210, 168, 34, "Vol Down" },
79 { SDLK_KP7
, 40, 249, 26, "Prev" },
80 { SDLK_KP8
, 110, 247, 22, "Up" },
81 { SDLK_KP9
, 183, 249, 31, "Next" },
82 { SDLK_KP4
, 45, 305, 25, "Left" },
83 { SDLK_KP5
, 111, 304, 24, "Play" },
84 { SDLK_KP6
, 183, 304, 21, "Right" },
85 { SDLK_KP1
, 43, 377, 21, "Menu" },
86 { SDLK_KP2
, 112, 371, 24, "Down" },
87 { 0, 0, 0, 0, "None" }