2005-11-18 09:03:25 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Jerome Kuptz
|
|
|
|
*
|
|
|
|
* 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-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"
|
|
|
|
#include "tree.h"
|
|
|
|
#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"
|
|
|
|
#include "main_menu.h"
|
|
|
|
#include "ata.h"
|
|
|
|
#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"
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-02-02 21:39:09 +00:00
|
|
|
#include "backdrop.h"
|
|
|
|
#endif
|
2006-11-08 02:23:01 +00:00
|
|
|
#include "ata_idle_notify.h"
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
#define WPS_DEFAULTCFG WPS_DIR "/rockbox_default.wps"
|
|
|
|
#define RWPS_DEFAULTCFG WPS_DIR "/rockbox_default.rwps"
|
|
|
|
/* 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);
|
|
|
|
|
2005-11-20 22:13:52 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-11-25 21:22:28 +00:00
|
|
|
static void gui_wps_set_margin(struct gui_wps *gwps)
|
2005-11-20 22:13:52 +00:00
|
|
|
{
|
|
|
|
int offset = 0;
|
|
|
|
struct wps_data *data = gwps->data;
|
|
|
|
if(data->wps_sb_tag && data->show_sb_on_wps)
|
|
|
|
offset = STATUSBAR_HEIGHT;
|
|
|
|
else if ( global_settings.statusbar && !data->wps_sb_tag)
|
|
|
|
offset = STATUSBAR_HEIGHT;
|
|
|
|
gwps->display->setmargins(0, offset);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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;
|
|
|
|
bool update_track = false;
|
|
|
|
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
|
|
|
|
2006-08-16 13:03:50 +00:00
|
|
|
action_signalscreenchange();
|
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
wps_state_init();
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
status_set_audio(true);
|
|
|
|
status_set_param(false);
|
|
|
|
#else
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2005-11-25 21:22:28 +00:00
|
|
|
gui_wps_set_margin(&gui_wps[i]);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
|
#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)
|
2006-11-26 09:53:42 +00:00
|
|
|
call_ata_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
|
|
|
|
|
|
|
|
/* 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;
|
2006-08-15 12:27:07 +00:00
|
|
|
|
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();
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
action_signalscreenchange();
|
2005-11-17 20:20:01 +00:00
|
|
|
onplay(wps_state.id3->path, TREE_ATTR_MPA, CONTEXT_WPS);
|
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
|
2005-11-20 22:13:52 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2005-11-25 21:22:28 +00:00
|
|
|
gui_wps_set_margin(&gui_wps[i]);
|
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
|
|
|
|
status_set_record(false);
|
|
|
|
status_set_audio(false);
|
|
|
|
#endif
|
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps[i].display->stop_scroll();
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
/* set dir browser to current playing song */
|
|
|
|
if (global_settings.browse_current &&
|
|
|
|
wps_state.current_track_path[0] != '\0')
|
|
|
|
set_current_file(wps_state.current_track_path);
|
2006-08-15 12:27:07 +00:00
|
|
|
action_signalscreenchange();
|
2005-11-17 20:20:01 +00:00
|
|
|
return 0;
|
|
|
|
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 )
|
|
|
|
fade(1);
|
|
|
|
else
|
|
|
|
audio_resume();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wps_state.paused = true;
|
|
|
|
if ( global_settings.fade_on_stop )
|
|
|
|
fade(0);
|
|
|
|
else
|
|
|
|
audio_pause();
|
|
|
|
settings_save();
|
2005-12-04 13:05:56 +00:00
|
|
|
#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
|
2006-11-26 09:53:42 +00:00
|
|
|
call_ata_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
|
|
|
{
|
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
|
|
|
{
|
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
|
|
|
|
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;
|
|
|
|
if (current_tick -last_right < HZ)
|
|
|
|
audio_next_dir();
|
|
|
|
else ffwd_rew(ACTION_WPS_SEEKFWD);
|
|
|
|
last_right = 0;
|
|
|
|
break;
|
|
|
|
/* fast rewind
|
|
|
|
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;
|
2006-08-22 07:57:40 +00:00
|
|
|
if (current_tick -last_left < HZ)
|
|
|
|
audio_prev_dir();
|
|
|
|
else ffwd_rew(ACTION_WPS_SEEKBACK);
|
|
|
|
last_left = 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
|
|
|
|
|
|
|
|
if (!wps_state.id3 || (wps_state.id3->elapsed < 3*1000)) {
|
|
|
|
audio_prev();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!wps_state.paused)
|
2006-04-11 01:41:40 +00:00
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
audio_pre_ff_rewind();
|
|
|
|
#else
|
2005-11-17 20:20:01 +00:00
|
|
|
audio_pause();
|
2006-04-11 01:41:40 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
|
|
|
|
audio_ff_rewind(0);
|
|
|
|
|
2006-04-11 01:41:40 +00:00
|
|
|
#if (CONFIG_CODEC != SWCODEC)
|
2005-11-17 20:20:01 +00:00
|
|
|
if (!wps_state.paused)
|
|
|
|
audio_resume();
|
2006-04-11 01:41:40 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* next */
|
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
|
|
|
|
audio_next();
|
|
|
|
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
|
|
|
{
|
|
|
|
audio_next_dir();
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
|
|
|
audio_prev_dir();
|
|
|
|
}
|
|
|
|
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();
|
2005-11-17 20:20:01 +00:00
|
|
|
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_main_backdrop();
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
action_signalscreenchange();
|
2005-11-17 20:20:01 +00:00
|
|
|
if (main_menu())
|
|
|
|
return 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
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2005-11-25 21:22:28 +00:00
|
|
|
gui_wps_set_margin(&gui_wps[i]);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
restore = true;
|
|
|
|
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();
|
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
|
2005-11-25 21:22:28 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
gui_wps_set_margin(&gui_wps[i]);
|
|
|
|
}
|
|
|
|
#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();
|
|
|
|
#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;
|
2006-07-01 14:03:07 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
gui_wps_set_margin(&gui_wps[i]);
|
|
|
|
}
|
2006-08-16 13:25:45 +00:00
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
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();
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
2006-08-16 13:25:45 +00:00
|
|
|
action_signalscreenchange();
|
2006-03-21 07:59:23 +00:00
|
|
|
if (1 == pitch_screen())
|
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
|
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
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPSAB_SINGLE:
|
2006-01-21 23:43:57 +00:00
|
|
|
/* If we are using the menu option to enable ab_repeat mode, don't do anything
|
|
|
|
* when it's disabled */
|
|
|
|
#if (AB_REPEAT_ENABLE == 1)
|
|
|
|
if (!ab_repeat_mode_enabled())
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
if (ab_A_marker_set()) {
|
|
|
|
update_track = true;
|
|
|
|
if (ab_B_marker_set()) {
|
|
|
|
ab_reset_markers();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ab_set_B_marker(wps_state.id3->elapsed);
|
|
|
|
ab_jump_to_A_marker();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ab_set_A_marker(wps_state.id3->elapsed);
|
|
|
|
break;
|
2005-11-17 20:20:01 +00:00
|
|
|
/* reset A&B markers */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_WPSAB_RESET:
|
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;
|
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();
|
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
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
gui_wps_set_margin(&gui_wps[i]);
|
|
|
|
}
|
|
|
|
#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;
|
|
|
|
|
2005-11-18 09:43:42 +00:00
|
|
|
case SYS_POWEROFF:
|
|
|
|
bookmark_autobookmark();
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
show_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)
|
|
|
|
return SYS_USB_CONNECTED;
|
|
|
|
update_track = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (update_track)
|
|
|
|
{
|
2005-11-20 22:13:52 +00:00
|
|
|
bool update_failed = false;
|
2005-11-18 09:03:25 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
if(update(&gui_wps[i]))
|
2005-11-20 22:13:52 +00:00
|
|
|
update_failed = true;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2005-11-20 22:13:52 +00:00
|
|
|
if (update_failed)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
|
|
|
/* set dir browser to current playing song */
|
|
|
|
if (global_settings.browse_current &&
|
|
|
|
wps_state.current_track_path[0] != '\0')
|
|
|
|
set_current_file(wps_state.current_track_path);
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
update_track = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exit) {
|
2006-08-15 12:27:07 +00:00
|
|
|
action_signalscreenchange();
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
status_set_record(false);
|
|
|
|
status_set_audio(false);
|
|
|
|
#endif
|
|
|
|
if (global_settings.fade_on_stop)
|
|
|
|
fade(0);
|
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();
|
2005-11-17 20:20:01 +00:00
|
|
|
bookmark_autobookmark();
|
|
|
|
audio_stop();
|
|
|
|
#ifdef AB_REPEAT_ENABLE
|
|
|
|
ab_reset_markers();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* set dir browser to current playing song */
|
|
|
|
if (global_settings.browse_current &&
|
|
|
|
wps_state.current_track_path[0] != '\0')
|
|
|
|
set_current_file(wps_state.current_track_path);
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
if ( button )
|
|
|
|
ata_spin();
|
|
|
|
|
|
|
|
if (restore &&
|
|
|
|
((restoretimer == 0) ||
|
|
|
|
(restoretimer < current_tick)))
|
|
|
|
{
|
|
|
|
restore = false;
|
|
|
|
restoretimer = 0;
|
|
|
|
if (gui_wps_display())
|
|
|
|
{
|
|
|
|
/* set dir browser to current playing song */
|
|
|
|
if (global_settings.browse_current &&
|
|
|
|
wps_state.current_track_path[0] != '\0')
|
|
|
|
set_current_file(wps_state.current_track_path);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wps_state.id3){
|
|
|
|
FOR_NB_SCREENS(i)
|
2005-11-18 09:03:25 +00:00
|
|
|
gui_wps_refresh(&gui_wps[i], 0, WPS_REFRESH_NON_STATIC);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0; /* unreachable - just to reduce compiler warnings */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* needs checking if needed end*/
|
|
|
|
|
|
|
|
/* wps_data*/
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
/* Clear the WPS image cache */
|
|
|
|
static void wps_clear(struct wps_data *data )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
/* set images to unloaded and not displayed */
|
|
|
|
for (i = 0; i < MAX_IMAGES; i++) {
|
|
|
|
data->img[i].loaded = false;
|
|
|
|
data->img[i].display = false;
|
|
|
|
data->img[i].always_display = false;
|
|
|
|
}
|
2005-12-07 20:42:06 +00:00
|
|
|
data->wps_sb_tag = false;
|
|
|
|
data->show_sb_on_wps = false;
|
2006-02-10 14:07:53 +00:00
|
|
|
data->progressbar.have_bitmap_pb=false;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define wps_clear(a)
|
|
|
|
#endif
|
|
|
|
|
2006-03-11 22:06:43 +00:00
|
|
|
/* initial setup of wps_data */
|
|
|
|
void wps_data_init(struct wps_data *wps_data)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
wps_clear(wps_data);
|
|
|
|
#else /* HAVE_LCD_CHARCELLS */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < 8; i++)
|
|
|
|
wps_data->wps_progress_pat[i] = 0;
|
|
|
|
wps_data->full_line_progressbar = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
wps_data->format_buffer[0] = '\0';
|
|
|
|
wps_data->wps_loaded = false;
|
|
|
|
wps_data->peak_meter_enabled = false;
|
|
|
|
}
|
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
static void wps_reset(struct wps_data *data)
|
|
|
|
{
|
|
|
|
data->wps_loaded = false;
|
|
|
|
memset(&data->format_buffer, 0, sizeof data->format_buffer);
|
2006-03-11 22:06:43 +00:00
|
|
|
wps_data_init(data);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* to setup up the wps-data from a format-buffer (isfile = false)
|
|
|
|
from a (wps-)file (isfile = true)*/
|
2005-11-18 09:03:25 +00:00
|
|
|
bool wps_data_load(struct wps_data *wps_data,
|
|
|
|
const char *buf,
|
2005-12-09 01:11:14 +00:00
|
|
|
bool isfile)
|
2005-11-17 20:20:01 +00:00
|
|
|
{
|
|
|
|
int fd;
|
2005-11-18 09:03:25 +00:00
|
|
|
|
|
|
|
if(!wps_data || !buf)
|
|
|
|
return false;
|
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
if(!isfile)
|
|
|
|
{
|
|
|
|
wps_clear(wps_data);
|
|
|
|
strncpy(wps_data->format_buffer, buf, sizeof(wps_data->format_buffer));
|
|
|
|
wps_data->format_buffer[sizeof(wps_data->format_buffer) - 1] = 0;
|
2005-12-07 20:42:06 +00:00
|
|
|
gui_wps_format(wps_data);
|
2005-11-17 20:20:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-21 07:59:23 +00:00
|
|
|
/*
|
|
|
|
* Hardcode loading WPS_DEFAULTCFG to cause a reset ideally this
|
2005-11-17 20:20:01 +00:00
|
|
|
* wants to be a virtual file. Feel free to modify dirbrowse()
|
|
|
|
* if you're feeling brave.
|
|
|
|
*/
|
2005-11-18 15:33:05 +00:00
|
|
|
if (! strcmp(buf, WPS_DEFAULTCFG) )
|
2005-11-18 09:03:25 +00:00
|
|
|
{
|
|
|
|
wps_reset(wps_data);
|
2005-12-05 02:07:13 +00:00
|
|
|
global_settings.wps_file[0] = 0;
|
2005-11-18 09:03:25 +00:00
|
|
|
return false;
|
2006-03-21 07:59:23 +00:00
|
|
|
}
|
2005-11-18 15:33:05 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-12-05 02:07:13 +00:00
|
|
|
if (! strcmp(buf, RWPS_DEFAULTCFG) )
|
|
|
|
{
|
2005-11-18 15:33:05 +00:00
|
|
|
wps_reset(wps_data);
|
2005-12-05 02:07:13 +00:00
|
|
|
global_settings.rwps_file[0] = 0;
|
|
|
|
return false;
|
|
|
|
}
|
2005-11-18 15:33:05 +00:00
|
|
|
#endif
|
2005-12-05 02:07:13 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
size_t bmpdirlen;
|
|
|
|
char *bmpdir = strrchr(buf, '.');
|
|
|
|
bmpdirlen = bmpdir - buf;
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
fd = open(buf, O_RDONLY);
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
{
|
2005-12-07 20:42:06 +00:00
|
|
|
unsigned int start = 0;
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-12-07 20:42:06 +00:00
|
|
|
wps_reset(wps_data);
|
2005-11-17 20:20:01 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-12-07 20:42:06 +00:00
|
|
|
wps_data->img_buf_ptr = wps_data->img_buf; /* where in image buffer */
|
|
|
|
|
|
|
|
wps_data->img_buf_free = IMG_BUFSIZE; /* free space in image buffer */
|
2005-11-17 20:20:01 +00:00
|
|
|
#endif
|
2005-12-07 20:42:06 +00:00
|
|
|
while( ( read_line(fd, &wps_data->format_buffer[start],
|
|
|
|
sizeof(wps_data->format_buffer)-start) ) > 0 )
|
|
|
|
{
|
|
|
|
if(!wps_data_preload_tags(wps_data,
|
|
|
|
&wps_data->format_buffer[start],
|
|
|
|
buf, bmpdirlen))
|
|
|
|
{
|
|
|
|
start += strlen(&wps_data->format_buffer[start]);
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-12-07 20:42:06 +00:00
|
|
|
if (start < sizeof(wps_data->format_buffer) - 1)
|
|
|
|
{
|
|
|
|
wps_data->format_buffer[start++] = '\n';
|
|
|
|
wps_data->format_buffer[start] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (start > 0)
|
|
|
|
{
|
|
|
|
gui_wps_format(wps_data);
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
close(fd);
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-11-17 20:20:01 +00:00
|
|
|
wps_data->wps_loaded = true;
|
2006-03-21 07:59:23 +00:00
|
|
|
|
2005-12-07 20:42:06 +00:00
|
|
|
return start > 0;
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* wps_data end */
|
|
|
|
|
|
|
|
/* wps_state */
|
|
|
|
|
|
|
|
void wps_state_init(void)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
memcpy(wps_state.current_track_path, path,
|
|
|
|
sizeof(wps_state.current_track_path));
|
|
|
|
}
|
2005-11-17 20:20:01 +00:00
|
|
|
/* wps_state end*/
|
|
|
|
|
|
|
|
/* initial setup of a wps */
|
|
|
|
void gui_wps_init(struct gui_wps *gui_wps)
|
|
|
|
{
|
|
|
|
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 */
|
|
|
|
void gui_wps_set_data(struct gui_wps *gui_wps, struct wps_data *data)
|
|
|
|
{
|
|
|
|
gui_wps->data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* connects a wps with a screen */
|
|
|
|
void gui_wps_set_disp(struct gui_wps *gui_wps, struct screen *display)
|
|
|
|
{
|
|
|
|
gui_wps->display = display;
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:13:52 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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]);
|
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
|
|
|
}
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-05-21 11:00:02 +00:00
|
|
|
unload_wps_backdrop();
|
|
|
|
#endif
|
2005-11-17 20:20:01 +00:00
|
|
|
}
|