diff options
| author | Lorenzo Miori <memoryS60@gmail.com> | 2013-09-16 00:02:28 +0200 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2013-09-29 14:15:48 +0200 |
| commit | 9a8ed6ba35959f049ec85d8be6ec498fdbb67bb6 (patch) | |
| tree | 68eb6b6cf52826ffb279b382f2cf389a7466a798 /uisimulator/buttonmap | |
| parent | d13e5b964e56fb15dcc3990d2e424f4ffdd3db8b (diff) | |
| download | rockbox-9a8ed6ba35959f049ec85d8be6ec498fdbb67bb6.zip rockbox-9a8ed6ba35959f049ec85d8be6ec498fdbb67bb6.tar.gz rockbox-9a8ed6ba35959f049ec85d8be6ec498fdbb67bb6.tar.bz2 rockbox-9a8ed6ba35959f049ec85d8be6ec498fdbb67bb6.tar.xz | |
Simulator for Samsung YP-R0
Enable simulator for the target ypr0 to
be built and used.
Change-Id: I1b080f07ab90f5c4856881d08ad70e1053bbb0c0
Reviewed-on: http://gerrit.rockbox.org/618
Reviewed-by: Frank Gevaerts <frank@gevaerts.be>
Diffstat (limited to 'uisimulator/buttonmap')
| -rw-r--r-- | uisimulator/buttonmap/SOURCES | 2 | ||||
| -rw-r--r-- | uisimulator/buttonmap/samsung-ypr0.c | 81 |
2 files changed, 83 insertions, 0 deletions
diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES index de9cf51..bc6e62b 100644 --- a/uisimulator/buttonmap/SOURCES +++ b/uisimulator/buttonmap/SOURCES @@ -75,5 +75,7 @@ creative-zenxfi2.c sansa-connect.c #elif CONFIG_KEYPAD == SONY_NWZ_PAD sony-nwz.c +#elif CONFIG_KEYPAD == SAMSUNG_YPR0_PAD +samsung-ypr0.c #endif #endif /* SIMULATOR */ diff --git a/uisimulator/buttonmap/samsung-ypr0.c b/uisimulator/buttonmap/samsung-ypr0.c new file mode 100644 index 0000000..8936c98 --- /dev/null +++ b/uisimulator/buttonmap/samsung-ypr0.c @@ -0,0 +1,81 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Copyright (C) 2013 by Lorenzo Miori + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + + +#include <SDL.h> +#include "button.h" +#include "buttonmap.h" + +int key_to_button(int keyboard_button) +{ + int new_btn = BUTTON_NONE; + switch (keyboard_button) + { + case SDLK_KP4: + case SDLK_LEFT: + new_btn = BUTTON_LEFT; + break; + case SDLK_KP6: + case SDLK_RIGHT: + new_btn = BUTTON_RIGHT; + break; + case SDLK_KP8: + case SDLK_UP: + new_btn = BUTTON_UP; + break; + case SDLK_KP2: + case SDLK_DOWN: + new_btn = BUTTON_DOWN; + break; + case SDLK_PAGEUP: + case SDLK_KP9: + new_btn = BUTTON_MENU; + break; + case SDLK_KP7: + new_btn = BUTTON_BACK; + break; + case SDLK_KP5: + case SDLK_SPACE: + case SDLK_KP_ENTER: + case SDLK_RETURN: + new_btn = BUTTON_SELECT; + break; + case SDLK_KP3: + new_btn = BUTTON_POWER; + break; + case SDLK_KP1: + new_btn = BUTTON_USER; + break; + } + return new_btn; +} + +struct button_map bm[] = { + { SDLK_KP7, 66, 423, 25, "Back" }, + { SDLK_KP8, 152, 406, 25, "Up" }, + { SDLK_KP9, 249, 429, 25, "Menu" }, + { SDLK_KP4, 105, 451, 25, "Left" }, + { SDLK_KP5, 155, 450, 25, "Select" }, + { SDLK_KP6, 208, 449, 25, "Right" }, + { SDLK_KP1, 65, 484, 25, "User" }, + { SDLK_KP2, 154, 501, 25, "Down" }, + { SDLK_KP3, 248, 484, 25, "Power" }, + { 0, 0, 0, 0, "None" } +}; |