blob: 4153c1c7766d96b426e9bb4deb7bad823f0402c8 [file] [log] [blame]
Jonathan Gordonfb628312007-02-12 14:22:35 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
Jonathan Gordon4e73b532007-02-13 00:32:17 +00008 * $Id$
Jonathan Gordonfb628312007-02-12 14:22:35 +00009 *
10 * Copyright (C) 2007 Jonathan Gordon
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * 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.
Jonathan Gordonfb628312007-02-12 14:22:35 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include <stdbool.h>
23#include <stddef.h>
24#include <limits.h>
25#include "config.h"
26#include "lang.h"
27#include "action.h"
28#include "splash.h"
29#include "settings.h"
30#include "menu.h"
31#include "sound_menu.h"
32#include "kernel.h"
33#include "playlist.h"
34#include "dsp.h"
35#include "scrobbler.h"
36#include "audio.h"
Thom Johansen4a7e0c72008-07-14 20:39:30 +000037#include "cuesheet.h"
38#if CONFIG_CODEC == SWCODEC
39#include "playback.h"
40#endif
Steve Bavinc9df8fd2008-03-28 11:24:24 +000041
Jonathan Gordonfb628312007-02-12 14:22:35 +000042
Jeffrey Goode9e095342009-11-10 03:46:08 +000043#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_CROSSFADE)
Bertrik Sikken56337842008-04-19 23:29:39 +000044static int setcrossfadeonexit_callback(int action,const struct menu_item_ex *this_item)
Jonathan Gordonfb628312007-02-12 14:22:35 +000045{
46 (void)this_item;
47 switch (action)
48 {
49 case ACTION_EXIT_MENUITEM: /* on exit */
50 audio_set_crossfade(global_settings.crossfade);
51 break;
52 }
53 return action;
54}
55
56#endif /* CONFIG_CODEC == SWCODEC */
57
58/***********************************/
59/* PLAYBACK MENU */
Bertrik Sikken56337842008-04-19 23:29:39 +000060static int playback_callback(int action,const struct menu_item_ex *this_item);
Jonathan Gordonfb628312007-02-12 14:22:35 +000061
62MENUITEM_SETTING(shuffle_item, &global_settings.playlist_shuffle, playback_callback);
63MENUITEM_SETTING(repeat_mode, &global_settings.repeat_mode, playback_callback);
64MENUITEM_SETTING(play_selected, &global_settings.play_selected, NULL);
Jonathan Gordonfb628312007-02-12 14:22:35 +000065
66MENUITEM_SETTING(ff_rewind_accel, &global_settings.ff_rewind_accel, NULL);
67MENUITEM_SETTING(ff_rewind_min_step, &global_settings.ff_rewind_min_step, NULL);
Jonathan Gordon02a87172007-03-03 13:52:14 +000068MAKE_MENU(ff_rewind_settings_menu, ID2P(LANG_WIND_MENU), 0, Icon_NOICON,
Jonathan Gordonfb628312007-02-12 14:22:35 +000069 &ff_rewind_min_step, &ff_rewind_accel);
Frank Gevaerts46573012008-10-07 19:37:33 +000070#ifdef HAVE_DISK_STORAGE
Jonathan Gordonfb628312007-02-12 14:22:35 +000071#if CONFIG_CODEC == SWCODEC
Bertrik Sikken56337842008-04-19 23:29:39 +000072static int buffermargin_callback(int action,const struct menu_item_ex *this_item)
Jonathan Gordonfb628312007-02-12 14:22:35 +000073{
74 (void)this_item;
75 switch (action)
76 {
77 case ACTION_EXIT_MENUITEM: /* on exit */
78 audio_set_buffer_margin(global_settings.buffer_margin);
79 break;
80 }
81 return action;
82}
83#else
84# define buffermargin_callback NULL
85#endif
86MENUITEM_SETTING(buffer_margin, &global_settings.buffer_margin,
87 buffermargin_callback);
Frank Gevaerts46573012008-10-07 19:37:33 +000088#endif /*HAVE_DISK_STORAGE */
Jonathan Gordonfb628312007-02-12 14:22:35 +000089MENUITEM_SETTING(fade_on_stop, &global_settings.fade_on_stop, NULL);
90MENUITEM_SETTING(party_mode, &global_settings.party_mode, NULL);
91
92#if CONFIG_CODEC == SWCODEC
Jeffrey Goode9e095342009-11-10 03:46:08 +000093#ifdef HAVE_CROSSFADE
Jonathan Gordonfb628312007-02-12 14:22:35 +000094/* crossfade submenu */
95MENUITEM_SETTING(crossfade, &global_settings.crossfade, setcrossfadeonexit_callback);
96MENUITEM_SETTING(crossfade_fade_in_delay,
Jeffrey Goode9e095342009-11-10 03:46:08 +000097 &global_settings.crossfade_fade_in_delay, NULL);
Jonathan Gordonfb628312007-02-12 14:22:35 +000098MENUITEM_SETTING(crossfade_fade_in_duration,
Jeffrey Goode9e095342009-11-10 03:46:08 +000099 &global_settings.crossfade_fade_in_duration, NULL);
Jonathan Gordonfb628312007-02-12 14:22:35 +0000100MENUITEM_SETTING(crossfade_fade_out_delay,
101 &global_settings.crossfade_fade_out_delay, setcrossfadeonexit_callback);
102MENUITEM_SETTING(crossfade_fade_out_duration,
103 &global_settings.crossfade_fade_out_duration, setcrossfadeonexit_callback);
104MENUITEM_SETTING(crossfade_fade_out_mixmode,
105 &global_settings.crossfade_fade_out_mixmode,NULL);
Jonathan Gordon02a87172007-03-03 13:52:14 +0000106MAKE_MENU(crossfade_settings_menu,ID2P(LANG_CROSSFADE),0, Icon_NOICON,
Jonathan Gordonfb628312007-02-12 14:22:35 +0000107 &crossfade, &crossfade_fade_in_delay, &crossfade_fade_in_duration,
108 &crossfade_fade_out_delay, &crossfade_fade_out_duration,
109 &crossfade_fade_out_mixmode);
Michael Giacomelli47a09012009-08-11 01:09:05 +0000110#endif
Jonathan Gordonfb628312007-02-12 14:22:35 +0000111
112/* replay gain submenu */
113
Bertrik Sikken56337842008-04-19 23:29:39 +0000114static int replaygain_callback(int action,const struct menu_item_ex *this_item)
Jonathan Gordonfb628312007-02-12 14:22:35 +0000115{
116 (void)this_item;
117 switch (action)
118 {
Jonathan Gordon91cb68a2007-03-01 11:14:46 +0000119 case ACTION_EXIT_MENUITEM: /* on exit */
Michael Sevakisd4e904b2007-02-24 17:06:36 +0000120 dsp_set_replaygain();
Jonathan Gordonfb628312007-02-12 14:22:35 +0000121 break;
122 }
123 return action;
124}
Jonathan Gordonfb628312007-02-12 14:22:35 +0000125MENUITEM_SETTING(replaygain_noclip, &global_settings.replaygain_noclip ,replaygain_callback);
126MENUITEM_SETTING(replaygain_type, &global_settings.replaygain_type ,replaygain_callback);
127MENUITEM_SETTING(replaygain_preamp, &global_settings.replaygain_preamp ,replaygain_callback);
Jonathan Gordon02a87172007-03-03 13:52:14 +0000128MAKE_MENU(replaygain_settings_menu,ID2P(LANG_REPLAYGAIN),0, Icon_NOICON,
Alexander Levin8589fcb2009-06-20 21:13:24 +0000129 &replaygain_type, &replaygain_noclip, &replaygain_preamp);
Jonathan Gordonfb628312007-02-12 14:22:35 +0000130
131MENUITEM_SETTING(beep, &global_settings.beep ,NULL);
132#endif /* CONFIG_CODEC == SWCODEC */
133
134#ifdef HAVE_SPDIF_POWER
135MENUITEM_SETTING(spdif_enable, &global_settings.spdif_enable, NULL);
136#endif
Jonathan Gordonfb628312007-02-12 14:22:35 +0000137MENUITEM_SETTING(next_folder, &global_settings.next_folder, NULL);
Bertrik Sikken56337842008-04-19 23:29:39 +0000138static int audioscrobbler_callback(int action,const struct menu_item_ex *this_item)
Jonathan Gordonfb628312007-02-12 14:22:35 +0000139{
140 (void)this_item;
141 switch (action)
142 {
143 case ACTION_EXIT_MENUITEM: /* on exit */
144 if (!scrobbler_is_enabled() && global_settings.audioscrobbler)
Nils Wallménius01729e72008-08-15 08:27:39 +0000145 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
Jonathan Gordonfb628312007-02-12 14:22:35 +0000146
147 if(scrobbler_is_enabled() && !global_settings.audioscrobbler)
148 scrobbler_shutdown();
149 break;
150 }
151 return action;
152}
153MENUITEM_SETTING(audioscrobbler, &global_settings.audioscrobbler, audioscrobbler_callback);
154
Nicolas Pennequin9f4bd872007-02-14 14:40:24 +0000155
Bertrik Sikken56337842008-04-19 23:29:39 +0000156static int cuesheet_callback(int action,const struct menu_item_ex *this_item)
Nicolas Pennequin9f4bd872007-02-14 14:40:24 +0000157{
158 (void)this_item;
159 switch (action)
160 {
161 case ACTION_EXIT_MENUITEM: /* on exit */
Michael Sevakisc537d592011-04-27 03:08:23 +0000162#if CONFIG_CODEC == SWCODEC
163 audio_set_cuesheet(global_settings.cuesheet);
164#else
Jonathan Gordon24b136f2009-07-20 05:18:18 +0000165 if (global_settings.cuesheet)
Nils Wallménius01729e72008-08-15 08:27:39 +0000166 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
Nicolas Pennequin9f4bd872007-02-14 14:40:24 +0000167 break;
Michael Sevakisc537d592011-04-27 03:08:23 +0000168#endif
Nicolas Pennequin9f4bd872007-02-14 14:40:24 +0000169 }
170 return action;
171}
172MENUITEM_SETTING(cuesheet, &global_settings.cuesheet, cuesheet_callback);
173
Jonathan Gordonfb628312007-02-12 14:22:35 +0000174#ifdef HAVE_HEADPHONE_DETECTION
175MENUITEM_SETTING(unplug_mode, &global_settings.unplug_mode, NULL);
176MENUITEM_SETTING(unplug_rw, &global_settings.unplug_rw, NULL);
177MENUITEM_SETTING(unplug_autoresume, &global_settings.unplug_autoresume, NULL);
Nils Wallméniusb3113672007-08-05 19:19:39 +0000178MAKE_MENU(unplug_menu, ID2P(LANG_HEADPHONE_UNPLUG), 0, Icon_NOICON,
Jonathan Gordonfb628312007-02-12 14:22:35 +0000179 &unplug_mode, &unplug_rw, &unplug_autoresume);
180#endif
181
Thom Johansen4a7e0c72008-07-14 20:39:30 +0000182MENUITEM_SETTING(skip_length, &global_settings.skip_length, NULL);
Thomas Martitz62f3e952009-03-27 13:53:29 +0000183MENUITEM_SETTING(prevent_skip, &global_settings.prevent_skip, NULL);
Magnus Holmgren15be66a2010-04-24 14:19:04 +0000184#if CONFIG_CODEC == SWCODEC
Magnus Holmgrend38093d2010-04-24 14:10:28 +0000185MENUITEM_SETTING(resume_rewind, &global_settings.resume_rewind, NULL);
Magnus Holmgren15be66a2010-04-24 14:19:04 +0000186#endif
Stéphane Doyonab0f7e12008-05-04 13:47:58 +0000187
Steve Bavin5f8bd632008-05-22 08:02:48 +0000188MAKE_MENU(playback_settings,ID2P(LANG_PLAYBACK),0,
Jonathan Gordon02a87172007-03-03 13:52:14 +0000189 Icon_Playback_menu,
Jonathan Gordon91cb68a2007-03-01 11:14:46 +0000190 &shuffle_item, &repeat_mode, &play_selected,
Nils Wallménius0bfa3e72007-08-01 08:50:44 +0000191 &ff_rewind_settings_menu,
Frank Gevaerts46573012008-10-07 19:37:33 +0000192#ifdef HAVE_DISK_STORAGE
Nils Wallménius0bfa3e72007-08-01 08:50:44 +0000193 &buffer_margin,
194#endif
195 &fade_on_stop, &party_mode,
Jonathan Gordonfb628312007-02-12 14:22:35 +0000196
Jeffrey Goode9e095342009-11-10 03:46:08 +0000197#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_CROSSFADE)
Michael Giacomelli88906e32009-08-11 02:18:22 +0000198 &crossfade_settings_menu,
199#endif
200
201#if CONFIG_CODEC == SWCODEC
202 &replaygain_settings_menu, &beep,
Jonathan Gordonfb628312007-02-12 14:22:35 +0000203#endif
204
205#ifdef HAVE_SPDIF_POWER
206 &spdif_enable,
207#endif
Thom Johansen294ec1d2007-09-19 10:40:55 +0000208 &next_folder, &audioscrobbler, &cuesheet
Jonathan Gordonfb628312007-02-12 14:22:35 +0000209#ifdef HAVE_HEADPHONE_DETECTION
210 ,&unplug_menu
211#endif
Thomas Martitz62f3e952009-03-27 13:53:29 +0000212 ,&skip_length, &prevent_skip,
Magnus Holmgrend38093d2010-04-24 14:10:28 +0000213
214#if CONFIG_CODEC == SWCODEC
215 &resume_rewind,
216#endif
Jonathan Gordonfb628312007-02-12 14:22:35 +0000217 );
Jonathan Gordon1ebdd5b2007-02-17 14:39:02 +0000218
Bertrik Sikken56337842008-04-19 23:29:39 +0000219static int playback_callback(int action,const struct menu_item_ex *this_item)
Jonathan Gordonfb628312007-02-12 14:22:35 +0000220{
221 static bool old_shuffle = false;
Jonathan Gordonfb628312007-02-12 14:22:35 +0000222 switch (action)
223 {
224 case ACTION_ENTER_MENUITEM:
Jonathan Gordonfb628312007-02-12 14:22:35 +0000225 if (this_item == &shuffle_item)
226 old_shuffle = global_settings.playlist_shuffle;
Jonathan Gordonfb628312007-02-12 14:22:35 +0000227 break;
228 case ACTION_EXIT_MENUITEM: /* on exit */
229 if ((this_item == &shuffle_item) &&
230 (old_shuffle != global_settings.playlist_shuffle)
231 && (audio_status() & AUDIO_STATUS_PLAY))
232 {
233#if CONFIG_CODEC == SWCODEC
Michael Sevakisd4e904b2007-02-24 17:06:36 +0000234 dsp_set_replaygain();
Jonathan Gordonfb628312007-02-12 14:22:35 +0000235#endif
236 if (global_settings.playlist_shuffle)
237 {
238 playlist_randomise(NULL, current_tick, true);
239 }
240 else
241 {
242 playlist_sort(NULL, true);
243 }
244 }
245 break;
246 }
247 return action;
248}
249/* PLAYBACK MENU */
250/***********************************/