Re-factor code for the plugins main menu item, enabling better icons in that menu.
[maemo-rb.git] / apps / root_menu.c
blob79b7afffe85e5d74808a92536c4841867f60bc4f
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"
41 #ifdef HAVE_HOTSWAP
42 #include "storage.h"
43 #include "dir.h"
44 #endif
45 /* gui api */
46 #include "list.h"
47 #include "splash.h"
48 #include "action.h"
49 #include "yesno.h"
50 #include "viewport.h"
52 #include "tree.h"
53 #if CONFIG_TUNER
54 #include "radio.h"
55 #endif
56 #ifdef HAVE_RECORDING
57 #include "recording.h"
58 #endif
59 #include "wps.h"
60 #include "bookmark.h"
61 #include "playlist.h"
62 #include "playlist_viewer.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"
71 #include "plugin.h"
73 struct root_items {
74 int (*function)(void* param);
75 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
81 * is called */
82 static int last_screen = GO_TO_ROOT; /* unfortunatly needed so we can resume
83 or goto current track based on previous
84 screen */
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)
95 int ret_val;
96 #ifdef HAVE_TAGCACHE
97 struct tree_context* tc = tree_get_context();
98 #endif
99 struct browse_context browse;
100 int filter = SHOW_SUPPORTED;
101 char folder[MAX_PATH] = "/";
102 /* stuff needed to remember position in file browser */
103 static char last_folder[MAX_PATH] = "/";
104 /* and stuff for the database browser */
105 #ifdef HAVE_TAGCACHE
106 static int last_db_dirlevel = 0, last_db_selection = 0;
107 #endif
109 switch ((intptr_t)param)
111 case GO_TO_FILEBROWSER:
112 filter = global_settings.dirfilter;
113 if (global_settings.browse_current &&
114 last_screen == GO_TO_WPS &&
115 current_track_path[0])
117 strcpy(folder, current_track_path);
119 else if (!strcmp(last_folder, "/"))
121 strcpy(folder, global_settings.start_directory);
123 else
125 #ifdef HAVE_HOTSWAP
126 bool in_hotswap = false;
127 /* handle entering an ejected drive */
128 int i;
129 for (i = 0; i < NUM_VOLUMES; i++)
131 char vol_string[VOL_ENUM_POS + 8];
132 if (!storage_removable(i))
133 continue;
134 /* VOL_NAMES contains a %d */
135 snprintf(vol_string, sizeof(vol_string), "/"VOL_NAMES, i);
136 /* test whether we would browse the external card */
137 if (!storage_present(i) &&
138 (strstr(last_folder, vol_string)
139 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
140 || (i == 0)
141 #endif
143 { /* leave folder as "/" to avoid crash when trying
144 * to access an ejected drive */
145 strcpy(folder, "/");
146 in_hotswap = true;
147 break;
150 if (!in_hotswap)
151 #endif
152 strcpy(folder, last_folder);
154 break;
155 #ifdef HAVE_TAGCACHE
156 case GO_TO_DBBROWSER:
157 if (!tagcache_is_usable())
159 bool reinit_attempted = false;
161 /* Now display progress until it's ready or the user exits */
162 while(!tagcache_is_usable())
164 struct tagcache_stat *stat = tagcache_get_stat();
166 /* Allow user to exit */
167 if (action_userabort(HZ/2))
168 break;
170 /* Maybe just needs to reboot due to delayed commit */
171 if (stat->commit_delayed)
173 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
174 break;
177 /* Check if ready status is known */
178 if (!stat->readyvalid)
180 splash(0, str(LANG_TAGCACHE_BUSY));
181 continue;
184 /* Re-init if required */
185 if (!reinit_attempted && !stat->ready &&
186 stat->processed_entries == 0 && stat->commit_step == 0)
188 /* Prompt the user */
189 reinit_attempted = true;
190 static const char *lines[]={
191 ID2P(LANG_TAGCACHE_BUSY), ID2P(LANG_TAGCACHE_FORCE_UPDATE)};
192 static const struct text_message message={lines, 2};
193 if(gui_syncyesno_run(&message, NULL, NULL) == YESNO_NO)
194 break;
195 int i;
196 FOR_NB_SCREENS(i)
197 screens[i].clear_display();
199 /* Start initialisation */
200 tagcache_rebuild();
203 /* Display building progress */
204 static long talked_tick = 0;
205 if(global_settings.talk_menu &&
206 (talked_tick == 0
207 || TIME_AFTER(current_tick, talked_tick+7*HZ)))
209 talked_tick = current_tick;
210 if (stat->commit_step > 0)
212 talk_id(LANG_TAGCACHE_INIT, false);
213 talk_number(stat->commit_step, true);
214 talk_id(VOICE_OF, true);
215 talk_number(tagcache_get_max_commit_step(), true);
216 } else if(stat->processed_entries)
218 talk_number(stat->processed_entries, false);
219 talk_id(LANG_BUILDING_DATABASE, true);
222 if (stat->commit_step > 0)
224 if (lang_is_rtl())
226 splashf(0, "[%d/%d] %s", stat->commit_step,
227 tagcache_get_max_commit_step(),
228 str(LANG_TAGCACHE_INIT));
230 else
232 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT),
233 stat->commit_step,
234 tagcache_get_max_commit_step());
237 else
239 splashf(0, str(LANG_BUILDING_DATABASE),
240 stat->processed_entries);
244 if (!tagcache_is_usable())
245 return GO_TO_PREVIOUS;
246 filter = SHOW_ID3DB;
247 tc->dirlevel = last_db_dirlevel;
248 tc->selected_item = last_db_selection;
249 break;
250 #endif
253 browse_context_init(&browse, filter, 0, NULL, NOICON, folder, NULL);
254 ret_val = rockbox_browse(&browse);
255 switch ((intptr_t)param)
257 case GO_TO_FILEBROWSER:
258 if (!get_current_file(last_folder, MAX_PATH) ||
259 (!strchr(&last_folder[1], '/') &&
260 global_settings.start_directory[1] != '\0'))
262 last_folder[0] = '/';
263 last_folder[1] = '\0';
265 break;
266 #ifdef HAVE_TAGCACHE
267 case GO_TO_DBBROWSER:
268 last_db_dirlevel = tc->dirlevel;
269 last_db_selection = tc->selected_item;
270 break;
271 #endif
273 return ret_val;
276 #ifdef HAVE_RECORDING
277 static int recscrn(void* param)
279 (void)param;
280 recording_screen(false);
281 return GO_TO_ROOT;
283 #endif
284 static int wpsscrn(void* param)
286 int ret_val = GO_TO_PREVIOUS;
287 (void)param;
288 if (audio_status())
290 talk_shutup();
291 ret_val = gui_wps_show();
293 else if ( global_status.resume_index != -1 )
295 DEBUGF("Resume index %X offset %lX\n",
296 global_status.resume_index,
297 (unsigned long)global_status.resume_offset);
298 if (playlist_resume() != -1)
300 playlist_start(global_status.resume_index,
301 global_status.resume_offset);
302 ret_val = gui_wps_show();
305 else
307 splash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
309 return ret_val;
311 #if CONFIG_TUNER
312 static int radio(void* param)
314 (void)param;
315 radio_screen();
316 return GO_TO_ROOT;
318 #endif
320 static int miscscrn(void * param)
322 const struct menu_item_ex *menu = (const struct menu_item_ex*)param;
323 int result = do_menu(menu, NULL, NULL, false);
324 switch (result)
326 case GO_TO_PLAYLIST_VIEWER:
327 return GO_TO_PLAYLIST_VIEWER;
328 default:
329 return GO_TO_ROOT;
333 static int playlist_view(void * param)
335 (void)param;
336 switch (playlist_viewer())
338 case PLAYLIST_VIEWER_MAINMENU:
339 case PLAYLIST_VIEWER_USB:
340 return GO_TO_ROOT;
341 case PLAYLIST_VIEWER_OK:
342 return GO_TO_PREVIOUS;
344 return GO_TO_PREVIOUS;
347 static int load_bmarks(void* param)
349 (void)param;
350 if(bookmark_mrb_load())
351 return GO_TO_WPS;
352 return GO_TO_PREVIOUS;
355 int time_screen(void* ignored);
357 /* These are all static const'd from apps/menus/ *.c
358 so little hack so we can use them */
359 extern struct menu_item_ex
360 file_menu,
361 #ifdef HAVE_TAGCACHE
362 tagcache_menu,
363 #endif
364 main_menu_,
365 manage_settings,
366 recording_settings_menu,
367 radio_settings_menu,
368 bookmark_settings_menu,
369 plugin_menu,
370 playlist_options,
371 info_menu,
372 system_menu;
373 static const struct root_items items[] = {
374 [GO_TO_FILEBROWSER] = { browser, (void*)GO_TO_FILEBROWSER, &file_menu},
375 #ifdef HAVE_TAGCACHE
376 [GO_TO_DBBROWSER] = { browser, (void*)GO_TO_DBBROWSER, &tagcache_menu },
377 #endif
378 [GO_TO_WPS] = { wpsscrn, NULL, &playback_settings },
379 [GO_TO_MAINMENU] = { miscscrn, (struct menu_item_ex*)&main_menu_,
380 &manage_settings },
382 #ifdef HAVE_RECORDING
383 [GO_TO_RECSCREEN] = { recscrn, NULL, &recording_settings_menu },
384 #endif
386 #if CONFIG_TUNER
387 [GO_TO_FM] = { radio, NULL, &radio_settings_menu },
388 #endif
390 [GO_TO_RECENTBMARKS] = { load_bmarks, NULL, &bookmark_settings_menu },
391 [GO_TO_BROWSEPLUGINS] = { miscscrn, &plugin_menu, NULL },
392 [GO_TO_PLAYLISTS_SCREEN] = { miscscrn, &playlist_options,
393 &playlist_settings },
394 [GO_TO_PLAYLIST_VIEWER] = { playlist_view, NULL, NULL },
395 [GO_TO_SYSTEM_SCREEN] = { miscscrn, &info_menu, &system_menu },
398 static const int nb_items = sizeof(items)/sizeof(*items);
400 static int item_callback(int action, const struct menu_item_ex *this_item) ;
402 MENUITEM_RETURNVALUE(file_browser, ID2P(LANG_DIR_BROWSER), GO_TO_FILEBROWSER,
403 NULL, Icon_file_view_menu);
404 #ifdef HAVE_TAGCACHE
405 MENUITEM_RETURNVALUE(db_browser, ID2P(LANG_TAGCACHE), GO_TO_DBBROWSER,
406 NULL, Icon_Audio);
407 #endif
408 MENUITEM_RETURNVALUE(rocks_browser, ID2P(LANG_PLUGINS), GO_TO_BROWSEPLUGINS,
409 NULL, Icon_Plugin);
410 static char *get_wps_item_name(int selected_item, void * data, char *buffer)
412 (void)selected_item; (void)data; (void)buffer;
413 if (audio_status())
414 return ID2P(LANG_NOW_PLAYING);
415 return ID2P(LANG_RESUME_PLAYBACK);
417 MENUITEM_RETURNVALUE_DYNTEXT(wps_item, GO_TO_WPS, NULL, get_wps_item_name,
418 NULL, NULL, Icon_Playback_menu);
419 #ifdef HAVE_RECORDING
420 MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING), GO_TO_RECSCREEN,
421 NULL, Icon_Recording);
422 #endif
423 #if CONFIG_TUNER
424 MENUITEM_RETURNVALUE(fm, ID2P(LANG_FM_RADIO), GO_TO_FM,
425 item_callback, Icon_Radio_screen);
426 #endif
427 MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS), GO_TO_MAINMENU,
428 NULL, Icon_Submenu_Entered);
429 MENUITEM_RETURNVALUE(bookmarks, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS),
430 GO_TO_RECENTBMARKS, item_callback,
431 Icon_Bookmark);
432 MENUITEM_RETURNVALUE(playlists, ID2P(LANG_PLAYLISTS), GO_TO_PLAYLISTS_SCREEN,
433 NULL, Icon_Playlist);
434 MENUITEM_RETURNVALUE(system_menu_, ID2P(LANG_SYSTEM), GO_TO_SYSTEM_SCREEN,
435 NULL, Icon_System_menu);
437 #ifdef HAVE_LCD_CHARCELLS
438 static int do_shutdown(void)
440 #if CONFIG_CHARGING
441 if (charger_inserted())
442 charging_splash();
443 else
444 #endif
445 sys_poweroff();
446 return 0;
448 MENUITEM_FUNCTION(do_shutdown_item, 0, ID2P(LANG_SHUTDOWN),
449 do_shutdown, NULL, NULL, Icon_NOICON);
450 #endif
451 MAKE_MENU(root_menu_, ID2P(LANG_ROCKBOX_TITLE),
452 item_callback, Icon_Rockbox,
453 &bookmarks, &file_browser,
454 #ifdef HAVE_TAGCACHE
455 &db_browser,
456 #endif
457 &wps_item, &menu_,
458 #ifdef HAVE_RECORDING
459 &rec,
460 #endif
461 #if CONFIG_TUNER
462 &fm,
463 #endif
464 &playlists, &rocks_browser, &system_menu_
466 #ifdef HAVE_LCD_CHARCELLS
467 ,&do_shutdown_item
468 #endif
471 static int item_callback(int action, const struct menu_item_ex *this_item)
473 switch (action)
475 case ACTION_TREE_STOP:
476 return ACTION_REDRAW;
477 case ACTION_REQUEST_MENUITEM:
478 #if CONFIG_TUNER
479 if (this_item == &fm)
481 if (radio_hardware_present() == 0)
482 return ACTION_EXIT_MENUITEM;
484 else
485 #endif
486 if (this_item == &bookmarks)
488 if (global_settings.usemrb == 0)
489 return ACTION_EXIT_MENUITEM;
491 break;
493 return action;
495 static int get_selection(int last_screen)
497 int i;
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))
504 return i;
507 return 0;
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;
515 int ret_val;
516 if (screen <= GO_TO_ROOT)
517 return screen;
518 if (screen == old_previous)
519 old_previous = GO_TO_ROOT;
520 global_status.last_screen = (char)screen;
521 status_save();
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;
526 return ret_val;
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;
536 /* special cases */
537 else if (root_menu__[selection] == &info_menu)
539 context_menu = &system_menu;
542 if (context_menu)
543 return do_menu(context_menu, NULL, NULL, false);
544 else
545 return GO_TO_PREVIOUS;
548 #ifdef HAVE_PICTUREFLOW_INTEGRATION
549 static int load_plugin_screen(char *plug_path)
551 int ret_val;
552 int old_previous = last_screen;
553 last_screen = next_screen;
554 global_status.last_screen = (char)next_screen;
555 status_save();
557 switch (plugin_load(plug_path, NULL))
559 case PLUGIN_GOTO_WPS:
560 ret_val = GO_TO_WPS;
561 break;
562 case PLUGIN_OK:
563 ret_val = audio_status() ? GO_TO_PREVIOUS : GO_TO_ROOT;
564 break;
565 default:
566 ret_val = GO_TO_PREVIOUS;
567 break;
570 if (ret_val == GO_TO_PREVIOUS)
571 last_screen = (old_previous == next_screen) ? GO_TO_ROOT : old_previous;
572 return ret_val;
574 #endif
576 static int previous_music = GO_TO_WPS;
578 void previous_music_is_wps(void)
580 previous_music = GO_TO_WPS;
583 int current_screen(void)
585 return next_screen;
588 void root_menu(void)
590 int previous_browser = GO_TO_FILEBROWSER;
591 int selected = 0;
593 if (global_settings.start_in_screen == 0)
594 next_screen = (int)global_status.last_screen;
595 else next_screen = global_settings.start_in_screen - 2;
596 add_event(PLAYBACK_EVENT_TRACK_CHANGE, false, rootmenu_track_changed_callback);
597 #ifdef HAVE_RTC_ALARM
598 if ( rtc_check_alarm_started(true) )
600 rtc_enable_alarm(false);
601 next_screen = GO_TO_WPS;
602 #if CONFIG_TUNER
603 if (global_settings.alarm_wake_up_screen == ALARM_START_FM)
604 next_screen = GO_TO_FM;
605 #endif
606 #ifdef HAVE_RECORDING
607 if (global_settings.alarm_wake_up_screen == ALARM_START_REC)
609 recording_start_automatic = true;
610 next_screen = GO_TO_RECSCREEN;
612 #endif
614 #endif /* HAVE_RTC_ALARM */
616 #ifdef HAVE_HEADPHONE_DETECTION
617 if (next_screen == GO_TO_WPS &&
618 (global_settings.unplug_autoresume && !headphones_inserted() ))
619 next_screen = GO_TO_ROOT;
620 #endif
622 while (true)
624 switch (next_screen)
626 case MENU_ATTACHED_USB:
627 case MENU_SELECTED_EXIT:
628 /* fall through */
629 case GO_TO_ROOT:
630 if (last_screen != GO_TO_ROOT)
631 selected = get_selection(last_screen);
632 #if (CONFIG_PLATFORM&PLATFORM_ANDROID)
633 /* When we are in the main menu we want the hardware BACK
634 * button to be handled by Android instead of rockbox */
635 android_ignore_back_button(true);
636 #endif
637 next_screen = do_menu(&root_menu_, &selected, NULL, false);
638 #if (CONFIG_PLATFORM&PLATFORM_ANDROID)
639 android_ignore_back_button(false);
640 #endif
641 if (next_screen != GO_TO_PREVIOUS)
642 last_screen = GO_TO_ROOT;
643 break;
645 case GO_TO_PREVIOUS:
646 next_screen = last_screen;
647 break;
649 case GO_TO_PREVIOUS_BROWSER:
650 next_screen = previous_browser;
651 break;
653 case GO_TO_PREVIOUS_MUSIC:
654 next_screen = previous_music;
655 break;
656 case GO_TO_ROOTITEM_CONTEXT:
657 next_screen = load_context_screen(selected);
658 break;
659 #ifdef HAVE_PICTUREFLOW_INTEGRATION
660 case GO_TO_PICTUREFLOW:
661 while ( !tagcache_is_usable() )
663 splash(0, str(LANG_TAGCACHE_BUSY));
664 if ( action_userabort(HZ/5) )
665 break;
668 char pf_path[MAX_PATH];
669 snprintf(pf_path, sizeof(pf_path),
670 "%s/pictureflow.rock",
671 PLUGIN_DEMOS_DIR);
672 next_screen = load_plugin_screen(pf_path);
674 previous_browser = GO_TO_PICTUREFLOW;
675 break;
676 #endif
677 default:
678 if (next_screen == GO_TO_FILEBROWSER
679 #ifdef HAVE_TAGCACHE
680 || next_screen == GO_TO_DBBROWSER
681 #endif
683 previous_browser = next_screen;
684 if (next_screen == GO_TO_WPS
685 #if CONFIG_TUNER
686 || next_screen == GO_TO_FM
687 #endif
689 previous_music = next_screen;
690 next_screen = load_screen(next_screen);
691 break;
692 } /* switch() */