2008-04-23 21:15:07 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// __ \_/ ___\| |/ /| __ \ / __ \ \/ /
|
|
|
|
* Jukebox | | ( (__) ) \___| ( | \_\ ( (__) ) (
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Vuong Minh Hiep (vmh)
|
|
|
|
* Copyright (C) 2008 Thomas Martitz (kugel.)
|
|
|
|
* Copyright (C) 2008 Alexander Papst
|
2008-05-07 21:59:45 +00:00
|
|
|
* Copyright (C) 2008 Peter D'Hoye
|
2008-04-23 21:15:07 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "plugin.h"
|
|
|
|
#include "helper.h"
|
|
|
|
|
|
|
|
PLUGIN_HEADER
|
|
|
|
|
|
|
|
#if defined(HAVE_BACKLIGHT)
|
|
|
|
/* variable button definitions - only targets with a colour display */
|
|
|
|
#if defined(HAVE_LCD_COLOR)
|
|
|
|
#if (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
|
|
|
# define LAMP_NEXT BUTTON_SCROLL_FWD
|
|
|
|
# define LAMP_PREV BUTTON_SCROLL_BACK
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == IAUDIO_X5M5_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_S_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == SANSA_E200_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
|
|
|
# define LAMP_NEXT BUTTON_SCROLL_FWD
|
|
|
|
# define LAMP_PREV BUTTON_SCROLL_BACK
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == SANSA_C200_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H10_PAD)
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
|
|
|
# define LAMP_NEXT BUTTON_SCROLL_UP
|
|
|
|
# define LAMP_PREV BUTTON_SCROLL_DOWN
|
2008-04-23 21:15:07 +00:00
|
|
|
|
2008-04-23 21:43:18 +00:00
|
|
|
#elif CONFIG_KEYPAD == MROBE500_PAD
|
2008-05-07 21:59:45 +00:00
|
|
|
# define LAMP_LEFT BUTTON_LEFT
|
|
|
|
# define LAMP_RIGHT BUTTON_RIGHT
|
2008-04-23 21:43:18 +00:00
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == COWOND2_PAD
|
|
|
|
|
2008-04-23 21:15:07 +00:00
|
|
|
#else
|
|
|
|
# error Missing key definitions for this keypad
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-04-27 15:30:19 +00:00
|
|
|
#ifdef HAVE_TOUCHPAD
|
2008-05-07 21:59:45 +00:00
|
|
|
# ifndef LAMP_LEFT
|
|
|
|
# define LAMP_LEFT BUTTON_MIDLEFT
|
2008-04-27 15:30:19 +00:00
|
|
|
# endif
|
2008-05-07 21:59:45 +00:00
|
|
|
# ifndef LAMP_RIGHT
|
|
|
|
# define LAMP_RIGHT BUTTON_MIDRIGHT
|
2008-04-27 15:30:19 +00:00
|
|
|
# endif
|
2008-05-07 21:59:45 +00:00
|
|
|
# ifndef LAMP_NEXT
|
|
|
|
# define LAMP_NEXT BUTTON_TOPMIDDLE
|
2008-04-27 15:30:19 +00:00
|
|
|
# endif
|
2008-05-07 21:59:45 +00:00
|
|
|
# ifndef LAMP_PREV
|
|
|
|
# define LAMP_PREV BUTTON_BOTTOMMIDDLE
|
2008-04-27 15:30:19 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-05-13 09:57:56 +00:00
|
|
|
static const struct plugin_api* rb; /* global api struct pointer */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
2008-04-24 00:06:45 +00:00
|
|
|
/* RGB color sets */
|
|
|
|
#define NUM_COLORSETS 2
|
|
|
|
static int colorset[NUM_COLORSETS][3] = { { 255, 255, 255 } , /* white */
|
|
|
|
{ 255, 0, 0 } }; /* red */
|
|
|
|
#endif /* HAVE_LCD_COLOR */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
/* this is the plugin entry point */
|
2008-05-13 09:57:56 +00:00
|
|
|
enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
|
2008-04-23 21:15:07 +00:00
|
|
|
{
|
|
|
|
(void)parameter;
|
|
|
|
rb = api;
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
2008-04-24 00:06:45 +00:00
|
|
|
int cs = 0;
|
2008-04-23 21:15:07 +00:00
|
|
|
bool quit = false;
|
|
|
|
#endif /* HAVE_LCD_COLOR */
|
|
|
|
|
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
|
|
|
short old_brightness = rb->global_settings->brightness;
|
|
|
|
#endif /* HAVE_BACKLIGHT_BRIGHTNESS */
|
2008-05-08 21:23:31 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
short old_buttonlight_brightness =
|
|
|
|
rb->global_settings->buttonlight_brightness;
|
|
|
|
#endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
unsigned bg_color=rb->lcd_get_background();
|
2008-04-24 00:06:45 +00:00
|
|
|
rb->lcd_set_backdrop(NULL);
|
2008-04-23 21:15:07 +00:00
|
|
|
rb->lcd_set_background(LCD_WHITE);
|
|
|
|
#endif
|
2008-04-24 00:06:45 +00:00
|
|
|
|
2008-04-23 21:15:07 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
|
|
|
rb->backlight_set_brightness(MAX_BRIGHTNESS_SETTING);
|
|
|
|
#endif /* HAVE_BACKLIGHT_BRIGHTNESS */
|
2008-05-08 21:23:31 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
rb->buttonlight_set_brightness(MAX_BRIGHTNESS_SETTING);
|
|
|
|
#endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
2008-04-24 00:06:45 +00:00
|
|
|
#ifdef HAVE_LCD_INVERT
|
2008-06-28 18:00:04 +00:00
|
|
|
#ifdef MROBE_100
|
2008-04-24 00:06:45 +00:00
|
|
|
/* mrobe-100 has inverted display so invert it for max brightness */
|
2008-04-24 00:21:08 +00:00
|
|
|
rb->lcd_set_invert_display(true);
|
2008-04-24 00:06:45 +00:00
|
|
|
#else
|
2008-04-24 00:21:08 +00:00
|
|
|
rb->lcd_set_invert_display(false);
|
2008-06-28 18:00:04 +00:00
|
|
|
#endif /* MROBE_100 */
|
2008-04-24 00:06:45 +00:00
|
|
|
#endif /* HAVE_LCD_INVERT */
|
|
|
|
|
2008-04-23 21:15:07 +00:00
|
|
|
backlight_force_on(rb);
|
2008-05-08 21:23:31 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
|
|
|
buttonlight_force_on(rb);
|
|
|
|
#endif /* HAVE_BUTTON_LIGHT */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
2008-05-08 21:23:31 +00:00
|
|
|
do
|
2008-04-23 21:15:07 +00:00
|
|
|
{
|
2008-05-03 14:55:34 +00:00
|
|
|
if(cs < 0)
|
|
|
|
cs = NUM_COLORSETS-1;
|
|
|
|
if(cs >= NUM_COLORSETS)
|
2008-04-24 00:06:45 +00:00
|
|
|
cs = 0;
|
|
|
|
rb->lcd_set_background( LCD_RGBPACK( colorset[cs][0],
|
|
|
|
colorset[cs][1],
|
|
|
|
colorset[cs][2] ) );
|
2008-04-23 21:15:07 +00:00
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_update();
|
|
|
|
|
|
|
|
switch(rb->button_get(true))
|
|
|
|
{
|
2008-05-07 21:59:45 +00:00
|
|
|
case LAMP_RIGHT:
|
|
|
|
#ifdef LAMP_NEXT
|
|
|
|
case LAMP_NEXT:
|
|
|
|
#endif /* LAMP_NEXT */
|
2008-04-24 00:06:45 +00:00
|
|
|
cs++;
|
2008-04-23 21:15:07 +00:00
|
|
|
break;
|
2008-04-24 00:06:45 +00:00
|
|
|
|
2008-05-07 21:59:45 +00:00
|
|
|
case LAMP_LEFT:
|
|
|
|
#ifdef LAMP_PREV
|
|
|
|
case LAMP_PREV:
|
|
|
|
#endif /* LAMP_PREV */
|
2008-04-24 00:06:45 +00:00
|
|
|
cs--;
|
|
|
|
break;
|
|
|
|
|
2008-05-07 21:59:45 +00:00
|
|
|
case (LAMP_RIGHT|BUTTON_REPEAT):
|
|
|
|
case (LAMP_RIGHT|BUTTON_REL):
|
|
|
|
case (LAMP_LEFT|BUTTON_REPEAT):
|
|
|
|
case (LAMP_LEFT|BUTTON_REL):
|
|
|
|
#ifdef LAMP_NEXT
|
|
|
|
case (LAMP_NEXT|BUTTON_REPEAT):
|
|
|
|
case (LAMP_NEXT|BUTTON_REL):
|
|
|
|
#endif /* LAMP_NEXT */
|
|
|
|
#ifdef LAMP_PREV
|
|
|
|
case (LAMP_PREV|BUTTON_REPEAT):
|
|
|
|
case (LAMP_PREV|BUTTON_REL):
|
|
|
|
#endif /* LAMP_PREV */
|
2008-04-24 00:06:45 +00:00
|
|
|
/* eat these... */
|
2008-04-23 21:15:07 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
quit = true;
|
|
|
|
}
|
|
|
|
} while (!quit);
|
|
|
|
|
|
|
|
#else /* HAVE_LCD_COLOR */
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_update();
|
|
|
|
/* wait */
|
|
|
|
while(rb->button_get(false) == BUTTON_NONE)
|
|
|
|
{
|
|
|
|
rb->yield();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /*HAVE_LCD_COLOR */
|
|
|
|
|
|
|
|
/* restore */
|
|
|
|
backlight_use_settings(rb);
|
2008-05-08 21:23:31 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
|
|
|
buttonlight_use_settings(rb);
|
|
|
|
#endif /* HAVE_BUTTON_LIGHT */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
2008-04-24 00:06:45 +00:00
|
|
|
#ifdef HAVE_LCD_INVERT
|
2008-04-24 00:21:08 +00:00
|
|
|
rb->lcd_set_invert_display(rb->global_settings->invert);
|
2008-04-24 00:06:45 +00:00
|
|
|
#endif /* HAVE_LCD_INVERT */
|
|
|
|
|
2008-04-23 21:15:07 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
|
|
|
rb->backlight_set_brightness(old_brightness);
|
|
|
|
#endif /* HAVE_BACKLIGHT_BRIGHTNESS */
|
2008-05-08 21:23:31 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
rb->buttonlight_set_brightness(old_buttonlight_brightness);
|
|
|
|
#endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
|
2008-04-23 21:15:07 +00:00
|
|
|
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
rb->lcd_set_background(bg_color);
|
|
|
|
#endif
|
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
|
|
|
#endif
|