2005-11-18 09:03:25 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Jerome Kuptz
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2005-11-18 09:03:25 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2005-11-17 20:20:01 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2006-08-16 13:25:45 +00:00
|
|
|
#include "config.h"
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "backlight.h"
|
2006-08-15 12:27:07 +00:00
|
|
|
#include "action.h"
|
2005-11-17 20:20:01 +00:00
|
|
|
#include "kernel.h"
|
2007-04-18 13:03:01 +00:00
|
|
|
#include "filetypes.h"
|
2005-11-17 20:20:01 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "sprintf.h"
|
|
|
|
#include "settings.h"
|
2009-08-03 04:57:43 +00:00
|
|
|
#include "skin_engine/skin_engine.h"
|
2009-07-27 07:21:05 +00:00
|
|
|
#include "mp3_playback.h"
|
2005-11-17 20:20:01 +00:00
|
|
|
#include "audio.h"
|
|
|
|
#include "usb.h"
|
|
|
|
#include "status.h"
|
2008-11-01 16:14:28 +00:00
|
|
|
#include "storage.h"
|
2005-11-17 20:20:01 +00:00
|
|
|
#include "screens.h"
|
|
|
|
#include "playlist.h"
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#include "icons.h"
|
|
|
|
#include "peakmeter.h"
|
|
|
|
#endif
|
|
|
|
#include "lang.h"
|
|
|
|
#include "bookmark.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "sound.h"
|
|
|
|
#include "onplay.h"
|
|
|
|
#include "abrepeat.h"
|
|
|
|
#include "playback.h"
|
|
|
|
#include "splash.h"
|
2007-02-14 14:40:24 +00:00
|
|
|
#include "cuesheet.h"
|
2006-11-08 02:23:01 +00:00
|
|
|
#include "ata_idle_notify.h"
|
2007-03-01 11:14:46 +00:00
|
|
|
#include "root_menu.h"
|
2007-04-25 22:08:00 +00:00
|
|
|
#include "backdrop.h"
|
2008-05-03 12:30:40 +00:00
|
|
|
#include "quickscreen.h"
|
2008-10-05 13:01:54 +00:00
|
|
|
#include "pitchscreen.h"
|
2008-10-16 10:38:03 +00:00
|
|
|
#include "appevents.h"
|
2009-01-02 01:43:00 +00:00
|
|
|
#include "viewport.h"
|
2009-03-12 18:50:24 +00:00
|
|
|
#include "pcmbuf.h"
|
2009-05-15 05:36:16 +00:00
|
|
|
#include "option_select.h"
|
|
|
|
#include "dsp.h"
|
2009-07-22 22:10:25 +00:00
|
|
|
#include "playlist_viewer.h"
|
2009-08-03 04:57:43 +00:00
|
|
|
#include "wps.h"
|
2007-04-25 22:08:00 +00:00
|
|
|
|
2009-03-17 01:56:20 +00:00
|
|
|
#define RESTORE_WPS_INSTANTLY 0l
|
|
|
|
#define RESTORE_WPS_NEXT_SECOND ((long)(HZ+current_tick))
|
2009-04-04 20:33:38 +00:00
|
|
|
/* in milliseconds */
|
|
|
|
#define DEFAULT_SKIP_TRESH 3000ul
|
2009-03-17 01:39:20 +00:00
|
|
|
|
2009-08-03 22:39:27 +00:00
|
|
|
|
|
|
|
#define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */
|
|
|
|
/* 3% of 30min file == 54s step size */
|
|
|
|
#define MIN_FF_REWIND_STEP 500
|
|
|
|
|
2009-03-17 01:39:20 +00:00
|
|
|
static int wpsbars;
|
2009-01-07 10:57:51 +00:00
|
|
|
/* currently only one wps_state is needed */
|
2009-08-03 15:06:30 +00:00
|
|
|
static struct wps_state wps_state;
|
|
|
|
static struct gui_wps gui_wps[NB_SCREENS];
|
2005-11-18 09:03:25 +00:00
|
|
|
static struct wps_data wps_datas[NB_SCREENS];
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2006-12-13 11:52:21 +00:00
|
|
|
/* initial setup of wps_data */
|
|
|
|
static void wps_state_init(void);
|
2009-04-06 00:39:43 +00:00
|
|
|
static void track_changed_callback(void *param);
|
|
|
|
static void nextid3available_callback(void* param);
|
2006-12-13 11:52:21 +00:00
|
|
|
|
2009-04-14 22:13:29 +00:00
|
|
|
|
2009-08-03 22:39:27 +00:00
|
|
|
void wps_data_load(enum screen_type screen, const char *buf, bool isfile)
|
2009-08-03 15:06:30 +00:00
|
|
|
{
|
2009-08-03 22:39:27 +00:00
|
|
|
bool loaded_ok = buf && skin_data_load(gui_wps[screen].data, &screens[screen], buf, isfile);
|
|
|
|
if (!loaded_ok) /* load the hardcoded default */
|
|
|
|
{
|
|
|
|
char *skin_buf[NB_SCREENS] = {
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
"%s%?it<%?in<%in. |>%it|%fn>\n"
|
|
|
|
"%s%?ia<%ia|%?d2<%d2|(root)>>\n"
|
|
|
|
"%s%?id<%id|%?d1<%d1|(root)>> %?iy<(%iy)|>\n\n"
|
|
|
|
"%al%pc/%pt%ar[%pp:%pe]\n"
|
|
|
|
"%fbkBit %?fv<avg|> %?iv<(id3v%iv)|(no id3)>\n"
|
|
|
|
"%pb\n%pm\n",
|
|
|
|
#else
|
|
|
|
"%s%pp/%pe: %?it<%it|%fn> - %?ia<%ia|%d2> - %?id<%id|%d1>\n"
|
|
|
|
"%pc%?ps<*|/>%pt\n",
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
"%s%?ia<%ia|%?d2<%d2|(root)>>\n"
|
|
|
|
"%s%?it<%?in<%in. |>%it|%fn>\n"
|
|
|
|
"%al%pc/%pt%ar[%pp:%pe]\n"
|
|
|
|
"%fbkBit %?fv<avg|> %?iv<(id3v%iv)|(no id3)>\n"
|
|
|
|
"%pb\n",
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
skin_data_load(gui_wps[screen].data, &screens[screen],
|
|
|
|
skin_buf[screen], false);
|
|
|
|
/* set the default wps for the main-screen */
|
|
|
|
if(screen == SCREEN_MAIN)
|
|
|
|
{
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
unload_wps_backdrop();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
/* set the default wps for the remote-screen */
|
|
|
|
else if(screen == SCREEN_REMOTE)
|
|
|
|
{
|
|
|
|
#if LCD_REMOTE_DEPTH > 1
|
|
|
|
unload_remote_wps_backdrop();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2009-08-03 15:06:30 +00:00
|
|
|
#ifdef HAVE_REMOVE_LCD
|
|
|
|
gui_wps[screen].data->remote_wps = !(screen == SCREEN_MAIN);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void wps_data_init(enum screen_type screen)
|
|
|
|
{
|
|
|
|
skin_data_init(gui_wps[screen].data);
|
|
|
|
}
|
|
|
|
|
2009-08-03 22:39:27 +00:00
|
|
|
|
|
|
|
static bool wps_fading_out = false;
|
2009-07-27 07:21:05 +00:00
|
|
|
void fade(bool fade_in, bool updatewps)
|
|
|
|
{
|
|
|
|
int fp_global_vol = global_settings.volume << 8;
|
|
|
|
int fp_min_vol = sound_min(SOUND_VOLUME) << 8;
|
|
|
|
int fp_step = (fp_global_vol - fp_min_vol) / 30;
|
|
|
|
int i;
|
|
|
|
wps_fading_out = !fade_in;
|
|
|
|
if (fade_in) {
|
|
|
|
/* fade in */
|
|
|
|
int fp_volume = fp_min_vol;
|
|
|
|
|
|
|
|
/* zero out the sound */
|
|
|
|
sound_set_volume(fp_min_vol >> 8);
|
|
|
|
|
|
|
|
sleep(HZ/10); /* let audio thread run */
|
|
|
|
audio_resume();
|
|
|
|
|
|
|
|
while (fp_volume < fp_global_vol - fp_step) {
|
|
|
|
fp_volume += fp_step;
|
|
|
|
sound_set_volume(fp_volume >> 8);
|
|
|
|
if (updatewps)
|
|
|
|
{
|
|
|
|
FOR_NB_SCREENS(i)
|
2009-08-03 04:57:43 +00:00
|
|
|
skin_update(&gui_wps[i], WPS_REFRESH_NON_STATIC);
|
2009-07-27 07:21:05 +00:00
|
|
|
}
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
sound_set_volume(global_settings.volume);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* fade out */
|
|
|
|
int fp_volume = fp_global_vol;
|
|
|
|
|
|
|
|
while (fp_volume > fp_min_vol + fp_step) {
|
|
|
|
fp_volume -= fp_step;
|
|
|
|
sound_set_volume(fp_volume >> 8);
|
|
|
|
if (updatewps)
|
|
|
|
{
|
|
|
|
FOR_NB_SCREENS(i)
|
2009-08-03 04:57:43 +00:00
|
|
|
skin_update(&gui_wps[i], WPS_REFRESH_NON_STATIC);
|
2009-07-27 07:21:05 +00:00
|
|
|
}
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
audio_pause();
|
|
|
|
wps_fading_out = false;
|
|
|
|
#if CONFIG_CODEC != SWCODEC
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
/* let audio thread run and wait for the mas to run out of data */
|
|
|
|
while (!mp3_pause_done())
|
|
|
|
#endif
|
|
|
|
sleep(HZ/10);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* reset volume to what it was before the fade */
|
|
|
|
sound_set_volume(global_settings.volume);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool is_wps_fading(void)
|
|
|
|
{
|
|
|
|
return wps_fading_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool update_onvol_change(struct gui_wps * gwps)
|
|
|
|
{
|
2009-08-03 04:57:43 +00:00
|
|
|
skin_update(gwps, WPS_REFRESH_NON_STATIC);
|
2009-07-27 07:21:05 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
splashf(0, "Vol: %3d dB",
|
|
|
|
sound_val2phys(SOUND_VOLUME, global_settings.volume));
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-03 15:06:30 +00:00
|
|
|
|
2009-07-27 07:21:05 +00:00
|
|
|
bool ffwd_rew(int button)
|
|
|
|
{
|
|
|
|
unsigned int step = 0; /* current ff/rewind step */
|
|
|
|
unsigned int max_step = 0; /* maximum ff/rewind step */
|
|
|
|
int ff_rewind_count = 0; /* current ff/rewind count (in ticks) */
|
|
|
|
int direction = -1; /* forward=1 or backward=-1 */
|
|
|
|
bool exit = false;
|
|
|
|
bool usb = false;
|
|
|
|
int i = 0;
|
|
|
|
const long ff_rw_accel = (global_settings.ff_rewind_accel + 3);
|
|
|
|
|
|
|
|
if (button == ACTION_NONE)
|
|
|
|
{
|
|
|
|
status_set_ffmode(0);
|
|
|
|
return usb;
|
|
|
|
}
|
|
|
|
while (!exit)
|
|
|
|
{
|
|
|
|
switch ( button )
|
|
|
|
{
|
|
|
|
case ACTION_WPS_SEEKFWD:
|
|
|
|
direction = 1;
|
|
|
|
case ACTION_WPS_SEEKBACK:
|
|
|
|
if (wps_state.ff_rewind)
|
|
|
|
{
|
|
|
|
if (direction == 1)
|
|
|
|
{
|
|
|
|
/* fast forwarding, calc max step relative to end */
|
|
|
|
max_step = (wps_state.id3->length -
|
|
|
|
(wps_state.id3->elapsed +
|
|
|
|
ff_rewind_count)) *
|
|
|
|
FF_REWIND_MAX_PERCENT / 100;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* rewinding, calc max step relative to start */
|
|
|
|
max_step = (wps_state.id3->elapsed + ff_rewind_count) *
|
|
|
|
FF_REWIND_MAX_PERCENT / 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_step = MAX(max_step, MIN_FF_REWIND_STEP);
|
|
|
|
|
|
|
|
if (step > max_step)
|
|
|
|
step = max_step;
|
|
|
|
|
|
|
|
ff_rewind_count += step * direction;
|
|
|
|
|
|
|
|
/* smooth seeking by multiplying step by: 1 + (2 ^ -accel) */
|
|
|
|
step += step >> ff_rw_accel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( (audio_status() & AUDIO_STATUS_PLAY) &&
|
|
|
|
wps_state.id3 && wps_state.id3->length )
|
|
|
|
{
|
|
|
|
if (!wps_state.paused)
|
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
audio_pre_ff_rewind();
|
|
|
|
#else
|
|
|
|
audio_pause();
|
|
|
|
#endif
|
|
|
|
#if CONFIG_KEYPAD == PLAYER_PAD
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps[i].display->stop_scroll();
|
|
|
|
#endif
|
|
|
|
if (direction > 0)
|
|
|
|
status_set_ffmode(STATUS_FASTFORWARD);
|
|
|
|
else
|
|
|
|
status_set_ffmode(STATUS_FASTBACKWARD);
|
|
|
|
|
|
|
|
wps_state.ff_rewind = true;
|
|
|
|
|
|
|
|
step = 1000 * global_settings.ff_rewind_min_step;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (direction > 0) {
|
|
|
|
if ((wps_state.id3->elapsed + ff_rewind_count) >
|
|
|
|
wps_state.id3->length)
|
|
|
|
ff_rewind_count = wps_state.id3->length -
|
|
|
|
wps_state.id3->elapsed;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ((int)(wps_state.id3->elapsed + ff_rewind_count) < 0)
|
|
|
|
ff_rewind_count = -wps_state.id3->elapsed;
|
|
|
|
}
|
|
|
|
|
2009-08-03 04:57:43 +00:00
|
|
|
/* set the wps state ff_rewind_count so the progess info
|
|
|
|
displays corectly */
|
|
|
|
wps_state.ff_rewind_count = (wps_state.wps_time_countup == false)?
|
|
|
|
ff_rewind_count:-ff_rewind_count;
|
2009-07-27 07:21:05 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2009-08-03 04:57:43 +00:00
|
|
|
{
|
|
|
|
skin_update(&gui_wps[i],
|
|
|
|
WPS_REFRESH_PLAYER_PROGRESS |
|
|
|
|
WPS_REFRESH_DYNAMIC);
|
|
|
|
}
|
2009-07-27 07:21:05 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTION_WPS_STOPSEEK:
|
|
|
|
wps_state.id3->elapsed = wps_state.id3->elapsed+ff_rewind_count;
|
|
|
|
audio_ff_rewind(wps_state.id3->elapsed);
|
2009-08-03 04:57:43 +00:00
|
|
|
wps_state.ff_rewind_count = 0;
|
2009-07-27 07:21:05 +00:00
|
|
|
wps_state.ff_rewind = false;
|
|
|
|
status_set_ffmode(0);
|
|
|
|
#if (CONFIG_CODEC != SWCODEC)
|
|
|
|
if (!wps_state.paused)
|
|
|
|
audio_resume();
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
FOR_NB_SCREENS(i)
|
2009-08-03 04:57:43 +00:00
|
|
|
skin_update(&gui_wps[i], WPS_REFRESH_ALL);
|
2009-07-27 07:21:05 +00:00
|
|
|
#endif
|
|
|
|
exit = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED) {
|
|
|
|
status_set_ffmode(0);
|
|
|
|
usb = true;
|
|
|
|
exit = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!exit)
|
|
|
|
{
|
|
|
|
button = get_action(CONTEXT_WPS|ALLOW_SOFTLOCK,TIMEOUT_BLOCK);
|
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
if (button == ACTION_TOUCHSCREEN)
|
|
|
|
button = wps_get_touchaction(gui_wps[SCREEN_MAIN].data);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return usb;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void display_keylock_text(bool locked)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps[i].display->stop_scroll();
|
|
|
|
|
|
|
|
splash(HZ, locked ? ID2P(LANG_KEYLOCK_ON) : ID2P(LANG_KEYLOCK_OFF));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-14 22:13:29 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT) || defined(HAVE_REMOTE_LCD)
|
|
|
|
static void gwps_caption_backlight(struct wps_state *state)
|
|
|
|
{
|
|
|
|
if (state && state->id3)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_BACKLIGHT
|
|
|
|
if (global_settings.caption_backlight)
|
|
|
|
{
|
|
|
|
/* turn on backlight n seconds before track ends, and turn it off n
|
|
|
|
seconds into the new track. n == backlight_timeout, or 5s */
|
|
|
|
int n = global_settings.backlight_timeout * 1000;
|
|
|
|
|
|
|
|
if ( n < 1000 )
|
|
|
|
n = 5000; /* use 5s if backlight is always on or off */
|
|
|
|
|
|
|
|
if (((state->id3->elapsed < 1000) ||
|
|
|
|
((state->id3->length - state->id3->elapsed) < (unsigned)n)) &&
|
|
|
|
(state->paused == false))
|
|
|
|
backlight_on();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
if (global_settings.remote_caption_backlight)
|
|
|
|
{
|
|
|
|
/* turn on remote backlight n seconds before track ends, and turn it
|
|
|
|
off n seconds into the new track. n == remote_backlight_timeout,
|
|
|
|
or 5s */
|
|
|
|
int n = global_settings.remote_backlight_timeout * 1000;
|
|
|
|
|
|
|
|
if ( n < 1000 )
|
|
|
|
n = 5000; /* use 5s if backlight is always on or off */
|
|
|
|
|
|
|
|
if (((state->id3->elapsed < 1000) ||
|
|
|
|
((state->id3->length - state->id3->elapsed) < (unsigned)n)) &&
|
|
|
|
(state->paused == false))
|
|
|
|
remote_backlight_on();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-04-04 20:33:38 +00:00
|
|
|
static void change_dir(int direction)
|
|
|
|
{
|
|
|
|
if (global_settings.prevent_skip)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (direction < 0)
|
|
|
|
audio_prev_dir();
|
|
|
|
else if (direction > 0)
|
|
|
|
audio_next_dir();
|
2009-07-03 05:08:33 +00:00
|
|
|
/* prevent the next dir to immediatly start being ffw'd */
|
|
|
|
action_wait_for_release();
|
2009-04-04 20:33:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void prev_track(unsigned long skip_thresh)
|
2008-05-04 13:47:58 +00:00
|
|
|
{
|
2009-04-05 19:39:09 +00:00
|
|
|
if (wps_state.id3->elapsed < skip_thresh)
|
2009-03-27 13:53:29 +00:00
|
|
|
{
|
2008-05-04 13:47:58 +00:00
|
|
|
audio_prev();
|
2009-03-27 13:53:29 +00:00
|
|
|
return;
|
2008-05-04 13:47:58 +00:00
|
|
|
}
|
2009-03-27 13:53:29 +00:00
|
|
|
else
|
|
|
|
{
|
2009-07-20 05:18:18 +00:00
|
|
|
if (wps_state.id3->cuesheet)
|
2008-05-04 13:47:58 +00:00
|
|
|
{
|
2009-07-24 01:13:30 +00:00
|
|
|
curr_cuesheet_skip(wps_state.id3->cuesheet, -1, wps_state.id3->elapsed);
|
2008-05-04 13:47:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!wps_state.paused)
|
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
audio_pre_ff_rewind();
|
|
|
|
#else
|
|
|
|
audio_pause();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
audio_ff_rewind(0);
|
|
|
|
|
|
|
|
#if (CONFIG_CODEC != SWCODEC)
|
|
|
|
if (!wps_state.paused)
|
|
|
|
audio_resume();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-08 20:37:26 +00:00
|
|
|
static void next_track(void)
|
2008-05-04 13:47:58 +00:00
|
|
|
{
|
|
|
|
/* take care of if we're playing a cuesheet */
|
2009-07-20 05:18:18 +00:00
|
|
|
if (wps_state.id3->cuesheet)
|
2008-05-04 13:47:58 +00:00
|
|
|
{
|
2009-07-24 01:13:30 +00:00
|
|
|
if (curr_cuesheet_skip(wps_state.id3->cuesheet, 1, wps_state.id3->elapsed))
|
2008-05-04 13:47:58 +00:00
|
|
|
{
|
|
|
|
/* if the result was false, then we really want
|
|
|
|
to skip to the next track */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
audio_next();
|
|
|
|
}
|
2009-03-12 18:50:24 +00:00
|
|
|
|
|
|
|
static void play_hop(int direction)
|
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
unsigned long step = ((unsigned long)global_settings.skip_length)*1000;
|
|
|
|
unsigned long elapsed = wps_state.id3->elapsed;
|
|
|
|
unsigned long remaining = wps_state.id3->length - elapsed;
|
2009-03-12 18:50:24 +00:00
|
|
|
|
2009-04-05 19:29:21 +00:00
|
|
|
if (!global_settings.prevent_skip &&
|
|
|
|
(!step ||
|
|
|
|
(direction > 0 && step >= remaining) ||
|
|
|
|
(direction < 0 && elapsed < DEFAULT_SKIP_TRESH)))
|
2009-04-04 20:33:38 +00:00
|
|
|
{ /* Do normal track skipping */
|
|
|
|
if (direction > 0)
|
2009-03-27 13:57:56 +00:00
|
|
|
next_track();
|
2009-04-04 20:33:38 +00:00
|
|
|
else if (direction < 0)
|
|
|
|
prev_track(DEFAULT_SKIP_TRESH);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (direction == 1 && step >= remaining)
|
|
|
|
{
|
2009-03-12 18:50:24 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2009-04-04 20:33:38 +00:00
|
|
|
if(global_settings.beep)
|
|
|
|
pcmbuf_beep(1000, 150, 1500*global_settings.beep);
|
2009-03-12 18:50:24 +00:00
|
|
|
#endif
|
|
|
|
return;
|
2009-03-27 13:53:29 +00:00
|
|
|
}
|
2009-04-04 20:33:38 +00:00
|
|
|
else if ((direction == -1 && elapsed < step))
|
2009-03-27 13:53:29 +00:00
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
elapsed = 0;
|
2009-03-27 13:53:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
elapsed += step * direction;
|
2009-03-12 18:50:24 +00:00
|
|
|
}
|
2009-03-27 13:53:29 +00:00
|
|
|
if((audio_status() & AUDIO_STATUS_PLAY) && !wps_state.paused)
|
|
|
|
{
|
2009-03-12 18:50:24 +00:00
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
audio_pre_ff_rewind();
|
|
|
|
#else
|
|
|
|
audio_pause();
|
|
|
|
#endif
|
|
|
|
}
|
2009-04-04 20:33:38 +00:00
|
|
|
audio_ff_rewind(wps_state.id3->elapsed = elapsed);
|
2009-03-12 18:50:24 +00:00
|
|
|
#if (CONFIG_CODEC != SWCODEC)
|
|
|
|
if (!wps_state.paused)
|
|
|
|
audio_resume();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-03-20 16:12:09 +00:00
|
|
|
static void gwps_fix_statusbars(void)
|
2009-02-01 11:34:16 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
int i;
|
2009-03-17 01:39:20 +00:00
|
|
|
wpsbars = VP_SB_HIDE_ALL;
|
2009-02-01 11:34:16 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2009-03-17 01:39:20 +00:00
|
|
|
bool draw = false;
|
2009-02-01 11:34:16 +00:00
|
|
|
if (gui_wps[i].data->wps_sb_tag)
|
|
|
|
draw = gui_wps[i].data->show_sb_on_wps;
|
2009-07-08 00:51:03 +00:00
|
|
|
else if (statusbar_position(i) != STATUSBAR_OFF)
|
|
|
|
draw = true;
|
2009-02-01 11:34:16 +00:00
|
|
|
if (draw)
|
2009-02-01 13:43:08 +00:00
|
|
|
wpsbars |= (VP_SB_ONSCREEN(i) | VP_SB_IGNORE_SETTING(i));
|
2009-03-20 16:12:09 +00:00
|
|
|
}
|
2009-02-01 11:34:16 +00:00
|
|
|
#else
|
2009-03-17 01:39:20 +00:00
|
|
|
wpsbars = VP_SB_ALLSCREENS;
|
2009-02-01 11:34:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
2009-02-01 13:43:08 +00:00
|
|
|
|
2009-04-09 08:30:05 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
/*
|
|
|
|
* If the user is unable to see the wps, because the display is deactivated,
|
2009-07-10 16:27:24 +00:00
|
|
|
* we suppress updates until the wps is activated again (the lcd driver will
|
2009-04-25 19:23:40 +00:00
|
|
|
* call this hook to issue an instant update)
|
2009-04-09 08:30:05 +00:00
|
|
|
* */
|
|
|
|
static void wps_lcd_activation_hook(void)
|
|
|
|
{
|
2009-04-27 18:57:51 +00:00
|
|
|
wps_state.do_full_update = true;
|
2009-04-09 08:30:05 +00:00
|
|
|
/* force timeout in wps main loop, so that the update is instantly */
|
|
|
|
queue_post(&button_queue, BUTTON_NONE, 0);
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-17 01:39:20 +00:00
|
|
|
|
2009-03-17 01:56:20 +00:00
|
|
|
static void gwps_leave_wps(void)
|
|
|
|
{
|
2009-03-19 23:04:39 +00:00
|
|
|
int i, oldbars = VP_SB_HIDE_ALL;
|
2009-03-17 01:56:20 +00:00
|
|
|
|
2009-03-19 23:04:39 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps[i].display->stop_scroll();
|
2009-03-17 01:56:20 +00:00
|
|
|
if (global_settings.statusbar)
|
|
|
|
oldbars = VP_SB_ALLSCREENS;
|
|
|
|
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
show_main_backdrop();
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
|
|
|
#endif
|
2009-03-19 23:04:39 +00:00
|
|
|
viewportmanager_set_statusbar(oldbars);
|
2009-04-09 08:30:05 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
/* Play safe and unregister the hook */
|
|
|
|
lcd_activation_set_hook(NULL);
|
|
|
|
#endif
|
2009-03-17 01:56:20 +00:00
|
|
|
}
|
|
|
|
|
2009-03-20 16:12:09 +00:00
|
|
|
void gwps_draw_statusbars(void)
|
|
|
|
{
|
|
|
|
viewportmanager_set_statusbar(wpsbars);
|
|
|
|
}
|
2009-04-20 01:41:56 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2009-05-17 06:25:18 +00:00
|
|
|
int wps_get_touchaction(struct wps_data *data)
|
2009-04-20 01:41:56 +00:00
|
|
|
{
|
|
|
|
short x,y;
|
|
|
|
short vx, vy;
|
|
|
|
int type = action_get_touchscreen_press(&x, &y);
|
|
|
|
int i;
|
2009-05-17 06:25:18 +00:00
|
|
|
static int last_action = ACTION_NONE;
|
2009-04-20 01:41:56 +00:00
|
|
|
struct touchregion *r;
|
2009-05-17 06:25:18 +00:00
|
|
|
bool repeated = (type == BUTTON_REPEAT);
|
|
|
|
bool released = (type == BUTTON_REL);
|
2009-04-20 01:41:56 +00:00
|
|
|
for (i=0; i<data->touchregion_count; i++)
|
|
|
|
{
|
|
|
|
r = &data->touchregion[i];
|
|
|
|
/* make sure this region's viewport is visible */
|
|
|
|
if (r->wvp->hidden_flags&VP_DRAW_HIDDEN)
|
|
|
|
continue;
|
|
|
|
/* reposition the touch inside the viewport */
|
|
|
|
vx = x - r->wvp->vp.x;
|
|
|
|
vy = y - r->wvp->vp.y;
|
2009-07-10 11:53:15 +00:00
|
|
|
/* check if it's inside this viewport */
|
2009-04-20 01:41:56 +00:00
|
|
|
if (vx >= 0 && vx < r->wvp->vp.x + r->wvp->vp.width &&
|
|
|
|
vy >= 0 && vy < r->wvp->vp.y + r->wvp->vp.height)
|
|
|
|
{
|
|
|
|
/* now see if the point is inside this region */
|
|
|
|
if (vx >= r->x && vx < r->x+r->width &&
|
|
|
|
vy >= r->y && vy < r->y+r->height)
|
2009-05-17 06:25:18 +00:00
|
|
|
{
|
2009-08-03 04:57:43 +00:00
|
|
|
if ((repeated && r->repeat) ||
|
|
|
|
(released && !r->repeat))
|
2009-05-17 06:25:18 +00:00
|
|
|
{
|
2009-08-03 04:57:43 +00:00
|
|
|
last_action = r->action;
|
|
|
|
return r->action;
|
|
|
|
}
|
2009-05-17 06:25:18 +00:00
|
|
|
}
|
2009-04-20 01:41:56 +00:00
|
|
|
}
|
|
|
|
}
|
2009-05-17 06:25:18 +00:00
|
|
|
if ((last_action == ACTION_WPS_SEEKBACK || last_action == ACTION_WPS_SEEKFWD))
|
|
|
|
return ACTION_WPS_STOPSEEK;
|
|
|
|
last_action = ACTION_TOUCHSCREEN;
|
2009-04-20 01:41:56 +00:00
|
|
|
return ACTION_TOUCHSCREEN;
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-17 01:39:20 +00:00
|
|
|
/* The WPS can be left in two ways:
|
|
|
|
* a) call a function, which draws over the wps. In this case, the wps
|
|
|
|
* will be still active (i.e. the below function didn't return)
|
|
|
|
* b) return with a value evaluated by root_menu.c, in this case the wps
|
|
|
|
* is really left, and root_menu will handle the next screen
|
|
|
|
*
|
|
|
|
* In either way, call gwps_leave_wps(), in order to restore the correct
|
|
|
|
* "main screen" backdrops and statusbars
|
|
|
|
*/
|
2005-11-18 09:03:25 +00:00
|
|
|
long gui_wps_show(void)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
2006-08-15 12:27:07 +00:00
|
|
|
long button = 0;
|
2009-04-08 17:11:50 +00:00
|
|
|
bool restore = true;
|
2009-03-17 01:56:20 +00:00
|
|
|
long restoretimer = RESTORE_WPS_INSTANTLY; /* timer to delay screen redraw temporarily */
|
2005-11-17 20:20:01 +00:00
|
|
|
bool exit = false;
|
2007-08-22 16:33:34 +00:00
|
|
|
bool bookmark = false;
|
2009-04-08 17:11:50 +00:00
|
|
|
bool update = false;
|
2005-11-17 20:20:01 +00:00
|
|
|
int i;
|
2006-08-22 07:57:40 +00:00
|
|
|
long last_left = 0, last_right = 0;
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
status_set_audio(true);
|
|
|
|
status_set_param(false);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
ab_repeat_init();
|
|
|
|
ab_reset_markers();
|
|
|
|
#endif
|
2009-04-08 17:11:50 +00:00
|
|
|
wps_state_init();
|
2009-03-29 17:58:24 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
bool audio_paused = (audio_status() & AUDIO_STATUS_PAUSE)?true:false;
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
/* did someone else (i.e power thread) change audio pause mode? */
|
|
|
|
if (wps_state.paused != audio_paused) {
|
|
|
|
wps_state.paused = audio_paused;
|
|
|
|
|
|
|
|
/* if another thread paused audio, we are probably in car mode,
|
|
|
|
about to shut down. lets save the settings. */
|
|
|
|
if (wps_state.paused) {
|
|
|
|
settings_save();
|
2005-12-04 13:05:56 +00:00
|
|
|
#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
|
2008-11-01 16:14:28 +00:00
|
|
|
call_storage_idle_notifys(true);
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
/* when the peak meter is enabled we want to have a
|
|
|
|
few extra updates to make it look smooth. On the
|
|
|
|
other hand we don't want to waste energy if it
|
|
|
|
isn't displayed */
|
|
|
|
bool pm=false;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2005-11-18 09:03:25 +00:00
|
|
|
if(gui_wps[i].data->peak_meter_enabled)
|
2005-11-17 20:20:01 +00:00
|
|
|
pm = true;
|
|
|
|
}
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
if (pm) {
|
|
|
|
long next_refresh = current_tick;
|
|
|
|
long next_big_refresh = current_tick + HZ / 5;
|
|
|
|
button = BUTTON_NONE;
|
|
|
|
while (TIME_BEFORE(current_tick, next_big_refresh)) {
|
2006-08-17 12:33:36 +00:00
|
|
|
button = get_action(CONTEXT_WPS|ALLOW_SOFTLOCK,TIMEOUT_NOBLOCK);
|
2006-08-15 12:27:07 +00:00
|
|
|
if (button != ACTION_NONE) {
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
peak_meter_peek();
|
2006-03-21 07:59:23 +00:00
|
|
|
sleep(0); /* Sleep until end of current tick. */
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
if (TIME_AFTER(current_tick, next_refresh)) {
|
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-20 22:13:52 +00:00
|
|
|
{
|
|
|
|
if(gui_wps[i].data->peak_meter_enabled)
|
2009-08-03 04:57:43 +00:00
|
|
|
skin_update(&gui_wps[i], WPS_REFRESH_PEAK_METER);
|
2005-11-20 22:13:52 +00:00
|
|
|
next_refresh += HZ / PEAK_METER_FPS;
|
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
/* The peak meter is disabled
|
|
|
|
-> no additional screen updates needed */
|
2009-03-17 01:39:20 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2009-04-08 17:11:50 +00:00
|
|
|
button = get_action(CONTEXT_WPS|ALLOW_SOFTLOCK,
|
|
|
|
restore ? HZ/100 : HZ/5);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2008-11-16 09:56:38 +00:00
|
|
|
|
2009-03-29 17:58:24 +00:00
|
|
|
/* Exit if audio has stopped playing. This happens e.g. at end of
|
|
|
|
playlist or if using the sleep timer. */
|
|
|
|
if (!(audio_status() & AUDIO_STATUS_PLAY))
|
2005-11-17 20:20:01 +00:00
|
|
|
exit = true;
|
2009-04-20 01:41:56 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
if (button == ACTION_TOUCHSCREEN)
|
|
|
|
button = wps_get_touchaction(gui_wps[SCREEN_MAIN].data);
|
|
|
|
#endif
|
2008-07-07 05:17:15 +00:00
|
|
|
/* The iPods/X5/M5 use a single button for the A-B mode markers,
|
|
|
|
defined as ACTION_WPSAB_SINGLE in their config files. */
|
2006-12-22 05:19:56 +00:00
|
|
|
#ifdef ACTION_WPSAB_SINGLE
|
|
|
|
if (!global_settings.party_mode && ab_repeat_mode_enabled())
|
|
|
|
{
|
|
|
|
static int wps_ab_state = 0;
|
|
|
|
if (button == ACTION_WPSAB_SINGLE)
|
|
|
|
{
|
|
|
|
switch (wps_ab_state)
|
|
|
|
{
|
|
|
|
case 0: /* set the A spot */
|
|
|
|
button = ACTION_WPS_ABSETA_PREVDIR;
|
|
|
|
break;
|
|
|
|
case 1: /* set the B spot */
|
|
|
|
button = ACTION_WPS_ABSETB_NEXTDIR;
|
|
|
|
break;
|
|
|
|
case 2:
|
2007-04-13 15:42:25 +00:00
|
|
|
button = ACTION_WPS_ABRESET;
|
2006-12-22 05:19:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
wps_ab_state = (wps_ab_state+1) % 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
switch(button)
|
|
|
|
{
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_CONTEXT:
|
2009-01-02 01:29:13 +00:00
|
|
|
{
|
2009-03-17 01:39:20 +00:00
|
|
|
gwps_leave_wps();
|
2007-11-04 12:40:18 +00:00
|
|
|
/* if music is stopped in the context menu we want to exit the wps */
|
|
|
|
if (onplay(wps_state.id3->path,
|
|
|
|
FILE_ATTR_AUDIO, CONTEXT_WPS) == ONPLAY_MAINMENU
|
|
|
|
|| !audio_status())
|
2007-03-01 11:14:46 +00:00
|
|
|
return GO_TO_ROOT;
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
2009-01-02 01:29:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_BROWSE:
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2008-11-16 09:56:38 +00:00
|
|
|
status_set_record(false);
|
|
|
|
status_set_audio(false);
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2009-03-19 23:04:39 +00:00
|
|
|
gwps_leave_wps();
|
2008-11-16 09:56:38 +00:00
|
|
|
return GO_TO_PREVIOUS_BROWSER;
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* play/pause */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_PLAY:
|
2006-03-19 08:40:31 +00:00
|
|
|
if (global_settings.party_mode)
|
|
|
|
break;
|
2005-11-17 20:20:01 +00:00
|
|
|
if ( wps_state.paused )
|
|
|
|
{
|
|
|
|
wps_state.paused = false;
|
|
|
|
if ( global_settings.fade_on_stop )
|
2008-06-23 02:45:55 +00:00
|
|
|
fade(true, true);
|
2005-11-17 20:20:01 +00:00
|
|
|
else
|
|
|
|
audio_resume();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wps_state.paused = true;
|
|
|
|
if ( global_settings.fade_on_stop )
|
2008-06-23 02:45:55 +00:00
|
|
|
fade(false, true);
|
2005-11-17 20:20:01 +00:00
|
|
|
else
|
|
|
|
audio_pause();
|
|
|
|
settings_save();
|
2005-12-04 13:05:56 +00:00
|
|
|
#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
|
2008-11-01 16:14:28 +00:00
|
|
|
call_storage_idle_notifys(true); /* make sure resume info is saved */
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_VOLUP:
|
2005-11-20 22:13:52 +00:00
|
|
|
{
|
2008-10-09 11:10:26 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps[i].data->button_time_volume = current_tick;
|
2005-11-17 20:20:01 +00:00
|
|
|
global_settings.volume++;
|
2005-11-20 22:13:52 +00:00
|
|
|
bool res = false;
|
|
|
|
setvol();
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
if(update_onvol_change(&gui_wps[i]))
|
|
|
|
res = true;
|
|
|
|
}
|
|
|
|
if (res) {
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
2009-03-17 01:56:20 +00:00
|
|
|
restoretimer = RESTORE_WPS_NEXT_SECOND;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2005-11-20 22:13:52 +00:00
|
|
|
}
|
2009-03-23 03:08:56 +00:00
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_VOLDOWN:
|
2005-11-20 22:13:52 +00:00
|
|
|
{
|
2008-10-09 11:10:26 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps[i].data->button_time_volume = current_tick;
|
2005-11-17 20:20:01 +00:00
|
|
|
global_settings.volume--;
|
2005-11-20 22:13:52 +00:00
|
|
|
setvol();
|
|
|
|
bool res = false;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
if(update_onvol_change(&gui_wps[i]))
|
|
|
|
res = true;
|
|
|
|
}
|
|
|
|
if (res) {
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
2009-03-17 01:56:20 +00:00
|
|
|
restoretimer = RESTORE_WPS_NEXT_SECOND;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2005-11-20 22:13:52 +00:00
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
2006-08-22 07:57:40 +00:00
|
|
|
/* fast forward
|
2009-03-27 13:53:29 +00:00
|
|
|
OR next dir if this is straight after ACTION_WPS_SKIPNEXT */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_SEEKFWD:
|
2006-08-22 07:57:40 +00:00
|
|
|
if (global_settings.party_mode)
|
|
|
|
break;
|
2009-04-04 20:33:38 +00:00
|
|
|
if (current_tick -last_right < HZ)
|
2007-02-14 14:40:24 +00:00
|
|
|
{
|
2009-07-20 05:18:18 +00:00
|
|
|
if (wps_state.id3->cuesheet)
|
2007-02-14 14:40:24 +00:00
|
|
|
{
|
|
|
|
audio_next();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
change_dir(1);
|
2007-02-14 14:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-27 13:53:29 +00:00
|
|
|
else
|
|
|
|
ffwd_rew(ACTION_WPS_SEEKFWD);
|
2008-05-04 13:47:58 +00:00
|
|
|
last_right = last_left = 0;
|
2006-08-22 07:57:40 +00:00
|
|
|
break;
|
|
|
|
/* fast rewind
|
2009-03-27 13:53:29 +00:00
|
|
|
OR prev dir if this is straight after ACTION_WPS_SKIPPREV,*/
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_SEEKBACK:
|
2006-03-19 08:40:31 +00:00
|
|
|
if (global_settings.party_mode)
|
|
|
|
break;
|
2009-04-04 20:33:38 +00:00
|
|
|
if (current_tick -last_left < HZ)
|
2007-02-14 14:40:24 +00:00
|
|
|
{
|
2009-07-20 05:18:18 +00:00
|
|
|
if (wps_state.id3->cuesheet)
|
2007-02-14 14:40:24 +00:00
|
|
|
{
|
|
|
|
if (!wps_state.paused)
|
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
audio_pre_ff_rewind();
|
|
|
|
#else
|
|
|
|
audio_pause();
|
|
|
|
#endif
|
|
|
|
audio_ff_rewind(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
change_dir(-1);
|
2007-02-14 14:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-27 13:53:29 +00:00
|
|
|
else
|
|
|
|
ffwd_rew(ACTION_WPS_SEEKBACK);
|
2008-05-04 13:47:58 +00:00
|
|
|
last_left = last_right = 0;
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* prev / restart */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_SKIPPREV:
|
2006-03-19 08:40:31 +00:00
|
|
|
if (global_settings.party_mode)
|
|
|
|
break;
|
2006-08-22 07:57:40 +00:00
|
|
|
last_left = current_tick;
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
/* if we're in A/B repeat mode and the current position
|
|
|
|
is past the A marker, jump back to the A marker... */
|
2006-01-21 23:43:57 +00:00
|
|
|
if ( ab_repeat_mode_enabled() )
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
2006-01-21 23:43:57 +00:00
|
|
|
if ( ab_after_A_marker(wps_state.id3->elapsed) )
|
|
|
|
{
|
|
|
|
ab_jump_to_A_marker();
|
|
|
|
break;
|
|
|
|
#if (AB_REPEAT_ENABLE == 2)
|
|
|
|
} else {
|
|
|
|
ab_reset_markers();
|
|
|
|
#endif
|
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2009-04-04 20:33:38 +00:00
|
|
|
else
|
2005-11-17 20:20:01 +00:00
|
|
|
/* ...otherwise, do it normally */
|
|
|
|
#endif
|
2008-05-04 13:47:58 +00:00
|
|
|
play_hop(-1);
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-04 13:47:58 +00:00
|
|
|
/* next
|
2008-07-14 20:39:30 +00:00
|
|
|
OR if skip length set, hop by predetermined amount. */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_SKIPNEXT:
|
2006-03-19 08:40:31 +00:00
|
|
|
if (global_settings.party_mode)
|
|
|
|
break;
|
2006-08-22 07:57:40 +00:00
|
|
|
last_right = current_tick;
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
/* if we're in A/B repeat mode and the current position is
|
|
|
|
before the A marker, jump to the A marker... */
|
2006-01-21 23:43:57 +00:00
|
|
|
if ( ab_repeat_mode_enabled() )
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
2006-01-21 23:43:57 +00:00
|
|
|
if ( ab_before_A_marker(wps_state.id3->elapsed) )
|
|
|
|
{
|
|
|
|
ab_jump_to_A_marker();
|
|
|
|
break;
|
|
|
|
#if (AB_REPEAT_ENABLE == 2)
|
|
|
|
} else {
|
|
|
|
ab_reset_markers();
|
|
|
|
#endif
|
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2009-04-04 20:33:38 +00:00
|
|
|
else
|
2005-11-17 20:20:01 +00:00
|
|
|
/* ...otherwise, do it normally */
|
|
|
|
#endif
|
2008-05-04 13:47:58 +00:00
|
|
|
play_hop(1);
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
/* next / prev directories */
|
2006-08-16 13:25:45 +00:00
|
|
|
/* and set A-B markers if in a-b mode */
|
|
|
|
case ACTION_WPS_ABSETB_NEXTDIR:
|
2006-08-15 12:27:07 +00:00
|
|
|
if (global_settings.party_mode)
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
2006-08-16 13:25:45 +00:00
|
|
|
#if defined(AB_REPEAT_ENABLE)
|
2006-08-15 12:27:07 +00:00
|
|
|
if (ab_repeat_mode_enabled())
|
|
|
|
{
|
|
|
|
ab_set_B_marker(wps_state.id3->elapsed);
|
|
|
|
ab_jump_to_A_marker();
|
|
|
|
}
|
|
|
|
else
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
change_dir(1);
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-08-16 13:25:45 +00:00
|
|
|
case ACTION_WPS_ABSETA_PREVDIR:
|
2006-08-15 12:27:07 +00:00
|
|
|
if (global_settings.party_mode)
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
2006-08-16 13:25:45 +00:00
|
|
|
#if defined(AB_REPEAT_ENABLE)
|
2006-08-15 12:27:07 +00:00
|
|
|
if (ab_repeat_mode_enabled())
|
|
|
|
ab_set_A_marker(wps_state.id3->elapsed);
|
|
|
|
else
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2009-04-04 20:33:38 +00:00
|
|
|
change_dir(-1);
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
/* menu key functions */
|
|
|
|
case ACTION_WPS_MENU:
|
2009-03-19 23:04:39 +00:00
|
|
|
gwps_leave_wps();
|
2007-03-01 11:14:46 +00:00
|
|
|
return GO_TO_ROOT;
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2006-04-10 03:51:17 +00:00
|
|
|
#ifdef HAVE_QUICKSCREEN
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_QUICKSCREEN:
|
2009-01-02 01:29:13 +00:00
|
|
|
{
|
2009-03-17 01:39:20 +00:00
|
|
|
gwps_leave_wps();
|
2005-11-22 21:55:05 +00:00
|
|
|
if (quick_screen_quick(button))
|
2005-11-17 20:20:01 +00:00
|
|
|
return SYS_USB_CONNECTED;
|
|
|
|
restore = true;
|
2009-01-02 01:29:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
#endif /* HAVE_QUICKSCREEN */
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
/* screen settings */
|
|
|
|
#ifdef BUTTON_F3
|
2006-08-22 08:23:24 +00:00
|
|
|
case ACTION_F3:
|
2009-01-02 01:29:13 +00:00
|
|
|
{
|
2009-03-17 01:39:20 +00:00
|
|
|
gwps_leave_wps();
|
2006-08-22 08:23:24 +00:00
|
|
|
if (quick_screen_f3(BUTTON_F3))
|
2005-11-17 20:20:01 +00:00
|
|
|
return SYS_USB_CONNECTED;
|
|
|
|
restore = true;
|
2009-01-02 01:29:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-08-16 13:25:45 +00:00
|
|
|
#endif /* BUTTON_F3 */
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
/* pitch screen */
|
2006-08-15 12:27:07 +00:00
|
|
|
#ifdef HAVE_PITCHSCREEN
|
|
|
|
case ACTION_WPS_PITCHSCREEN:
|
2009-01-02 01:29:13 +00:00
|
|
|
{
|
2009-03-17 01:39:20 +00:00
|
|
|
gwps_leave_wps();
|
2008-10-05 13:01:54 +00:00
|
|
|
if (1 == gui_syncpitchscreen_run())
|
2005-11-17 20:20:01 +00:00
|
|
|
return SYS_USB_CONNECTED;
|
|
|
|
restore = true;
|
2009-01-02 01:29:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
#endif /* HAVE_PITCHSCREEN */
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
/* reset A&B markers */
|
2007-04-13 15:42:25 +00:00
|
|
|
case ACTION_WPS_ABRESET:
|
2005-11-17 20:20:01 +00:00
|
|
|
if (ab_repeat_mode_enabled())
|
|
|
|
{
|
|
|
|
ab_reset_markers();
|
2009-04-08 17:11:50 +00:00
|
|
|
update = true;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif /* AB_REPEAT_ENABLE */
|
|
|
|
|
|
|
|
/* stop and exit wps */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_STOP:
|
2006-03-19 08:40:31 +00:00
|
|
|
if (global_settings.party_mode)
|
|
|
|
break;
|
2007-08-22 16:33:34 +00:00
|
|
|
bookmark = true;
|
2005-11-17 20:20:01 +00:00
|
|
|
exit = true;
|
|
|
|
break;
|
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPS_ID3SCREEN:
|
2009-01-02 01:29:13 +00:00
|
|
|
{
|
2009-03-17 01:39:20 +00:00
|
|
|
gwps_leave_wps();
|
2005-11-17 20:20:01 +00:00
|
|
|
browse_id3();
|
|
|
|
restore = true;
|
2009-01-02 01:29:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2009-05-15 05:36:16 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
case ACTION_TOUCH_SHUFFLE: /* toggle shuffle mode */
|
|
|
|
{
|
|
|
|
global_settings.playlist_shuffle =
|
|
|
|
!global_settings.playlist_shuffle;
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
dsp_set_replaygain();
|
|
|
|
#endif
|
|
|
|
if (global_settings.playlist_shuffle)
|
|
|
|
playlist_randomise(NULL, current_tick, true);
|
|
|
|
else
|
|
|
|
playlist_sort(NULL, true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ACTION_TOUCH_REPMODE: /* cycle the repeat mode setting */
|
|
|
|
{
|
|
|
|
const struct settings_list *rep_setting =
|
|
|
|
find_setting(&global_settings.repeat_mode, NULL);
|
|
|
|
option_select_next_val(rep_setting, false, true);
|
|
|
|
audio_flush_and_reload_tracks();
|
|
|
|
}
|
|
|
|
break;
|
2009-07-10 11:53:15 +00:00
|
|
|
#endif /* HAVE_TOUCHSCREEN */
|
|
|
|
/* this case is used by the softlock feature
|
|
|
|
* it requests a full update here */
|
|
|
|
case ACTION_REDRAW:
|
2009-06-18 13:50:11 +00:00
|
|
|
wps_state.do_full_update = true;
|
|
|
|
break;
|
|
|
|
case ACTION_NONE: /* Timeout, do a partial update */
|
2009-04-08 17:11:50 +00:00
|
|
|
update = true;
|
2006-08-15 12:27:07 +00:00
|
|
|
ffwd_rew(button); /* hopefully fix the ffw/rwd bug */
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
2007-08-02 12:13:20 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
case ACTION_WPS_REC:
|
|
|
|
exit = true;
|
|
|
|
break;
|
|
|
|
#endif
|
2005-11-18 09:43:42 +00:00
|
|
|
case SYS_POWEROFF:
|
|
|
|
default_event_handler(SYS_POWEROFF);
|
|
|
|
break;
|
2009-07-22 22:10:25 +00:00
|
|
|
case ACTION_WPS_VIEW_PLAYLIST:
|
|
|
|
gwps_leave_wps();
|
|
|
|
if (playlist_viewer()) /* true if USB connected */
|
|
|
|
return SYS_USB_CONNECTED;
|
|
|
|
restore = true;
|
|
|
|
break;
|
2005-11-17 20:20:01 +00:00
|
|
|
default:
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
2007-03-01 23:46:01 +00:00
|
|
|
return GO_TO_ROOT;
|
2009-04-08 17:11:50 +00:00
|
|
|
update = true;
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-04-08 17:11:50 +00:00
|
|
|
if (wps_state.do_full_update || update)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
2009-04-14 22:13:29 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT) || defined(HAVE_REMOTE_LCD)
|
|
|
|
gwps_caption_backlight(&wps_state);
|
|
|
|
#endif
|
2005-11-18 09:03:25 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2009-04-12 00:30:28 +00:00
|
|
|
{
|
2009-04-09 08:30:05 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
if (lcd_active()
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
/* currently, all remotes are readable without backlight
|
|
|
|
* so still update those */
|
2009-04-12 00:30:28 +00:00
|
|
|
|| (i == SCREEN_REMOTE)
|
2009-04-09 08:30:05 +00:00
|
|
|
#endif
|
|
|
|
)
|
|
|
|
#endif
|
2009-04-12 00:30:28 +00:00
|
|
|
{
|
2009-08-03 04:57:43 +00:00
|
|
|
skin_update(&gui_wps[i], WPS_REFRESH_NON_STATIC);
|
2009-04-12 00:30:28 +00:00
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2009-04-06 00:39:43 +00:00
|
|
|
wps_state.do_full_update = false;
|
2009-04-08 17:11:50 +00:00
|
|
|
update = false;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
|
2009-03-29 17:58:24 +00:00
|
|
|
if (restore && wps_state.id3 &&
|
2009-03-17 01:56:20 +00:00
|
|
|
((restoretimer == RESTORE_WPS_INSTANTLY) ||
|
2009-03-20 16:12:09 +00:00
|
|
|
TIME_AFTER(current_tick, restoretimer)))
|
2007-04-22 12:38:11 +00:00
|
|
|
{
|
|
|
|
restore = false;
|
2009-03-17 01:56:20 +00:00
|
|
|
restoretimer = RESTORE_WPS_INSTANTLY;
|
2009-04-08 17:31:29 +00:00
|
|
|
gwps_fix_statusbars();
|
2009-04-09 08:30:05 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
lcd_activation_set_hook(wps_lcd_activation_hook);
|
|
|
|
#endif
|
2009-03-23 03:08:56 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].stop_scroll();
|
2009-03-29 17:58:24 +00:00
|
|
|
gui_wps_display(&gui_wps[i]);
|
2007-04-22 12:38:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
if (exit) {
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
status_set_record(false);
|
|
|
|
status_set_audio(false);
|
|
|
|
#endif
|
|
|
|
if (global_settings.fade_on_stop)
|
2008-06-23 02:45:55 +00:00
|
|
|
fade(false, true);
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2007-08-22 16:33:34 +00:00
|
|
|
if (bookmark)
|
|
|
|
bookmark_autobookmark();
|
2005-11-17 20:20:01 +00:00
|
|
|
audio_stop();
|
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
ab_reset_markers();
|
2007-08-02 12:13:20 +00:00
|
|
|
#endif
|
2009-03-19 14:33:22 +00:00
|
|
|
gwps_leave_wps();
|
2007-08-02 12:13:20 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
if (button == ACTION_WPS_REC)
|
|
|
|
return GO_TO_RECSCREEN;
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2007-04-08 02:11:33 +00:00
|
|
|
if (global_settings.browse_current)
|
|
|
|
return GO_TO_PREVIOUS_BROWSER;
|
2007-03-01 11:14:46 +00:00
|
|
|
return GO_TO_PREVIOUS;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2009-01-01 05:12:27 +00:00
|
|
|
if (button && !IS_SYSEVENT(button) )
|
2008-11-01 16:14:28 +00:00
|
|
|
storage_spin();
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2007-03-01 11:14:46 +00:00
|
|
|
return GO_TO_ROOT; /* unreachable - just to reduce compiler warnings */
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
|
2009-04-06 00:39:43 +00:00
|
|
|
/* this is called from the playback thread so NO DRAWING! */
|
|
|
|
static void track_changed_callback(void *param)
|
|
|
|
{
|
|
|
|
wps_state.id3 = (struct mp3entry*)param;
|
|
|
|
wps_state.nid3 = audio_next_track();
|
2009-07-20 05:18:18 +00:00
|
|
|
if (wps_state.id3->cuesheet)
|
2009-04-06 00:39:43 +00:00
|
|
|
{
|
2009-07-20 05:18:18 +00:00
|
|
|
cue_find_current_track(wps_state.id3->cuesheet, wps_state.id3->elapsed);
|
|
|
|
cue_spoof_id3(wps_state.id3->cuesheet, wps_state.id3);
|
2009-04-06 00:39:43 +00:00
|
|
|
}
|
|
|
|
wps_state.do_full_update = true;
|
|
|
|
}
|
|
|
|
static void nextid3available_callback(void* param)
|
|
|
|
{
|
|
|
|
(void)param;
|
|
|
|
wps_state.nid3 = audio_next_track();
|
|
|
|
wps_state.do_full_update = true;
|
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
|
2006-12-13 11:52:21 +00:00
|
|
|
static void wps_state_init(void)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
|
|
|
wps_state.ff_rewind = false;
|
|
|
|
wps_state.paused = false;
|
2009-04-08 17:11:50 +00:00
|
|
|
if(audio_status() & AUDIO_STATUS_PLAY)
|
|
|
|
{
|
|
|
|
wps_state.id3 = audio_current_track();
|
|
|
|
wps_state.nid3 = audio_next_track();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wps_state.id3 = NULL;
|
|
|
|
wps_state.nid3 = NULL;
|
|
|
|
}
|
|
|
|
/* We'll be updating due to restore initialized with true */
|
|
|
|
wps_state.do_full_update = false;
|
2009-04-06 00:39:43 +00:00
|
|
|
/* add the WPS track event callbacks */
|
|
|
|
add_event(PLAYBACK_EVENT_TRACK_CHANGE, false, track_changed_callback);
|
|
|
|
add_event(PLAYBACK_EVENT_NEXTTRACKID3_AVAILABLE, false, nextid3available_callback);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2005-11-18 09:03:25 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2008-06-23 13:20:35 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static void statusbar_toggle_handler(void *data)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
int i;
|
2009-03-20 16:12:09 +00:00
|
|
|
gwps_fix_statusbars();
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2008-06-23 13:20:35 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2009-03-20 16:12:09 +00:00
|
|
|
struct viewport *vp = &gui_wps[i].data->viewports[0].vp;
|
|
|
|
bool draw = wpsbars & (VP_SB_ONSCREEN(i) | VP_SB_IGNORE_SETTING(i));
|
2008-08-04 17:45:39 +00:00
|
|
|
if (!draw)
|
2008-06-23 13:20:35 +00:00
|
|
|
{
|
2009-03-20 16:12:09 +00:00
|
|
|
vp->y = 0;
|
|
|
|
vp->height = screens[i].lcdheight;
|
2008-06-23 13:20:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-08 00:51:03 +00:00
|
|
|
bool bar_at_top = statusbar_position(i) != STATUSBAR_BOTTOM;
|
2009-07-05 18:07:58 +00:00
|
|
|
vp->y = bar_at_top?STATUSBAR_HEIGHT:0;
|
2009-03-20 16:12:09 +00:00
|
|
|
vp->height = screens[i].lcdheight - STATUSBAR_HEIGHT;
|
2008-06-23 13:20:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2008-06-28 20:45:21 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
void gui_sync_wps_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2009-08-03 15:06:30 +00:00
|
|
|
skin_data_init(&wps_datas[i]);
|
2008-12-09 23:07:59 +00:00
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
wps_datas[i].wps_uses_albumart = 0;
|
|
|
|
#endif
|
2007-04-25 13:09:56 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
wps_datas[i].remote_wps = (i != 0);
|
|
|
|
#endif
|
2009-01-07 10:57:51 +00:00
|
|
|
gui_wps[i].data = &wps_datas[i];
|
|
|
|
gui_wps[i].display = &screens[i];
|
|
|
|
/* Currently no seperate wps_state needed/possible
|
2009-07-10 11:53:15 +00:00
|
|
|
so use the only available ( "global" ) one */
|
2009-01-07 10:57:51 +00:00
|
|
|
gui_wps[i].state = &wps_state;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2008-06-23 13:20:35 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2008-10-16 10:38:03 +00:00
|
|
|
add_event(GUI_EVENT_STATUSBAR_TOGGLE, false, statusbar_toggle_handler);
|
2008-06-23 13:20:35 +00:00
|
|
|
#endif
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
unload_wps_backdrop();
|
|
|
|
#endif
|
2007-04-25 21:44:56 +00:00
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
unload_remote_wps_backdrop();
|
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2007-11-11 12:29:37 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ALBUMART
|
2009-08-03 15:06:30 +00:00
|
|
|
bool wps_uses_albumart(int *width, int *height)
|
2007-11-11 12:29:37 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i) {
|
|
|
|
struct gui_wps *gwps = &gui_wps[i];
|
|
|
|
if (gwps->data && (gwps->data->wps_uses_albumart != WPS_ALBUMART_NONE))
|
2009-08-03 15:06:30 +00:00
|
|
|
{
|
|
|
|
if (width)
|
|
|
|
*width = gui_wps[0].data->albumart_max_width;
|
|
|
|
if (height)
|
|
|
|
*height = gui_wps[0].data->albumart_max_height;
|
2007-11-11 12:29:37 +00:00
|
|
|
return true;
|
2009-08-03 15:06:30 +00:00
|
|
|
}
|
2007-11-11 12:29:37 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2009-08-03 15:46:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef IPOD_ACCESSORY_PROTOCOL
|
|
|
|
int wps_get_ff_rewind_count(void)
|
|
|
|
{
|
|
|
|
return wps_state.ff_rewind_count;
|
|
|
|
}
|
|
|
|
#endif
|