1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Jerome Kuptz
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
30 #include "backlight.h"
33 #include "filetypes.h"
35 #include "skin_engine/skin_engine.h"
36 #include "mp3_playback.h"
43 #ifdef HAVE_LCD_BITMAP
45 #include "peakmeter.h"
56 #include "ata_idle_notify.h"
57 #include "root_menu.h"
59 #include "quickscreen.h"
60 #include "pitchscreen.h"
61 #include "appevents.h"
64 #include "option_select.h"
66 #include "playlist_viewer.h"
68 #include "statusbar-skinned.h"
70 #define RESTORE_WPS_INSTANTLY 0l
71 #define RESTORE_WPS_NEXT_SECOND ((long)(HZ+current_tick))
73 #define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */
74 /* 3% of 30min file == 54s step size */
75 #define MIN_FF_REWIND_STEP 500
77 /* initial setup of wps_data */
78 static void wps_state_init(void);
79 static void track_changed_callback(void *param
);
80 static void nextid3available_callback(void* param
);
82 #define WPS_DEFAULTCFG WPS_DIR "/rockbox_default.wps"
83 #ifdef HAVE_REMOTE_LCD
84 #define RWPS_DEFAULTCFG WPS_DIR "/rockbox_default.rwps"
85 #define DEFAULT_WPS(screen) ((screen) == SCREEN_MAIN ? \
86 WPS_DEFAULTCFG:RWPS_DEFAULTCFG)
88 #define DEFAULT_WPS(screen) (WPS_DEFAULTCFG)
91 char* wps_default_skin(enum screen_type screen
)
93 static char *skin_buf
[NB_SCREENS
] = {
94 #ifdef HAVE_LCD_BITMAP
98 "%s%?it<%?in<%in. |>%it|%fn>\n"
99 "%s%?ia<%ia|%?d(2)<%d(2)|%(root%)>>\n"
100 "%s%?id<%id|%?d(1)<%d(1)|%(root%)>> %?iy<%(%iy%)|>\n\n"
101 "%al%pc/%pt%ar[%pp:%pe]\n"
102 "%fbkBit %?fv<avg|> %?iv<%(id3v%iv%)|%(no id3%)>\n"
105 "%s%pp/%pe: %?it<%it|%fn> - %?ia<%ia|%d(2)> - %?id<%id|%d(1)>\n"
108 #ifdef HAVE_REMOTE_LCD
109 #if LCD_REMOTE_DEPTH > 1
112 "%s%?ia<%ia|%?d(2)<%d(2)|%(root%)>>\n"
113 "%s%?it<%?in<%in. |>%it|%fn>\n"
114 "%al%pc/%pt%ar[%pp:%pe]\n"
115 "%fbkBit %?fv<avg|> %?iv<%(id3v%iv%)|%(no id3%)>\n"
119 return skin_buf
[screen
];
122 void fade(bool fade_in
, bool updatewps
)
124 int fp_global_vol
= global_settings
.volume
<< 8;
125 int fp_min_vol
= sound_min(SOUND_VOLUME
) << 8;
126 int fp_step
= (fp_global_vol
- fp_min_vol
) / 30;
128 skin_get_global_state()->is_fading
= !fade_in
;
131 int fp_volume
= fp_min_vol
;
133 /* zero out the sound */
134 sound_set_volume(fp_min_vol
>> 8);
136 sleep(HZ
/10); /* let audio thread run */
139 while (fp_volume
< fp_global_vol
- fp_step
) {
140 fp_volume
+= fp_step
;
141 sound_set_volume(fp_volume
>> 8);
145 skin_update(WPS
, i
, SKIN_REFRESH_NON_STATIC
);
149 sound_set_volume(global_settings
.volume
);
153 int fp_volume
= fp_global_vol
;
155 while (fp_volume
> fp_min_vol
+ fp_step
) {
156 fp_volume
-= fp_step
;
157 sound_set_volume(fp_volume
>> 8);
161 skin_update(WPS
, i
, SKIN_REFRESH_NON_STATIC
);
166 skin_get_global_state()->is_fading
= false;
167 #if CONFIG_CODEC != SWCODEC
169 /* let audio thread run and wait for the mas to run out of data */
170 while (!mp3_pause_done())
175 /* reset volume to what it was before the fade */
176 sound_set_volume(global_settings
.volume
);
180 static bool update_onvol_change(enum screen_type screen
)
182 skin_update(WPS
, screen
, SKIN_REFRESH_NON_STATIC
);
184 #ifdef HAVE_LCD_CHARCELLS
185 splashf(0, "Vol: %3d dB",
186 sound_val2phys(SOUND_VOLUME
, global_settings
.volume
));
193 #ifdef HAVE_TOUCHSCREEN
194 static int skintouch_to_wps(struct wps_data
*data
)
197 struct touchregion
*region
;
198 int button
= skin_get_touchaction(data
, &offset
, ®ion
);
201 case ACTION_STD_PREV
:
202 return ACTION_WPS_SKIPPREV
;
203 case ACTION_STD_PREVREPEAT
:
204 return ACTION_WPS_SEEKBACK
;
205 case ACTION_STD_NEXT
:
206 return ACTION_WPS_SKIPNEXT
;
207 case ACTION_STD_NEXTREPEAT
:
208 return ACTION_WPS_SEEKFWD
;
209 case ACTION_STD_MENU
:
210 return ACTION_WPS_MENU
;
211 case ACTION_STD_CONTEXT
:
212 return ACTION_WPS_CONTEXT
;
213 case ACTION_STD_QUICKSCREEN
:
214 return ACTION_WPS_QUICKSCREEN
;
216 case ACTION_STD_HOTKEY
:
217 return ACTION_WPS_HOTKEY
;
219 case WPS_TOUCHREGION_SCROLLBAR
:
220 skin_get_global_state()->id3
->elapsed
= skin_get_global_state()->id3
->length
*offset
/100;
221 if (!skin_get_global_state()->paused
)
222 #if (CONFIG_CODEC == SWCODEC)
223 audio_pre_ff_rewind();
227 audio_ff_rewind(skin_get_global_state()->id3
->elapsed
);
228 #if (CONFIG_CODEC != SWCODEC)
229 if (!skin_get_global_state()->paused
)
232 return ACTION_TOUCHSCREEN
;
233 case WPS_TOUCHREGION_VOLUME
:
235 const int min_vol
= sound_min(SOUND_VOLUME
);
236 const int max_vol
= sound_max(SOUND_VOLUME
);
237 global_settings
.volume
= (offset
* (max_vol
- min_vol
)) / 100;
238 global_settings
.volume
+= min_vol
;
241 return ACTION_TOUCHSCREEN
;
242 case ACTION_SETTINGS_INC
:
243 case ACTION_SETTINGS_DEC
:
245 const struct settings_list
*setting
= region
->data
;
246 option_select_next_val(setting
, button
== ACTION_SETTINGS_DEC
, true);
248 return ACTION_REDRAW
;
249 case ACTION_TOUCH_MUTE
:
251 const int min_vol
= sound_min(SOUND_VOLUME
);
252 if (global_settings
.volume
== min_vol
)
253 global_settings
.volume
= region
->value
;
256 region
->value
= global_settings
.volume
;
257 global_settings
.volume
= min_vol
;
261 return ACTION_REDRAW
;
265 #endif /* HAVE_TOUCHSCREEN */
267 bool ffwd_rew(int button
)
269 unsigned int step
= 0; /* current ff/rewind step */
270 unsigned int max_step
= 0; /* maximum ff/rewind step */
271 int ff_rewind_count
= 0; /* current ff/rewind count (in ticks) */
272 int direction
= -1; /* forward=1 or backward=-1 */
276 const long ff_rw_accel
= (global_settings
.ff_rewind_accel
+ 3);
278 if (button
== ACTION_NONE
)
280 status_set_ffmode(0);
287 case ACTION_WPS_SEEKFWD
:
289 case ACTION_WPS_SEEKBACK
:
290 if (skin_get_global_state()->ff_rewind
)
294 /* fast forwarding, calc max step relative to end */
295 max_step
= (skin_get_global_state()->id3
->length
-
296 (skin_get_global_state()->id3
->elapsed
+
298 FF_REWIND_MAX_PERCENT
/ 100;
302 /* rewinding, calc max step relative to start */
303 max_step
= (skin_get_global_state()->id3
->elapsed
+ ff_rewind_count
) *
304 FF_REWIND_MAX_PERCENT
/ 100;
307 max_step
= MAX(max_step
, MIN_FF_REWIND_STEP
);
312 ff_rewind_count
+= step
* direction
;
314 /* smooth seeking by multiplying step by: 1 + (2 ^ -accel) */
315 step
+= step
>> ff_rw_accel
;
319 if ( (audio_status() & AUDIO_STATUS_PLAY
) &&
320 skin_get_global_state()->id3
&& skin_get_global_state()->id3
->length
)
322 if (!skin_get_global_state()->paused
)
323 #if (CONFIG_CODEC == SWCODEC)
324 audio_pre_ff_rewind();
328 #if CONFIG_KEYPAD == PLAYER_PAD
330 skin_get_gwps(WPS
, i
)->display
->stop_scroll();
333 status_set_ffmode(STATUS_FASTFORWARD
);
335 status_set_ffmode(STATUS_FASTBACKWARD
);
337 skin_get_global_state()->ff_rewind
= true;
339 step
= 1000 * global_settings
.ff_rewind_min_step
;
346 if ((skin_get_global_state()->id3
->elapsed
+ ff_rewind_count
) >
347 skin_get_global_state()->id3
->length
)
348 ff_rewind_count
= skin_get_global_state()->id3
->length
-
349 skin_get_global_state()->id3
->elapsed
;
352 if ((int)(skin_get_global_state()->id3
->elapsed
+ ff_rewind_count
) < 0)
353 ff_rewind_count
= -skin_get_global_state()->id3
->elapsed
;
356 /* set the wps state ff_rewind_count so the progess info
358 skin_get_global_state()->ff_rewind_count
= (skin_get_global_state()->wps_time_countup
== false)?
359 ff_rewind_count
:-ff_rewind_count
;
363 SKIN_REFRESH_PLAYER_PROGRESS
|
364 SKIN_REFRESH_DYNAMIC
);
369 case ACTION_WPS_STOPSEEK
:
370 skin_get_global_state()->id3
->elapsed
= skin_get_global_state()->id3
->elapsed
+ff_rewind_count
;
371 audio_ff_rewind(skin_get_global_state()->id3
->elapsed
);
372 skin_get_global_state()->ff_rewind_count
= 0;
373 skin_get_global_state()->ff_rewind
= false;
374 status_set_ffmode(0);
375 #if (CONFIG_CODEC != SWCODEC)
376 if (!skin_get_global_state()->paused
)
379 #ifdef HAVE_LCD_CHARCELLS
381 skin_update(WPS
, i
, SKIN_REFRESH_ALL
);
387 if(default_event_handler(button
) == SYS_USB_CONNECTED
) {
388 status_set_ffmode(0);
396 button
= get_action(CONTEXT_WPS
|ALLOW_SOFTLOCK
,TIMEOUT_BLOCK
);
397 #ifdef HAVE_TOUCHSCREEN
398 if (button
== ACTION_TOUCHSCREEN
)
399 button
= skintouch_to_wps(skin_get_gwps(WPS
, SCREEN_MAIN
)->data
);
400 if (button
!= ACTION_WPS_SEEKFWD
&&
401 button
!= ACTION_WPS_SEEKBACK
)
402 button
= ACTION_WPS_STOPSEEK
;
410 void display_keylock_text(bool locked
)
414 skin_get_gwps(WPS
, i
)->display
->stop_scroll();
416 splash(HZ
, locked
? ID2P(LANG_KEYLOCK_ON
) : ID2P(LANG_KEYLOCK_OFF
));
422 #if defined(HAVE_BACKLIGHT) || defined(HAVE_REMOTE_LCD)
423 static void gwps_caption_backlight(struct wps_state
*state
)
425 if (state
&& state
->id3
)
427 #ifdef HAVE_BACKLIGHT
428 if (global_settings
.caption_backlight
)
430 /* turn on backlight n seconds before track ends, and turn it off n
431 seconds into the new track. n == backlight_timeout, or 5s */
432 int n
= global_settings
.backlight_timeout
* 1000;
435 n
= 5000; /* use 5s if backlight is always on or off */
437 if (((state
->id3
->elapsed
< 1000) ||
438 ((state
->id3
->length
- state
->id3
->elapsed
) < (unsigned)n
)) &&
439 (state
->paused
== false))
443 #ifdef HAVE_REMOTE_LCD
444 if (global_settings
.remote_caption_backlight
)
446 /* turn on remote backlight n seconds before track ends, and turn it
447 off n seconds into the new track. n == remote_backlight_timeout,
449 int n
= global_settings
.remote_backlight_timeout
* 1000;
452 n
= 5000; /* use 5s if backlight is always on or off */
454 if (((state
->id3
->elapsed
< 1000) ||
455 ((state
->id3
->length
- state
->id3
->elapsed
) < (unsigned)n
)) &&
456 (state
->paused
== false))
457 remote_backlight_on();
465 static void change_dir(int direction
)
467 if (global_settings
.prevent_skip
)
472 else if (direction
> 0)
474 /* prevent the next dir to immediatly start being ffw'd */
475 action_wait_for_release();
478 static void prev_track(unsigned long skip_thresh
)
480 struct wps_state
*state
= skin_get_global_state();
481 if (state
->id3
->elapsed
< skip_thresh
)
488 if (state
->id3
->cuesheet
)
490 curr_cuesheet_skip(state
->id3
->cuesheet
, -1, state
->id3
->elapsed
);
495 #if (CONFIG_CODEC == SWCODEC)
496 audio_pre_ff_rewind();
503 #if (CONFIG_CODEC != SWCODEC)
510 static void next_track(void)
512 struct wps_state
*state
= skin_get_global_state();
513 /* take care of if we're playing a cuesheet */
514 if (state
->id3
->cuesheet
)
516 if (curr_cuesheet_skip(state
->id3
->cuesheet
, 1, state
->id3
->elapsed
))
518 /* if the result was false, then we really want
519 to skip to the next track */
527 static void play_hop(int direction
)
529 struct wps_state
*state
= skin_get_global_state();
530 long step
= global_settings
.skip_length
*1000;
531 long elapsed
= state
->id3
->elapsed
;
532 long remaining
= state
->id3
->length
- elapsed
;
538 prev_track(DEFAULT_SKIP_TRESH
);
541 else if (remaining
< DEFAULT_SKIP_TRESH
*2)
547 elapsed
+= (remaining
- DEFAULT_SKIP_TRESH
*2);
549 else if (!global_settings
.prevent_skip
&&
551 (direction
> 0 && step
>= remaining
) ||
552 (direction
< 0 && elapsed
< DEFAULT_SKIP_TRESH
)))
553 { /* Do normal track skipping */
556 else if (direction
< 0)
557 prev_track(DEFAULT_SKIP_TRESH
);
560 else if (direction
== 1 && step
>= remaining
)
562 #if CONFIG_CODEC == SWCODEC
563 if(global_settings
.beep
)
564 pcmbuf_beep(1000, 150, 1500*global_settings
.beep
);
568 else if ((direction
== -1 && elapsed
< step
))
574 elapsed
+= step
* direction
;
576 if((audio_status() & AUDIO_STATUS_PLAY
) && !state
->paused
)
578 #if (CONFIG_CODEC == SWCODEC)
579 audio_pre_ff_rewind();
584 audio_ff_rewind(state
->id3
->elapsed
= elapsed
);
585 #if (CONFIG_CODEC != SWCODEC)
592 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
594 * If the user is unable to see the wps, because the display is deactivated,
595 * we suppress updates until the wps is activated again (the lcd driver will
596 * call this hook to issue an instant update)
598 static void wps_lcd_activation_hook(void *param
)
601 skin_request_full_update(WPS
);
602 /* force timeout in wps main loop, so that the update is instantly */
603 queue_post(&button_queue
, BUTTON_NONE
, 0);
607 static void gwps_leave_wps(void)
613 skin_get_gwps(WPS
, i
)->display
->stop_scroll();
614 #if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
615 skin_backdrop_show(sb_get_backdrop(i
));
617 viewportmanager_theme_undo(i
, skin_has_sbs(i
, skin_get_gwps(WPS
, i
)->data
));
621 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
622 /* Play safe and unregister the hook */
623 remove_event(LCD_EVENT_ACTIVATION
, wps_lcd_activation_hook
);
625 /* unhandle statusbar update delay */
626 sb_skin_set_update_delay(DEFAULT_UPDATE_DELAY
);
627 #ifdef HAVE_TOUCHSCREEN
628 touchscreen_set_mode(global_settings
.touch_mode
);
633 * display the wps on entering or restoring */
634 static void gwps_enter_wps(void)
637 struct gui_wps
*gwps
;
638 struct screen
*display
;
641 gwps
= skin_get_gwps(WPS
, i
);
642 display
= gwps
->display
;
643 display
->stop_scroll();
644 viewportmanager_theme_enable(i
, skin_has_sbs(i
, skin_get_gwps(WPS
, i
)->data
), NULL
);
646 /* Update the values in the first (default) viewport - in case the user
647 has modified the statusbar or colour settings */
649 if (display
->depth
> 1)
651 struct skin_viewport
*svp
= find_viewport(VP_DEFAULT_LABEL
,
655 struct viewport
*vp
= &svp
->vp
;
656 vp
->fg_pattern
= display
->get_foreground();
657 vp
->bg_pattern
= display
->get_background();
661 /* make the backdrop actually take effect */
662 #if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
663 skin_backdrop_show(gwps
->data
->backdrop_id
);
665 display
->clear_display();
666 skin_update(WPS
, i
, SKIN_REFRESH_ALL
);
669 #ifdef HAVE_TOUCHSCREEN
670 gwps
= skin_get_gwps(WPS
, SCREEN_MAIN
);
671 skin_disarm_touchregions(gwps
->data
);
672 if (!gwps
->data
->touchregions
)
673 touchscreen_set_mode(TOUCHSCREEN_BUTTON
);
675 /* force statusbar/skin update since we just cleared the whole screen */
676 send_event(GUI_EVENT_ACTIONUPDATE
, (void*)1);
679 /* The WPS can be left in two ways:
680 * a) call a function, which draws over the wps. In this case, the wps
681 * will be still active (i.e. the below function didn't return)
682 * b) return with a value evaluated by root_menu.c, in this case the wps
683 * is really left, and root_menu will handle the next screen
685 * In either way, call gwps_leave_wps(), in order to restore the correct
686 * "main screen" backdrops and statusbars
688 long gui_wps_show(void)
692 long restoretimer
= RESTORE_WPS_INSTANTLY
; /* timer to delay screen redraw temporarily */
694 bool bookmark
= false;
696 bool vol_changed
= false;
698 long last_left
= 0, last_right
= 0;
699 struct wps_state
*state
= skin_get_global_state();
701 #ifdef HAVE_LCD_CHARCELLS
702 status_set_audio(true);
703 status_set_param(false);
706 #ifdef AB_REPEAT_ENABLE
714 bool audio_paused
= (audio_status() & AUDIO_STATUS_PAUSE
)?true:false;
716 /* did someone else (i.e power thread) change audio pause mode? */
717 if (state
->paused
!= audio_paused
) {
718 state
->paused
= audio_paused
;
720 /* if another thread paused audio, we are probably in car mode,
721 about to shut down. lets save the settings. */
724 #if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
725 call_storage_idle_notifys(true);
729 button
= skin_wait_for_action(WPS
, CONTEXT_WPS
|ALLOW_SOFTLOCK
,
732 /* Exit if audio has stopped playing. This happens e.g. at end of
733 playlist or if using the sleep timer. */
734 if (!(audio_status() & AUDIO_STATUS_PLAY
))
736 #ifdef HAVE_TOUCHSCREEN
737 if (button
== ACTION_TOUCHSCREEN
)
738 button
= skintouch_to_wps(skin_get_gwps(WPS
, SCREEN_MAIN
)->data
);
740 /* The iPods/X5/M5 use a single button for the A-B mode markers,
741 defined as ACTION_WPSAB_SINGLE in their config files. */
742 #ifdef ACTION_WPSAB_SINGLE
743 if (!global_settings
.party_mode
&& ab_repeat_mode_enabled())
745 static int wps_ab_state
= 0;
746 if (button
== ACTION_WPSAB_SINGLE
)
748 switch (wps_ab_state
)
750 case 0: /* set the A spot */
751 button
= ACTION_WPS_ABSETA_PREVDIR
;
753 case 1: /* set the B spot */
754 button
= ACTION_WPS_ABSETB_NEXTDIR
;
757 button
= ACTION_WPS_ABRESET
;
760 wps_ab_state
= (wps_ab_state
+1) % 3;
767 case ACTION_WPS_HOTKEY
:
768 if (!global_settings
.hotkey_wps
)
772 case ACTION_WPS_CONTEXT
:
774 bool hotkey
= button
== ACTION_WPS_HOTKEY
;
776 int retval
= onplay(state
->id3
->path
,
777 FILE_ATTR_AUDIO
, CONTEXT_WPS
, hotkey
);
778 /* if music is stopped in the context menu we want to exit the wps */
779 if (retval
== ONPLAY_MAINMENU
782 else if (retval
== ONPLAY_PLAYLIST
)
783 return GO_TO_PLAYLIST_VIEWER
;
784 #ifdef HAVE_PICTUREFLOW_INTEGRATION
785 else if (retval
== ONPLAY_PICTUREFLOW
)
786 return GO_TO_PICTUREFLOW
;
792 case ACTION_WPS_BROWSE
:
793 #ifdef HAVE_LCD_CHARCELLS
794 status_set_record(false);
795 status_set_audio(false);
798 return GO_TO_PREVIOUS_BROWSER
;
802 case ACTION_WPS_PLAY
:
803 if (global_settings
.party_mode
)
807 state
->paused
= false;
808 if ( global_settings
.fade_on_stop
)
815 state
->paused
= true;
816 if ( global_settings
.fade_on_stop
)
821 #if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
822 call_storage_idle_notifys(true); /* make sure resume info is saved */
827 case ACTION_WPS_VOLUP
:
828 global_settings
.volume
++;
831 case ACTION_WPS_VOLDOWN
:
832 global_settings
.volume
--;
836 OR next dir if this is straight after ACTION_WPS_SKIPNEXT */
837 case ACTION_WPS_SEEKFWD
:
838 if (global_settings
.party_mode
)
840 if (current_tick
-last_right
< HZ
)
842 if (state
->id3
->cuesheet
)
852 ffwd_rew(ACTION_WPS_SEEKFWD
);
853 last_right
= last_left
= 0;
856 OR prev dir if this is straight after ACTION_WPS_SKIPPREV,*/
857 case ACTION_WPS_SEEKBACK
:
858 if (global_settings
.party_mode
)
860 if (current_tick
-last_left
< HZ
)
862 if (state
->id3
->cuesheet
)
865 #if (CONFIG_CODEC == SWCODEC)
866 audio_pre_ff_rewind();
878 ffwd_rew(ACTION_WPS_SEEKBACK
);
879 last_left
= last_right
= 0;
883 case ACTION_WPS_SKIPPREV
:
884 if (global_settings
.party_mode
)
886 last_left
= current_tick
;
887 #ifdef AB_REPEAT_ENABLE
888 /* if we're in A/B repeat mode and the current position
889 is past the A marker, jump back to the A marker... */
890 if ( ab_repeat_mode_enabled() )
892 if ( ab_after_A_marker(state
->id3
->elapsed
) )
894 ab_jump_to_A_marker();
899 /* ...otherwise, do it normally */
905 OR if skip length set, hop by predetermined amount. */
906 case ACTION_WPS_SKIPNEXT
:
907 if (global_settings
.party_mode
)
909 last_right
= current_tick
;
910 #ifdef AB_REPEAT_ENABLE
911 /* if we're in A/B repeat mode and the current position is
912 before the A marker, jump to the A marker... */
913 if ( ab_repeat_mode_enabled() )
915 if ( ab_before_A_marker(state
->id3
->elapsed
) )
917 ab_jump_to_A_marker();
922 /* ...otherwise, do it normally */
926 /* next / prev directories */
927 /* and set A-B markers if in a-b mode */
928 case ACTION_WPS_ABSETB_NEXTDIR
:
929 if (global_settings
.party_mode
)
931 #if defined(AB_REPEAT_ENABLE)
932 if (ab_repeat_mode_enabled())
934 ab_set_B_marker(state
->id3
->elapsed
);
935 ab_jump_to_A_marker();
943 case ACTION_WPS_ABSETA_PREVDIR
:
944 if (global_settings
.party_mode
)
946 #if defined(AB_REPEAT_ENABLE)
947 if (ab_repeat_mode_enabled())
948 ab_set_A_marker(state
->id3
->elapsed
);
955 /* menu key functions */
956 case ACTION_WPS_MENU
:
962 #ifdef HAVE_QUICKSCREEN
963 case ACTION_WPS_QUICKSCREEN
:
966 if (quick_screen_quick(button
))
971 #endif /* HAVE_QUICKSCREEN */
973 /* screen settings */
978 if (quick_screen_f3(BUTTON_F3
))
983 #endif /* BUTTON_F3 */
986 #ifdef HAVE_PITCHSCREEN
987 case ACTION_WPS_PITCHSCREEN
:
990 if (1 == gui_syncpitchscreen_run())
995 #endif /* HAVE_PITCHSCREEN */
997 #ifdef AB_REPEAT_ENABLE
998 /* reset A&B markers */
999 case ACTION_WPS_ABRESET
:
1000 if (ab_repeat_mode_enabled())
1006 #endif /* AB_REPEAT_ENABLE */
1008 /* stop and exit wps */
1009 case ACTION_WPS_STOP
:
1010 if (global_settings
.party_mode
)
1016 case ACTION_WPS_ID3SCREEN
:
1024 #ifdef HAVE_TOUCHSCREEN
1025 case ACTION_TOUCH_SHUFFLE
: /* toggle shuffle mode */
1027 global_settings
.playlist_shuffle
=
1028 !global_settings
.playlist_shuffle
;
1029 #if CONFIG_CODEC == SWCODEC
1030 dsp_set_replaygain();
1032 if (global_settings
.playlist_shuffle
)
1033 playlist_randomise(NULL
, current_tick
, true);
1035 playlist_sort(NULL
, true);
1038 case ACTION_TOUCH_REPMODE
: /* cycle the repeat mode setting */
1040 const struct settings_list
*rep_setting
=
1041 find_setting(&global_settings
.repeat_mode
, NULL
);
1042 option_select_next_val(rep_setting
, false, true);
1043 audio_flush_and_reload_tracks();
1046 #endif /* HAVE_TOUCHSCREEN */
1047 /* this case is used by the softlock feature
1048 * it requests a full update here */
1050 skin_request_full_update(WPS
);
1052 case ACTION_NONE
: /* Timeout, do a partial update */
1054 ffwd_rew(button
); /* hopefully fix the ffw/rwd bug */
1056 #ifdef HAVE_RECORDING
1057 case ACTION_WPS_REC
:
1061 case ACTION_WPS_VIEW_PLAYLIST
:
1063 return GO_TO_PLAYLIST_VIEWER
;
1066 switch(default_event_handler(button
))
1067 { /* music has been stopped by the default handler */
1068 case SYS_USB_CONNECTED
:
1069 case SYS_CALL_INCOMING
:
1070 case BUTTON_MULTIMEDIA_STOP
:
1081 vol_changed
= false;
1085 if(update_onvol_change(i
))
1090 restoretimer
= RESTORE_WPS_NEXT_SECOND
;
1096 ((restoretimer
== RESTORE_WPS_INSTANTLY
) ||
1097 TIME_AFTER(current_tick
, restoretimer
)))
1100 restoretimer
= RESTORE_WPS_INSTANTLY
;
1101 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1102 add_event(LCD_EVENT_ACTIVATION
, false, wps_lcd_activation_hook
);
1104 /* we remove the update delay since it's not very usable in the wps,
1105 * e.g. during volume changing or ffwd/rewind */
1106 sb_skin_set_update_delay(0);
1107 skin_request_full_update(WPS
);
1113 #if defined(HAVE_BACKLIGHT) || defined(HAVE_REMOTE_LCD)
1114 gwps_caption_backlight(state
);
1118 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1119 /* currently, all remotes are readable without backlight
1120 * so still update those */
1121 if (lcd_active() || (i
!= SCREEN_MAIN
))
1124 bool full_update
= skin_do_full_update(WPS
, i
);
1125 if (update
|| full_update
)
1127 skin_update(WPS
, i
, full_update
?
1128 SKIN_REFRESH_ALL
: SKIN_REFRESH_NON_STATIC
);
1136 #ifdef HAVE_LCD_CHARCELLS
1137 status_set_record(false);
1138 status_set_audio(false);
1140 if (global_settings
.fade_on_stop
)
1144 bookmark_autobookmark(true);
1146 #ifdef AB_REPEAT_ENABLE
1150 #ifdef HAVE_RECORDING
1151 if (button
== ACTION_WPS_REC
)
1152 return GO_TO_RECSCREEN
;
1154 if (global_settings
.browse_current
)
1155 return GO_TO_PREVIOUS_BROWSER
;
1156 return GO_TO_PREVIOUS
;
1159 if (button
&& !IS_SYSEVENT(button
) )
1162 return GO_TO_ROOT
; /* unreachable - just to reduce compiler warnings */
1165 /* this is called from the playback thread so NO DRAWING! */
1166 static void track_changed_callback(void *param
)
1168 struct wps_state
*state
= skin_get_global_state();
1169 state
->id3
= (struct mp3entry
*)param
;
1170 state
->nid3
= audio_next_track();
1171 if (state
->id3
->cuesheet
)
1173 cue_find_current_track(state
->id3
->cuesheet
, state
->id3
->elapsed
);
1175 skin_request_full_update(WPS
);
1177 static void nextid3available_callback(void* param
)
1180 skin_get_global_state()->nid3
= audio_next_track();
1181 skin_request_full_update(WPS
);
1185 static void wps_state_init(void)
1187 struct wps_state
*state
= skin_get_global_state();
1188 state
->ff_rewind
= false;
1189 state
->paused
= false;
1190 if(audio_status() & AUDIO_STATUS_PLAY
)
1192 state
->id3
= audio_current_track();
1193 state
->nid3
= audio_next_track();
1200 /* We'll be updating due to restore initialized with true */
1201 skin_request_full_update(WPS
);
1202 /* add the WPS track event callbacks */
1203 add_event(PLAYBACK_EVENT_TRACK_CHANGE
, false, track_changed_callback
);
1204 add_event(PLAYBACK_EVENT_NEXTTRACKID3_AVAILABLE
, false, nextid3available_callback
);
1208 #ifdef IPOD_ACCESSORY_PROTOCOL
1209 bool is_wps_fading(void)
1211 return skin_get_global_state()->is_fading
;
1214 int wps_get_ff_rewind_count(void)
1216 return skin_get_global_state()->ff_rewind_count
;