1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Jonathan Gordon
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 ****************************************************************************/
24 #include "string-extra.h"
26 #include "appevents.h"
28 #include "root_menu.h"
36 #include "powermgmt.h"
58 #include "recording.h"
63 #include "playlist_viewer.h"
64 #include "menus/exported_menus.h"
74 int (*function
)(void* param
);
76 const struct menu_item_ex
*context_menu
;
78 static int next_screen
= GO_TO_ROOT
; /* holding info about the upcoming screen
79 * which is the current screen for the
80 * rest of the code after load_screen
82 static int last_screen
= GO_TO_ROOT
; /* unfortunatly needed so we can resume
83 or goto current track based on previous
87 static char current_track_path
[MAX_PATH
];
88 static void rootmenu_track_changed_callback(void* param
)
90 struct mp3entry
*id3
= (struct mp3entry
*)param
;
91 strlcpy(current_track_path
, id3
->path
, MAX_PATH
);
93 static int browser(void* param
)
97 struct tree_context
* tc
= tree_get_context();
99 int filter
= SHOW_SUPPORTED
;
100 char folder
[MAX_PATH
] = "/";
101 /* stuff needed to remember position in file browser */
102 static char last_folder
[MAX_PATH
] = "/";
103 /* and stuff for the database browser */
105 static int last_db_dirlevel
= 0, last_db_selection
= 0;
108 switch ((intptr_t)param
)
110 case GO_TO_FILEBROWSER
:
111 filter
= global_settings
.dirfilter
;
112 if (global_settings
.browse_current
&&
113 last_screen
== GO_TO_WPS
&&
114 current_track_path
[0])
116 strcpy(folder
, current_track_path
);
121 bool in_hotswap
= false;
122 /* handle entering an ejected drive */
124 for (i
= 0; i
< NUM_VOLUMES
; i
++)
126 char vol_string
[VOL_ENUM_POS
+ 8];
127 if (!storage_removable(i
))
129 /* VOL_NAMES contains a %d */
130 snprintf(vol_string
, sizeof(vol_string
), "/"VOL_NAMES
, i
);
131 /* test whether we would browse the external card */
132 if (!storage_present(i
) &&
133 (strstr(last_folder
, vol_string
)
134 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
138 { /* leave folder as "/" to avoid crash when trying
139 * to access an ejected drive */
147 strcpy(folder
, last_folder
);
151 case GO_TO_DBBROWSER
:
152 if (!tagcache_is_usable())
154 bool reinit_attempted
= false;
156 /* Now display progress until it's ready or the user exits */
157 while(!tagcache_is_usable())
159 struct tagcache_stat
*stat
= tagcache_get_stat();
161 /* Allow user to exit */
162 if (action_userabort(HZ
/2))
165 /* Maybe just needs to reboot due to delayed commit */
166 if (stat
->commit_delayed
)
168 splash(HZ
*2, ID2P(LANG_PLEASE_REBOOT
));
172 /* Check if ready status is known */
173 if (!stat
->readyvalid
)
175 splash(0, str(LANG_TAGCACHE_BUSY
));
179 /* Re-init if required */
180 if (!reinit_attempted
&& !stat
->ready
&&
181 stat
->processed_entries
== 0 && stat
->commit_step
== 0)
183 /* Prompt the user */
184 reinit_attempted
= true;
185 static const char *lines
[]={
186 ID2P(LANG_TAGCACHE_BUSY
), ID2P(LANG_TAGCACHE_FORCE_UPDATE
)};
187 static const struct text_message message
={lines
, 2};
188 if(gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_NO
)
192 screens
[i
].clear_display();
194 /* Start initialisation */
198 /* Display building progress */
199 static long talked_tick
= 0;
200 if(global_settings
.talk_menu
&&
202 || TIME_AFTER(current_tick
, talked_tick
+7*HZ
)))
204 talked_tick
= current_tick
;
205 if (stat
->commit_step
> 0)
207 talk_id(LANG_TAGCACHE_INIT
, false);
208 talk_number(stat
->commit_step
, true);
209 talk_id(VOICE_OF
, true);
210 talk_number(tagcache_get_max_commit_step(), true);
211 } else if(stat
->processed_entries
)
213 talk_number(stat
->processed_entries
, false);
214 talk_id(LANG_BUILDING_DATABASE
, true);
217 if (stat
->commit_step
> 0)
221 splashf(0, "[%d/%d] %s", stat
->commit_step
,
222 tagcache_get_max_commit_step(),
223 str(LANG_TAGCACHE_INIT
));
227 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT
),
229 tagcache_get_max_commit_step());
234 splashf(0, str(LANG_BUILDING_DATABASE
),
235 stat
->processed_entries
);
239 if (!tagcache_is_usable())
240 return GO_TO_PREVIOUS
;
242 tc
->dirlevel
= last_db_dirlevel
;
243 tc
->selected_item
= last_db_selection
;
246 case GO_TO_BROWSEPLUGINS
:
247 filter
= SHOW_PLUGINS
;
248 strlcpy(folder
, PLUGIN_DIR
, MAX_PATH
);
251 ret_val
= rockbox_browse(folder
, filter
);
252 switch ((intptr_t)param
)
254 case GO_TO_FILEBROWSER
:
255 get_current_file(last_folder
, MAX_PATH
);
258 case GO_TO_DBBROWSER
:
259 last_db_dirlevel
= tc
->dirlevel
;
260 last_db_selection
= tc
->selected_item
;
267 static int menu(void* param
)
270 return do_menu(NULL
, 0, NULL
, false);
273 #ifdef HAVE_RECORDING
274 static int recscrn(void* param
)
277 recording_screen(false);
281 static int wpsscrn(void* param
)
283 int ret_val
= GO_TO_PREVIOUS
;
288 ret_val
= gui_wps_show();
290 else if ( global_status
.resume_index
!= -1 )
292 DEBUGF("Resume index %X offset %lX\n",
293 global_status
.resume_index
,
294 (unsigned long)global_status
.resume_offset
);
295 if (playlist_resume() != -1)
297 playlist_start(global_status
.resume_index
,
298 global_status
.resume_offset
);
299 ret_val
= gui_wps_show();
304 splash(HZ
*2, ID2P(LANG_NOTHING_TO_RESUME
));
309 static int radio(void* param
)
317 static int playlist_view(void * param
)
320 switch (playlist_viewer())
322 case PLAYLIST_VIEWER_MAINMENU
:
323 case PLAYLIST_VIEWER_USB
:
325 case PLAYLIST_VIEWER_OK
:
326 return GO_TO_PREVIOUS
;
328 return GO_TO_PREVIOUS
;
331 static int load_bmarks(void* param
)
334 if(bookmark_mrb_load())
336 return GO_TO_PREVIOUS
;
338 static int plugins_menu(void* param
)
341 MENUITEM_STRINGLIST(plugins_menu_items
, ID2P(LANG_PLUGINS
), NULL
,
342 ID2P(LANG_PLUGIN_GAMES
),
343 ID2P(LANG_PLUGIN_APPS
), ID2P(LANG_PLUGIN_DEMOS
));
345 int retval
= GO_TO_PREVIOUS
;
346 int selection
= 0, current
= 0;
347 while (retval
== GO_TO_PREVIOUS
)
349 selection
= do_menu(&plugins_menu_items
, ¤t
, NULL
, false);
353 folder
= PLUGIN_GAMES_DIR
;
356 folder
= PLUGIN_APPS_DIR
;
359 folder
= PLUGIN_DEMOS_DIR
;
364 retval
= rockbox_browse(folder
, SHOW_PLUGINS
);
368 int time_screen(void* ignored
);
370 /* These are all static const'd from apps/menus/ *.c
371 so little hack so we can use them */
372 extern struct menu_item_ex
378 recording_settings_menu
,
380 bookmark_settings_menu
,
382 static const struct root_items items
[] = {
383 [GO_TO_FILEBROWSER
] = { browser
, (void*)GO_TO_FILEBROWSER
, &file_menu
},
385 [GO_TO_DBBROWSER
] = { browser
, (void*)GO_TO_DBBROWSER
, &tagcache_menu
},
387 [GO_TO_WPS
] = { wpsscrn
, NULL
, &playback_settings
},
388 [GO_TO_MAINMENU
] = { menu
, NULL
, &manage_settings
},
390 #ifdef HAVE_RECORDING
391 [GO_TO_RECSCREEN
] = { recscrn
, NULL
, &recording_settings_menu
},
395 [GO_TO_FM
] = { radio
, NULL
, &radio_settings_menu
},
398 [GO_TO_RECENTBMARKS
] = { load_bmarks
, NULL
, &bookmark_settings_menu
},
399 [GO_TO_BROWSEPLUGINS
] = { plugins_menu
, NULL
, NULL
},
400 [GO_TO_PLAYLIST_VIEWER
] = { playlist_view
, NULL
, NULL
},
403 static const int nb_items
= sizeof(items
)/sizeof(*items
);
405 static int item_callback(int action
, const struct menu_item_ex
*this_item
) ;
407 MENUITEM_RETURNVALUE(file_browser
, ID2P(LANG_DIR_BROWSER
), GO_TO_FILEBROWSER
,
408 NULL
, Icon_file_view_menu
);
410 MENUITEM_RETURNVALUE(db_browser
, ID2P(LANG_TAGCACHE
), GO_TO_DBBROWSER
,
413 MENUITEM_RETURNVALUE(rocks_browser
, ID2P(LANG_PLUGINS
), GO_TO_BROWSEPLUGINS
,
415 static char *get_wps_item_name(int selected_item
, void * data
, char *buffer
)
417 (void)selected_item
; (void)data
; (void)buffer
;
419 return ID2P(LANG_NOW_PLAYING
);
420 return ID2P(LANG_RESUME_PLAYBACK
);
422 MENUITEM_RETURNVALUE_DYNTEXT(wps_item
, GO_TO_WPS
, NULL
, get_wps_item_name
,
423 NULL
, NULL
, Icon_Playback_menu
);
424 #ifdef HAVE_RECORDING
425 MENUITEM_RETURNVALUE(rec
, ID2P(LANG_RECORDING
), GO_TO_RECSCREEN
,
426 NULL
, Icon_Recording
);
429 MENUITEM_RETURNVALUE(fm
, ID2P(LANG_FM_RADIO
), GO_TO_FM
,
430 item_callback
, Icon_Radio_screen
);
432 MENUITEM_RETURNVALUE(menu_
, ID2P(LANG_SETTINGS
), GO_TO_MAINMENU
,
433 NULL
, Icon_Submenu_Entered
);
434 MENUITEM_RETURNVALUE(bookmarks
, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS
),
435 GO_TO_RECENTBMARKS
, item_callback
,
437 #ifdef HAVE_LCD_CHARCELLS
438 static int do_shutdown(void)
441 if (charger_inserted())
448 MENUITEM_FUNCTION(do_shutdown_item
, 0, ID2P(LANG_SHUTDOWN
),
449 do_shutdown
, NULL
, NULL
, Icon_NOICON
);
451 MAKE_MENU(root_menu_
, ID2P(LANG_ROCKBOX_TITLE
),
452 item_callback
, Icon_Rockbox
,
453 &bookmarks
, &file_browser
,
458 #ifdef HAVE_RECORDING
464 &playlist_options
, &rocks_browser
, &info_menu
466 #ifdef HAVE_LCD_CHARCELLS
471 static int item_callback(int action
, const struct menu_item_ex
*this_item
)
475 case ACTION_TREE_STOP
:
476 return ACTION_REDRAW
;
477 case ACTION_REQUEST_MENUITEM
:
479 if (this_item
== &fm
)
481 if (radio_hardware_present() == 0)
482 return ACTION_EXIT_MENUITEM
;
486 if (this_item
== &bookmarks
)
488 if (global_settings
.usemrb
== 0)
489 return ACTION_EXIT_MENUITEM
;
495 static int get_selection(int last_screen
)
498 int len
= ARRAYLEN(root_menu__
);
499 for(i
=0; i
< len
; i
++)
501 if (((root_menu__
[i
]->flags
&MENU_TYPE_MASK
) == MT_RETURN_VALUE
) &&
502 (root_menu__
[i
]->value
== last_screen
))
510 static inline int load_screen(int screen
)
512 /* set the global_status.last_screen before entering,
513 if we dont we will always return to the wrong screen on boot */
514 int old_previous
= last_screen
;
516 if (screen
<= GO_TO_ROOT
)
518 if (screen
== old_previous
)
519 old_previous
= GO_TO_ROOT
;
520 global_status
.last_screen
= (char)screen
;
522 ret_val
= items
[screen
].function(items
[screen
].param
);
523 last_screen
= screen
;
524 if (ret_val
== GO_TO_PREVIOUS
)
525 last_screen
= old_previous
;
528 static int load_context_screen(int selection
)
530 const struct menu_item_ex
*context_menu
= NULL
;
531 if ((root_menu__
[selection
]->flags
&MENU_TYPE_MASK
) == MT_RETURN_VALUE
)
533 int item
= root_menu__
[selection
]->value
;
534 context_menu
= items
[item
].context_menu
;
537 else if (root_menu__
[selection
] == &info_menu
)
539 context_menu
= &system_menu
;
543 return do_menu(context_menu
, NULL
, NULL
, false);
545 return GO_TO_PREVIOUS
;
548 static int previous_music
= GO_TO_WPS
;
550 void previous_music_is_wps(void)
552 previous_music
= GO_TO_WPS
;
555 int current_screen(void)
562 int previous_browser
= GO_TO_FILEBROWSER
;
565 if (global_settings
.start_in_screen
== 0)
566 next_screen
= (int)global_status
.last_screen
;
567 else next_screen
= global_settings
.start_in_screen
- 2;
568 add_event(PLAYBACK_EVENT_TRACK_CHANGE
, false, rootmenu_track_changed_callback
);
569 #ifdef HAVE_RTC_ALARM
570 if ( rtc_check_alarm_started(true) )
572 rtc_enable_alarm(false);
573 next_screen
= GO_TO_WPS
;
575 if (global_settings
.alarm_wake_up_screen
== ALARM_START_FM
)
576 next_screen
= GO_TO_FM
;
578 #ifdef HAVE_RECORDING
579 if (global_settings
.alarm_wake_up_screen
== ALARM_START_REC
)
581 recording_start_automatic
= true;
582 next_screen
= GO_TO_RECSCREEN
;
586 #endif /* HAVE_RTC_ALARM */
588 #ifdef HAVE_HEADPHONE_DETECTION
589 if (next_screen
== GO_TO_WPS
&&
590 (global_settings
.unplug_autoresume
&& !headphones_inserted() ))
591 next_screen
= GO_TO_ROOT
;
598 case MENU_ATTACHED_USB
:
599 case MENU_SELECTED_EXIT
:
602 if (last_screen
!= GO_TO_ROOT
)
603 selected
= get_selection(last_screen
);
604 next_screen
= do_menu(&root_menu_
, &selected
, NULL
, false);
605 if (next_screen
!= GO_TO_PREVIOUS
)
606 last_screen
= GO_TO_ROOT
;
610 next_screen
= last_screen
;
613 case GO_TO_PREVIOUS_BROWSER
:
614 next_screen
= previous_browser
;
617 case GO_TO_PREVIOUS_MUSIC
:
618 next_screen
= previous_music
;
620 case GO_TO_ROOTITEM_CONTEXT
:
621 next_screen
= load_context_screen(selected
);
624 if (next_screen
== GO_TO_FILEBROWSER
626 || next_screen
== GO_TO_DBBROWSER
629 previous_browser
= next_screen
;
630 if (next_screen
== GO_TO_WPS
632 || next_screen
== GO_TO_FM
635 previous_music
= next_screen
;
636 next_screen
= load_screen(next_screen
);