Fix reds. No need for #ifdef to save buttons anymore.
[maemo-rb.git] / apps / root_menu.c
blob747ba76c24ff11d18468dd70d2f144f360ab93ca
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 <stdlib.h>
23 #include <stdbool.h>
24 #include "string-extra.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"
40 #include "shortcuts.h"
42 #ifdef HAVE_HOTSWAP
43 #include "storage.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 "playlist_viewer.h"
64 #include "playlist_catalog.h"
65 #include "menus/exported_menus.h"
66 #ifdef HAVE_RTC_ALARM
67 #include "rtc.h"
68 #endif
69 #ifdef HAVE_TAGCACHE
70 #include "tagcache.h"
71 #endif
72 #include "language.h"
73 #include "plugin.h"
75 struct root_items {
76 int (*function)(void* param);
77 void* param;
78 const struct menu_item_ex *context_menu;
80 static int next_screen = GO_TO_ROOT; /* holding info about the upcoming screen
81 * which is the current screen for the
82 * rest of the code after load_screen
83 * is called */
84 static int last_screen = GO_TO_ROOT; /* unfortunatly needed so we can resume
85 or goto current track based on previous
86 screen */
89 static char current_track_path[MAX_PATH];
90 static void rootmenu_track_changed_callback(void* param)
92 struct mp3entry *id3 = (struct mp3entry *)param;
93 strlcpy(current_track_path, id3->path, MAX_PATH);
95 static int browser(void* param)
97 int ret_val;
98 #ifdef HAVE_TAGCACHE
99 struct tree_context* tc = tree_get_context();
100 #endif
101 struct browse_context browse;
102 int filter = SHOW_SUPPORTED;
103 char folder[MAX_PATH] = "/";
104 /* stuff needed to remember position in file browser */
105 static char last_folder[MAX_PATH] = "/";
106 /* and stuff for the database browser */
107 #ifdef HAVE_TAGCACHE
108 static int last_db_dirlevel = 0, last_db_selection = 0;
109 #endif
111 switch ((intptr_t)param)
113 case GO_TO_FILEBROWSER:
114 filter = global_settings.dirfilter;
115 if (global_settings.browse_current &&
116 last_screen == GO_TO_WPS &&
117 current_track_path[0])
119 strcpy(folder, current_track_path);
121 else if (!strcmp(last_folder, "/"))
123 strcpy(folder, global_settings.start_directory);
125 else
127 #ifdef HAVE_HOTSWAP
128 bool in_hotswap = false;
129 /* handle entering an ejected drive */
130 int i;
131 for (i = 0; i < NUM_VOLUMES; i++)
133 char vol_string[VOL_ENUM_POS + 8];
134 if (!storage_removable(i))
135 continue;
136 /* VOL_NAMES contains a %d */
137 snprintf(vol_string, sizeof(vol_string), "/"VOL_NAMES, i);
138 /* test whether we would browse the external card */
139 if (!storage_present(i) &&
140 (strstr(last_folder, vol_string)
141 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
142 || (i == 0)
143 #endif
145 { /* leave folder as "/" to avoid crash when trying
146 * to access an ejected drive */
147 strcpy(folder, "/");
148 in_hotswap = true;
149 break;
152 if (!in_hotswap)
153 #endif
154 strcpy(folder, last_folder);
156 push_current_activity(ACTIVITY_FILEBROWSER);
157 break;
158 #ifdef HAVE_TAGCACHE
159 case GO_TO_DBBROWSER:
160 if (!tagcache_is_usable())
162 bool reinit_attempted = false;
164 /* Now display progress until it's ready or the user exits */
165 while(!tagcache_is_usable())
167 struct tagcache_stat *stat = tagcache_get_stat();
169 /* Allow user to exit */
170 if (action_userabort(HZ/2))
171 break;
173 /* Maybe just needs to reboot due to delayed commit */
174 if (stat->commit_delayed)
176 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
177 break;
180 /* Check if ready status is known */
181 if (!stat->readyvalid)
183 splash(0, str(LANG_TAGCACHE_BUSY));
184 continue;
187 /* Re-init if required */
188 if (!reinit_attempted && !stat->ready &&
189 stat->processed_entries == 0 && stat->commit_step == 0)
191 /* Prompt the user */
192 reinit_attempted = true;
193 static const char *lines[]={
194 ID2P(LANG_TAGCACHE_BUSY), ID2P(LANG_TAGCACHE_FORCE_UPDATE)};
195 static const struct text_message message={lines, 2};
196 if(gui_syncyesno_run(&message, NULL, NULL) == YESNO_NO)
197 break;
198 FOR_NB_SCREENS(i)
199 screens[i].clear_display();
201 /* Start initialisation */
202 tagcache_rebuild();
205 /* Display building progress */
206 static long talked_tick = 0;
207 if(global_settings.talk_menu &&
208 (talked_tick == 0
209 || TIME_AFTER(current_tick, talked_tick+7*HZ)))
211 talked_tick = current_tick;
212 if (stat->commit_step > 0)
214 talk_id(LANG_TAGCACHE_INIT, false);
215 talk_number(stat->commit_step, true);
216 talk_id(VOICE_OF, true);
217 talk_number(tagcache_get_max_commit_step(), true);
218 } else if(stat->processed_entries)
220 talk_number(stat->processed_entries, false);
221 talk_id(LANG_BUILDING_DATABASE, true);
224 if (stat->commit_step > 0)
226 if (lang_is_rtl())
228 splashf(0, "[%d/%d] %s", stat->commit_step,
229 tagcache_get_max_commit_step(),
230 str(LANG_TAGCACHE_INIT));
232 else
234 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT),
235 stat->commit_step,
236 tagcache_get_max_commit_step());
239 else
241 splashf(0, str(LANG_BUILDING_DATABASE),
242 stat->processed_entries);
246 if (!tagcache_is_usable())
247 return GO_TO_PREVIOUS;
248 filter = SHOW_ID3DB;
249 tc->dirlevel = last_db_dirlevel;
250 tc->selected_item = last_db_selection;
251 push_current_activity(ACTIVITY_DATABASEBROWSER);
252 break;
253 #endif
256 browse_context_init(&browse, filter, 0, NULL, NOICON, folder, NULL);
257 ret_val = rockbox_browse(&browse);
258 pop_current_activity();
259 switch ((intptr_t)param)
261 case GO_TO_FILEBROWSER:
262 if (!get_current_file(last_folder, MAX_PATH) ||
263 (!strchr(&last_folder[1], '/') &&
264 global_settings.start_directory[1] != '\0'))
266 last_folder[0] = '/';
267 last_folder[1] = '\0';
269 break;
270 #ifdef HAVE_TAGCACHE
271 case GO_TO_DBBROWSER:
272 last_db_dirlevel = tc->dirlevel;
273 last_db_selection = tc->selected_item;
274 break;
275 #endif
277 return ret_val;
280 #ifdef HAVE_RECORDING
281 static int recscrn(void* param)
283 (void)param;
284 recording_screen(false);
285 return GO_TO_ROOT;
287 #endif
288 static int wpsscrn(void* param)
290 int ret_val = GO_TO_PREVIOUS;
291 (void)param;
292 push_current_activity(ACTIVITY_WPS);
293 if (audio_status())
295 talk_shutup();
296 ret_val = gui_wps_show();
298 else if ( global_status.resume_index != -1 )
300 DEBUGF("Resume index %X offset %lX\n",
301 global_status.resume_index,
302 (unsigned long)global_status.resume_offset);
303 if (playlist_resume() != -1)
305 playlist_start(global_status.resume_index,
306 global_status.resume_offset);
307 ret_val = gui_wps_show();
310 else
312 splash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
314 pop_current_activity();
315 return ret_val;
317 #if CONFIG_TUNER
318 static int radio(void* param)
320 (void)param;
321 radio_screen();
322 return GO_TO_ROOT;
324 #endif
326 static int miscscrn(void * param)
328 const struct menu_item_ex *menu = (const struct menu_item_ex*)param;
329 int result = do_menu(menu, NULL, NULL, false);
330 switch (result)
332 case GO_TO_PLAYLIST_VIEWER:
333 case GO_TO_WPS:
334 return result;
335 default:
336 return GO_TO_ROOT;
341 static int playlist_view_catalog(void * param)
343 /* kludge untill catalog_view_playlists() returns something useful */
344 int old_playstatus = audio_status();
345 (void)param;
346 push_current_activity(ACTIVITY_PLAYLISTBROWSER);
347 catalog_view_playlists();
348 pop_current_activity();
349 if (!old_playstatus && audio_status())
350 return GO_TO_WPS;
351 return GO_TO_PREVIOUS;
354 static int playlist_view(void * param)
356 (void)param;
357 int val;
359 push_current_activity(ACTIVITY_PLAYLISTVIEWER);
360 val = playlist_viewer();
361 pop_current_activity();
362 switch (val)
364 case PLAYLIST_VIEWER_MAINMENU:
365 case PLAYLIST_VIEWER_USB:
366 return GO_TO_ROOT;
367 case PLAYLIST_VIEWER_OK:
368 return GO_TO_PREVIOUS;
370 return GO_TO_PREVIOUS;
373 static int load_bmarks(void* param)
375 (void)param;
376 if(bookmark_mrb_load())
377 return GO_TO_WPS;
378 return GO_TO_PREVIOUS;
381 /* These are all static const'd from apps/menus/ *.c
382 so little hack so we can use them */
383 extern struct menu_item_ex
384 file_menu,
385 #ifdef HAVE_TAGCACHE
386 tagcache_menu,
387 #endif
388 main_menu_,
389 manage_settings,
390 plugin_menu,
391 playlist_options,
392 info_menu,
393 system_menu;
394 static const struct root_items items[] = {
395 [GO_TO_FILEBROWSER] = { browser, (void*)GO_TO_FILEBROWSER, &file_menu},
396 #ifdef HAVE_TAGCACHE
397 [GO_TO_DBBROWSER] = { browser, (void*)GO_TO_DBBROWSER, &tagcache_menu },
398 #endif
399 [GO_TO_WPS] = { wpsscrn, NULL, &playback_settings },
400 [GO_TO_MAINMENU] = { miscscrn, (struct menu_item_ex*)&main_menu_,
401 &manage_settings },
403 #ifdef HAVE_RECORDING
404 [GO_TO_RECSCREEN] = { recscrn, NULL, &recording_settings_menu },
405 #endif
407 #if CONFIG_TUNER
408 [GO_TO_FM] = { radio, NULL, &radio_settings_menu },
409 #endif
411 [GO_TO_RECENTBMARKS] = { load_bmarks, NULL, &bookmark_settings_menu },
412 [GO_TO_BROWSEPLUGINS] = { miscscrn, &plugin_menu, NULL },
413 [GO_TO_PLAYLISTS_SCREEN] = { playlist_view_catalog, NULL,
414 &playlist_options },
415 [GO_TO_PLAYLIST_VIEWER] = { playlist_view, NULL, &playlist_options },
416 [GO_TO_SYSTEM_SCREEN] = { miscscrn, &info_menu, &system_menu },
417 [GO_TO_SHORTCUTMENU] = { do_shortcut_menu, NULL, NULL },
420 static const int nb_items = sizeof(items)/sizeof(*items);
422 static int item_callback(int action, const struct menu_item_ex *this_item) ;
424 MENUITEM_RETURNVALUE(shortcut_menu, ID2P(LANG_SHORTCUTS), GO_TO_SHORTCUTMENU,
425 NULL, Icon_Bookmark);
427 MENUITEM_RETURNVALUE(file_browser, ID2P(LANG_DIR_BROWSER), GO_TO_FILEBROWSER,
428 NULL, Icon_file_view_menu);
429 #ifdef HAVE_TAGCACHE
430 MENUITEM_RETURNVALUE(db_browser, ID2P(LANG_TAGCACHE), GO_TO_DBBROWSER,
431 NULL, Icon_Audio);
432 #endif
433 MENUITEM_RETURNVALUE(rocks_browser, ID2P(LANG_PLUGINS), GO_TO_BROWSEPLUGINS,
434 NULL, Icon_Plugin);
436 MENUITEM_RETURNVALUE(playlist_browser, ID2P(LANG_CATALOG), GO_TO_PLAYLIST_VIEWER,
437 NULL, Icon_Playlist);
439 static char *get_wps_item_name(int selected_item, void * data, char *buffer)
441 (void)selected_item; (void)data; (void)buffer;
442 if (audio_status())
443 return ID2P(LANG_NOW_PLAYING);
444 return ID2P(LANG_RESUME_PLAYBACK);
446 MENUITEM_RETURNVALUE_DYNTEXT(wps_item, GO_TO_WPS, NULL, get_wps_item_name,
447 NULL, NULL, Icon_Playback_menu);
448 #ifdef HAVE_RECORDING
449 MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING), GO_TO_RECSCREEN,
450 NULL, Icon_Recording);
451 #endif
452 #if CONFIG_TUNER
453 MENUITEM_RETURNVALUE(fm, ID2P(LANG_FM_RADIO), GO_TO_FM,
454 item_callback, Icon_Radio_screen);
455 #endif
456 MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS), GO_TO_MAINMENU,
457 NULL, Icon_Submenu_Entered);
458 MENUITEM_RETURNVALUE(bookmarks, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS),
459 GO_TO_RECENTBMARKS, item_callback,
460 Icon_Bookmark);
461 MENUITEM_RETURNVALUE(playlists, ID2P(LANG_CATALOG), GO_TO_PLAYLISTS_SCREEN,
462 NULL, Icon_Playlist);
463 MENUITEM_RETURNVALUE(system_menu_, ID2P(LANG_SYSTEM), GO_TO_SYSTEM_SCREEN,
464 NULL, Icon_System_menu);
466 #if CONFIG_KEYPAD == PLAYER_PAD
467 static int do_shutdown(void)
469 #if CONFIG_CHARGING
470 if (charger_inserted())
471 charging_splash();
472 else
473 #endif
474 sys_poweroff();
475 return 0;
477 MENUITEM_FUNCTION(do_shutdown_item, 0, ID2P(LANG_SHUTDOWN),
478 do_shutdown, NULL, NULL, Icon_NOICON);
479 #endif
480 MAKE_MENU(root_menu_, ID2P(LANG_ROCKBOX_TITLE),
481 item_callback, Icon_Rockbox,
482 &bookmarks, &file_browser,
483 #ifdef HAVE_TAGCACHE
484 &db_browser,
485 #endif
486 &wps_item, &menu_,
487 #ifdef HAVE_RECORDING
488 &rec,
489 #endif
490 #if CONFIG_TUNER
491 &fm,
492 #endif
493 &playlists, &rocks_browser, &system_menu_
495 #if CONFIG_KEYPAD == PLAYER_PAD
496 ,&do_shutdown_item
497 #endif
498 ,&shortcut_menu
501 static int item_callback(int action, const struct menu_item_ex *this_item)
503 switch (action)
505 case ACTION_TREE_STOP:
506 return ACTION_REDRAW;
507 case ACTION_REQUEST_MENUITEM:
508 #if CONFIG_TUNER
509 if (this_item == &fm)
511 if (radio_hardware_present() == 0)
512 return ACTION_EXIT_MENUITEM;
514 else
515 #endif
516 if (this_item == &bookmarks)
518 if (global_settings.usemrb == 0)
519 return ACTION_EXIT_MENUITEM;
521 break;
523 return action;
525 static int get_selection(int last_screen)
527 int i;
528 int len = ARRAYLEN(root_menu__);
529 for(i=0; i < len; i++)
531 if (((root_menu__[i]->flags&MENU_TYPE_MASK) == MT_RETURN_VALUE) &&
532 (root_menu__[i]->value == last_screen))
534 return i;
537 return 0;
540 static inline int load_screen(int screen)
542 /* set the global_status.last_screen before entering,
543 if we dont we will always return to the wrong screen on boot */
544 int old_previous = last_screen;
545 int ret_val;
546 enum current_activity activity = ACTIVITY_UNKNOWN;
547 if (screen <= GO_TO_ROOT)
548 return screen;
549 if (screen == old_previous)
550 old_previous = GO_TO_ROOT;
551 global_status.last_screen = (char)screen;
552 status_save();
554 if (screen == GO_TO_BROWSEPLUGINS)
555 activity = ACTIVITY_PLUGINBROWSER;
556 else if (screen == GO_TO_MAINMENU)
557 activity = ACTIVITY_SETTINGS;
558 else if (screen == GO_TO_SYSTEM_SCREEN)
559 activity = ACTIVITY_SYSTEMSCREEN;
561 if (activity != ACTIVITY_UNKNOWN)
562 push_current_activity(activity);
564 ret_val = items[screen].function(items[screen].param);
566 if (activity != ACTIVITY_UNKNOWN)
567 pop_current_activity();
569 last_screen = screen;
570 if (ret_val == GO_TO_PREVIOUS)
571 last_screen = old_previous;
572 return ret_val;
574 static int load_context_screen(int selection)
576 const struct menu_item_ex *context_menu = NULL;
577 int retval = GO_TO_PREVIOUS;
578 push_current_activity(ACTIVITY_CONTEXTMENU);
579 if ((root_menu__[selection]->flags&MENU_TYPE_MASK) == MT_RETURN_VALUE)
581 int item = root_menu__[selection]->value;
582 context_menu = items[item].context_menu;
584 /* special cases */
585 else if (root_menu__[selection] == &info_menu)
587 context_menu = &system_menu;
590 if (context_menu)
591 retval = do_menu(context_menu, NULL, NULL, false);
592 pop_current_activity();
593 return retval;
596 #ifdef HAVE_PICTUREFLOW_INTEGRATION
597 static int load_plugin_screen(char *plug_path)
599 int ret_val;
600 int old_previous = last_screen;
601 last_screen = next_screen;
602 global_status.last_screen = (char)next_screen;
603 status_save();
605 switch (plugin_load(plug_path, NULL))
607 case PLUGIN_GOTO_WPS:
608 ret_val = GO_TO_WPS;
609 break;
610 case PLUGIN_OK:
611 ret_val = audio_status() ? GO_TO_PREVIOUS : GO_TO_ROOT;
612 break;
613 default:
614 ret_val = GO_TO_PREVIOUS;
615 break;
618 if (ret_val == GO_TO_PREVIOUS)
619 last_screen = (old_previous == next_screen) ? GO_TO_ROOT : old_previous;
620 return ret_val;
622 #endif
624 static int previous_music = GO_TO_WPS;
626 void previous_music_is_wps(void)
628 previous_music = GO_TO_WPS;
631 void root_menu(void)
633 int previous_browser = GO_TO_FILEBROWSER;
634 int selected = 0;
636 push_current_activity(ACTIVITY_MAINMENU);
638 if (global_settings.start_in_screen == 0)
639 next_screen = (int)global_status.last_screen;
640 else next_screen = global_settings.start_in_screen - 2;
641 add_event(PLAYBACK_EVENT_TRACK_CHANGE, false, rootmenu_track_changed_callback);
642 #ifdef HAVE_RTC_ALARM
643 if ( rtc_check_alarm_started(true) )
645 rtc_enable_alarm(false);
646 next_screen = GO_TO_WPS;
647 #if CONFIG_TUNER
648 if (global_settings.alarm_wake_up_screen == ALARM_START_FM)
649 next_screen = GO_TO_FM;
650 #endif
651 #ifdef HAVE_RECORDING
652 if (global_settings.alarm_wake_up_screen == ALARM_START_REC)
654 recording_start_automatic = true;
655 next_screen = GO_TO_RECSCREEN;
657 #endif
659 #endif /* HAVE_RTC_ALARM */
661 #ifdef HAVE_HEADPHONE_DETECTION
662 if (next_screen == GO_TO_WPS &&
663 (global_settings.unplug_autoresume && !headphones_inserted() ))
664 next_screen = GO_TO_ROOT;
665 #endif
667 while (true)
669 switch (next_screen)
671 case MENU_ATTACHED_USB:
672 case MENU_SELECTED_EXIT:
673 /* fall through */
674 case GO_TO_ROOT:
675 if (last_screen != GO_TO_ROOT)
676 selected = get_selection(last_screen);
677 #if (CONFIG_PLATFORM&PLATFORM_ANDROID)
678 /* When we are in the main menu we want the hardware BACK
679 * button to be handled by Android instead of rockbox */
680 android_ignore_back_button(true);
681 #endif
682 next_screen = do_menu(&root_menu_, &selected, NULL, false);
683 #if (CONFIG_PLATFORM&PLATFORM_ANDROID)
684 android_ignore_back_button(false);
685 #endif
686 if (next_screen != GO_TO_PREVIOUS)
687 last_screen = GO_TO_ROOT;
688 break;
690 case GO_TO_PREVIOUS:
691 next_screen = last_screen;
692 break;
694 case GO_TO_PREVIOUS_BROWSER:
695 next_screen = previous_browser;
696 break;
698 case GO_TO_PREVIOUS_MUSIC:
699 next_screen = previous_music;
700 break;
701 case GO_TO_ROOTITEM_CONTEXT:
702 next_screen = load_context_screen(selected);
703 break;
704 #ifdef HAVE_PICTUREFLOW_INTEGRATION
705 case GO_TO_PICTUREFLOW:
706 while ( !tagcache_is_usable() )
708 splash(0, str(LANG_TAGCACHE_BUSY));
709 if ( action_userabort(HZ/5) )
710 break;
713 char pf_path[MAX_PATH];
714 snprintf(pf_path, sizeof(pf_path),
715 "%s/pictureflow.rock",
716 PLUGIN_DEMOS_DIR);
717 next_screen = load_plugin_screen(pf_path);
719 previous_browser = GO_TO_PICTUREFLOW;
720 break;
721 #endif
722 default:
723 if (next_screen == GO_TO_FILEBROWSER
724 #ifdef HAVE_TAGCACHE
725 || next_screen == GO_TO_DBBROWSER
726 #endif
728 previous_browser = next_screen;
729 if (next_screen == GO_TO_WPS
730 #if CONFIG_TUNER
731 || next_screen == GO_TO_FM
732 #endif
734 previous_music = next_screen;
735 next_screen = load_screen(next_screen);
736 break;
737 } /* switch() */