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"
|
|
|
|
#include "gwps.h"
|
|
|
|
#include "gwps-common.h"
|
|
|
|
#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 "action.h"
|
|
|
|
#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"
|
2007-04-25 22:08:00 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
/* currently only on wps_state is needed */
|
|
|
|
struct wps_state wps_state;
|
2005-11-18 09:03:25 +00:00
|
|
|
struct gui_wps gui_wps[NB_SCREENS];
|
|
|
|
static struct wps_data wps_datas[NB_SCREENS];
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2005-11-18 09:03:25 +00:00
|
|
|
/* change the path to the current played track */
|
|
|
|
static void wps_state_update_ctp(const char *path);
|
2006-12-13 11:52:21 +00:00
|
|
|
/* initial setup of wps_data */
|
|
|
|
static void wps_state_init(void);
|
|
|
|
/* initial setup of a wps */
|
|
|
|
static void gui_wps_init(struct gui_wps *gui_wps);
|
|
|
|
/* connects a wps with a format-description of the displayed content */
|
|
|
|
static void gui_wps_set_data(struct gui_wps *gui_wps, struct wps_data *data);
|
|
|
|
/* connects a wps with a screen */
|
|
|
|
static void gui_wps_set_disp(struct gui_wps *gui_wps, struct screen *display);
|
|
|
|
/* connects a wps with a statusbar*/
|
|
|
|
static void gui_wps_set_statusbar(struct gui_wps *gui_wps, struct gui_statusbar *statusbar);
|
|
|
|
|
2008-05-04 13:47:58 +00:00
|
|
|
static void prev_track(unsigned skip_thresh)
|
|
|
|
{
|
|
|
|
if (!wps_state.id3 || (wps_state.id3->elapsed < skip_thresh*1000)) {
|
|
|
|
audio_prev();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (cuesheet_is_enabled() && wps_state.id3->cuesheet_type)
|
|
|
|
{
|
|
|
|
curr_cuesheet_skip(-1, wps_state.id3->elapsed);
|
|
|
|
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 */
|
|
|
|
if (cuesheet_is_enabled() && wps_state.id3->cuesheet_type)
|
|
|
|
{
|
|
|
|
if (curr_cuesheet_skip(1, wps_state.id3->elapsed))
|
|
|
|
{
|
|
|
|
/* if the result was false, then we really want
|
|
|
|
to skip to the next track */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
audio_next();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2005-11-17 20:20:01 +00:00
|
|
|
bool restore = false;
|
|
|
|
long restoretimer = 0; /* timer to delay screen redraw temporarily */
|
|
|
|
bool exit = false;
|
2007-08-22 16:33:34 +00:00
|
|
|
bool bookmark = false;
|
2005-11-17 20:20:01 +00:00
|
|
|
bool update_track = false;
|
|
|
|
int i;
|
2006-08-22 07:57:40 +00:00
|
|
|
long last_left = 0, last_right = 0;
|
2008-11-16 09:56:38 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
wps_state_init();
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
status_set_audio(true);
|
|
|
|
status_set_param(false);
|
|
|
|
#else
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_wps_backdrop();
|
2006-11-13 00:45:21 +00:00
|
|
|
#endif /* LCD_DEPTH > 1 */
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
|
|
|
|
2007-04-25 21:44:56 +00:00
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_wps_backdrop();
|
|
|
|
#endif
|
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
ab_repeat_init();
|
|
|
|
ab_reset_markers();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(audio_status() & AUDIO_STATUS_PLAY)
|
|
|
|
{
|
|
|
|
wps_state.id3 = audio_current_track();
|
|
|
|
wps_state.nid3 = audio_next_track();
|
|
|
|
if (wps_state.id3) {
|
|
|
|
if (gui_wps_display())
|
|
|
|
return 0;
|
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps_refresh(&gui_wps[i], 0, WPS_REFRESH_ALL);
|
2005-11-17 20:20:01 +00:00
|
|
|
wps_state_update_ctp(wps_state.id3->path);
|
|
|
|
}
|
|
|
|
|
|
|
|
restore = true;
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
gui_wps_refresh(&gui_wps[i], 0,
|
|
|
|
WPS_REFRESH_PEAK_METER);
|
|
|
|
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 */
|
|
|
|
else {
|
2006-08-17 12:33:36 +00:00
|
|
|
button = get_action(CONTEXT_WPS|ALLOW_SOFTLOCK,HZ/5);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
#else
|
2006-08-17 12:33:36 +00:00
|
|
|
button = get_action(CONTEXT_WPS|ALLOW_SOFTLOCK,HZ/5);
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2008-11-16 09:56:38 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
/* Exit if audio has stopped playing. This can happen if using the
|
|
|
|
sleep timer with the charger plugged or if starting a recording
|
|
|
|
from F1 */
|
|
|
|
if (!audio_status())
|
|
|
|
exit = true;
|
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:
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_main_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
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;
|
2008-02-10 23:07:01 +00:00
|
|
|
|
|
|
|
/* track might have changed */
|
|
|
|
update_track = true;
|
|
|
|
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_wps_backdrop();
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
2007-04-25 21:44:56 +00:00
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_wps_backdrop();
|
2005-11-20 22:13:52 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
|
|
|
break;
|
|
|
|
|
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
|
2008-11-16 09:56:38 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps[i].display->stop_scroll();
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* volume up */
|
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;
|
|
|
|
restoretimer = current_tick + HZ;
|
|
|
|
}
|
2005-11-20 22:13:52 +00:00
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* volume down */
|
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;
|
|
|
|
restoretimer = current_tick + HZ;
|
|
|
|
}
|
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
|
2008-05-04 13:47:58 +00:00
|
|
|
OR next dir if this is straight after ACTION_WPS_SKIPNEXT
|
2008-07-14 20:39:30 +00:00
|
|
|
OR if skip length set, next track if straight after SKIPPREV. */
|
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;
|
2008-07-14 20:39:30 +00:00
|
|
|
if (global_settings.skip_length == 0
|
2008-05-04 13:47:58 +00:00
|
|
|
&& current_tick -last_right < HZ)
|
2007-02-14 14:40:24 +00:00
|
|
|
{
|
|
|
|
if (cuesheet_is_enabled() && wps_state.id3->cuesheet_type)
|
|
|
|
{
|
|
|
|
audio_next();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
audio_next_dir();
|
|
|
|
}
|
|
|
|
}
|
2008-07-14 20:39:30 +00:00
|
|
|
else if (global_settings.skip_length > 0
|
2008-05-04 13:47:58 +00:00
|
|
|
&& current_tick -last_left < HZ) {
|
|
|
|
next_track();
|
|
|
|
update_track = true;
|
|
|
|
}
|
2006-08-22 07:57:40 +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
|
2008-05-04 13:47:58 +00:00
|
|
|
OR prev dir if this is straight after ACTION_WPS_SKIPPREV,
|
2008-07-14 20:39:30 +00:00
|
|
|
OR if skip length set, beg of track or prev track if this is
|
2008-05-04 13:47:58 +00:00
|
|
|
straight after 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;
|
2008-07-14 20:39:30 +00:00
|
|
|
if (global_settings.skip_length == 0
|
2008-05-04 13:47:58 +00:00
|
|
|
&& current_tick -last_left < HZ)
|
2007-02-14 14:40:24 +00:00
|
|
|
{
|
|
|
|
if (cuesheet_is_enabled() && wps_state.id3->cuesheet_type)
|
|
|
|
{
|
|
|
|
if (!wps_state.paused)
|
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
audio_pre_ff_rewind();
|
|
|
|
#else
|
|
|
|
audio_pause();
|
|
|
|
#endif
|
|
|
|
audio_ff_rewind(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
audio_prev_dir();
|
|
|
|
}
|
|
|
|
}
|
2008-07-14 20:39:30 +00:00
|
|
|
else if (global_settings.skip_length > 0
|
2008-05-04 13:47:58 +00:00
|
|
|
&& current_tick -last_right < HZ)
|
|
|
|
{
|
2008-08-18 01:03:07 +00:00
|
|
|
prev_track(3+global_settings.skip_length);
|
2008-05-04 13:47:58 +00:00
|
|
|
update_track = true;
|
|
|
|
}
|
2006-08-22 07:57:40 +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
|
|
|
update_track = true;
|
|
|
|
|
|
|
|
#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
|
|
|
}
|
|
|
|
/* ...otherwise, do it normally */
|
|
|
|
#endif
|
|
|
|
|
2008-07-14 20:39:30 +00:00
|
|
|
if (global_settings.skip_length > 0)
|
2008-05-04 13:47:58 +00:00
|
|
|
play_hop(-1);
|
|
|
|
else prev_track(3);
|
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
|
|
|
update_track = true;
|
|
|
|
|
|
|
|
#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
|
|
|
}
|
|
|
|
/* ...otherwise, do it normally */
|
|
|
|
#endif
|
2007-02-14 14:40:24 +00:00
|
|
|
|
2008-07-14 20:39:30 +00:00
|
|
|
if (global_settings.skip_length > 0)
|
2008-05-04 13:47:58 +00:00
|
|
|
play_hop(1);
|
|
|
|
else next_track();
|
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();
|
|
|
|
update_track = true;
|
|
|
|
}
|
|
|
|
else
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2008-07-14 20:39:30 +00:00
|
|
|
if (global_settings.skip_length > 0)
|
2008-05-04 13:47:58 +00:00
|
|
|
next_track();
|
|
|
|
else audio_next_dir();
|
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
|
|
|
{
|
2008-07-14 20:39:30 +00:00
|
|
|
if (global_settings.skip_length > 0)
|
2008-05-04 13:47:58 +00:00
|
|
|
prev_track(3);
|
|
|
|
else audio_prev_dir();
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
/* menu key functions */
|
|
|
|
case ACTION_WPS_MENU:
|
2005-11-17 20:20:01 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps[i].display->stop_scroll();
|
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:
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_main_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
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;
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_wps_backdrop();
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
2007-04-25 21:44:56 +00:00
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_wps_backdrop();
|
2005-11-25 21:22:28 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
|
|
|
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:
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-07-01 14:03:07 +00:00
|
|
|
show_main_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
2006-07-01 14:03:07 +00:00
|
|
|
#endif
|
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;
|
|
|
|
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:
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_main_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
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;
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_wps_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_wps_backdrop();
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
|
|
|
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();
|
|
|
|
update_track = true;
|
|
|
|
}
|
|
|
|
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:
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_main_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
2006-03-21 11:31:53 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
browse_id3();
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_wps_backdrop();
|
2006-03-21 11:31:53 +00:00
|
|
|
#endif
|
2007-04-25 21:44:56 +00:00
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_wps_backdrop();
|
2006-03-21 11:31:53 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
restore = true;
|
|
|
|
break;
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2006-08-17 12:33:36 +00:00
|
|
|
case ACTION_REDRAW: /* yes are locked, just redraw */
|
|
|
|
restore = true;
|
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_NONE: /* Timeout */
|
2005-11-17 20:20:01 +00:00
|
|
|
update_track = 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:
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_main_backdrop();
|
2007-04-25 21:44:56 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
show_remote_main_backdrop();
|
2006-05-01 14:24:06 +00:00
|
|
|
#endif
|
2005-11-18 09:43:42 +00:00
|
|
|
default_event_handler(SYS_POWEROFF);
|
|
|
|
break;
|
2006-03-21 07:59:23 +00:00
|
|
|
|
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;
|
2005-11-17 20:20:01 +00:00
|
|
|
update_track = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (update_track)
|
|
|
|
{
|
2005-11-18 09:03:25 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
if(update(&gui_wps[i]))
|
2007-04-22 12:38:11 +00:00
|
|
|
exit = true;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
update_track = false;
|
|
|
|
}
|
|
|
|
|
2007-04-22 12:38:11 +00:00
|
|
|
if (restore &&
|
|
|
|
((restoretimer == 0) ||
|
|
|
|
(restoretimer < current_tick)))
|
|
|
|
{
|
|
|
|
restore = false;
|
|
|
|
restoretimer = 0;
|
|
|
|
if (gui_wps_display()) {
|
|
|
|
exit = true;
|
|
|
|
}
|
|
|
|
else if (wps_state.id3){
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_wps_refresh(&gui_wps[i], 0, WPS_REFRESH_NON_STATIC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps[i].display->stop_scroll();
|
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
|
|
|
|
#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
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
if ( 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
|
|
|
}
|
|
|
|
|
|
|
|
/* needs checking if needed end*/
|
|
|
|
|
|
|
|
/* wps_state */
|
|
|
|
|
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;
|
|
|
|
wps_state.id3 = NULL;
|
|
|
|
wps_state.nid3 = NULL;
|
|
|
|
wps_state.current_track_path[0] = '\0';
|
|
|
|
}
|
2005-11-18 09:03:25 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* these are obviously not used? */
|
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
void wps_state_update_ff_rew(bool ff_rew)
|
|
|
|
{
|
|
|
|
wps_state.ff_rewind = ff_rew;
|
|
|
|
}
|
2005-11-18 09:03:25 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
void wps_state_update_paused(bool paused)
|
|
|
|
{
|
|
|
|
wps_state.paused = paused;
|
|
|
|
}
|
|
|
|
void wps_state_update_id3_nid3(struct mp3entry *id3, struct mp3entry *nid3)
|
|
|
|
{
|
|
|
|
wps_state.id3 = id3;
|
|
|
|
wps_state.nid3 = nid3;
|
|
|
|
}
|
2005-11-18 09:03:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static void wps_state_update_ctp(const char *path)
|
|
|
|
{
|
2007-07-06 22:34:18 +00:00
|
|
|
strncpy(wps_state.current_track_path, path,
|
2005-11-18 09:03:25 +00:00
|
|
|
sizeof(wps_state.current_track_path));
|
2007-07-06 22:34:18 +00:00
|
|
|
wps_state.current_track_path[sizeof(wps_state.current_track_path)-1] = '\0';
|
2005-11-18 09:03:25 +00:00
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
/* wps_state end*/
|
|
|
|
|
|
|
|
/* initial setup of a wps */
|
2006-12-13 11:52:21 +00:00
|
|
|
static void gui_wps_init(struct gui_wps *gui_wps)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
|
|
|
gui_wps->data = NULL;
|
|
|
|
gui_wps->display = NULL;
|
2005-11-20 22:13:52 +00:00
|
|
|
gui_wps->statusbar = NULL;
|
2005-11-17 20:20:01 +00:00
|
|
|
/* Currently no seperate wps_state needed/possible
|
|
|
|
so use the only aviable ( "global" ) one */
|
|
|
|
gui_wps->state = &wps_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* connects a wps with a format-description of the displayed content */
|
2006-12-13 11:52:21 +00:00
|
|
|
static void gui_wps_set_data(struct gui_wps *gui_wps, struct wps_data *data)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
|
|
|
gui_wps->data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* connects a wps with a screen */
|
2006-12-13 11:52:21 +00:00
|
|
|
static void gui_wps_set_disp(struct gui_wps *gui_wps, struct screen *display)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
|
|
|
gui_wps->display = display;
|
|
|
|
}
|
|
|
|
|
2006-12-13 11:52:21 +00:00
|
|
|
static void gui_wps_set_statusbar(struct gui_wps *gui_wps, struct gui_statusbar *statusbar)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
2005-11-20 22:13:52 +00:00
|
|
|
gui_wps->statusbar = statusbar;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2005-11-20 22:13:52 +00:00
|
|
|
/* gui_wps end */
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
void gui_sync_wps_screen_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps_set_disp(&gui_wps[i], &screens[i]);
|
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;
|
|
|
|
bool draw = global_settings.statusbar;
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2008-06-23 13:20:35 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
struct wps_viewport *vp = &gui_wps[i].data->viewports[0];
|
|
|
|
if (gui_wps[i].data->wps_sb_tag)
|
|
|
|
draw = gui_wps[i].data->show_sb_on_wps;
|
2008-08-04 17:45:39 +00:00
|
|
|
if (!draw)
|
2008-06-23 13:20:35 +00:00
|
|
|
{
|
|
|
|
vp->vp.y = 0;
|
2008-06-28 20:45:21 +00:00
|
|
|
vp->vp.height = screens[i].lcdheight;
|
2008-06-23 13:20:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vp->vp.y = STATUSBAR_HEIGHT;
|
2008-06-28 20:45:21 +00:00
|
|
|
vp->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)
|
|
|
|
{
|
2005-11-20 22:13:52 +00:00
|
|
|
wps_data_init(&wps_datas[i]);
|
2007-04-25 13:09:56 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
wps_datas[i].remote_wps = (i != 0);
|
|
|
|
#endif
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps_init(&gui_wps[i]);
|
|
|
|
gui_wps_set_data(&gui_wps[i], &wps_datas[i]);
|
2005-11-20 22:13:52 +00:00
|
|
|
gui_wps_set_statusbar(&gui_wps[i], &statusbars.statusbars[i]);
|
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
|
|
|
|
/* Returns true if at least one of the gui_wps screens has an album art
|
|
|
|
tag in its wps structure */
|
|
|
|
bool gui_sync_wps_uses_albumart(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i) {
|
|
|
|
struct gui_wps *gwps = &gui_wps[i];
|
|
|
|
if (gwps->data && (gwps->data->wps_uses_albumart != WPS_ALBUMART_NONE))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|