diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-05-19 16:09:46 +0200 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-05-19 16:10:52 +0200 |
commit | 12c64a4b79e043d8e8d77a278b340310f867a588 (patch) | |
tree | b34b56131d6eb0e06340a8a6d7e32843027d0f59 /uisimulator | |
parent | e09c1e3d43665d04ae0ce2f288ba695b5abc3622 (diff) | |
download | rockbox-12c64a4b79e043d8e8d77a278b340310f867a588.tar.gz rockbox-12c64a4b79e043d8e8d77a278b340310f867a588.tar.bz2 rockbox-12c64a4b79e043d8e8d77a278b340310f867a588.zip |
Initial commit for the Creative ZEN X-Fi2 and X-Fi3 ports
These are really similar devices so one commit for both is ok.
Change-Id: I8bd1d3fef1eb6d00aaadfb7af56c771f62d0c9c3
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/bitmaps/UI-creativezenxfi3.bmp | bin | 0 -> 275854 bytes | |||
-rw-r--r-- | uisimulator/buttonmap/SOURCES | 2 | ||||
-rw-r--r-- | uisimulator/buttonmap/creative-zenxfi3.c | 74 |
3 files changed, 76 insertions, 0 deletions
diff --git a/uisimulator/bitmaps/UI-creativezenxfi3.bmp b/uisimulator/bitmaps/UI-creativezenxfi3.bmp Binary files differnew file mode 100644 index 0000000000..f20abdc24f --- /dev/null +++ b/uisimulator/bitmaps/UI-creativezenxfi3.bmp diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES index 7213d1cff3..7258490ec4 100644 --- a/uisimulator/buttonmap/SOURCES +++ b/uisimulator/buttonmap/SOURCES @@ -67,6 +67,8 @@ mpio-hd200.c mpio-hd300.c #elif CONFIG_KEYPAD == SANSA_FUZEPLUS_PAD sansa-fuzeplus.c +#elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD +creative-zenxfi3.c #elif CONFIG_KEYPAD == SANSA_CONNECT_PAD sansa-connect.c #endif diff --git a/uisimulator/buttonmap/creative-zenxfi3.c b/uisimulator/buttonmap/creative-zenxfi3.c new file mode 100644 index 0000000000..fcf78a3e90 --- /dev/null +++ b/uisimulator/buttonmap/creative-zenxfi3.c @@ -0,0 +1,74 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2011 by Amaury Pouly + * + * 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_PAGEDOWN: + case SDLK_KP3: + new_btn = BUTTON_MENU; + break; + case SDLK_KP_PLUS: + new_btn = BUTTON_VOL_UP; + break; + case SDLK_KP_MINUS: + new_btn = BUTTON_VOL_DOWN; + break; + case SDLK_HOME: + new_btn = BUTTON_POWER; + break; + } + return new_btn; +} + +struct button_map bm[] = { + { SDLK_LEFT, 69, 303, 10, "Left" }, + { SDLK_RIGHT, 241, 172, 10, "Right" }, + { SDLK_UP, 240, 87, 10, "Up" }, + { SDLK_DOWN, 239, 264, 10, "Down" }, + { SDLK_PAGEDOWN, 191, 303, 10, "Menu" }, + { SDLK_KP_MINUS, 270, 150, 0, "Volume -" }, + { SDLK_KP_PLUS, 270, 180, 0, "Volume +" }, + { 0, 0, 0, 0, "None" } +}; |