diff options
| author | Marcin Bukat <marcin.bukat@gmail.com> | 2010-12-08 21:40:35 +0000 |
|---|---|---|
| committer | Marcin Bukat <marcin.bukat@gmail.com> | 2010-12-08 21:40:35 +0000 |
| commit | 5a4b7c39200a361a6f9a4f842dc9dc39082c2f9a (patch) | |
| tree | 55172c156bc94e7588219013fa99d2005350f359 | |
| parent | 2aa511f6bdac6364fe09a0004e4e14b3fc17a6c2 (diff) | |
| download | rockbox-5a4b7c39200a361a6f9a4f842dc9dc39082c2f9a.zip rockbox-5a4b7c39200a361a6f9a4f842dc9dc39082c2f9a.tar.gz rockbox-5a4b7c39200a361a6f9a4f842dc9dc39082c2f9a.tar.bz2 rockbox-5a4b7c39200a361a6f9a4f842dc9dc39082c2f9a.tar.xz | |
MPIO HD300 simulator. FS#11796 by Michael Leslie
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28775 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/hosted/sdl/sim-ui-defines.h | 7 | ||||
| -rw-r--r-- | uisimulator/bitmaps/UI-mpiohd300.bmp | bin | 0 -> 450694 bytes | |||
| -rw-r--r-- | uisimulator/buttonmap/SOURCES | 2 | ||||
| -rw-r--r-- | uisimulator/buttonmap/mpio-hd300.c | 82 |
4 files changed, 91 insertions, 0 deletions
diff --git a/firmware/target/hosted/sdl/sim-ui-defines.h b/firmware/target/hosted/sdl/sim-ui-defines.h index c44fea5..db777e7 100644 --- a/firmware/target/hosted/sdl/sim-ui-defines.h +++ b/firmware/target/hosted/sdl/sim-ui-defines.h @@ -404,6 +404,13 @@ #define UI_LCD_POSX 101 #define UI_LCD_POSY 195 +#elif defined(MPIO_HD300) +#define UI_TITLE "MPIO HD300" +#define UI_WIDTH 286 /* width of GUI window */ +#define UI_HEIGHT 524 /* height of GUI window */ +#define UI_LCD_POSX 64 +#define UI_LCD_POSY 127 + #elif defined(APPLICATION) #define UI_TITLE "Rockbox" #define UI_LCD_POSX 0 diff --git a/uisimulator/bitmaps/UI-mpiohd300.bmp b/uisimulator/bitmaps/UI-mpiohd300.bmp Binary files differnew file mode 100644 index 0000000..60dac62 --- /dev/null +++ b/uisimulator/bitmaps/UI-mpiohd300.bmp diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES index 7ab80da..c9955d4 100644 --- a/uisimulator/buttonmap/SOURCES +++ b/uisimulator/buttonmap/SOURCES @@ -63,5 +63,7 @@ samsung-yh820_yh92x.c pbell-vibe500.c #elif CONFIG_KEYPAD == MPIO_HD200_PAD mpio-hd200.c +#elif CONFIG_KEYPAD == MPIO_HD300_PAD +mpio-hd300.c #endif #endif /* SIMULATOR */ diff --git a/uisimulator/buttonmap/mpio-hd300.c b/uisimulator/buttonmap/mpio-hd300.c new file mode 100644 index 0000000..454e3a6 --- /dev/null +++ b/uisimulator/buttonmap/mpio-hd300.c @@ -0,0 +1,82 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2010 Michael Leslie + * + * 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_UP: + new_btn = BUTTON_UP; + break; + case SDLK_DOWN: + new_btn = BUTTON_DOWN; + break; + + case SDLK_LEFT: + new_btn = BUTTON_LEFT; + break; + case SDLK_RIGHT: + new_btn = BUTTON_RIGHT; + break; + + case SDLK_SPACE: + case SDLK_ESCAPE: + new_btn = BUTTON_MENU; + break; + + case SDLK_RETURN: + new_btn = BUTTON_ENTER; + break; + + case SDLK_p: + new_btn = BUTTON_PLAY; + break; + + case SDLK_r: + new_btn = BUTTON_REC; + break; + } + return new_btn; +} + +struct button_map bm[] = { + { SDLK_LEFT, 98, 312, 15, "Rew" }, + { SDLK_RIGHT, 186, 312, 15, "FF" }, + + { SDLK_ESCAPE, 90, 364, 40, "Menu" }, + { SDLK_RETURN, 196, 364, 40, "Enter" }, + + { SDLK_r, 98, 410, 15, "Rec" }, + { SDLK_p, 186, 410, 15, "Play/Stop" }, + + { SDLK_UP, 143, 315, 40, "Up" }, + { SDLK_DOWN, 143, 415, 40, "Down" }, + + { SDLK_h, 116, 52, 20, "Hold" }, + { 0, 0, 0, 0, "None" } +}; |