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 ****************************************************************************/
26 #include "appevents.h"
28 #include "root_menu.h"
36 #include "powermgmt.h"
58 #include "recording.h"
63 #include "menus/exported_menus.h"
73 int (*function
)(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
81 static int last_screen
= GO_TO_ROOT
; /* unfortunatly needed so we can resume
82 or goto current track based on previous
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
)
96 struct tree_context
* tc
= tree_get_context();
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 */
104 static int last_db_dirlevel
= 0, last_db_selection
= 0;
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
);
120 bool in_hotswap
= false;
121 /* handle entering an ejected drive */
123 for (i
= 0; i
< NUM_VOLUMES
; i
++)
125 char vol_string
[VOL_ENUM_POS
+ 8];
126 if (!storage_removable(i
))
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
137 { /* leave folder as "/" to avoid crash when trying
138 * to access an ejected drive */
146 strcpy(folder
, last_folder
);
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))
164 /* Maybe just needs to reboot due to delayed commit */
165 if (stat
->commit_delayed
)
167 splash(HZ
*2, ID2P(LANG_PLEASE_REBOOT
));
171 /* Check if ready status is known */
172 if (!stat
->readyvalid
)
174 splash(0, str(LANG_TAGCACHE_BUSY
));
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
)
191 screens
[i
].clear_display();
193 /* Start initialisation */
197 /* Display building progress */
198 static long talked_tick
= 0;
199 if(global_settings
.talk_menu
&&
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)
220 splashf(0, "[%d/%d] %s", stat
->commit_step
,
221 tagcache_get_max_commit_step(),
222 str(LANG_TAGCACHE_INIT
));
226 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT
),
228 tagcache_get_max_commit_step());
233 splashf(0, str(LANG_BUILDING_DATABASE
),
234 stat
->processed_entries
);
238 if (!tagcache_is_usable())
239 return GO_TO_PREVIOUS
;
241 tc
->dirlevel
= last_db_dirlevel
;
242 tc
->selected_item
= last_db_selection
;
245 case GO_TO_BROWSEPLUGINS
:
246 filter
= SHOW_PLUGINS
;
247 strlcpy(folder
, PLUGIN_DIR
, MAX_PATH
);
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
);
257 case GO_TO_DBBROWSER
:
258 last_db_dirlevel
= tc
->dirlevel
;
259 last_db_selection
= tc
->selected_item
;
266 static int menu(void* param
)
269 return do_menu(NULL
, 0, NULL
, false);
272 #ifdef HAVE_RECORDING
273 static int recscrn(void* param
)
276 recording_screen(false);
280 static int wpsscrn(void* param
)
282 int ret_val
= GO_TO_PREVIOUS
;
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();
303 splash(HZ
*2, ID2P(LANG_NOTHING_TO_RESUME
));
308 static int radio(void* param
)
316 static int load_bmarks(void* param
)
319 if(bookmark_mrb_load())
321 return GO_TO_PREVIOUS
;
323 static int plugins_menu(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
));
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
, ¤t
, NULL
, false);
338 folder
= PLUGIN_GAMES_DIR
;
341 folder
= PLUGIN_APPS_DIR
;
344 folder
= PLUGIN_DEMOS_DIR
;
349 retval
= rockbox_browse(folder
, SHOW_PLUGINS
);
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
363 recording_settings_menu
,
365 bookmark_settings_menu
,
367 static const struct root_items items
[] = {
368 [GO_TO_FILEBROWSER
] = { browser
, (void*)GO_TO_FILEBROWSER
, &file_menu
},
370 [GO_TO_DBBROWSER
] = { browser
, (void*)GO_TO_DBBROWSER
, &tagcache_menu
},
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
},
380 [GO_TO_FM
] = { radio
, NULL
, &radio_settings_menu
},
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
);
394 MENUITEM_RETURNVALUE(db_browser
, ID2P(LANG_TAGCACHE
), GO_TO_DBBROWSER
,
397 MENUITEM_RETURNVALUE(rocks_browser
, ID2P(LANG_PLUGINS
), GO_TO_BROWSEPLUGINS
,
399 static char *get_wps_item_name(int selected_item
, void * data
, char *buffer
)
401 (void)selected_item
; (void)data
; (void)buffer
;
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
);
413 MENUITEM_RETURNVALUE(fm
, ID2P(LANG_FM_RADIO
), GO_TO_FM
,
414 item_callback
, Icon_Radio_screen
);
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
,
421 #ifdef HAVE_LCD_CHARCELLS
422 static int do_shutdown(void)
425 if (charger_inserted())
432 MENUITEM_FUNCTION(do_shutdown_item
, 0, ID2P(LANG_SHUTDOWN
),
433 do_shutdown
, NULL
, NULL
, Icon_NOICON
);
435 MAKE_MENU(root_menu_
, ID2P(LANG_ROCKBOX_TITLE
),
436 item_callback
, Icon_Rockbox
,
437 &bookmarks
, &file_browser
,
442 #ifdef HAVE_RECORDING
448 &playlist_options
, &rocks_browser
, &info_menu
450 #ifdef HAVE_LCD_CHARCELLS
455 static int item_callback(int action
, const struct menu_item_ex
*this_item
)
459 case ACTION_TREE_STOP
:
460 return ACTION_REDRAW
;
461 case ACTION_REQUEST_MENUITEM
:
463 if (this_item
== &fm
)
465 if (radio_hardware_present() == 0)
466 return ACTION_EXIT_MENUITEM
;
470 if (this_item
== &bookmarks
)
472 if (global_settings
.usemrb
== 0)
473 return ACTION_EXIT_MENUITEM
;
479 static int get_selection(int last_screen
)
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
))
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
;
500 if (screen
<= GO_TO_ROOT
)
502 if (screen
== old_previous
)
503 old_previous
= GO_TO_ROOT
;
504 global_status
.last_screen
= (char)screen
;
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
;
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
;
521 else if (root_menu__
[selection
] == &info_menu
)
523 context_menu
= &system_menu
;
527 return do_menu(context_menu
, NULL
, NULL
, false);
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)
546 int previous_browser
= GO_TO_FILEBROWSER
;
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
;
559 if (global_settings
.alarm_wake_up_screen
== ALARM_START_FM
)
560 next_screen
= GO_TO_FM
;
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
;
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
;
582 case MENU_ATTACHED_USB
:
583 case MENU_SELECTED_EXIT
:
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
;
594 next_screen
= last_screen
;
597 case GO_TO_PREVIOUS_BROWSER
:
598 next_screen
= previous_browser
;
601 case GO_TO_PREVIOUS_MUSIC
:
602 next_screen
= previous_music
;
604 case GO_TO_ROOTITEM_CONTEXT
:
605 next_screen
= load_context_screen(selected
);
608 if (next_screen
== GO_TO_FILEBROWSER
610 || next_screen
== GO_TO_DBBROWSER
613 previous_browser
= next_screen
;
614 if (next_screen
== GO_TO_WPS
616 || next_screen
== GO_TO_FM
619 previous_music
= next_screen
;
620 next_screen
= load_screen(next_screen
);