diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2018-06-28 06:24:26 -0400 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2018-07-28 10:56:31 -0400 |
commit | 0662793ca0050e823cd1207cc4689a1cba5068bd (patch) | |
tree | 08cd2ec59c9044c96b697b5bf8d0640841d044e0 /uisimulator | |
parent | b3e2bd619b1b7ea94ef29d32db48e80b347a1990 (diff) | |
download | rockbox-0662793ca0050e823cd1207cc4689a1cba5068bd.tar.gz rockbox-0662793ca0050e823cd1207cc4689a1cba5068bd.tar.bz2 rockbox-0662793ca0050e823cd1207cc4689a1cba5068bd.zip |
Add cleaned-up xDuoo X3 support
Cleaned up, rebased, and forward-ported from the xvortex fork.
(original credit to vsoftster@gmail.com)
Change-Id: Ibcc023a0271ea81e901450a88317708c2683236d
Signed-off-by: Solomon Peachy <pizza@shaftnet.org>
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/bitmaps/UI-xduoox3.bmp | bin | 0 -> 263288 bytes | |||
-rw-r--r-- | uisimulator/buttonmap/SOURCES | 2 | ||||
-rw-r--r-- | uisimulator/buttonmap/xduoo-x3.c | 82 |
3 files changed, 84 insertions, 0 deletions
diff --git a/uisimulator/bitmaps/UI-xduoox3.bmp b/uisimulator/bitmaps/UI-xduoox3.bmp Binary files differnew file mode 100644 index 0000000000..8546d22032 --- /dev/null +++ b/uisimulator/bitmaps/UI-xduoox3.bmp diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES index 901b4ebd2f..d46066d478 100644 --- a/uisimulator/buttonmap/SOURCES +++ b/uisimulator/buttonmap/SOURCES @@ -85,5 +85,7 @@ creative-zen.c sony-nwza860.c #elif CONFIG_KEYPAD == AGPTEK_ROCKER_PAD agptek-rocker.c +#elif CONFIG_KEYPAD == XDUOO_X3_PAD +xduoo-x3.c #endif #endif /* SIMULATOR */ diff --git a/uisimulator/buttonmap/xduoo-x3.c b/uisimulator/buttonmap/xduoo-x3.c new file mode 100644 index 0000000000..e0b5a476c3 --- /dev/null +++ b/uisimulator/buttonmap/xduoo-x3.c @@ -0,0 +1,82 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2016 by Roman Stolyarov + * + * 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_UP: + new_btn = BUTTON_PREV; + break; + case SDLK_KP1: + case SDLK_DOWN: + new_btn = BUTTON_NEXT; + break; + case SDLK_KP3: + case SDLK_KP_ENTER: + case SDLK_SPACE: + case SDLK_RETURN: + new_btn = BUTTON_PLAY; + break; + case SDLK_KP5: + case SDLK_END: + case SDLK_BACKSPACE: + new_btn = BUTTON_OPTION; + break; + case SDLK_KP7: + case SDLK_ESCAPE: + new_btn = BUTTON_POWER; + break; + case SDLK_KP9: + case SDLK_HOME: + new_btn = BUTTON_HOME; + break; + case SDLK_KP_MINUS: + case SDLK_PAGEUP: + new_btn = BUTTON_VOL_UP; + break; + case SDLK_KP_PLUS: + case SDLK_PAGEDOWN: + new_btn = BUTTON_VOL_DOWN; + break; + } + return new_btn; +} + +struct button_map bm[] = { + { SDLK_KP4, 68, 342, 17, "Prev" }, + { SDLK_KP1, 72, 404, 17, "Next" }, + { SDLK_KP3, 142, 374, 28, "Play" }, + { SDLK_KP5, 106, 288, 17, "Option" }, + { SDLK_KP7, 38, 244, 17, "Power" }, + { SDLK_KP9, 155, 244, 17, "Home" }, + { SDLK_KP_MINUS, 192, 74, 17, "Vol Up" }, + { SDLK_KP_PLUS, 192, 132, 17, "Vol Dn" }, + { SDLK_h, 0, 66, 17, "Hold" }, + { 0, 0, 0, 0, "None" } +}; |