2002-09-24 17:22:12 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
2005-08-21 23:38:51 +00:00
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
2002-09-24 17:22:12 +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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2005-11-22 21:55:05 +00:00
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "backlight.h"
|
|
|
|
|
#include "button.h"
|
|
|
|
|
#include "lcd.h"
|
|
|
|
|
#include "lang.h"
|
|
|
|
|
#include "icons.h"
|
|
|
|
|
#include "font.h"
|
2005-04-04 12:06:29 +00:00
|
|
|
|
#include "audio.h"
|
2004-01-05 20:42:51 +00:00
|
|
|
|
#include "mp3_playback.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#include "usb.h"
|
|
|
|
|
#include "settings.h"
|
2002-10-11 08:56:23 +00:00
|
|
|
|
#include "status.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#include "playlist.h"
|
2003-02-15 00:03:23 +00:00
|
|
|
|
#include "sprintf.h"
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#include "kernel.h"
|
2003-07-17 20:29:51 +00:00
|
|
|
|
#include "power.h"
|
2003-07-18 22:01:13 +00:00
|
|
|
|
#include "system.h"
|
|
|
|
|
#include "powermgmt.h"
|
|
|
|
|
#include "adc.h"
|
2004-03-12 10:20:33 +00:00
|
|
|
|
#include "action.h"
|
2004-04-21 06:49:12 +00:00
|
|
|
|
#include "talk.h"
|
2004-07-24 21:26:41 +00:00
|
|
|
|
#include "misc.h"
|
2005-07-05 19:33:33 +00:00
|
|
|
|
#include "id3.h"
|
2004-10-12 00:02:51 +00:00
|
|
|
|
#include "screens.h"
|
2004-10-19 16:17:35 +00:00
|
|
|
|
#include "debug.h"
|
2005-02-19 16:23:30 +00:00
|
|
|
|
#include "led.h"
|
2005-04-01 13:41:03 +00:00
|
|
|
|
#include "sound.h"
|
2005-11-17 20:14:59 +00:00
|
|
|
|
#include "gwps-common.h"
|
2005-11-16 15:12:15 +00:00
|
|
|
|
#include "splash.h"
|
2005-11-20 01:02:14 +00:00
|
|
|
|
#include "statusbar.h"
|
2005-11-22 03:38:07 +00:00
|
|
|
|
#include "screen_access.h"
|
|
|
|
|
#include "quickscreen.h"
|
2005-11-22 21:55:05 +00:00
|
|
|
|
#include "logo.h"
|
2005-11-20 01:02:14 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#if defined(HAVE_LCD_BITMAP)
|
|
|
|
|
#include "widgets.h"
|
|
|
|
|
#endif
|
2005-02-19 16:23:30 +00:00
|
|
|
|
#ifdef HAVE_MMC
|
|
|
|
|
#include "ata_mmc.h"
|
|
|
|
|
#endif
|
2005-09-24 15:22:48 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
#include "dsp.h"
|
|
|
|
|
#endif
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
2002-10-11 08:56:23 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#define SCROLLBAR_WIDTH 6
|
2002-10-11 08:56:23 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
void usb_screen(void)
|
|
|
|
|
{
|
2003-12-12 13:34:27 +00:00
|
|
|
|
#ifdef USB_NONE
|
|
|
|
|
/* nothing here! */
|
|
|
|
|
#else
|
2005-11-22 03:38:07 +00:00
|
|
|
|
int i;
|
|
|
|
|
FOR_NB_SCREENS(i) {
|
|
|
|
|
screens[i].backlight_on();
|
2005-11-22 21:55:05 +00:00
|
|
|
|
gui_logo_draw(&usb_logos[i], &screens[i]);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
}
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
|
status_set_param(false);
|
|
|
|
|
status_set_audio(false);
|
|
|
|
|
status_set_usb(true);
|
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
while (button_get(true) & BUTTON_REL);
|
|
|
|
|
#else
|
2002-09-24 17:22:12 +00:00
|
|
|
|
usb_acknowledge(SYS_USB_CONNECTED_ACK);
|
2002-10-11 08:56:23 +00:00
|
|
|
|
while(usb_wait_for_disconnect_w_tmo(&button_queue, HZ)) {
|
|
|
|
|
if(usb_inserted()) {
|
2005-02-19 14:45:34 +00:00
|
|
|
|
#ifdef HAVE_MMC /* USB-MMC bridge can report activity */
|
|
|
|
|
led(mmc_usb_active(HZ));
|
2005-11-22 03:38:07 +00:00
|
|
|
|
#endif /* HAVE_MMC */
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, false);
|
2002-10-11 08:56:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2005-11-22 03:38:07 +00:00
|
|
|
|
#endif /* SIMULATOR */
|
2003-01-09 03:53:46 +00:00
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
|
status_set_usb(false);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
#endif /* HAVE_LCD_CHARCELLS */
|
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
|
screens[i].backlight_on();
|
2003-12-12 13:34:27 +00:00
|
|
|
|
#endif /* USB_NONE */
|
2002-09-24 17:22:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-12 00:02:51 +00:00
|
|
|
|
#ifdef HAVE_MMC
|
|
|
|
|
int mmc_remove_request(void)
|
|
|
|
|
{
|
|
|
|
|
struct event ev;
|
2005-11-22 04:15:27 +00:00
|
|
|
|
int i;
|
2005-11-22 03:38:07 +00:00
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
|
screens[i].clear_display();
|
2005-11-16 15:12:15 +00:00
|
|
|
|
gui_syncsplash(1, true, str(LANG_REMOVE_MMC));
|
2004-11-12 22:19:29 +00:00
|
|
|
|
if (global_settings.talk_menu)
|
|
|
|
|
talk_id(LANG_REMOVE_MMC, false);
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-10-12 00:02:51 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
queue_wait_w_tmo(&button_queue, &ev, HZ/2);
|
|
|
|
|
switch (ev.id)
|
|
|
|
|
{
|
|
|
|
|
case SYS_MMC_EXTRACTED:
|
|
|
|
|
return SYS_MMC_EXTRACTED;
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-10-12 00:02:51 +00:00
|
|
|
|
case SYS_USB_DISCONNECTED:
|
|
|
|
|
return SYS_USB_DISCONNECTED;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-07-17 20:29:51 +00:00
|
|
|
|
|
2003-07-19 21:43:12 +00:00
|
|
|
|
/* some simulator dummies */
|
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
#define BATTERY_SCALE_FACTOR 7000
|
2003-07-20 00:12:21 +00:00
|
|
|
|
unsigned short adc_read(int channel)
|
|
|
|
|
{
|
|
|
|
|
(void)channel;
|
|
|
|
|
return 100;
|
|
|
|
|
}
|
2003-07-19 21:43:12 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-07-11 19:29:54 +00:00
|
|
|
|
#if defined(HAVE_CHARGING) && !defined(HAVE_POWEROFF_WHILE_CHARGING)
|
2003-07-19 21:43:12 +00:00
|
|
|
|
|
2003-07-18 22:01:13 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
void charging_display_info(bool animate)
|
|
|
|
|
{
|
|
|
|
|
unsigned char charging_logo[36];
|
|
|
|
|
const int pox_x = (LCD_WIDTH - sizeof(charging_logo)) / 2;
|
2003-07-19 21:43:12 +00:00
|
|
|
|
const int pox_y = 32;
|
2003-07-18 22:01:13 +00:00
|
|
|
|
static unsigned phase = 3;
|
|
|
|
|
unsigned i;
|
|
|
|
|
char buf[32];
|
2003-12-03 07:05:13 +00:00
|
|
|
|
(void)buf;
|
2003-07-18 22:01:13 +00:00
|
|
|
|
|
2003-12-03 07:05:13 +00:00
|
|
|
|
#ifdef NEED_ATA_POWER_BATT_MEASURE
|
|
|
|
|
if (ide_powered()) /* FM and V2 can only measure when ATA power is on */
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
int battery_voltage;
|
|
|
|
|
int batt_int, batt_frac;
|
|
|
|
|
|
|
|
|
|
battery_voltage = (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR) / 10000;
|
|
|
|
|
batt_int = battery_voltage / 100;
|
|
|
|
|
batt_frac = battery_voltage % 100;
|
2003-07-18 22:01:13 +00:00
|
|
|
|
|
2003-12-03 07:05:13 +00:00
|
|
|
|
snprintf(buf, 32, " Batt: %d.%02dV %d%% ", batt_int, batt_frac,
|
|
|
|
|
battery_level());
|
|
|
|
|
lcd_puts(0, 7, buf);
|
|
|
|
|
}
|
2003-07-18 22:01:13 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2003-07-19 21:43:12 +00:00
|
|
|
|
|
|
|
|
|
snprintf(buf, 32, "Charge mode:");
|
2003-07-18 22:01:13 +00:00
|
|
|
|
lcd_puts(0, 2, buf);
|
2003-07-19 21:43:12 +00:00
|
|
|
|
|
|
|
|
|
if (charge_state == 1)
|
|
|
|
|
snprintf(buf, 32, str(LANG_BATTERY_CHARGE));
|
|
|
|
|
else if (charge_state == 2)
|
|
|
|
|
snprintf(buf, 32, str(LANG_BATTERY_TOPOFF_CHARGE));
|
|
|
|
|
else if (charge_state == 3)
|
|
|
|
|
snprintf(buf, 32, str(LANG_BATTERY_TRICKLE_CHARGE));
|
|
|
|
|
else
|
|
|
|
|
snprintf(buf, 32, "not charging");
|
|
|
|
|
|
|
|
|
|
lcd_puts(0, 3, buf);
|
2004-10-12 08:42:11 +00:00
|
|
|
|
if (!charger_enabled)
|
2003-07-18 22:01:13 +00:00
|
|
|
|
animate = false;
|
2004-11-21 00:44:44 +00:00
|
|
|
|
#endif /* HAVE_CHARGE_CTRL */
|
2003-07-18 22:01:13 +00:00
|
|
|
|
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2003-07-18 22:01:13 +00:00
|
|
|
|
/* middle part */
|
|
|
|
|
memset(charging_logo+3, 0x00, 32);
|
|
|
|
|
charging_logo[0] = 0x3C;
|
|
|
|
|
charging_logo[1] = 0x24;
|
|
|
|
|
charging_logo[2] = charging_logo[35] = 0xFF;
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2003-07-18 22:01:13 +00:00
|
|
|
|
if (!animate)
|
|
|
|
|
{ /* draw the outline */
|
|
|
|
|
/* middle part */
|
2005-07-06 22:58:02 +00:00
|
|
|
|
lcd_mono_bitmap(charging_logo, pox_x, pox_y + 8, sizeof(charging_logo), 8);
|
2005-06-28 23:15:47 +00:00
|
|
|
|
lcd_set_drawmode(DRMODE_FG);
|
2003-07-18 22:01:13 +00:00
|
|
|
|
/* upper line */
|
2005-07-05 19:33:33 +00:00
|
|
|
|
charging_logo[0] = charging_logo[1] = 0x00;
|
2003-07-18 22:01:13 +00:00
|
|
|
|
memset(charging_logo+2, 0x80, 34);
|
2005-07-06 22:58:02 +00:00
|
|
|
|
lcd_mono_bitmap(charging_logo, pox_x, pox_y, sizeof(charging_logo), 8);
|
2003-07-18 22:01:13 +00:00
|
|
|
|
/* lower line */
|
|
|
|
|
memset(charging_logo+2, 0x01, 34);
|
2005-07-06 22:58:02 +00:00
|
|
|
|
lcd_mono_bitmap(charging_logo, pox_x, pox_y + 16, sizeof(charging_logo), 8);
|
2005-06-28 23:15:47 +00:00
|
|
|
|
lcd_set_drawmode(DRMODE_SOLID);
|
2003-07-18 22:01:13 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ /* animate the middle part */
|
|
|
|
|
for (i = 3; i<MIN(sizeof(charging_logo)-1, phase); i++)
|
|
|
|
|
{
|
|
|
|
|
if ((i-phase) % 8 == 0)
|
|
|
|
|
{ /* draw a "bubble" here */
|
|
|
|
|
unsigned bitpos;
|
|
|
|
|
bitpos = (phase + i/8) % 15; /* "bounce" effect */
|
2005-07-05 19:33:33 +00:00
|
|
|
|
if (bitpos > 7)
|
2003-07-18 22:01:13 +00:00
|
|
|
|
bitpos = 14 - bitpos;
|
|
|
|
|
charging_logo[i] = 0x01 << bitpos;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-07-06 22:58:02 +00:00
|
|
|
|
lcd_mono_bitmap(charging_logo, pox_x, pox_y + 8, sizeof(charging_logo), 8);
|
2003-07-18 22:01:13 +00:00
|
|
|
|
phase++;
|
|
|
|
|
}
|
|
|
|
|
lcd_update();
|
|
|
|
|
}
|
2003-07-19 21:43:12 +00:00
|
|
|
|
#else /* not HAVE_LCD_BITMAP */
|
2004-11-21 00:17:59 +00:00
|
|
|
|
|
|
|
|
|
static unsigned char logo_chars[5];
|
|
|
|
|
static const unsigned char logo_pattern[] = {
|
|
|
|
|
0x07, 0x04, 0x1c, 0x14, 0x1c, 0x04, 0x07, /* char 1 */
|
|
|
|
|
0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, /* char 2 */
|
|
|
|
|
0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, /* char 3 */
|
|
|
|
|
0x1f, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1f, /* char 4 */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void logo_lock_patterns(bool on)
|
|
|
|
|
{
|
2005-07-05 19:33:33 +00:00
|
|
|
|
int i;
|
2004-11-21 00:17:59 +00:00
|
|
|
|
|
|
|
|
|
if (on)
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
|
logo_chars[i] = lcd_get_locked_pattern();
|
|
|
|
|
logo_chars[4] = '\0';
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
|
lcd_unlock_pattern(logo_chars[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-18 22:01:13 +00:00
|
|
|
|
void charging_display_info(bool animate)
|
|
|
|
|
{
|
2004-11-21 00:17:59 +00:00
|
|
|
|
int battery_voltage;
|
|
|
|
|
unsigned i, ypos;
|
|
|
|
|
static unsigned phase = 3;
|
|
|
|
|
char buf[28];
|
|
|
|
|
|
|
|
|
|
battery_voltage = (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR)
|
|
|
|
|
/ 10000;
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s %d.%02dV", logo_chars,
|
|
|
|
|
battery_voltage / 100, battery_voltage % 100);
|
|
|
|
|
lcd_puts(0, 1, buf);
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-11-21 00:17:59 +00:00
|
|
|
|
memcpy(buf, logo_pattern, 28); /* copy logo patterns */
|
|
|
|
|
|
|
|
|
|
if (!animate) /* build the screen */
|
|
|
|
|
{
|
|
|
|
|
lcd_double_height(false);
|
|
|
|
|
lcd_puts(0, 0, "[Charging]");
|
|
|
|
|
}
|
|
|
|
|
else /* animate the logo */
|
|
|
|
|
{
|
|
|
|
|
for (i = 3; i < MIN(19, phase); i++)
|
|
|
|
|
{
|
|
|
|
|
if ((i - phase) % 5 == 0)
|
|
|
|
|
{ /* draw a "bubble" here */
|
|
|
|
|
ypos = (phase + i/5) % 9; /* "bounce" effect */
|
|
|
|
|
if (ypos > 4)
|
|
|
|
|
ypos = 8 - ypos;
|
|
|
|
|
buf[5 - ypos + 7 * (i/5)] |= 0x10 >> (i%5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
phase++;
|
|
|
|
|
}
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-11-21 00:17:59 +00:00
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
|
lcd_define_pattern(logo_chars[i], buf + 7 * i);
|
2003-07-18 22:01:13 +00:00
|
|
|
|
}
|
2004-11-21 00:44:44 +00:00
|
|
|
|
#endif /* (not) HAVE_LCD_BITMAP */
|
2003-07-18 22:01:13 +00:00
|
|
|
|
|
2003-07-17 20:29:51 +00:00
|
|
|
|
/* blocks while charging, returns on event:
|
|
|
|
|
1 if charger cable was removed
|
|
|
|
|
2 if Off/Stop key was pressed
|
|
|
|
|
3 if On key was pressed
|
|
|
|
|
4 if USB was connected */
|
2006-03-05 18:06:06 +00:00
|
|
|
|
#if (CONFIG_KEYPAD==IPOD_3G_PAD) || (CONFIG_KEYPAD==IPOD_4G_PAD)
|
|
|
|
|
# define CHARGE_SCREEN_RESUME BUTTON_SELECT
|
|
|
|
|
#else
|
|
|
|
|
# define CHARGE_SCREEN_RESUME BUTTON_ON
|
|
|
|
|
#endif
|
2003-07-17 20:29:51 +00:00
|
|
|
|
int charging_screen(void)
|
|
|
|
|
{
|
2005-02-12 12:51:06 +00:00
|
|
|
|
unsigned int button;
|
2003-07-17 20:29:51 +00:00
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
|
|
ide_power_enable(false); /* power down the disk, else would be spinning */
|
|
|
|
|
|
|
|
|
|
lcd_clear_display();
|
2004-11-20 22:43:38 +00:00
|
|
|
|
backlight_set_timeout(global_settings.backlight_timeout);
|
2005-05-30 05:57:19 +00:00
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-05-30 00:00:22 +00:00
|
|
|
|
remote_backlight_set_timeout(global_settings.remote_backlight_timeout);
|
2005-05-30 05:57:19 +00:00
|
|
|
|
#endif
|
2005-11-23 20:12:33 +00:00
|
|
|
|
backlight_set_timeout_plugged(global_settings.backlight_timeout_plugged);
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
2003-07-17 20:29:51 +00:00
|
|
|
|
|
2004-11-21 00:17:59 +00:00
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
|
logo_lock_patterns(true);
|
2003-07-17 20:29:51 +00:00
|
|
|
|
#endif
|
2004-11-21 00:17:59 +00:00
|
|
|
|
charging_display_info(false);
|
|
|
|
|
|
2003-07-17 20:29:51 +00:00
|
|
|
|
do
|
|
|
|
|
{
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, false);
|
2003-07-18 22:01:13 +00:00
|
|
|
|
charging_display_info(true);
|
|
|
|
|
button = button_get_w_tmo(HZ/3);
|
2006-03-05 18:06:06 +00:00
|
|
|
|
if (button == CHARGE_SCREEN_RESUME)
|
2003-07-17 20:29:51 +00:00
|
|
|
|
rc = 2;
|
2005-07-11 19:14:26 +00:00
|
|
|
|
else if (usb_detect())
|
|
|
|
|
rc = 3;
|
|
|
|
|
else if (!charger_inserted())
|
|
|
|
|
rc = 1;
|
2003-07-17 20:29:51 +00:00
|
|
|
|
} while (!rc);
|
|
|
|
|
|
2004-11-21 00:17:59 +00:00
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
|
logo_lock_patterns(false);
|
|
|
|
|
#endif
|
2003-07-17 20:29:51 +00:00
|
|
|
|
return rc;
|
|
|
|
|
}
|
2005-07-11 19:29:54 +00:00
|
|
|
|
#endif /* HAVE_CHARGING && !HAVE_POWEROFF_WHILE_CHARGING */
|
2003-07-17 20:29:51 +00:00
|
|
|
|
|
2006-03-22 02:44:18 +00:00
|
|
|
|
#if (CONFIG_KEYPAD != PLAYER_PAD)
|
2002-09-24 17:22:12 +00:00
|
|
|
|
/* returns:
|
|
|
|
|
0 if no key was pressed
|
2006-03-21 07:59:23 +00:00
|
|
|
|
1 if USB was connected */
|
2006-04-21 06:11:24 +00:00
|
|
|
|
|
|
|
|
|
void pitch_screen_draw(int pitch)
|
|
|
|
|
{
|
|
|
|
|
unsigned char* ptr;
|
|
|
|
|
unsigned char buf[32];
|
|
|
|
|
int w, h;
|
|
|
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
|
|
|
|
|
/* UP: Pitch Up */
|
|
|
|
|
ptr = str(LANG_PITCH_UP);
|
|
|
|
|
lcd_getstringsize(ptr,&w,&h);
|
|
|
|
|
lcd_putsxy((LCD_WIDTH-w)/2, 0, ptr);
|
|
|
|
|
lcd_mono_bitmap(bitmap_icons_7x8[Icon_UpArrow],
|
|
|
|
|
LCD_WIDTH/2 - 3, h, 7, 8);
|
|
|
|
|
|
|
|
|
|
/* DOWN: Pitch Down */
|
|
|
|
|
ptr = str(LANG_PITCH_DOWN);
|
|
|
|
|
lcd_getstringsize(ptr,&w,&h);
|
|
|
|
|
lcd_putsxy((LCD_WIDTH-w)/2, LCD_HEIGHT - h, ptr);
|
|
|
|
|
lcd_mono_bitmap(bitmap_icons_7x8[Icon_DownArrow],
|
|
|
|
|
LCD_WIDTH/2 - 3, LCD_HEIGHT - h*2, 7, 8);
|
|
|
|
|
|
|
|
|
|
/* RIGHT: +2% */
|
|
|
|
|
ptr = "+2%";
|
|
|
|
|
lcd_getstringsize(ptr,&w,&h);
|
|
|
|
|
lcd_putsxy(LCD_WIDTH-w, (LCD_HEIGHT-h)/2, ptr);
|
|
|
|
|
lcd_mono_bitmap(bitmap_icons_7x8[Icon_FastForward],
|
|
|
|
|
LCD_WIDTH-w-8, (LCD_HEIGHT-h)/2, 7, 8);
|
|
|
|
|
|
|
|
|
|
/* LEFT: -2% */
|
|
|
|
|
ptr = "-2%";
|
|
|
|
|
lcd_getstringsize(ptr,&w,&h);
|
|
|
|
|
lcd_putsxy(0, (LCD_HEIGHT-h)/2, ptr);
|
|
|
|
|
lcd_mono_bitmap(bitmap_icons_7x8[Icon_FastBackward],
|
|
|
|
|
w+1, (LCD_HEIGHT-h)/2, 7, 8);
|
|
|
|
|
|
|
|
|
|
/* "Pitch" */
|
|
|
|
|
snprintf((char *)buf, sizeof(buf), str(LANG_PITCH));
|
|
|
|
|
lcd_getstringsize(buf,&w,&h);
|
|
|
|
|
lcd_putsxy((LCD_WIDTH-w)/2, (LCD_HEIGHT/2)-h, buf);
|
|
|
|
|
/* "XX.X%" */
|
|
|
|
|
snprintf((char *)buf, sizeof(buf), "%d.%d%%",
|
|
|
|
|
pitch / 10, pitch % 10 );
|
|
|
|
|
lcd_getstringsize(buf,&w,&h);
|
|
|
|
|
lcd_putsxy((LCD_WIDTH-w)/2, LCD_HEIGHT/2, buf);
|
|
|
|
|
|
|
|
|
|
lcd_update();
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-21 07:59:23 +00:00
|
|
|
|
bool pitch_screen(void)
|
2002-09-24 17:22:12 +00:00
|
|
|
|
{
|
2004-07-26 16:06:59 +00:00
|
|
|
|
int button;
|
2005-05-22 12:45:35 +00:00
|
|
|
|
int pitch = sound_get_pitch();
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool exit = false;
|
|
|
|
|
|
2006-04-21 06:11:24 +00:00
|
|
|
|
lcd_setfont(FONT_SYSFIXED);
|
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
pcmbuf_set_low_latency(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
while (!exit)
|
|
|
|
|
{
|
|
|
|
|
pitch_screen_draw(pitch);
|
|
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
|
button = button_get(true);
|
|
|
|
|
switch (button) {
|
2006-03-21 07:59:23 +00:00
|
|
|
|
case PITCH_UP:
|
2005-05-22 12:45:35 +00:00
|
|
|
|
if ( pitch < 2000 )
|
|
|
|
|
pitch++;
|
2005-04-01 13:41:03 +00:00
|
|
|
|
sound_set_pitch(pitch);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2006-04-21 06:11:24 +00:00
|
|
|
|
case PITCH_UP | BUTTON_REPEAT:
|
|
|
|
|
if ( pitch < 1990 )
|
|
|
|
|
pitch += 10;
|
|
|
|
|
sound_set_pitch(pitch);
|
|
|
|
|
break;
|
|
|
|
|
|
2006-03-21 07:59:23 +00:00
|
|
|
|
case PITCH_DOWN:
|
2005-05-22 12:45:35 +00:00
|
|
|
|
if ( pitch > 500 )
|
|
|
|
|
pitch--;
|
2005-04-01 13:41:03 +00:00
|
|
|
|
sound_set_pitch(pitch);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2006-04-21 06:11:24 +00:00
|
|
|
|
case PITCH_DOWN | BUTTON_REPEAT:
|
|
|
|
|
if ( pitch > 510 )
|
|
|
|
|
pitch -= 10;
|
|
|
|
|
sound_set_pitch(pitch);
|
|
|
|
|
break;
|
|
|
|
|
|
2006-03-21 07:59:23 +00:00
|
|
|
|
case PITCH_RIGHT:
|
|
|
|
|
if ( pitch < 1980 )
|
2006-04-21 06:11:24 +00:00
|
|
|
|
{
|
2002-10-18 12:05:15 +00:00
|
|
|
|
pitch += 20;
|
2006-04-21 06:11:24 +00:00
|
|
|
|
sound_set_pitch(pitch);
|
|
|
|
|
|
|
|
|
|
pitch_screen_draw(pitch);
|
|
|
|
|
|
|
|
|
|
while(button != (PITCH_RIGHT|BUTTON_REL))
|
|
|
|
|
button = button_get(true);
|
|
|
|
|
|
|
|
|
|
pitch -= 20;
|
|
|
|
|
sound_set_pitch(pitch);
|
|
|
|
|
}
|
2002-10-18 12:05:15 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2006-03-21 07:59:23 +00:00
|
|
|
|
case PITCH_LEFT:
|
|
|
|
|
if ( pitch > 520 )
|
2006-04-21 06:11:24 +00:00
|
|
|
|
{
|
2002-10-18 12:05:15 +00:00
|
|
|
|
pitch -= 20;
|
2006-04-21 06:11:24 +00:00
|
|
|
|
sound_set_pitch(pitch);
|
|
|
|
|
|
|
|
|
|
pitch_screen_draw(pitch);
|
|
|
|
|
|
|
|
|
|
while(button != (PITCH_LEFT|BUTTON_REL))
|
|
|
|
|
button = button_get(true);;
|
|
|
|
|
|
|
|
|
|
pitch += 20;
|
|
|
|
|
sound_set_pitch(pitch);
|
|
|
|
|
}
|
2002-09-24 17:22:12 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2006-03-21 07:59:23 +00:00
|
|
|
|
case PITCH_RESET:
|
2006-03-04 15:35:29 +00:00
|
|
|
|
pitch = 1000;
|
|
|
|
|
sound_set_pitch( pitch );
|
|
|
|
|
break;
|
|
|
|
|
|
2006-03-21 07:59:23 +00:00
|
|
|
|
case PITCH_EXIT:
|
|
|
|
|
exit = true;
|
|
|
|
|
break;
|
|
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
|
default:
|
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
2006-03-21 07:59:23 +00:00
|
|
|
|
return 1;
|
2004-07-26 16:06:59 +00:00
|
|
|
|
break;
|
2002-09-24 17:22:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-04-21 06:11:24 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
pcmbuf_set_low_latency(false);
|
|
|
|
|
#endif
|
2002-10-02 10:58:31 +00:00
|
|
|
|
lcd_setfont(FONT_UI);
|
2006-03-21 07:59:23 +00:00
|
|
|
|
return 0;
|
2002-09-24 17:22:12 +00:00
|
|
|
|
}
|
2006-03-22 02:44:18 +00:00
|
|
|
|
#endif
|
2006-03-21 07:59:23 +00:00
|
|
|
|
|
2006-04-10 03:51:17 +00:00
|
|
|
|
#ifdef HAVE_QUICKSCREEN
|
|
|
|
|
|
2005-11-22 03:38:07 +00:00
|
|
|
|
#define bool_to_int(b)\
|
|
|
|
|
b?1:0
|
|
|
|
|
#define int_to_bool(i)\
|
|
|
|
|
i==0?false:true
|
2004-03-12 10:20:33 +00:00
|
|
|
|
|
2005-11-22 03:38:07 +00:00
|
|
|
|
void quick_screen_quick_apply(struct gui_quickscreen *qs)
|
|
|
|
|
{
|
2005-12-05 23:37:14 +00:00
|
|
|
|
global_settings.playlist_shuffle=int_to_bool(qs->left_option->option);
|
|
|
|
|
global_settings.dirfilter=qs->bottom_option->option;
|
|
|
|
|
global_settings.repeat_mode=qs->right_option->option;
|
2005-11-22 03:38:07 +00:00
|
|
|
|
}
|
2005-08-21 23:01:12 +00:00
|
|
|
|
|
2005-11-22 21:55:05 +00:00
|
|
|
|
bool quick_screen_quick(int button_enter)
|
2005-11-22 03:38:07 +00:00
|
|
|
|
{
|
2006-04-20 15:41:24 +00:00
|
|
|
|
bool res, oldshuffle;
|
2005-11-22 03:38:07 +00:00
|
|
|
|
struct option_select left_option;
|
|
|
|
|
struct option_select bottom_option;
|
|
|
|
|
struct option_select right_option;
|
2006-04-20 15:41:24 +00:00
|
|
|
|
int oldrepeat, old_x_margin, old_y_margin;
|
2006-04-02 10:41:16 +00:00
|
|
|
|
|
|
|
|
|
old_x_margin = lcd_getxmargin();
|
|
|
|
|
old_y_margin = lcd_getymargin();
|
|
|
|
|
lcd_setmargins(0, 0);
|
|
|
|
|
|
2005-11-22 08:46:21 +00:00
|
|
|
|
static const struct opt_items left_items[] = {
|
2005-11-22 03:38:07 +00:00
|
|
|
|
[0]={ STR(LANG_OFF) },
|
|
|
|
|
[1]={ STR(LANG_ON) }
|
|
|
|
|
};
|
2005-11-22 08:44:53 +00:00
|
|
|
|
static const struct opt_items bottom_items[] = {
|
2005-11-22 03:38:07 +00:00
|
|
|
|
[SHOW_ALL]={ STR(LANG_FILTER_ALL) },
|
|
|
|
|
[SHOW_SUPPORTED]={ STR(LANG_FILTER_SUPPORTED) },
|
|
|
|
|
[SHOW_MUSIC]={ STR(LANG_FILTER_MUSIC) },
|
|
|
|
|
[SHOW_PLAYLIST]={ STR(LANG_FILTER_PLAYLIST) },
|
|
|
|
|
[SHOW_ID3DB]={ STR(LANG_FILTER_ID3DB) }
|
|
|
|
|
};
|
2005-11-22 08:44:53 +00:00
|
|
|
|
static const struct opt_items right_items[] = {
|
2005-11-22 03:38:07 +00:00
|
|
|
|
[REPEAT_OFF]={ STR(LANG_OFF) },
|
|
|
|
|
[REPEAT_ALL]={ STR(LANG_REPEAT_ALL) },
|
|
|
|
|
[REPEAT_ONE]={ STR(LANG_REPEAT_ONE) },
|
|
|
|
|
[REPEAT_SHUFFLE]={ STR(LANG_SHUFFLE) },
|
2006-01-21 23:43:57 +00:00
|
|
|
|
#if (AB_REPEAT_ENABLE == 1)
|
2005-11-22 03:38:07 +00:00
|
|
|
|
[REPEAT_AB]={ STR(LANG_REPEAT_AB) }
|
2005-08-21 23:01:12 +00:00
|
|
|
|
#endif
|
2005-11-22 03:38:07 +00:00
|
|
|
|
};
|
|
|
|
|
struct gui_quickscreen qs;
|
|
|
|
|
|
|
|
|
|
option_select_init_items(&left_option,
|
2005-12-05 22:44:42 +00:00
|
|
|
|
(char *)str(LANG_SHUFFLE),
|
2005-11-22 03:38:07 +00:00
|
|
|
|
bool_to_int(global_settings.playlist_shuffle),
|
|
|
|
|
left_items,
|
|
|
|
|
2);
|
|
|
|
|
option_select_init_items(&bottom_option,
|
2005-12-05 22:44:42 +00:00
|
|
|
|
(char *)str(LANG_FILTER),
|
2005-11-22 03:38:07 +00:00
|
|
|
|
global_settings.dirfilter,
|
|
|
|
|
bottom_items,
|
|
|
|
|
sizeof(bottom_items)/sizeof(struct opt_items));
|
|
|
|
|
option_select_init_items(&right_option,
|
2005-12-05 22:44:42 +00:00
|
|
|
|
(char *)str(LANG_REPEAT),
|
2005-11-22 03:38:07 +00:00
|
|
|
|
global_settings.repeat_mode,
|
|
|
|
|
right_items,
|
|
|
|
|
sizeof(right_items)/sizeof(struct opt_items));
|
|
|
|
|
|
|
|
|
|
gui_quickscreen_init(&qs, &left_option, &bottom_option, &right_option,
|
2006-04-11 06:38:10 +00:00
|
|
|
|
&quick_screen_quick_apply);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
oldrepeat=global_settings.repeat_mode;
|
2005-12-23 00:55:01 +00:00
|
|
|
|
oldshuffle=global_settings.playlist_shuffle;
|
2005-11-22 21:55:05 +00:00
|
|
|
|
res=gui_syncquickscreen_run(&qs, button_enter);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
if(!res)
|
|
|
|
|
{
|
|
|
|
|
if ( oldrepeat != global_settings.repeat_mode &&
|
|
|
|
|
(audio_status() & AUDIO_STATUS_PLAY) )
|
|
|
|
|
audio_flush_and_reload_tracks();
|
2005-12-23 00:55:01 +00:00
|
|
|
|
if(oldshuffle != global_settings.playlist_shuffle
|
2005-11-22 03:38:07 +00:00
|
|
|
|
&& audio_status() & AUDIO_STATUS_PLAY)
|
|
|
|
|
{
|
2005-09-24 15:56:33 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2005-11-22 03:38:07 +00:00
|
|
|
|
dsp_set_replaygain(true);
|
2005-06-26 20:16:26 +00:00
|
|
|
|
#endif
|
2005-11-22 03:38:07 +00:00
|
|
|
|
if (global_settings.playlist_shuffle)
|
|
|
|
|
playlist_randomise(NULL, current_tick, true);
|
|
|
|
|
else
|
|
|
|
|
playlist_sort(NULL, true);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
}
|
2005-11-22 03:38:07 +00:00
|
|
|
|
settings_save();
|
2002-09-24 17:22:12 +00:00
|
|
|
|
}
|
2006-04-02 10:41:16 +00:00
|
|
|
|
lcd_setmargins(old_x_margin, old_y_margin);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
return(res);
|
|
|
|
|
}
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
2005-11-22 08:44:53 +00:00
|
|
|
|
#ifdef BUTTON_F3
|
2005-11-22 03:38:07 +00:00
|
|
|
|
void quick_screen_f3_apply(struct gui_quickscreen *qs)
|
|
|
|
|
{
|
2005-12-06 00:53:58 +00:00
|
|
|
|
global_settings.scrollbar=int_to_bool(qs->left_option->option);
|
2004-03-12 10:20:33 +00:00
|
|
|
|
|
2005-12-06 00:53:58 +00:00
|
|
|
|
global_settings.flip_display=int_to_bool(qs->bottom_option->option);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
button_set_flip(global_settings.flip_display);
|
|
|
|
|
lcd_set_flip(global_settings.flip_display);
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2005-12-06 00:53:58 +00:00
|
|
|
|
global_settings.statusbar=int_to_bool(qs->right_option->option);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
|
|
|
|
}
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
2005-11-22 21:55:05 +00:00
|
|
|
|
bool quick_screen_f3(int button_enter)
|
2005-11-22 03:38:07 +00:00
|
|
|
|
{
|
|
|
|
|
bool res;
|
|
|
|
|
struct option_select left_option;
|
|
|
|
|
struct option_select bottom_option;
|
|
|
|
|
struct option_select right_option;
|
2006-04-02 10:41:16 +00:00
|
|
|
|
int old_x_margin, old_y_margin;
|
|
|
|
|
|
|
|
|
|
old_x_margin = lcd_getxmargin();
|
|
|
|
|
old_y_margin = lcd_getymargin();
|
|
|
|
|
lcd_setmargins(0, 0);
|
|
|
|
|
|
2005-11-22 08:44:53 +00:00
|
|
|
|
static const struct opt_items onoff_items[] = {
|
2005-11-22 03:38:07 +00:00
|
|
|
|
[0]={ STR(LANG_OFF) },
|
|
|
|
|
[1]={ STR(LANG_ON) }
|
|
|
|
|
};
|
2005-11-22 08:44:53 +00:00
|
|
|
|
static const struct opt_items yesno_items[] = {
|
2005-11-22 03:38:07 +00:00
|
|
|
|
[0]={ STR(LANG_SET_BOOL_NO) },
|
|
|
|
|
[1]={ STR(LANG_SET_BOOL_YES) }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct gui_quickscreen qs;
|
|
|
|
|
|
|
|
|
|
option_select_init_items(&left_option,
|
2006-04-11 06:38:10 +00:00
|
|
|
|
str(LANG_SCROLL_BAR),
|
2005-11-22 03:38:07 +00:00
|
|
|
|
bool_to_int(global_settings.scrollbar),
|
|
|
|
|
onoff_items,
|
|
|
|
|
2);
|
|
|
|
|
option_select_init_items(&bottom_option,
|
|
|
|
|
str(LANG_FLIP_DISPLAY),
|
|
|
|
|
bool_to_int(global_settings.flip_display),
|
|
|
|
|
yesno_items,
|
|
|
|
|
2);
|
|
|
|
|
option_select_init_items(&right_option,
|
2006-04-11 06:38:10 +00:00
|
|
|
|
str(LANG_STATUS_BAR),
|
2005-11-22 03:38:07 +00:00
|
|
|
|
bool_to_int(global_settings.statusbar),
|
|
|
|
|
onoff_items,
|
|
|
|
|
2);
|
|
|
|
|
gui_quickscreen_init(&qs, &left_option, &bottom_option, &right_option,
|
2006-04-11 06:38:10 +00:00
|
|
|
|
&quick_screen_f3_apply);
|
2005-11-22 21:55:05 +00:00
|
|
|
|
res=gui_syncquickscreen_run(&qs, button_enter);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
if(!res)
|
|
|
|
|
settings_save();
|
2006-04-02 10:41:16 +00:00
|
|
|
|
lcd_setmargins(old_x_margin, old_y_margin);
|
2005-11-22 03:38:07 +00:00
|
|
|
|
return(res);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
}
|
2005-11-22 08:44:53 +00:00
|
|
|
|
#endif /* BUTTON_F3 */
|
|
|
|
|
#endif /* CONFIG_KEYPAD in (RECORDER_PAD |IRIVER_H100_PAD | IRIVER_H300_PAD) */
|
2003-03-17 19:32:12 +00:00
|
|
|
|
|
2005-05-07 01:49:16 +00:00
|
|
|
|
#if defined(HAVE_CHARGING) || defined(SIMULATOR)
|
2003-12-04 00:08:25 +00:00
|
|
|
|
void charging_splash(void)
|
|
|
|
|
{
|
2005-12-05 23:37:14 +00:00
|
|
|
|
gui_syncsplash(2*HZ, true, (unsigned char *)str(LANG_BATTERY_CHARGE));
|
2005-01-26 22:48:25 +00:00
|
|
|
|
button_clear_queue();
|
2003-12-04 00:08:25 +00:00
|
|
|
|
}
|
2005-05-07 01:30:16 +00:00
|
|
|
|
#endif
|
2004-04-21 06:49:12 +00:00
|
|
|
|
|
|
|
|
|
|
2005-12-04 15:23:47 +00:00
|
|
|
|
#if defined(HAVE_LCD_BITMAP) && defined (CONFIG_RTC)
|
2004-04-21 06:49:12 +00:00
|
|
|
|
|
2006-03-18 22:42:02 +00:00
|
|
|
|
const int dayname[] = {
|
|
|
|
|
LANG_WEEKDAY_SUNDAY,
|
|
|
|
|
LANG_WEEKDAY_MONDAY,
|
|
|
|
|
LANG_WEEKDAY_TUESDAY,
|
|
|
|
|
LANG_WEEKDAY_WEDNESDAY,
|
|
|
|
|
LANG_WEEKDAY_THURSDAY,
|
|
|
|
|
LANG_WEEKDAY_FRIDAY,
|
|
|
|
|
LANG_WEEKDAY_SATURDAY
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const int monthname[] = {
|
|
|
|
|
LANG_MONTH_JANUARY,
|
|
|
|
|
LANG_MONTH_FEBRUARY,
|
|
|
|
|
LANG_MONTH_MARCH,
|
|
|
|
|
LANG_MONTH_APRIL,
|
|
|
|
|
LANG_MONTH_MAY,
|
|
|
|
|
LANG_MONTH_JUNE,
|
|
|
|
|
LANG_MONTH_JULY,
|
|
|
|
|
LANG_MONTH_AUGUST,
|
|
|
|
|
LANG_MONTH_SEPTEMBER,
|
|
|
|
|
LANG_MONTH_OCTOBER,
|
|
|
|
|
LANG_MONTH_NOVEMBER,
|
|
|
|
|
LANG_MONTH_DECEMBER
|
|
|
|
|
};
|
|
|
|
|
|
2004-04-21 06:49:12 +00:00
|
|
|
|
/* little helper function for voice output */
|
2004-08-18 01:09:31 +00:00
|
|
|
|
static void say_time(int cursorpos, const struct tm *tm)
|
2004-04-21 06:49:12 +00:00
|
|
|
|
{
|
2004-08-26 20:30:22 +00:00
|
|
|
|
static const int unit[] = { UNIT_HOUR, UNIT_MIN, UNIT_SEC, 0, 0, 0 };
|
2004-04-21 06:49:12 +00:00
|
|
|
|
int value = 0;
|
|
|
|
|
|
|
|
|
|
if (!global_settings.talk_menu)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
switch(cursorpos)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
value = tm->tm_hour;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
value = tm->tm_min;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
value = tm->tm_sec;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
value = tm->tm_year + 1900;
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
value = tm->tm_mday;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-04-21 06:49:12 +00:00
|
|
|
|
if (cursorpos == 4) /* month */
|
2004-04-21 21:40:26 +00:00
|
|
|
|
talk_id(LANG_MONTH_JANUARY + tm->tm_mon, false);
|
2004-04-21 06:49:12 +00:00
|
|
|
|
else
|
|
|
|
|
talk_value(value, unit[cursorpos], false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define INDEX_X 0
|
|
|
|
|
#define INDEX_Y 1
|
|
|
|
|
#define INDEX_WIDTH 2
|
2004-08-18 01:09:31 +00:00
|
|
|
|
bool set_time_screen(const char* string, struct tm *tm)
|
2004-04-21 06:49:12 +00:00
|
|
|
|
{
|
|
|
|
|
bool done = false;
|
|
|
|
|
int button;
|
|
|
|
|
int min = 0, steps = 0;
|
|
|
|
|
int cursorpos = 0;
|
|
|
|
|
int lastcursorpos = !cursorpos;
|
|
|
|
|
unsigned char buffer[19];
|
|
|
|
|
int realyear;
|
|
|
|
|
int julianday;
|
|
|
|
|
int i;
|
|
|
|
|
unsigned char reffub[5];
|
|
|
|
|
unsigned int width, height;
|
|
|
|
|
unsigned int separator_width, weekday_width;
|
|
|
|
|
unsigned int line_height, prev_line_height;
|
2005-06-24 22:33:21 +00:00
|
|
|
|
int lastmode = lcd_get_drawmode();
|
2004-08-26 20:30:22 +00:00
|
|
|
|
|
2004-04-21 06:49:12 +00:00
|
|
|
|
char cursor[][3] = {{ 0, 8, 12}, {18, 8, 12}, {36, 8, 12},
|
|
|
|
|
{24, 16, 24}, {54, 16, 18}, {78, 16, 12}};
|
|
|
|
|
char daysinmonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-04-21 06:49:12 +00:00
|
|
|
|
int monthname_len = 0, dayname_len = 0;
|
|
|
|
|
|
|
|
|
|
int *valptr = NULL;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
if(global_settings.statusbar)
|
|
|
|
|
lcd_setmargins(0, STATUSBAR_HEIGHT);
|
|
|
|
|
else
|
|
|
|
|
lcd_setmargins(0, 0);
|
|
|
|
|
#endif
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts_scroll(0, 0, string);
|
|
|
|
|
|
|
|
|
|
while ( !done ) {
|
|
|
|
|
/* calculate the number of days in febuary */
|
|
|
|
|
realyear = tm->tm_year + 1900;
|
|
|
|
|
if((realyear % 4 == 0 && !(realyear % 100 == 0)) || realyear % 400 == 0)
|
|
|
|
|
daysinmonth[1] = 29;
|
|
|
|
|
else
|
|
|
|
|
daysinmonth[1] = 28;
|
|
|
|
|
|
|
|
|
|
/* fix day if month or year changed */
|
|
|
|
|
if (tm->tm_mday > daysinmonth[tm->tm_mon])
|
|
|
|
|
tm->tm_mday = daysinmonth[tm->tm_mon];
|
|
|
|
|
|
|
|
|
|
/* calculate day of week */
|
|
|
|
|
julianday = 0;
|
|
|
|
|
for(i = 0; i < tm->tm_mon; i++) {
|
|
|
|
|
julianday += daysinmonth[i];
|
|
|
|
|
}
|
|
|
|
|
julianday += tm->tm_mday;
|
|
|
|
|
tm->tm_wday = (realyear + julianday + (realyear - 1) / 4 -
|
|
|
|
|
(realyear - 1) / 100 + (realyear - 1) / 400 + 7 - 1) % 7;
|
|
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d ",
|
|
|
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
|
|
|
|
lcd_puts(0, 1, buffer);
|
|
|
|
|
|
|
|
|
|
/* recalculate the positions and offsets */
|
|
|
|
|
lcd_getstringsize(string, &width, &prev_line_height);
|
|
|
|
|
lcd_getstringsize(buffer, &width, &line_height);
|
|
|
|
|
lcd_getstringsize(":", &separator_width, &height);
|
|
|
|
|
|
|
|
|
|
/* hour */
|
|
|
|
|
strncpy(reffub, buffer, 2);
|
|
|
|
|
reffub[2] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &width, &height);
|
|
|
|
|
cursor[0][INDEX_X] = 0;
|
|
|
|
|
cursor[0][INDEX_Y] = prev_line_height;
|
|
|
|
|
cursor[0][INDEX_WIDTH] = width;
|
|
|
|
|
|
|
|
|
|
/* minute */
|
|
|
|
|
strncpy(reffub, buffer + 3, 2);
|
|
|
|
|
reffub[2] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &width, &height);
|
|
|
|
|
cursor[1][INDEX_X] = cursor[0][INDEX_WIDTH] + separator_width;
|
|
|
|
|
cursor[1][INDEX_Y] = prev_line_height;
|
|
|
|
|
cursor[1][INDEX_WIDTH] = width;
|
|
|
|
|
|
|
|
|
|
/* second */
|
|
|
|
|
strncpy(reffub, buffer + 6, 2);
|
|
|
|
|
reffub[2] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &width, &height);
|
|
|
|
|
cursor[2][INDEX_X] = cursor[0][INDEX_WIDTH] + separator_width +
|
|
|
|
|
cursor[1][INDEX_WIDTH] + separator_width;
|
|
|
|
|
cursor[2][INDEX_Y] = prev_line_height;
|
|
|
|
|
cursor[2][INDEX_WIDTH] = width;
|
|
|
|
|
|
|
|
|
|
lcd_getstringsize(buffer, &width, &prev_line_height);
|
|
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), "%s %04d %s %02d ",
|
|
|
|
|
str(dayname[tm->tm_wday]), tm->tm_year+1900,
|
|
|
|
|
str(monthname[tm->tm_mon]), tm->tm_mday);
|
|
|
|
|
lcd_puts(0, 2, buffer);
|
|
|
|
|
|
|
|
|
|
/* recalculate the positions and offsets */
|
|
|
|
|
lcd_getstringsize(buffer, &width, &line_height);
|
|
|
|
|
|
|
|
|
|
/* store these 2 to prevent _repeated_ strlen calls */
|
|
|
|
|
monthname_len = strlen(str(monthname[tm->tm_mon]));
|
|
|
|
|
dayname_len = strlen(str(dayname[tm->tm_wday]));
|
|
|
|
|
|
|
|
|
|
/* weekday */
|
|
|
|
|
strncpy(reffub, buffer, dayname_len);
|
|
|
|
|
reffub[dayname_len] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &weekday_width, &height);
|
|
|
|
|
lcd_getstringsize(" ", &separator_width, &height);
|
|
|
|
|
|
|
|
|
|
/* year */
|
|
|
|
|
strncpy(reffub, buffer + dayname_len + 1, 4);
|
|
|
|
|
reffub[4] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &width, &height);
|
|
|
|
|
cursor[3][INDEX_X] = weekday_width + separator_width;
|
|
|
|
|
cursor[3][INDEX_Y] = cursor[0][INDEX_Y] + prev_line_height;
|
|
|
|
|
cursor[3][INDEX_WIDTH] = width;
|
|
|
|
|
|
|
|
|
|
/* month */
|
|
|
|
|
strncpy(reffub, buffer + dayname_len + 6, monthname_len);
|
|
|
|
|
reffub[monthname_len] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &width, &height);
|
|
|
|
|
cursor[4][INDEX_X] = weekday_width + separator_width +
|
|
|
|
|
cursor[3][INDEX_WIDTH] + separator_width;
|
|
|
|
|
cursor[4][INDEX_Y] = cursor[0][INDEX_Y] + prev_line_height;
|
|
|
|
|
cursor[4][INDEX_WIDTH] = width;
|
|
|
|
|
|
|
|
|
|
/* day */
|
|
|
|
|
strncpy(reffub, buffer + dayname_len + monthname_len + 7, 2);
|
|
|
|
|
reffub[2] = '\0';
|
|
|
|
|
lcd_getstringsize(reffub, &width, &height);
|
|
|
|
|
cursor[5][INDEX_X] = weekday_width + separator_width +
|
|
|
|
|
cursor[3][INDEX_WIDTH] + separator_width +
|
|
|
|
|
cursor[4][INDEX_WIDTH] + separator_width;
|
|
|
|
|
cursor[5][INDEX_Y] = cursor[0][INDEX_Y] + prev_line_height;
|
|
|
|
|
cursor[5][INDEX_WIDTH] = width;
|
|
|
|
|
|
2005-06-24 22:33:21 +00:00
|
|
|
|
lcd_set_drawmode(DRMODE_COMPLEMENT);
|
|
|
|
|
lcd_fillrect(cursor[cursorpos][INDEX_X],
|
|
|
|
|
cursor[cursorpos][INDEX_Y] + lcd_getymargin(),
|
|
|
|
|
cursor[cursorpos][INDEX_WIDTH],
|
|
|
|
|
line_height);
|
|
|
|
|
lcd_set_drawmode(DRMODE_SOLID);
|
2004-04-21 06:49:12 +00:00
|
|
|
|
|
|
|
|
|
lcd_puts(0, 4, str(LANG_TIME_SET));
|
|
|
|
|
lcd_puts(0, 5, str(LANG_TIME_REVERT));
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
2004-04-21 06:49:12 +00:00
|
|
|
|
#endif
|
|
|
|
|
lcd_update();
|
|
|
|
|
|
|
|
|
|
/* calculate the minimum and maximum for the number under cursor */
|
|
|
|
|
if(cursorpos!=lastcursorpos) {
|
|
|
|
|
lastcursorpos=cursorpos;
|
|
|
|
|
switch(cursorpos) {
|
|
|
|
|
case 0: /* hour */
|
|
|
|
|
min = 0;
|
|
|
|
|
steps = 24;
|
|
|
|
|
valptr = &tm->tm_hour;
|
|
|
|
|
break;
|
|
|
|
|
case 1: /* minute */
|
|
|
|
|
min = 0;
|
|
|
|
|
steps = 60;
|
|
|
|
|
valptr = &tm->tm_min;
|
|
|
|
|
break;
|
|
|
|
|
case 2: /* second */
|
|
|
|
|
min = 0;
|
|
|
|
|
steps = 60;
|
|
|
|
|
valptr = &tm->tm_sec;
|
|
|
|
|
break;
|
|
|
|
|
case 3: /* year */
|
|
|
|
|
min = 1;
|
|
|
|
|
steps = 200;
|
|
|
|
|
valptr = &tm->tm_year;
|
|
|
|
|
break;
|
|
|
|
|
case 4: /* month */
|
|
|
|
|
min = 0;
|
|
|
|
|
steps = 12;
|
|
|
|
|
valptr = &tm->tm_mon;
|
|
|
|
|
break;
|
|
|
|
|
case 5: /* day */
|
|
|
|
|
min = 1;
|
|
|
|
|
steps = daysinmonth[tm->tm_mon];
|
|
|
|
|
valptr = &tm->tm_mday;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
say_time(cursorpos, tm);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button = button_get_w_tmo(HZ/2);
|
|
|
|
|
switch ( button ) {
|
2005-12-10 12:59:54 +00:00
|
|
|
|
case SETTINGS_PREV:
|
2004-04-21 06:49:12 +00:00
|
|
|
|
cursorpos = (cursorpos + 6 - 1) % 6;
|
|
|
|
|
break;
|
2005-12-10 12:59:54 +00:00
|
|
|
|
case SETTINGS_NEXT:
|
2004-04-21 06:49:12 +00:00
|
|
|
|
cursorpos = (cursorpos + 6 + 1) % 6;
|
|
|
|
|
break;
|
2005-12-10 12:59:54 +00:00
|
|
|
|
case SETTINGS_INC:
|
|
|
|
|
case SETTINGS_INC | BUTTON_REPEAT:
|
2004-04-21 06:49:12 +00:00
|
|
|
|
*valptr = (*valptr + steps - min + 1) %
|
|
|
|
|
steps + min;
|
|
|
|
|
if(*valptr == 0)
|
|
|
|
|
*valptr = min;
|
|
|
|
|
say_time(cursorpos, tm);
|
|
|
|
|
break;
|
2005-12-10 12:59:54 +00:00
|
|
|
|
case SETTINGS_DEC:
|
|
|
|
|
case SETTINGS_DEC | BUTTON_REPEAT:
|
2005-07-05 19:33:33 +00:00
|
|
|
|
*valptr = (*valptr + steps - min - 1) %
|
2004-04-21 06:49:12 +00:00
|
|
|
|
steps + min;
|
|
|
|
|
if(*valptr == 0)
|
|
|
|
|
*valptr = min;
|
|
|
|
|
say_time(cursorpos, tm);
|
|
|
|
|
break;
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-12-10 12:59:54 +00:00
|
|
|
|
case SETTINGS_ACCEPT:
|
2004-04-21 06:49:12 +00:00
|
|
|
|
done = true;
|
|
|
|
|
break;
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-12-10 12:59:54 +00:00
|
|
|
|
case SETTINGS_CANCEL:
|
2004-04-21 06:49:12 +00:00
|
|
|
|
done = true;
|
|
|
|
|
tm->tm_year = -1;
|
|
|
|
|
break;
|
|
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
|
default:
|
|
|
|
|
if (default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
2004-04-21 06:49:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-24 22:33:21 +00:00
|
|
|
|
lcd_set_drawmode(lastmode);
|
2004-04-21 06:49:12 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2005-12-04 15:23:47 +00:00
|
|
|
|
#endif /* defined(HAVE_LCD_BITMAP) && defined (CONFIG_RTC) */
|
2004-07-24 21:26:41 +00:00
|
|
|
|
|
2005-06-22 22:22:23 +00:00
|
|
|
|
#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
|
2004-07-24 21:26:41 +00:00
|
|
|
|
bool shutdown_screen(void)
|
|
|
|
|
{
|
|
|
|
|
int button;
|
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
|
|
lcd_stop_scroll();
|
|
|
|
|
|
2005-11-16 15:12:15 +00:00
|
|
|
|
gui_syncsplash(0, true, str(LANG_CONFIRM_SHUTDOWN));
|
2004-07-24 21:35:38 +00:00
|
|
|
|
|
2004-07-24 21:26:41 +00:00
|
|
|
|
while(!done)
|
|
|
|
|
{
|
|
|
|
|
button = button_get_w_tmo(HZ*2);
|
|
|
|
|
switch(button)
|
|
|
|
|
{
|
|
|
|
|
case BUTTON_OFF:
|
2005-09-14 09:08:26 +00:00
|
|
|
|
sys_poweroff();
|
2004-07-24 21:26:41 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2004-07-26 16:06:59 +00:00
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
|
return true;
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2004-07-24 21:26:41 +00:00
|
|
|
|
/* Return if any other button was pushed, or if there
|
|
|
|
|
was a timeout. We ignore RELEASE events, since we may
|
|
|
|
|
have been called by a button down event, and the user might
|
2004-07-26 07:39:57 +00:00
|
|
|
|
not have released the button yet.
|
|
|
|
|
We also ignore REPEAT events, since we don't want to
|
|
|
|
|
remove the splash when the user holds OFF to shut down. */
|
|
|
|
|
if(!(button & (BUTTON_REL | BUTTON_REPEAT)))
|
2004-07-24 21:26:41 +00:00
|
|
|
|
done = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-07-24 21:35:38 +00:00
|
|
|
|
#endif
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
int draw_id3_item(int line, int top, int header, const char* body)
|
2004-09-19 21:58:37 +00:00
|
|
|
|
{
|
2005-08-11 18:21:14 +00:00
|
|
|
|
if (line >= top)
|
|
|
|
|
{
|
|
|
|
|
#if defined(HAVE_LCD_BITMAP)
|
|
|
|
|
const int rows = LCD_HEIGHT / font_get(FONT_UI)->height;
|
|
|
|
|
#else
|
|
|
|
|
const int rows = 2;
|
|
|
|
|
#endif
|
|
|
|
|
int y = line - top;
|
|
|
|
|
|
|
|
|
|
if (y < rows)
|
|
|
|
|
{
|
|
|
|
|
lcd_puts(0, y, str(header));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (++y < rows)
|
|
|
|
|
{
|
|
|
|
|
lcd_puts_scroll(0, y,
|
|
|
|
|
body ? (const unsigned char*) body : str(LANG_ID3_NO_INFO));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return line + 2;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#define ID3_ITEMS 13
|
2005-07-24 15:32:28 +00:00
|
|
|
|
#else
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#define ID3_ITEMS 11
|
2005-07-24 15:32:28 +00:00
|
|
|
|
#endif
|
2005-08-11 18:21:14 +00:00
|
|
|
|
|
|
|
|
|
bool browse_id3(void)
|
|
|
|
|
{
|
2005-08-13 08:13:32 +00:00
|
|
|
|
char buf[64];
|
2005-08-11 18:21:14 +00:00
|
|
|
|
const struct mp3entry* id3 = audio_current_track();
|
|
|
|
|
#if defined(HAVE_LCD_BITMAP)
|
2006-03-21 11:31:53 +00:00
|
|
|
|
const int y_margin = global_settings.statusbar ? STATUSBAR_HEIGHT : 0;
|
2005-08-11 18:21:14 +00:00
|
|
|
|
const int line_height = font_get(FONT_UI)->height;
|
|
|
|
|
const int rows = (LCD_HEIGHT - y_margin) / line_height;
|
|
|
|
|
const bool show_scrollbar = global_settings.scrollbar
|
|
|
|
|
&& (ID3_ITEMS * 2 > rows);
|
|
|
|
|
#else
|
|
|
|
|
const int rows = 2;
|
|
|
|
|
#endif
|
|
|
|
|
const int top_max = (ID3_ITEMS * 2) - (rows & ~1);
|
|
|
|
|
int top = 0;
|
|
|
|
|
int button;
|
2004-09-19 21:58:37 +00:00
|
|
|
|
bool exit = false;
|
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
if (!id3 || (!(audio_status() & AUDIO_STATUS_PLAY)))
|
|
|
|
|
{
|
2004-09-19 21:58:37 +00:00
|
|
|
|
return false;
|
2005-08-11 18:21:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_LCD_BITMAP)
|
|
|
|
|
lcd_setmargins(show_scrollbar ? SCROLLBAR_WIDTH : 0, y_margin);
|
|
|
|
|
#endif
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
|
|
|
|
while (!exit)
|
|
|
|
|
{
|
2005-08-11 18:21:14 +00:00
|
|
|
|
int line = 0;
|
|
|
|
|
int old_top = top;
|
|
|
|
|
char* body;
|
|
|
|
|
|
2004-09-19 21:58:37 +00:00
|
|
|
|
lcd_clear_display();
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_TITLE, id3->title);
|
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_ARTIST, id3->artist);
|
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_ALBUM, id3->album);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
if (id3->track_string)
|
2004-09-19 21:58:37 +00:00
|
|
|
|
{
|
2005-08-11 18:21:14 +00:00
|
|
|
|
body = id3->track_string;
|
|
|
|
|
}
|
|
|
|
|
else if (id3->tracknum)
|
|
|
|
|
{
|
|
|
|
|
snprintf(buf, sizeof(buf), "%d", id3->tracknum);
|
|
|
|
|
body = buf;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
body = NULL;
|
|
|
|
|
}
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_TRACKNUM, body);
|
2005-07-05 19:33:33 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
body = id3->genre_string ? id3->genre_string : id3_get_genre(id3);
|
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_GENRE, body);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
if (id3->year_string)
|
|
|
|
|
{
|
|
|
|
|
body = id3->year_string;
|
|
|
|
|
}
|
|
|
|
|
else if (id3->year)
|
|
|
|
|
{
|
|
|
|
|
snprintf(buf, sizeof(buf), "%d", id3->year);
|
|
|
|
|
body = buf;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
body = NULL;
|
|
|
|
|
}
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_YEAR, body);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-11-17 20:14:59 +00:00
|
|
|
|
gui_wps_format_time(buf, sizeof(buf), id3->length);
|
2006-04-01 13:41:53 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_LENGTH, buf);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
snprintf(buf, sizeof(buf), "%d/%d", playlist_get_display_index(),
|
|
|
|
|
playlist_amount());
|
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_PLAYLIST, buf);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2006-03-12 02:24:29 +00:00
|
|
|
|
snprintf(buf, sizeof(buf), "%d kbps%s", id3->bitrate,
|
2005-08-13 08:13:32 +00:00
|
|
|
|
id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_BITRATE, buf);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-09-10 12:28:16 +00:00
|
|
|
|
snprintf(buf, sizeof(buf), "%ld Hz", id3->frequency);
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_FRECUENCY, buf);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_TRACK_GAIN,
|
|
|
|
|
id3->track_gain_string);
|
2005-07-24 15:32:28 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_ALBUM_GAIN,
|
|
|
|
|
id3->album_gain_string);
|
2005-07-24 15:32:28 +00:00
|
|
|
|
#endif
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
line = draw_id3_item(line, top, LANG_ID3_PATH, id3->path);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#if defined(HAVE_LCD_BITMAP)
|
|
|
|
|
if (show_scrollbar)
|
|
|
|
|
{
|
|
|
|
|
scrollbar(0, y_margin, SCROLLBAR_WIDTH - 1, rows * line_height,
|
|
|
|
|
ID3_ITEMS * 2 + (rows & 1), top, top + rows, VERTICAL);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
while (!exit && (top == old_top))
|
2004-09-19 21:58:37 +00:00
|
|
|
|
{
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, false);
|
2005-08-11 18:21:14 +00:00
|
|
|
|
lcd_update();
|
|
|
|
|
button = button_get_w_tmo(HZ / 2);
|
|
|
|
|
|
|
|
|
|
switch(button)
|
|
|
|
|
{
|
|
|
|
|
/* It makes more sense to have the keys mapped "backwards" when
|
2006-03-12 02:24:29 +00:00
|
|
|
|
* scrolling a list on the archos studios/players and the ipod.
|
2005-08-11 18:21:14 +00:00
|
|
|
|
*/
|
2006-03-12 02:24:29 +00:00
|
|
|
|
#if defined(HAVE_LCD_BITMAP) && !(CONFIG_KEYPAD == IPOD_4G_PAD)
|
2005-08-11 18:21:14 +00:00
|
|
|
|
case SETTINGS_INC:
|
|
|
|
|
case SETTINGS_INC | BUTTON_REPEAT:
|
|
|
|
|
#else
|
2004-09-19 21:58:37 +00:00
|
|
|
|
case SETTINGS_DEC:
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#endif
|
|
|
|
|
if (top > 0)
|
|
|
|
|
{
|
|
|
|
|
top -= 2;
|
|
|
|
|
}
|
|
|
|
|
else if (!(button & BUTTON_REPEAT))
|
|
|
|
|
{
|
|
|
|
|
top = top_max;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 21:58:37 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2006-03-12 02:24:29 +00:00
|
|
|
|
#if defined(HAVE_LCD_BITMAP) && !(CONFIG_KEYPAD == IPOD_4G_PAD)
|
2005-08-11 18:21:14 +00:00
|
|
|
|
case SETTINGS_DEC:
|
|
|
|
|
case SETTINGS_DEC | BUTTON_REPEAT:
|
|
|
|
|
#else
|
2004-09-19 21:58:37 +00:00
|
|
|
|
case SETTINGS_INC:
|
2005-08-11 18:21:14 +00:00
|
|
|
|
#endif
|
|
|
|
|
if (top < top_max)
|
|
|
|
|
{
|
|
|
|
|
top += 2;
|
|
|
|
|
}
|
|
|
|
|
else if (!(button & BUTTON_REPEAT))
|
|
|
|
|
{
|
|
|
|
|
top = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 21:58:37 +00:00
|
|
|
|
break;
|
2005-06-23 02:20:40 +00:00
|
|
|
|
|
|
|
|
|
#ifdef SETTINGS_OK2
|
2005-06-23 01:24:25 +00:00
|
|
|
|
case SETTINGS_OK2:
|
2005-06-23 02:20:40 +00:00
|
|
|
|
#endif
|
2004-09-19 21:58:37 +00:00
|
|
|
|
case SETTINGS_CANCEL:
|
|
|
|
|
lcd_stop_scroll();
|
2005-08-11 18:21:14 +00:00
|
|
|
|
/* Eat release event */
|
2004-09-19 21:58:37 +00:00
|
|
|
|
button_get(true);
|
|
|
|
|
exit = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2005-08-11 18:21:14 +00:00
|
|
|
|
if (default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
|
{
|
2004-09-19 21:58:37 +00:00
|
|
|
|
return true;
|
2005-08-11 18:21:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 21:58:37 +00:00
|
|
|
|
break;
|
2005-08-11 18:21:14 +00:00
|
|
|
|
}
|
2004-09-19 21:58:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-11 18:21:14 +00:00
|
|
|
|
|
2004-09-19 21:58:37 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-04 22:01:31 +00:00
|
|
|
|
bool set_rating(void)
|
|
|
|
|
{
|
|
|
|
|
struct mp3entry* id3 = audio_current_track();
|
|
|
|
|
int button;
|
|
|
|
|
bool exit = false;
|
|
|
|
|
char rating_text[20];
|
|
|
|
|
|
2005-07-06 22:35:21 +00:00
|
|
|
|
if (!(audio_status() & AUDIO_STATUS_PLAY)||id3==NULL)
|
2005-07-04 22:01:31 +00:00
|
|
|
|
return false;
|
|
|
|
|
while (!exit)
|
|
|
|
|
{
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts(0, 0, str(LANG_RATING));
|
2005-12-05 22:44:42 +00:00
|
|
|
|
snprintf(rating_text, sizeof(rating_text), "%d", id3->rating);
|
|
|
|
|
lcd_puts(0, 1, (unsigned char *)rating_text);
|
2005-07-04 22:01:31 +00:00
|
|
|
|
lcd_update();
|
|
|
|
|
button = button_get(true);
|
|
|
|
|
|
|
|
|
|
switch(button)
|
|
|
|
|
{
|
|
|
|
|
case SETTINGS_DEC:
|
|
|
|
|
if (id3->rating > 0)
|
|
|
|
|
id3->rating--;
|
|
|
|
|
else
|
|
|
|
|
id3->rating = 10;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SETTINGS_INC:
|
|
|
|
|
if (id3->rating < 10)
|
|
|
|
|
id3->rating++;
|
|
|
|
|
else
|
|
|
|
|
id3->rating = 0;
|
|
|
|
|
break;
|
|
|
|
|
case SETTINGS_CANCEL:
|
|
|
|
|
#ifdef SETTINGS_OK2
|
|
|
|
|
case SETTINGS_OK2:
|
|
|
|
|
#endif
|
|
|
|
|
/* eat release event */
|
|
|
|
|
button_get(true);
|
|
|
|
|
exit = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|