quiet the masses...
[Rockbox.git] / apps / settings.h
blob5ac40fc901708b5d76d339903818e44802eb3bd5
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by wavey@wavey.org
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef __SETTINGS_H__
21 #define __SETTINGS_H__
23 #include <stdbool.h>
24 #include "inttypes.h"
25 #include "config.h"
26 #include "file.h"
27 #include "dircache.h"
28 #include "timefuncs.h"
29 #include "tagcache.h"
30 #ifndef __PCTOOL__
31 #include "button.h"
32 #endif
34 #if CONFIG_CODEC == SWCODEC
35 #include "audio.h"
36 #endif
38 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
39 #include "backlight.h" /* for [MIN|MAX]_BRIGHTNESS_SETTING */
40 #endif
42 struct opt_items {
43 unsigned const char* string;
44 int32_t voice_id;
47 /** Setting values defines **/
49 /* name of directory where configuration, fonts and other data
50 * files are stored */
51 #ifdef __PCTOOL__
52 #define ROCKBOX_DIR "."
53 #define ROCKBOX_DIR_LEN 1
54 #else
55 #define ROCKBOX_DIR "/.rockbox"
56 #define ROCKBOX_DIR_LEN 9
57 #endif
59 #define FONT_DIR ROCKBOX_DIR "/fonts"
60 #define LANG_DIR ROCKBOX_DIR "/langs"
61 #define WPS_DIR ROCKBOX_DIR "/wps"
62 #define THEME_DIR ROCKBOX_DIR "/themes"
63 #define ICON_DIR ROCKBOX_DIR "/icons"
65 #define PLUGIN_DIR ROCKBOX_DIR "/rocks"
66 #define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
67 #define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
68 #define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"
69 #define VIEWERS_DIR PLUGIN_DIR "/viewers"
71 #define BACKDROP_DIR ROCKBOX_DIR "/backdrops"
72 #define REC_BASE_DIR "/"
73 #define EQS_DIR ROCKBOX_DIR "/eqs"
74 #define CODECS_DIR ROCKBOX_DIR "/codecs"
75 #define RECPRESETS_DIR ROCKBOX_DIR "/recpresets"
76 #define FMPRESET_PATH ROCKBOX_DIR "/fmpresets"
77 #define PLAYLIST_CATALOG_DEFAULT_DIR "/Playlists"
79 #define VIEWERS_CONFIG ROCKBOX_DIR "/viewers.config"
80 #define CONFIGFILE ROCKBOX_DIR "/config.cfg"
81 #define FIXEDSETTINGSFILE ROCKBOX_DIR "/fixed.cfg"
83 #define MAX_FILENAME 32
86 #define BOOKMARK_NO 0
87 #define BOOKMARK_YES 1
88 #define BOOKMARK_ASK 2
89 #define BOOKMARK_UNIQUE_ONLY 2
90 #define BOOKMARK_RECENT_ONLY_YES 3
91 #define BOOKMARK_RECENT_ONLY_ASK 4
93 #define TRIG_MODE_OFF 0
94 #define TRIG_MODE_NOREARM 1
95 #define TRIG_MODE_REARM 2
97 #define TRIG_DURATION_COUNT 13
98 extern const struct opt_items trig_durations[TRIG_DURATION_COUNT];
100 #define CROSSFADE_ENABLE_SHUFFLE 1
101 #define CROSSFADE_ENABLE_TRACKSKIP 2
102 #define CROSSFADE_ENABLE_SHUFFLE_AND_TRACKSKIP 3
103 #define CROSSFADE_ENABLE_ALWAYS 4
105 #define FOLDER_ADVANCE_OFF 0
106 #define FOLDER_ADVANCE_NEXT 1
107 #define FOLDER_ADVANCE_RANDOM 2
109 /* repeat mode options */
110 enum
112 REPEAT_OFF,
113 REPEAT_ALL,
114 REPEAT_ONE,
115 REPEAT_SHUFFLE,
116 #ifdef AB_REPEAT_ENABLE
117 REPEAT_AB,
118 #endif
119 NUM_REPEAT_MODES
122 /* dir filter options */
123 /* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
124 * Any new rockbox browse filter modes (accessible through the menu)
125 * must be added after NUM_FILTER_MODES. */
126 enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
127 NUM_FILTER_MODES,
128 SHOW_WPS, SHOW_RWPS, SHOW_FMR, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS};
130 /* recursive dir insert options */
131 enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
133 /* replaygain types */
134 enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE };
136 /* show path types */
137 enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
139 /* Alarm settings */
140 #ifdef HAVE_RTC_ALARM
141 enum { ALARM_START_WPS = 0,
142 #if CONFIG_TUNER
143 ALARM_START_FM,
144 #endif
145 #ifdef HAVE_RECORDING
146 ALARM_START_REC,
147 #endif
148 ALARM_START_COUNT
150 #if CONFIG_TUNER && defined(HAVE_RECORDING)
151 #define ALARM_SETTING_TEXT "wps,fm,rec"
152 #elif CONFIG_TUNER
153 #define ALARM_SETTING_TEXT "wps,fm"
154 #elif defined(HAVE_RECORDING)
155 #define ALARM_SETTING_TEXT "wps,rec"
156 #endif
158 #endif /* HAVE_RTC_ALARM */
159 /** virtual pointer stuff.. move to another .h maybe? **/
160 /* These define "virtual pointers", which could either be a literal string,
161 or a mean a string ID if the pointer is in a certain range.
162 This helps to save space for menus and options. */
164 #define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
165 #ifdef SIMULATOR
166 /* a space which is defined in stubs.c */
167 extern unsigned char vp_dummy[VIRT_SIZE];
168 #define VIRT_PTR vp_dummy
169 #elif CONFIG_CPU==DM320
170 /* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
171 #define VIRT_PTR ((unsigned char*)0x4000)
172 #else
173 /* a location where we won't store strings, 0 is the fastest */
174 #define VIRT_PTR ((unsigned char*)0)
175 #endif
177 /* form a "virtual pointer" out of a language ID */
178 #define ID2P(id) (VIRT_PTR + id)
180 /* resolve a pointer which could be a virtualized ID or a literal */
181 #define P2STR(p) (char *)((p>=VIRT_PTR && p<=VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
183 /* get the string ID from a virtual pointer, -1 if not virtual */
184 #define P2ID(p) ((p>=VIRT_PTR && p<=VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
186 /* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
187 Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
188 simplicity. */
192 /** function prototypes **/
194 /* argument bits for settings_load() */
195 #define SETTINGS_RTC 1 /* only the settings from the RTC nonvolatile RAM */
196 #define SETTINGS_HD 2 /* only the settings from the disk sector */
197 #define SETTINGS_ALL 3 /* both */
198 void settings_load(int which);
199 bool settings_load_config(const char* file, bool apply);
201 void status_save( void );
202 int settings_save(void);
203 /* defines for the options paramater */
204 enum {
205 SETTINGS_SAVE_CHANGED = 0,
206 SETTINGS_SAVE_ALL,
207 SETTINGS_SAVE_THEME,
208 SETTINGS_SAVE_SOUND,
209 #ifdef HAVE_RECORDING
210 SETTINGS_SAVE_RECPRESETS,
211 #endif
212 #if CONFIG_CODEC == SWCODEC
213 SETTINGS_SAVE_EQPRESET,
214 #endif
216 bool settings_save_config(int options);
218 void settings_reset(void);
219 void sound_settings_apply(void);
220 void settings_apply(void);
221 void settings_apply_pm_range(void);
222 void settings_display(void);
224 enum optiontype { INT, BOOL };
226 const struct settings_list* find_setting(void* variable, int *id);
227 const struct settings_list* find_setting_from_string(char* setting, int *id);
228 bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
229 void talk_setting(void *global_settings_variable);
230 bool set_sound(const unsigned char * string,
231 int* variable, int setting);
232 bool set_bool_options(const char* string, bool* variable,
233 const char* yes_str, int yes_voice,
234 const char* no_str, int no_voice,
235 void (*function)(bool));
237 bool set_bool(const char* string, bool* variable );
238 bool set_option(const char* string, void* variable, enum optiontype type,
239 const struct opt_items* options, int numoptions, void (*function)(int));
240 bool set_int(const unsigned char* string, const char* unit, int voice_unit,
241 int* variable,
242 void (*function)(int), int step, int min, int max,
243 void (*formatter)(char*, size_t, int, const char*) );
244 /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
245 bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
246 int* variable,
247 void (*function)(int), int step, int min, int max,
248 void (*formatter)(char*, size_t, int, const char*),
249 int32_t (*get_talk_id)(int, int));
251 /* the following are either not in setting.c or shouldnt be */
252 bool set_time_screen(const char* string, struct tm *tm);
253 int read_line(int fd, char* buffer, int buffer_size);
254 void set_file(char* filename, char* setting, int maxlen);
257 /** global_settings and global_status struct definitions **/
259 struct system_status
261 int resume_index; /* index in playlist (-1 for no active resume) */
262 int resume_first_index; /* index of first track in playlist */
263 uint32_t resume_offset; /* byte offset in mp3 file */
264 int resume_seed; /* shuffle seed (-1=no resume shuffle 0=sorted
265 >0=shuffled) */
266 int runtime; /* current runtime since last charge */
267 int topruntime; /* top known runtime */
268 #ifdef HAVE_DIRCACHE
269 int dircache_size; /* directory cache structure last size, 22 bits */
270 #endif
271 #if CONFIG_TUNER
272 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
273 relative to MIN_FREQ */
274 int statusbar_forced; /* fix the bug where the statusbar would stay shown
275 if powered off inside the fm screen...
276 for some reason the screen doesnt use global_settings.statusbar
277 obviously a better fix is to fix the screen... so remove this
278 when that happens */
279 #endif
280 char last_screen;
281 int viewer_icon_count;
284 struct user_settings
286 /* audio settings */
288 int volume; /* audio output volume in decibels range depends on the dac */
289 int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
290 int bass; /* bass boost/cut in decibels */
291 int treble; /* treble boost/cut in decibels */
292 int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
293 int stereo_width; /* 0-255% */
295 #if CONFIG_CODEC != SWCODEC
296 int loudness; /* loudness eq: 0-100 0=off 100=max */
297 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
298 int mdb_strength; /* 0-127dB */
299 int mdb_harmonics; /* 0-100% */
300 int mdb_center; /* 20-300Hz */
301 int mdb_shape; /* 50-300Hz */
302 bool mdb_enable; /* true/false */
303 bool superbass; /* true/false */
304 #endif
306 #ifdef HAVE_WM8758
307 int bass_cutoff;
308 int treble_cutoff;
309 #endif
311 #if CONFIG_CODEC == SWCODEC
312 int crossfade; /* Enable crossfade (0=off,1=shuffle,2=trackskip,3=shuff&trackskip,4=always) */
313 int crossfade_fade_in_delay; /* Fade in delay (0-15s) */
314 int crossfade_fade_out_delay; /* Fade out delay (0-15s) */
315 int crossfade_fade_in_duration; /* Fade in duration (0-15s) */
316 int crossfade_fade_out_duration; /* Fade out duration (0-15s) */
317 int crossfade_fade_out_mixmode; /* Fade out mode (0=crossfade,1=mix) */
318 #endif
319 #ifdef HAVE_RECORDING
320 #if CONFIG_CODEC == SWCODEC
321 int rec_format; /* record format index */
322 #else
323 int rec_quality; /* 0-7 */
324 #endif /* CONFIG_CODEC == SWCODEC */
325 int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
326 int rec_frequency; /* 0 = 44.1kHz (depends on target)
327 1 = 48kHz
328 2 = 32kHz
329 3 = 22.05kHz
330 4 = 24kHz
331 5 = 16kHz */
332 int rec_channels; /* 0=Stereo, 1=Mono */
333 int rec_mic_gain; /* depends on target */
334 int rec_left_gain; /* depends on target */
335 int rec_right_gain; /* depands on target */
336 bool rec_editable; /* true means that the bit reservoir is off */
338 /* note: timesplit setting is not saved */
339 int rec_timesplit; /* 0 = off,
340 1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
341 5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
342 9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
343 13= 24:00 */
344 int rec_sizesplit; /* 0 = off,
345 1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
346 5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
347 9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
348 13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
349 int rec_split_type; /* split/stop */
350 int rec_split_method; /* time/filesize */
352 int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
353 char rec_directory[MAX_FILENAME+1];
354 int cliplight; /* 0 = off
355 1 = main lcd
356 2 = main and remote lcd
357 3 = remote lcd */
359 int rec_start_thres; /* negative: db, positive: % range -87 .. 100 */
360 int rec_start_duration; /* index of trig_durations */
361 int rec_stop_thres; /* negative: db, positive: % */
362 int rec_stop_postrec; /* negative: db, positive: % range -87 .. 100 */
363 int rec_stop_gap; /* index of trig_durations */
364 int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
365 int rec_trigger_type; /* what to do when trigger released */
367 #ifdef HAVE_AGC
368 int rec_agc_preset_mic; /* AGC mic preset modes:
369 0 = Off
370 1 = Safety (clip)
371 2 = Live (slow)
372 3 = DJ-Set (slow)
373 4 = Medium
374 5 = Voice (fast) */
375 int rec_agc_preset_line; /* AGC line-in preset modes:
376 0 = Off
377 1 = Safety (clip)
378 2 = Live (slow)
379 3 = DJ-Set (slow)
380 4 = Medium
381 5 = Voice (fast) */
382 int rec_agc_maxgain_mic; /* AGC maximum mic gain */
383 int rec_agc_maxgain_line; /* AGC maximum line-in gain */
384 int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
385 #endif
386 #endif /* HAVE_RECORDING */
387 /* device settings */
389 #ifdef HAVE_LCD_CONTRAST
390 int contrast; /* lcd contrast */
391 #endif
392 bool invert; /* invert display */
393 int cursor_style; /* style of the selection cursor */
394 bool flip_display; /* turn display (and button layout) by 180 degrees */
395 int poweroff; /* power off timer */
396 int backlight_timeout; /* backlight off timeout: 0-18 0=never,
397 1=always,
398 then according to timeout_values[] */
399 #if CONFIG_CHARGING
400 int backlight_timeout_plugged;
401 #endif
403 #ifdef HAVE_BACKLIGHT_PWM_FADING
404 int backlight_fade_in; /* backlight fade in timing: 0..3 */
405 int backlight_fade_out; /* backlight fade in timing: 0..7 */
406 #endif
407 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
408 int brightness;
409 #endif
410 int battery_capacity; /* in mAh */
411 #if BATTERY_TYPES_COUNT > 1
412 int battery_type; /* for units which can take multiple types (Ondio). */
413 #endif
414 #ifdef HAVE_SPDIF_POWER
415 bool spdif_enable; /* S/PDIF power on/off */
416 #endif
418 #if CONFIG_TUNER
419 unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
420 #endif
421 unsigned char font_file[MAX_FILENAME+1]; /* last font */
422 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
423 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
425 /* misc options */
427 int repeat_mode; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
428 int dirfilter; /* 0=display all, 1=only supported, 2=only music,
429 3=dirs+playlists, 4=ID3 database */
430 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
431 int show_filename_ext; /* show filename extensions in file browser?
432 0 = no, 1 = yes, 2 = only unknown 0 */
433 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
434 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
435 int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
436 bool playlist_shuffle;
437 bool play_selected; /* Plays selected file even in shuffle mode */
438 int ff_rewind_min_step; /* FF/Rewind minimum step size */
439 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
441 #ifndef HAVE_FLASH_STORAGE
442 int disk_spindown; /* time until disk spindown, in seconds (0=off) */
443 int buffer_margin; /* MP3 buffer watermark margin, in seconds */
444 #endif
446 int peak_meter_release; /* units per read out */
447 int peak_meter_hold; /* hold time for peak meter in 1/100 s */
448 int peak_meter_clip_hold; /* hold time for clips */
449 bool peak_meter_dbfs; /* show linear or dbfs values */
450 int peak_meter_min; /* range minimum */
451 int peak_meter_max; /* range maximum */
452 #ifdef HAVE_RECORDING
453 bool peak_meter_clipcounter; /* clipping count indicator */
454 #endif
455 bool car_adapter_mode; /* 0=off 1=on */
457 /* show status bar */
458 bool statusbar; /* 0=hide, 1=show */
460 #if CONFIG_KEYPAD == RECORDER_PAD
461 /* show button bar */
462 bool buttonbar; /* 0=hide, 1=show */
463 #endif
465 /* show scroll bar */
466 bool scrollbar; /* 0=hide, 1=show */
468 /* goto current song when exiting WPS */
469 bool browse_current; /* 1=goto current song,
470 0=goto previous location */
473 int scroll_speed; /* long texts scrolling speed: 1-30 */
474 int bidir_limit; /* bidir scroll length limit */
475 int scroll_delay; /* delay (in 1/10s) before starting scroll */
476 int scroll_step; /* pixels to advance per update */
477 #ifdef HAVE_REMOTE_LCD
478 int remote_scroll_speed; /* long texts scrolling speed: 1-30 */
479 int remote_scroll_delay; /* delay (in 1/10s) before starting scroll */
480 int remote_scroll_step; /* pixels to advance per update */
481 int remote_bidir_limit; /* bidir scroll length limit */
482 #endif
484 #ifdef HAVE_LCD_BITMAP
485 bool offset_out_of_view;
486 int screen_scroll_step;
487 #endif
489 /* auto bookmark settings */
490 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
491 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
492 int usemrb; /* use MRB list: 0=No, 1=Yes*/
493 #ifdef HAVE_LCD_CHARCELLS
494 int jump_scroll; /* Fast jump when scrolling */
495 int jump_scroll_delay; /* Delay between jump scroll screens */
496 #endif
497 bool fade_on_stop; /* fade on pause/unpause/stop */
498 bool caption_backlight; /* turn on backlight at end and start of track */
500 #if CONFIG_TUNER
501 int fm_freq_step; /* Frequency step for manual tuning, in kHz */
502 bool fm_force_mono; /* Forces Mono mode if true */
503 bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else
504 only 88MHz-108MHz */
505 #endif
507 int max_files_in_dir; /* Max entries in directory (file browser) */
508 int max_files_in_playlist; /* Max entries in playlist */
509 bool show_icons; /* 0=hide 1=show */
510 int recursive_dir_insert; /* should directories be inserted recursively */
512 #if CONFIG_CODEC == MAS3507D
513 bool line_in; /* false=off, true=active */
514 #endif
516 /* playlist viewer settings */
517 bool playlist_viewer_icons; /* display icons on viewer */
518 bool playlist_viewer_indices; /* display playlist indices on viewer */
519 int playlist_viewer_track_display; /* how to display tracks in viewer */
521 /* voice UI settings */
522 bool talk_menu; /* enable voice UI */
523 int talk_dir; /* voiced directories mode: 0=off 1=number 2=spell */
524 bool talk_dir_clip; /* use directory .talk clips */
525 int talk_file; /* voice file mode: 0=off, 1=number, 2=spell */
526 bool talk_file_clip; /* use file .talk clips */
527 bool talk_filetype; /* say file type */
528 bool talk_battery_level;
530 /* file browser sorting */
531 int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
532 int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
534 #ifdef HAVE_REMOTE_LCD
535 /* remote lcd */
536 int remote_contrast; /* lcd contrast: 0-63 0=low 63=high */
537 bool remote_invert; /* invert display */
538 bool remote_flip_display; /* turn display (and button layout) by 180 degrees */
539 int remote_backlight_timeout; /* backlight off timeout: 0-18 0=never,
540 1=always,
541 then according to timeout_values[] */
542 int remote_backlight_timeout_plugged;
543 bool remote_caption_backlight; /* turn on backlight at end and start of track */
544 #ifdef HAS_REMOTE_BUTTON_HOLD
545 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
546 switch is on */
547 #endif
548 #ifdef HAVE_REMOTE_LCD_TICKING
549 bool remote_reduce_ticking; /* 0=normal operation,
550 1=EMI reduce on with cost more CPU. */
551 #endif
552 #endif /* HAVE_REMOTE_LCD */
554 int next_folder; /* move to next folder */
555 bool runtimedb; /* runtime database active? */
557 #if CONFIG_CODEC == SWCODEC
558 bool replaygain; /* enable replaygain */
559 bool replaygain_noclip; /* scale to prevent clips */
560 int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
561 shuffle is on, album gain otherwise */
562 int replaygain_preamp; /* scale replaygained tracks by this */
563 int beep; /* system beep volume when changing tracks etc. */
565 /* Crossfeed settings */
566 bool crossfeed; /* enable crossfeed */
567 unsigned int crossfeed_direct_gain; /* dB x 10 */
568 unsigned int crossfeed_cross_gain; /* dB x 10 */
569 unsigned int crossfeed_hf_attenuation; /* dB x 10 */
570 unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
571 #endif
572 #ifdef HAVE_DIRCACHE
573 bool dircache; /* enable directory cache */
574 #endif
575 #ifdef HAVE_TAGCACHE
576 #ifdef HAVE_TC_RAMCACHE
577 bool tagcache_ram; /* load tagcache to ram? */
578 #endif
579 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
580 #endif
581 int default_codepage; /* set default codepage for tag conversion */
582 #ifdef HAVE_REMOTE_LCD
583 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
584 #endif
586 #if CONFIG_CODEC == SWCODEC
587 bool eq_enabled; /* Enable equalizer */
588 unsigned int eq_precut; /* dB */
590 /* Order is important here, must be cutoff, q, then gain for each band.
591 See dsp_eq_update_data in dsp.c for why. */
593 /* Band 0 settings */
594 int eq_band0_cutoff; /* Hz */
595 int eq_band0_q;
596 int eq_band0_gain; /* +/- dB */
598 /* Band 1 settings */
599 int eq_band1_cutoff; /* Hz */
600 int eq_band1_q;
601 int eq_band1_gain; /* +/- dB */
603 /* Band 2 settings */
604 int eq_band2_cutoff; /* Hz */
605 int eq_band2_q;
606 int eq_band2_gain; /* +/- dB */
608 /* Band 3 settings */
609 int eq_band3_cutoff; /* Hz */
610 int eq_band3_q;
611 int eq_band3_gain; /* +/- dB */
613 /* Band 4 settings */
614 int eq_band4_cutoff; /* Hz */
615 int eq_band4_q;
616 int eq_band4_gain; /* +/- dB */
618 bool dithering_enabled;
619 #endif
622 #if LCD_DEPTH > 1
623 unsigned char backdrop_file[MAX_FILENAME+1]; /* backdrop bitmap file */
624 #endif
626 bool warnon_erase_dynplaylist; /* warn when erasing dynamic playlist */
627 bool scroll_paginated; /* 0=dont 1=do */
628 #ifdef HAVE_LCD_COLOR
629 int bg_color; /* background color native format */
630 int fg_color; /* foreground color native format */
631 int lss_color; /* background color for the selector or start color for the gradient */
632 int lse_color; /* end color for the selector gradient */
633 int lst_color; /* color of the text for the selector */
634 #endif
635 bool party_mode; /* party mode - unstoppable music */
637 #ifdef HAVE_BACKLIGHT
638 bool bl_filter_first_keypress; /* filter first keypress when dark? */
639 #ifdef HAVE_REMOTE_LCD
640 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
641 #endif
642 #ifdef HAS_BUTTON_HOLD
643 int backlight_on_button_hold; /* what to do with backlight when hold
644 switch is on */
645 #endif
646 #ifdef HAVE_LCD_SLEEP
647 int lcd_sleep_after_backlight_off; /* when to put lcd to sleep after backlight
648 has turned off */
649 #endif
650 #endif /* HAVE_BACKLIGHT */
652 #ifdef HAVE_LCD_BITMAP
653 unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
654 #endif
656 #ifdef HAVE_USB_POWER
657 #if CONFIG_CHARGING
658 bool usb_charging;
659 #endif
660 #endif
662 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
663 #ifdef HAVE_LCD_BITMAP
664 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
665 #endif
667 #ifdef HAVE_HEADPHONE_DETECTION
668 int unplug_mode; /* pause on headphone unplug */
669 int unplug_rw; /* time in s to rewind when pausing */
670 bool unplug_autoresume; /* disable auto-resume if no phones */
671 #endif
672 #if CONFIG_TUNER
673 int fm_region;
674 #endif
675 bool audioscrobbler; /* Audioscrobbler logging */
677 /* If values are just added to the end, no need to bump plugin API
678 version. */
679 /* new stuff to be added at the end */
681 #if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
682 /* Encoder Settings Start - keep these together */
683 struct mp3_enc_config mp3_enc_config;
684 #if 0 /* These currently contain no members but their places in line
685 should be held */
686 struct aiff_enc_config aiff_enc_config;
687 struct wav_enc_config wav_enc_config;
688 struct wavpack_enc_config wavpack_enc_config;
689 #endif
690 /* Encoder Settings End */
691 #endif /* CONFIG_CODEC == SWCODEC */
692 bool cuesheet;
693 int start_in_screen;
694 #if defined(HAVE_RTC_ALARM) && \
695 (defined(HAVE_RECORDING) || CONFIG_TUNER)
696 int alarm_wake_up_screen;
697 #endif
698 /* customizable icons */
699 #ifdef HAVE_LCD_BITMAP
700 unsigned char icon_file[MAX_FILENAME+1];
701 unsigned char viewers_icon_file[MAX_FILENAME+1];
702 #endif
703 #ifdef HAVE_REMOTE_LCD
704 unsigned char remote_icon_file[MAX_FILENAME+1];
705 unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
706 #endif
707 #ifdef HAVE_LCD_COLOR
708 unsigned char colors_file[MAX_FILENAME+1];
709 #endif
710 #ifdef HAVE_BUTTON_LIGHT
711 int buttonlight_timeout;
712 #endif
713 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
714 int buttonlight_brightness;
715 #endif
716 #ifndef HAVE_SCROLLWHEEL
717 int list_accel_start_delay; /* ms before we start increaseing step size */
718 int list_accel_wait; /* ms between increases */
719 #endif
720 #ifdef HAVE_USBSTACK
721 int usb_stack_mode; /* device or host */
722 unsigned char usb_stack_device_driver[32]; /* usb device driver to load */
723 #endif
724 #if CONFIG_CODEC == SWCODEC
725 int keyclick; /* keyclick volume */
726 int keyclick_repeats; /* keyclick on repeats */
727 #endif
728 unsigned char playlist_catalog_dir[MAX_FILENAME+1];
730 unsigned char quickscreen_left[MAX_FILENAME+1];
731 unsigned char quickscreen_right[MAX_FILENAME+1];
732 unsigned char quickscreen_top[MAX_FILENAME+1];
733 unsigned char quickscreen_bottom[MAX_FILENAME+1];
736 /** global variables **/
737 extern long lasttime;
738 /* global settings */
739 extern struct user_settings global_settings;
740 /* global status */
741 extern struct system_status global_status;
743 #endif /* __SETTINGS_H__ */