mpegplayer:
[kugel-rb.git] / apps / root_menu.c
blob01ba3a072d593e2645cf104ee70aa897cecf269e
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
21 #include <stdio.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include <stdbool.h>
25 #include "config.h"
26 #include "appevents.h"
27 #include "menu.h"
28 #include "root_menu.h"
29 #include "lang.h"
30 #include "settings.h"
31 #include "screens.h"
32 #include "kernel.h"
33 #include "debug.h"
34 #include "misc.h"
35 #include "rolo.h"
36 #include "powermgmt.h"
37 #include "power.h"
38 #include "talk.h"
39 #include "audio.h"
41 #ifdef HAVE_HOTSWAP
42 #include "storage.h"
43 #include "hotswap.h"
44 #include "dir.h"
45 #endif
46 /* gui api */
47 #include "list.h"
48 #include "splash.h"
49 #include "action.h"
50 #include "yesno.h"
51 #include "viewport.h"
53 #include "tree.h"
54 #if CONFIG_TUNER
55 #include "radio.h"
56 #endif
57 #ifdef HAVE_RECORDING
58 #include "recording.h"
59 #endif
60 #include "wps.h"
61 #include "bookmark.h"
62 #include "playlist.h"
63 #include "menus/exported_menus.h"
64 #ifdef HAVE_RTC_ALARM
65 #include "rtc.h"
66 #endif
67 #ifdef HAVE_TAGCACHE
68 #include "tagcache.h"
69 #endif
70 #include "language.h"
72 struct root_items {
73 int (*function)(void* param);
74 void* param;
75 const struct menu_item_ex *context_menu;
77 static int next_screen = GO_TO_ROOT; /* holding info about the upcoming screen
78 * which is the current screen for the
79 * rest of the code after load_screen
80 * is called */
81 static int last_screen = GO_TO_ROOT; /* unfortunatly needed so we can resume
82 or goto current track based on previous
83 screen */
86 static char current_track_path[MAX_PATH];
87 static void rootmenu_track_changed_callback(void* param)
89 struct mp3entry *id3 = (struct mp3entry *)param;
90 strlcpy(current_track_path, id3->path, MAX_PATH);
92 static int browser(void* param)
94 int ret_val;
95 #ifdef HAVE_TAGCACHE
96 struct tree_context* tc = tree_get_context();
97 #endif
98 int filter = SHOW_SUPPORTED;
99 char folder[MAX_PATH] = "/";
100 /* stuff needed to remember position in file browser */
101 static char last_folder[MAX_PATH] = "/";
102 /* and stuff for the database browser */
103 #ifdef HAVE_TAGCACHE
104 static int last_db_dirlevel = 0, last_db_selection = 0;
105 #endif
107 switch ((intptr_t)param)
109 case GO_TO_FILEBROWSER:
110 filter = global_settings.dirfilter;
111 if (global_settings.browse_current &&
112 last_screen == GO_TO_WPS &&
113 current_track_path[0])
115 strcpy(folder, current_track_path);
117 else
119 #ifdef HAVE_HOTSWAP
120 bool in_hotswap = false;
121 /* handle entering an ejected drive */
122 int i;
123 for (i = 0; i < NUM_VOLUMES; i++)
125 char vol_string[VOL_ENUM_POS + 8];
126 if (!storage_removable(i))
127 continue;
128 /* VOL_NAMES contains a %d */
129 snprintf(vol_string, sizeof(vol_string), "/"VOL_NAMES, i);
130 /* test whether we would browse the external card */
131 if (!storage_present(i) &&
132 (strstr(last_folder, vol_string)
133 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
134 || (i == 0)
135 #endif
137 { /* leave folder as "/" to avoid crash when trying
138 * to access an ejected drive */
139 strcpy(folder, "/");
140 in_hotswap = true;
141 break;
144 if (!in_hotswap)
145 #endif
146 strcpy(folder, last_folder);
148 break;
149 #ifdef HAVE_TAGCACHE
150 case GO_TO_DBBROWSER:
151 if (!tagcache_is_usable())
153 bool reinit_attempted = false;
155 /* Now display progress until it's ready or the user exits */
156 while(!tagcache_is_usable())
158 struct tagcache_stat *stat = tagcache_get_stat();
160 /* Allow user to exit */
161 if (action_userabort(HZ/2))
162 break;
164 /* Maybe just needs to reboot due to delayed commit */
165 if (stat->commit_delayed)
167 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
168 break;
171 /* Check if ready status is known */
172 if (!stat->readyvalid)
174 splash(0, str(LANG_TAGCACHE_BUSY));
175 continue;
178 /* Re-init if required */
179 if (!reinit_attempted && !stat->ready &&
180 stat->processed_entries == 0 && stat->commit_step == 0)
182 /* Prompt the user */
183 reinit_attempted = true;
184 static const char *lines[]={
185 ID2P(LANG_TAGCACHE_BUSY), ID2P(LANG_TAGCACHE_FORCE_UPDATE)};
186 static const struct text_message message={lines, 2};
187 if(gui_syncyesno_run(&message, NULL, NULL) == YESNO_NO)
188 break;
189 int i;
190 FOR_NB_SCREENS(i)
191 screens[i].clear_display();
193 /* Start initialisation */
194 tagcache_rebuild();
197 /* Display building progress */
198 static long talked_tick = 0;
199 if(global_settings.talk_menu &&
200 (talked_tick == 0
201 || TIME_AFTER(current_tick, talked_tick+7*HZ)))
203 talked_tick = current_tick;
204 if (stat->commit_step > 0)
206 talk_id(LANG_TAGCACHE_INIT, false);
207 talk_number(stat->commit_step, true);
208 talk_id(VOICE_OF, true);
209 talk_number(tagcache_get_max_commit_step(), true);
210 } else if(stat->processed_entries)
212 talk_number(stat->processed_entries, false);
213 talk_id(LANG_BUILDING_DATABASE, true);
216 if (stat->commit_step > 0)
218 if (lang_is_rtl())
220 splashf(0, "[%d/%d] %s", stat->commit_step,
221 tagcache_get_max_commit_step(),
222 str(LANG_TAGCACHE_INIT));
224 else
226 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT),
227 stat->commit_step,
228 tagcache_get_max_commit_step());
231 else
233 splashf(0, str(LANG_BUILDING_DATABASE),
234 stat->processed_entries);
238 if (!tagcache_is_usable())
239 return GO_TO_PREVIOUS;
240 filter = SHOW_ID3DB;
241 tc->dirlevel = last_db_dirlevel;
242 tc->selected_item = last_db_selection;
243 break;
244 #endif
245 case GO_TO_BROWSEPLUGINS:
246 filter = SHOW_PLUGINS;
247 strlcpy(folder, PLUGIN_DIR, MAX_PATH);
248 break;
250 ret_val = rockbox_browse(folder, filter);
251 switch ((intptr_t)param)
253 case GO_TO_FILEBROWSER:
254 get_current_file(last_folder, MAX_PATH);
255 break;
256 #ifdef HAVE_TAGCACHE
257 case GO_TO_DBBROWSER:
258 last_db_dirlevel = tc->dirlevel;
259 last_db_selection = tc->selected_item;
260 break;
261 #endif
263 return ret_val;
266 static int menu(void* param)
268 (void)param;
269 return do_menu(NULL, 0, NULL, false);
272 #ifdef HAVE_RECORDING
273 static int recscrn(void* param)
275 (void)param;
276 recording_screen(false);
277 return GO_TO_ROOT;
279 #endif
280 static int wpsscrn(void* param)
282 int ret_val = GO_TO_PREVIOUS;
283 (void)param;
284 if (audio_status())
286 talk_shutup();
287 ret_val = gui_wps_show();
289 else if ( global_status.resume_index != -1 )
291 DEBUGF("Resume index %X offset %lX\n",
292 global_status.resume_index,
293 (unsigned long)global_status.resume_offset);
294 if (playlist_resume() != -1)
296 playlist_start(global_status.resume_index,
297 global_status.resume_offset);
298 ret_val = gui_wps_show();
301 else
303 splash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
305 return ret_val;
307 #if CONFIG_TUNER
308 static int radio(void* param)
310 (void)param;
311 radio_screen();
312 return GO_TO_ROOT;
314 #endif
316 static int load_bmarks(void* param)
318 (void)param;
319 if(bookmark_mrb_load())
320 return GO_TO_WPS;
321 return GO_TO_PREVIOUS;
323 static int plugins_menu(void* param)
325 (void)param;
326 MENUITEM_STRINGLIST(plugins_menu_items, ID2P(LANG_PLUGINS), NULL,
327 ID2P(LANG_PLUGIN_GAMES),
328 ID2P(LANG_PLUGIN_APPS), ID2P(LANG_PLUGIN_DEMOS));
329 char *folder;
330 int retval = GO_TO_PREVIOUS;
331 int selection = 0, current = 0;
332 while (retval == GO_TO_PREVIOUS)
334 selection = do_menu(&plugins_menu_items, &current, NULL, false);
335 switch (selection)
337 case 0:
338 folder = PLUGIN_GAMES_DIR;
339 break;
340 case 1:
341 folder = PLUGIN_APPS_DIR;
342 break;
343 case 2:
344 folder = PLUGIN_DEMOS_DIR;
345 break;
346 default:
347 return selection;
349 retval = rockbox_browse(folder, SHOW_PLUGINS);
351 return retval;
353 int time_screen(void* ignored);
355 /* These are all static const'd from apps/menus/ *.c
356 so little hack so we can use them */
357 extern struct menu_item_ex
358 file_menu,
359 #ifdef HAVE_TAGCACHE
360 tagcache_menu,
361 #endif
362 manage_settings,
363 recording_settings_menu,
364 radio_settings_menu,
365 bookmark_settings_menu,
366 system_menu;
367 static const struct root_items items[] = {
368 [GO_TO_FILEBROWSER] = { browser, (void*)GO_TO_FILEBROWSER, &file_menu},
369 #ifdef HAVE_TAGCACHE
370 [GO_TO_DBBROWSER] = { browser, (void*)GO_TO_DBBROWSER, &tagcache_menu },
371 #endif
372 [GO_TO_WPS] = { wpsscrn, NULL, &playback_settings },
373 [GO_TO_MAINMENU] = { menu, NULL, &manage_settings },
375 #ifdef HAVE_RECORDING
376 [GO_TO_RECSCREEN] = { recscrn, NULL, &recording_settings_menu },
377 #endif
379 #if CONFIG_TUNER
380 [GO_TO_FM] = { radio, NULL, &radio_settings_menu },
381 #endif
383 [GO_TO_RECENTBMARKS] = { load_bmarks, NULL, &bookmark_settings_menu },
384 [GO_TO_BROWSEPLUGINS] = { plugins_menu, NULL, NULL },
387 static const int nb_items = sizeof(items)/sizeof(*items);
389 static int item_callback(int action, const struct menu_item_ex *this_item) ;
391 MENUITEM_RETURNVALUE(file_browser, ID2P(LANG_DIR_BROWSER), GO_TO_FILEBROWSER,
392 NULL, Icon_file_view_menu);
393 #ifdef HAVE_TAGCACHE
394 MENUITEM_RETURNVALUE(db_browser, ID2P(LANG_TAGCACHE), GO_TO_DBBROWSER,
395 NULL, Icon_Audio);
396 #endif
397 MENUITEM_RETURNVALUE(rocks_browser, ID2P(LANG_PLUGINS), GO_TO_BROWSEPLUGINS,
398 NULL, Icon_Plugin);
399 static char *get_wps_item_name(int selected_item, void * data, char *buffer)
401 (void)selected_item; (void)data; (void)buffer;
402 if (audio_status())
403 return ID2P(LANG_NOW_PLAYING);
404 return ID2P(LANG_RESUME_PLAYBACK);
406 MENUITEM_RETURNVALUE_DYNTEXT(wps_item, GO_TO_WPS, NULL, get_wps_item_name,
407 NULL, NULL, Icon_Playback_menu);
408 #ifdef HAVE_RECORDING
409 MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING), GO_TO_RECSCREEN,
410 NULL, Icon_Recording);
411 #endif
412 #if CONFIG_TUNER
413 MENUITEM_RETURNVALUE(fm, ID2P(LANG_FM_RADIO), GO_TO_FM,
414 item_callback, Icon_Radio_screen);
415 #endif
416 MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS), GO_TO_MAINMENU,
417 NULL, Icon_Submenu_Entered);
418 MENUITEM_RETURNVALUE(bookmarks, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS),
419 GO_TO_RECENTBMARKS, item_callback,
420 Icon_Bookmark);
421 #ifdef HAVE_LCD_CHARCELLS
422 static int do_shutdown(void)
424 #if CONFIG_CHARGING
425 if (charger_inserted())
426 charging_splash();
427 else
428 #endif
429 sys_poweroff();
430 return 0;
432 MENUITEM_FUNCTION(do_shutdown_item, 0, ID2P(LANG_SHUTDOWN),
433 do_shutdown, NULL, NULL, Icon_NOICON);
434 #endif
435 MAKE_MENU(root_menu_, ID2P(LANG_ROCKBOX_TITLE),
436 item_callback, Icon_Rockbox,
437 &bookmarks, &file_browser,
438 #ifdef HAVE_TAGCACHE
439 &db_browser,
440 #endif
441 &wps_item, &menu_,
442 #ifdef HAVE_RECORDING
443 &rec,
444 #endif
445 #if CONFIG_TUNER
446 &fm,
447 #endif
448 &playlist_options, &rocks_browser, &info_menu
450 #ifdef HAVE_LCD_CHARCELLS
451 ,&do_shutdown_item
452 #endif
455 static int item_callback(int action, const struct menu_item_ex *this_item)
457 switch (action)
459 case ACTION_TREE_STOP:
460 return ACTION_REDRAW;
461 case ACTION_REQUEST_MENUITEM:
462 #if CONFIG_TUNER
463 if (this_item == &fm)
465 if (radio_hardware_present() == 0)
466 return ACTION_EXIT_MENUITEM;
468 else
469 #endif
470 if (this_item == &bookmarks)
472 if (global_settings.usemrb == 0)
473 return ACTION_EXIT_MENUITEM;
475 break;
477 return action;
479 static int get_selection(int last_screen)
481 int i;
482 int len = ARRAYLEN(root_menu__);
483 for(i=0; i < len; i++)
485 if (((root_menu__[i]->flags&MENU_TYPE_MASK) == MT_RETURN_VALUE) &&
486 (root_menu__[i]->value == last_screen))
488 return i;
491 return 0;
494 static inline int load_screen(int screen)
496 /* set the global_status.last_screen before entering,
497 if we dont we will always return to the wrong screen on boot */
498 int old_previous = last_screen;
499 int ret_val;
500 if (screen <= GO_TO_ROOT)
501 return screen;
502 if (screen == old_previous)
503 old_previous = GO_TO_ROOT;
504 global_status.last_screen = (char)screen;
505 status_save();
506 ret_val = items[screen].function(items[screen].param);
507 last_screen = screen;
508 if (ret_val == GO_TO_PREVIOUS)
509 last_screen = old_previous;
510 return ret_val;
512 static int load_context_screen(int selection)
514 const struct menu_item_ex *context_menu = NULL;
515 if ((root_menu__[selection]->flags&MENU_TYPE_MASK) == MT_RETURN_VALUE)
517 int item = root_menu__[selection]->value;
518 context_menu = items[item].context_menu;
520 /* special cases */
521 else if (root_menu__[selection] == &info_menu)
523 context_menu = &system_menu;
526 if (context_menu)
527 return do_menu(context_menu, NULL, NULL, false);
528 else
529 return GO_TO_PREVIOUS;
532 static int previous_music = GO_TO_WPS;
534 void previous_music_is_wps(void)
536 previous_music = GO_TO_WPS;
539 int current_screen(void)
541 return next_screen;
544 void root_menu(void)
546 int previous_browser = GO_TO_FILEBROWSER;
547 int selected = 0;
549 if (global_settings.start_in_screen == 0)
550 next_screen = (int)global_status.last_screen;
551 else next_screen = global_settings.start_in_screen - 2;
552 add_event(PLAYBACK_EVENT_TRACK_CHANGE, false, rootmenu_track_changed_callback);
553 #ifdef HAVE_RTC_ALARM
554 if ( rtc_check_alarm_started(true) )
556 rtc_enable_alarm(false);
557 next_screen = GO_TO_WPS;
558 #if CONFIG_TUNER
559 if (global_settings.alarm_wake_up_screen == ALARM_START_FM)
560 next_screen = GO_TO_FM;
561 #endif
562 #ifdef HAVE_RECORDING
563 if (global_settings.alarm_wake_up_screen == ALARM_START_REC)
565 recording_start_automatic = true;
566 next_screen = GO_TO_RECSCREEN;
568 #endif
570 #endif /* HAVE_RTC_ALARM */
572 #ifdef HAVE_HEADPHONE_DETECTION
573 if (next_screen == GO_TO_WPS &&
574 (global_settings.unplug_autoresume && !headphones_inserted() ))
575 next_screen = GO_TO_ROOT;
576 #endif
578 while (true)
580 switch (next_screen)
582 case MENU_ATTACHED_USB:
583 case MENU_SELECTED_EXIT:
584 /* fall through */
585 case GO_TO_ROOT:
586 if (last_screen != GO_TO_ROOT)
587 selected = get_selection(last_screen);
588 next_screen = do_menu(&root_menu_, &selected, NULL, false);
589 if (next_screen != GO_TO_PREVIOUS)
590 last_screen = GO_TO_ROOT;
591 break;
593 case GO_TO_PREVIOUS:
594 next_screen = last_screen;
595 break;
597 case GO_TO_PREVIOUS_BROWSER:
598 next_screen = previous_browser;
599 break;
601 case GO_TO_PREVIOUS_MUSIC:
602 next_screen = previous_music;
603 break;
604 case GO_TO_ROOTITEM_CONTEXT:
605 next_screen = load_context_screen(selected);
606 break;
607 default:
608 if (next_screen == GO_TO_FILEBROWSER
609 #ifdef HAVE_TAGCACHE
610 || next_screen == GO_TO_DBBROWSER
611 #endif
613 previous_browser = next_screen;
614 if (next_screen == GO_TO_WPS
615 #if CONFIG_TUNER
616 || next_screen == GO_TO_FM
617 #endif
619 previous_music = next_screen;
620 next_screen = load_screen(next_screen);
621 break;
622 } /* switch() */