diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-03-22 10:24:28 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-22 10:24:28 +0000 |
commit | 29361abf744ed116cec04ca03e754ddd2794b76c (patch) | |
tree | d336dd19570faed037aef9064ce3c490c50ed6df /apps/plugins/wormlet.c | |
parent | bca8edd856cee3a3b469ef9fe2770a191b590fde (diff) |
Adapt most single-file plugins to the M3 keypad and screen. It's still preliminary, as many plugins now can't be left without the remote. The plugins need to be converted to use the action API (but not pluginlib actions). Plugins are not enabled yet. * Simplify the bitmap handling in the source of some plugins.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16737 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/wormlet.c')
-rw-r--r-- | apps/plugins/wormlet.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c index 65e9d85ff4..0da929d0a3 100644 --- a/apps/plugins/wormlet.c +++ b/apps/plugins/wormlet.c @@ -202,6 +202,19 @@ PLUGIN_HEADER #define PLAYERS_TEXT "Up/Down" #define WORMS_TEXT "Left/Right" +#elif CONFIG_KEYPAD == IAUDIO_M3_PAD + +#define BTN_DIR_UP BUTTON_RC_VOL_UP +#define BTN_DIR_DOWN BUTTON_RC_VOL_DOWN +#define BTN_DIR_LEFT BUTTON_RC_REW +#define BTN_DIR_RIGHT BUTTON_RC_FF +#define BTN_STARTPAUSE BUTTON_RC_PLAY +#define BTN_QUIT BUTTON_RC_REC +#define BTN_STOPRESET BUTTON_RC_MODE + +#define PLAYERS_TEXT "VOL UP/DN" +#define WORMS_TEXT "REW/FF" + #else #error No keymap defined! #endif @@ -216,6 +229,11 @@ PLUGIN_HEADER #define ARGH_SIZE 4 #define SPEED 14 #define MAX_WORM_SEGMENTS 128 +#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) +#define FOOD_SIZE 3 +#define ARGH_SIZE 4 +#define SPEED 12 +#define MAX_WORM_SEGMENTS 128 #elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110) #define FOOD_SIZE 4 #define ARGH_SIZE 5 |