Get rid of unused return values, except the one from decode_chunk() which will be...
[kugel-rb.git] / apps / settings.c
blob2cab26a4a1423c700cf0d65d95e53e387aa3f819
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Stuart Martin
11 * RTC config saving code (C) 2002 by hessu@hes.iki.fi
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
22 #include <stdio.h>
23 #include <stddef.h>
24 #include <stdlib.h>
25 #include <limits.h>
26 #include "inttypes.h"
27 #include "config.h"
28 #include "action.h"
29 #include "crc32.h"
30 #include "settings.h"
31 #include "debug.h"
32 #include "usb.h"
33 #include "backlight.h"
34 #include "audio.h"
35 #include "mpeg.h"
36 #include "talk.h"
37 #include "string.h"
38 #include "rtc.h"
39 #include "power.h"
40 #include "ata_idle_notify.h"
41 #include "storage.h"
42 #include "screens.h"
43 #include "ctype.h"
44 #include "file.h"
45 #include "system.h"
46 #include "misc.h"
47 #ifdef HAVE_LCD_BITMAP
48 #include "icons.h"
49 #include "font.h"
50 #include "peakmeter.h"
51 #endif
52 #include "lang.h"
53 #include "language.h"
54 #include "gwps.h"
55 #include "powermgmt.h"
56 #include "sprintf.h"
57 #include "keyboard.h"
58 #include "version.h"
59 #include "sound.h"
60 #include "rbunicode.h"
61 #include "dircache.h"
62 #include "statusbar.h"
63 #include "splash.h"
64 #include "list.h"
65 #include "settings_list.h"
66 #include "filetypes.h"
67 #include "option_select.h"
68 #include "backdrop.h"
70 #if CONFIG_TUNER
71 #include "radio.h"
72 #endif
74 #if CONFIG_CODEC == MAS3507D
75 void dac_line_in(bool enable);
76 #endif
77 struct user_settings global_settings;
78 struct system_status global_status;
80 #if CONFIG_CODEC == SWCODEC
81 #include "dsp.h"
82 #include "playback.h"
83 #ifdef HAVE_RECORDING
84 #include "enc_config.h"
85 #endif
86 #endif /* CONFIG_CODEC == SWCODEC */
88 #define NVRAM_BLOCK_SIZE 44
90 #ifdef HAVE_LCD_BITMAP
91 #define MAX_LINES 10
92 #else
93 #define MAX_LINES 2
94 #endif
96 #ifdef HAVE_REMOTE_LCD
97 #include "lcd-remote.h"
98 #endif
100 long lasttime = 0;
102 /** NVRAM stuff, if the target doesnt have NVRAM it is saved in ROCKBOX_DIR /nvram.bin **/
103 /* NVRAM is set out as
104 [0] 'R'
105 [1] 'b'
106 [2] version
107 [3] stored variable count
108 [4-7] crc32 checksum
109 [8-NVRAM_BLOCK_SIZE] data
111 #define NVRAM_DATA_START 8
112 #define NVRAM_FILE ROCKBOX_DIR "/nvram.bin"
113 static char nvram_buffer[NVRAM_BLOCK_SIZE];
115 static bool read_nvram_data(char* buf, int max_len)
117 unsigned crc32 = 0xffffffff;
118 int var_count = 0, i = 0, buf_pos = 0;
119 #ifndef HAVE_RTC_RAM
120 int fd = open(NVRAM_FILE,O_RDONLY);
121 if (fd < 0)
122 return false;
123 memset(buf,0,max_len);
124 if (read(fd,buf,max_len) < 8) /* min is 8 bytes,magic, ver, vars, crc32 */
125 return false;
126 close(fd);
127 #else
128 memset(buf,0,max_len);
129 /* read rtc block */
130 for (i=0; i < max_len; i++ )
131 buf[i] = rtc_read(0x14+i);
132 #endif
133 /* check magic, version */
134 if ((buf[0] != 'R') || (buf[1] != 'b')
135 || (buf[2] != NVRAM_CONFIG_VERSION))
136 return false;
137 /* check crc32 */
138 crc32 = crc_32(&buf[NVRAM_DATA_START],
139 max_len-NVRAM_DATA_START-1,0xffffffff);
140 if (memcmp(&crc32,&buf[4],4))
141 return false;
142 /* all good, so read in the settings */
143 var_count = buf[3];
144 buf_pos = NVRAM_DATA_START;
145 for(i=0; i<nb_settings; i++)
147 int nvram_bytes = (settings[i].flags&F_NVRAM_BYTES_MASK)
148 >>F_NVRAM_MASK_SHIFT;
149 if (nvram_bytes)
151 if ((var_count>0) && (buf_pos<max_len))
153 memcpy(settings[i].setting,&buf[buf_pos],nvram_bytes);
154 buf_pos += nvram_bytes;
155 var_count--;
157 else /* should only happen when new items are added to the end */
159 memcpy(settings[i].setting, &settings[i].default_val, nvram_bytes);
163 return true;
165 static bool write_nvram_data(char* buf, int max_len)
167 unsigned crc32 = 0xffffffff;
168 int i = 0, buf_pos = 0;
169 char var_count = 0;
170 #ifndef HAVE_RTC_RAM
171 int fd;
172 #endif
173 memset(buf,0,max_len);
174 /* magic, version */
175 buf[0] = 'R'; buf[1] = 'b';
176 buf[2] = NVRAM_CONFIG_VERSION;
177 buf_pos = NVRAM_DATA_START;
178 for(i=0; (i<nb_settings) && (buf_pos<max_len); i++)
180 int nvram_bytes = (settings[i].flags&F_NVRAM_BYTES_MASK)
181 >>F_NVRAM_MASK_SHIFT;
182 if (nvram_bytes)
184 memcpy(&buf[buf_pos],settings[i].setting,nvram_bytes);
185 buf_pos += nvram_bytes;
186 var_count++;
189 /* count and crc32 */
190 buf[3] = var_count;
191 crc32 = crc_32(&buf[NVRAM_DATA_START],
192 max_len-NVRAM_DATA_START-1,0xffffffff);
193 memcpy(&buf[4],&crc32,4);
194 #ifndef HAVE_RTC_RAM
195 fd = open(NVRAM_FILE,O_CREAT|O_TRUNC|O_WRONLY);
196 if (fd >= 0)
198 int len = write(fd,buf,max_len);
199 close(fd);
200 if (len < 8)
201 return false;
203 #else
204 /* FIXME: okay, it _would_ be cleaner and faster to implement rtc_write so
205 that it would write a number of bytes at a time since the RTC chip
206 supports that, but this will have to do for now 8-) */
207 for (i=0; i < NVRAM_BLOCK_SIZE; i++ ) {
208 int r = rtc_write(0x14+i, buf[i]);
209 if (r)
210 return false;
212 #endif
213 return true;
216 /** Reading from a config file **/
218 * load settings from disk or RTC RAM
220 void settings_load(int which)
222 if (which&SETTINGS_RTC)
223 read_nvram_data(nvram_buffer,NVRAM_BLOCK_SIZE);
224 if (which&SETTINGS_HD)
226 settings_load_config(CONFIGFILE,false);
227 settings_load_config(FIXEDSETTINGSFILE,false);
231 static bool cfg_string_to_int(int setting_id, int* out, const char* str)
233 const char* start = settings[setting_id].cfg_vals;
234 char* end = NULL;
235 char temp[MAX_PATH];
236 int count = 0;
237 while (1)
239 end = strchr(start, ',');
240 if (!end)
242 if (!strcmp(str, start))
244 *out = count;
245 return true;
247 else return false;
249 strncpy(temp, start, end-start);
250 temp[end-start] = '\0';
251 if (!strcmp(str, temp))
253 *out = count;
254 return true;
256 start = end +1;
257 count++;
259 return false;
262 bool settings_load_config(const char* file, bool apply)
264 int fd;
265 char line[128];
266 char* name;
267 char* value;
268 int i;
269 fd = open_utf8(file, O_RDONLY);
270 if (fd < 0)
271 return false;
273 while (read_line(fd, line, sizeof line) > 0)
275 if (!settings_parseline(line, &name, &value))
276 continue;
277 for(i=0; i<nb_settings; i++)
279 if (settings[i].cfg_name == NULL)
280 continue;
281 if (!strcasecmp(name,settings[i].cfg_name))
283 switch (settings[i].flags&F_T_MASK)
285 case F_T_CUSTOM:
286 settings[i].custom_setting->load_from_cfg(settings[i].setting, value);
287 break;
288 case F_T_INT:
289 case F_T_UINT:
290 #ifdef HAVE_LCD_COLOR
291 if (settings[i].flags&F_RGB)
292 hex_to_rgb(value, (int*)settings[i].setting);
293 else
294 #endif
295 if (settings[i].cfg_vals == NULL)
297 *(int*)settings[i].setting = atoi(value);
299 else
301 int temp, *v = (int*)settings[i].setting;
302 bool found = cfg_string_to_int(i, &temp, value);
303 if (found)
305 if (settings[i].flags&F_TABLE_SETTING)
306 *v = settings[i].table_setting->values[temp];
307 else
308 *v = temp;
310 else
311 *v = atoi(value);
313 break;
314 case F_T_BOOL:
316 int temp;
317 if (cfg_string_to_int(i,&temp,value))
318 *(bool*)settings[i].setting = (temp==0?false:true);
319 break;
321 case F_T_CHARPTR:
322 case F_T_UCHARPTR:
324 char storage[MAX_PATH];
325 if (settings[i].filename_setting->prefix)
327 int len = strlen(settings[i].filename_setting->prefix);
328 if (!strncasecmp(value,
329 settings[i].filename_setting->prefix,
330 len))
332 strncpy(storage,&value[len],MAX_PATH);
334 else strncpy(storage,value,MAX_PATH);
336 else strncpy(storage,value,MAX_PATH);
337 if (settings[i].filename_setting->suffix)
339 char *s = strcasestr(storage,settings[i].filename_setting->suffix);
340 if (s) *s = '\0';
342 strncpy((char*)settings[i].setting,storage,
343 settings[i].filename_setting->max_len);
344 ((char*)settings[i].setting)
345 [settings[i].filename_setting->max_len-1] = '\0';
346 break;
349 break;
350 } /* if (!strcmp(name,settings[i].cfg_name)) */
351 } /* for(...) */
352 } /* while(...) */
354 close(fd);
355 settings_save();
356 if (apply)
357 settings_apply(true);
358 return true;
361 /** Writing to a config file and saving settings **/
363 bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len)
365 int flags = settings[setting_id].flags;
366 const char* start = settings[setting_id].cfg_vals;
367 char* end = NULL;
368 int count = 0;
370 if ((flags&F_T_MASK)==F_T_INT &&
371 flags&F_TABLE_SETTING)
373 const int *value = settings[setting_id].table_setting->values;
374 while (start)
376 end = strchr(start,',');
377 if (value[count] == val)
379 if (end == NULL)
380 strncpy(buf, start, buf_len);
381 else
383 int len = (buf_len > (end-start))? end-start: buf_len;
384 strncpy(buf, start, len);
385 buf[len] = '\0';
387 return true;
389 count++;
391 if (end)
392 start = end+1;
393 else
394 break;
396 return false;
399 while (count < val)
401 start = strchr(start,',');
402 if (!start)
403 return false;
404 count++;
405 start++;
407 end = strchr(start,',');
408 if (end == NULL)
409 strncpy(buf, start, buf_len);
410 else
412 int len = (buf_len > (end-start))? end-start: buf_len;
413 strncpy(buf, start, len);
414 buf[len] = '\0';
416 return true;
420 static bool is_changed(int setting_id)
422 const struct settings_list *setting = &settings[setting_id];
423 switch (setting->flags&F_T_MASK)
425 case F_T_CUSTOM:
426 return setting->custom_setting->is_changed(setting->setting,
427 setting->default_val.custom);
428 break;
429 case F_T_INT:
430 case F_T_UINT:
431 if (setting->flags&F_DEF_ISFUNC)
433 if (*(int*)setting->setting == setting->default_val.func())
434 return false;
436 else if (setting->flags&F_T_SOUND)
438 if (*(int*)setting->setting ==
439 sound_default(setting->sound_setting->setting))
440 return false;
442 else if (*(int*)setting->setting == setting->default_val.int_)
443 return false;
444 break;
445 case F_T_BOOL:
446 if (*(bool*)setting->setting == setting->default_val.bool_)
447 return false;
448 break;
449 case F_T_CHARPTR:
450 case F_T_UCHARPTR:
451 if (!strcmp((char*)setting->setting, setting->default_val.charptr))
452 return false;
453 break;
455 return true;
458 static bool settings_write_config(const char* filename, int options)
460 int i;
461 int fd;
462 char value[MAX_PATH];
463 fd = open(filename,O_CREAT|O_TRUNC|O_WRONLY);
464 if (fd < 0)
465 return false;
466 #if CONFIG_TUNER
467 bool statusbar = global_settings.statusbar;
468 if (global_status.statusbar_forced != 0 && statusbar)
469 global_settings.statusbar = false;
470 #endif
471 fdprintf(fd, "# .cfg file created by rockbox %s - "
472 "http://www.rockbox.org\r\n\r\n", appsversion);
473 for(i=0; i<nb_settings; i++)
475 if (settings[i].cfg_name == NULL)
476 continue;
477 value[0] = '\0';
479 switch (options)
481 case SETTINGS_SAVE_CHANGED:
482 if (!is_changed(i))
483 continue;
484 break;
485 case SETTINGS_SAVE_SOUND:
486 if ((settings[i].flags&F_SOUNDSETTING) == 0)
487 continue;
488 break;
489 case SETTINGS_SAVE_THEME:
490 if ((settings[i].flags&F_THEMESETTING) == 0)
491 continue;
492 break;
493 #ifdef HAVE_RECORDING
494 case SETTINGS_SAVE_RECPRESETS:
495 if ((settings[i].flags&F_RECSETTING) == 0)
496 continue;
497 break;
498 #endif
499 #if CONFIG_CODEC == SWCODEC
500 case SETTINGS_SAVE_EQPRESET:
501 if ((settings[i].flags&F_EQSETTING) == 0)
502 continue;
503 break;
504 #endif
506 switch (settings[i].flags&F_T_MASK)
508 case F_T_CUSTOM:
509 settings[i].custom_setting->write_to_cfg(settings[i].setting,
510 value, MAX_PATH);
511 break;
512 case F_T_INT:
513 case F_T_UINT:
514 #ifdef HAVE_LCD_COLOR
515 if (settings[i].flags&F_RGB)
517 int colour = *(int*)settings[i].setting;
518 snprintf(value,MAX_PATH,"%02x%02x%02x",
519 (int)RGB_UNPACK_RED(colour),
520 (int)RGB_UNPACK_GREEN(colour),
521 (int)RGB_UNPACK_BLUE(colour));
523 else
524 #endif
525 if (settings[i].cfg_vals == NULL)
527 snprintf(value,MAX_PATH,"%d",*(int*)settings[i].setting);
529 else
531 if (cfg_int_to_string(i, *(int*)settings[i].setting,
532 value, MAX_PATH) == false)
534 snprintf(value,MAX_PATH,"%d",*(int*)settings[i].setting);
537 break;
538 case F_T_BOOL:
539 cfg_int_to_string(i,
540 *(bool*)settings[i].setting==false?0:1, value, MAX_PATH);
541 break;
542 case F_T_CHARPTR:
543 case F_T_UCHARPTR:
544 if (((char*)settings[i].setting)[0]
545 && settings[i].filename_setting->prefix)
547 snprintf(value,MAX_PATH,"%s%s%s",
548 settings[i].filename_setting->prefix,
549 (char*)settings[i].setting,
550 settings[i].filename_setting->suffix);
552 else strncpy(value,(char*)settings[i].setting,
553 settings[i].filename_setting->max_len);
554 break;
555 } /* switch () */
556 fdprintf(fd,"%s: %s\r\n",settings[i].cfg_name,value);
557 } /* for(...) */
558 close(fd);
559 #if CONFIG_TUNER
560 global_settings.statusbar = statusbar;
561 #endif
562 return true;
564 #ifndef HAVE_RTC_RAM
565 static bool flush_global_status_callback(void)
567 return write_nvram_data(nvram_buffer,NVRAM_BLOCK_SIZE);
569 #endif
570 static bool flush_config_block_callback(void)
572 bool r1, r2;
573 r1 = write_nvram_data(nvram_buffer,NVRAM_BLOCK_SIZE);
574 r2 = settings_write_config(CONFIGFILE, SETTINGS_SAVE_CHANGED);
575 return r1 || r2;
579 * persist all runtime user settings to disk or RTC RAM
581 static void update_runtime(void)
583 int elapsed_secs;
585 elapsed_secs = (current_tick - lasttime) / HZ;
586 global_status.runtime += elapsed_secs;
587 lasttime += (elapsed_secs * HZ);
589 if ( global_status.runtime > global_status.topruntime )
590 global_status.topruntime = global_status.runtime;
593 void status_save(void)
595 update_runtime();
596 #ifdef HAVE_RTC_RAM
597 /* this will be done in the storage_callback if
598 target doesnt have rtc ram */
599 write_nvram_data(nvram_buffer,NVRAM_BLOCK_SIZE);
600 #else
601 register_storage_idle_func(flush_global_status_callback);
602 #endif
605 int settings_save(void)
607 update_runtime();
608 #ifdef HAVE_RTC_RAM
609 /* this will be done in the storage_callback if
610 target doesnt have rtc ram */
611 write_nvram_data(nvram_buffer,NVRAM_BLOCK_SIZE);
612 #endif
613 register_storage_idle_func(flush_config_block_callback);
614 return 0;
617 bool settings_save_config(int options)
619 char filename[MAX_PATH];
620 char *folder;
621 switch (options)
623 case SETTINGS_SAVE_THEME:
624 folder = THEME_DIR;
625 break;
626 #ifdef HAVE_RECORDING
627 case SETTINGS_SAVE_RECPRESETS:
628 folder = RECPRESETS_DIR;
629 break;
630 #endif
631 #if CONFIG_CODEC == SWCODEC
632 case SETTINGS_SAVE_EQPRESET:
633 folder = EQS_DIR;
634 break;
635 #endif
636 case SETTINGS_SAVE_SOUND:
637 default:
638 folder = ROCKBOX_DIR;
640 create_numbered_filename(filename, folder, "config", ".cfg", 2
641 IF_CNFN_NUM_(, NULL));
643 /* allow user to modify filename */
644 while (true) {
645 if (!kbd_input(filename, sizeof filename)) {
646 break;
648 else {
649 splash(HZ, ID2P(LANG_CANCEL));
650 return false;
654 if (settings_write_config(filename, options))
655 splash(HZ, ID2P(LANG_SETTINGS_SAVED));
656 else
657 splash(HZ, ID2P(LANG_FAILED));
658 return true;
661 /** Apply and Reset settings **/
664 #ifdef HAVE_LCD_BITMAP
666 * Applies the range infos stored in global_settings to
667 * the peak meter.
669 void settings_apply_pm_range(void)
671 int pm_min, pm_max;
673 /* depending on the scale mode (dBfs or percent) the values
674 of global_settings.peak_meter_dbfs have different meanings */
675 if (global_settings.peak_meter_dbfs)
677 /* convert to dBfs * 100 */
678 pm_min = -(((int)global_settings.peak_meter_min) * 100);
679 pm_max = -(((int)global_settings.peak_meter_max) * 100);
681 else
683 /* percent is stored directly -> no conversion */
684 pm_min = global_settings.peak_meter_min;
685 pm_max = global_settings.peak_meter_max;
688 /* apply the range */
689 peak_meter_init_range(global_settings.peak_meter_dbfs, pm_min, pm_max);
691 #endif /* HAVE_LCD_BITMAP */
693 void sound_settings_apply(void)
695 #if CONFIG_CODEC == SWCODEC
696 sound_set_dsp_callback(dsp_callback);
697 #endif
698 sound_set(SOUND_BASS, global_settings.bass);
699 sound_set(SOUND_TREBLE, global_settings.treble);
700 sound_set(SOUND_BALANCE, global_settings.balance);
701 sound_set(SOUND_VOLUME, global_settings.volume);
702 sound_set(SOUND_CHANNELS, global_settings.channel_config);
703 sound_set(SOUND_STEREO_WIDTH, global_settings.stereo_width);
704 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
705 sound_set(SOUND_LOUDNESS, global_settings.loudness);
706 sound_set(SOUND_AVC, global_settings.avc);
707 sound_set(SOUND_MDB_STRENGTH, global_settings.mdb_strength);
708 sound_set(SOUND_MDB_HARMONICS, global_settings.mdb_harmonics);
709 sound_set(SOUND_MDB_CENTER, global_settings.mdb_center);
710 sound_set(SOUND_MDB_SHAPE, global_settings.mdb_shape);
711 sound_set(SOUND_MDB_ENABLE, global_settings.mdb_enable);
712 sound_set(SOUND_SUPERBASS, global_settings.superbass);
713 #endif
715 #ifdef HAVE_WM8758
716 sound_set(SOUND_BASS_CUTOFF, global_settings.bass_cutoff);
717 sound_set(SOUND_TREBLE_CUTOFF, global_settings.treble_cutoff);
718 #endif
720 #ifdef HAVE_USB_POWER
721 #if CONFIG_CHARGING
722 usb_charging_enable(global_settings.usb_charging);
723 #endif
724 #endif
727 void settings_apply(bool read_disk)
729 char buf[64];
730 #if CONFIG_CODEC == SWCODEC
731 int i;
732 #endif
734 sound_settings_apply();
736 #ifdef HAVE_DISK_STORAGE
737 audio_set_buffer_margin(global_settings.buffer_margin);
738 #endif
740 #ifdef HAVE_LCD_CONTRAST
741 lcd_set_contrast(global_settings.contrast);
742 #endif
743 lcd_scroll_speed(global_settings.scroll_speed);
744 #ifdef HAVE_REMOTE_LCD
745 lcd_remote_set_contrast(global_settings.remote_contrast);
746 lcd_remote_set_invert_display(global_settings.remote_invert);
747 lcd_remote_set_flip(global_settings.remote_flip_display);
748 lcd_remote_scroll_speed(global_settings.remote_scroll_speed);
749 lcd_remote_scroll_step(global_settings.remote_scroll_step);
750 lcd_remote_scroll_delay(global_settings.remote_scroll_delay);
751 lcd_remote_bidir_scroll(global_settings.remote_bidir_limit);
752 #ifdef HAVE_REMOTE_LCD_TICKING
753 lcd_remote_emireduce(global_settings.remote_reduce_ticking);
754 #endif
755 remote_backlight_set_timeout(global_settings.remote_backlight_timeout);
756 #if CONFIG_CHARGING
757 remote_backlight_set_timeout_plugged(global_settings.remote_backlight_timeout_plugged);
758 #endif
759 #ifdef HAS_REMOTE_BUTTON_HOLD
760 remote_backlight_set_on_button_hold(global_settings.remote_backlight_on_button_hold);
761 #endif
762 #endif /* HAVE_REMOTE_LCD */
763 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
764 backlight_set_brightness(global_settings.brightness);
765 #endif
766 #ifdef HAVE_BACKLIGHT
767 backlight_set_timeout(global_settings.backlight_timeout);
768 #if CONFIG_CHARGING
769 backlight_set_timeout_plugged(global_settings.backlight_timeout_plugged);
770 #endif
771 #if (defined(HAVE_BACKLIGHT_PWM_FADING) && !defined(SIMULATOR)) \
772 || defined(USE_BACKLIGHT_SW_FADING)
773 backlight_set_fade_in(global_settings.backlight_fade_in);
774 backlight_set_fade_out(global_settings.backlight_fade_out);
775 #endif
776 #endif
777 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
778 buttonlight_set_brightness(global_settings.buttonlight_brightness);
779 #endif
780 #ifdef HAVE_BUTTON_LIGHT
781 buttonlight_set_timeout(global_settings.buttonlight_timeout);
782 #endif
783 #ifdef HAVE_DISK_STORAGE
784 storage_spindown(global_settings.disk_spindown);
785 #endif
786 #if (CONFIG_CODEC == MAS3507D) && !defined(SIMULATOR)
787 dac_line_in(global_settings.line_in);
788 #endif
789 set_poweroff_timeout(global_settings.poweroff);
791 set_battery_capacity(global_settings.battery_capacity);
792 #if BATTERY_TYPES_COUNT > 1
793 set_battery_type(global_settings.battery_type);
794 #endif
796 #ifdef HAVE_LCD_BITMAP
797 lcd_set_invert_display(global_settings.invert);
798 lcd_set_flip(global_settings.flip_display);
799 button_set_flip(global_settings.flip_display);
800 lcd_update(); /* refresh after flipping the screen */
801 settings_apply_pm_range();
802 peak_meter_init_times(
803 global_settings.peak_meter_release, global_settings.peak_meter_hold,
804 global_settings.peak_meter_clip_hold);
805 #endif
807 if (read_disk)
810 #ifdef HAVE_LCD_BITMAP
811 /* fonts need to be loaded before the WPS */
812 if ( global_settings.font_file[0]) {
813 snprintf(buf, sizeof buf, FONT_DIR "/%s.fnt",
814 global_settings.font_file);
815 font_load(buf);
817 else
818 font_reset();
820 if ( global_settings.kbd_file[0]) {
821 snprintf(buf, sizeof buf, ROCKBOX_DIR "/%s.kbd",
822 global_settings.kbd_file);
823 load_kbd(buf);
825 else
826 load_kbd(NULL);
827 #endif
828 #if LCD_DEPTH > 1
829 unload_wps_backdrop();
830 #endif
831 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
832 unload_remote_wps_backdrop();
833 #endif
834 if ( global_settings.wps_file[0] &&
835 global_settings.wps_file[0] != 0xff ) {
836 snprintf(buf, sizeof buf, WPS_DIR "/%s.wps",
837 global_settings.wps_file);
838 wps_data_load(gui_wps[0].data, &screens[0], buf, true);
840 else
842 wps_data_init(gui_wps[0].data);
843 #ifdef HAVE_REMOTE_LCD
844 gui_wps[0].data->remote_wps = false;
845 #endif
848 #if LCD_DEPTH > 1
849 if ( global_settings.backdrop_file[0] &&
850 global_settings.backdrop_file[0] != 0xff ) {
851 snprintf(buf, sizeof buf, BACKDROP_DIR "/%s.bmp",
852 global_settings.backdrop_file);
853 load_main_backdrop(buf);
854 } else {
855 unload_main_backdrop();
857 show_main_backdrop();
858 #endif
859 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
860 show_remote_main_backdrop();
861 #endif
863 #if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1)
864 if ( global_settings.rwps_file[0]) {
865 snprintf(buf, sizeof buf, WPS_DIR "/%s.rwps",
866 global_settings.rwps_file);
867 wps_data_load(gui_wps[1].data, &screens[1], buf, true);
869 else
871 wps_data_init(gui_wps[1].data);
872 gui_wps[1].data->remote_wps = true;
874 #endif
875 if ( global_settings.lang_file[0]) {
876 snprintf(buf, sizeof buf, LANG_DIR "/%s.lng",
877 global_settings.lang_file);
878 lang_load(buf);
879 talk_init(); /* use voice of same language */
881 /* load the icon set */
882 icons_init();
884 #ifdef HAVE_LCD_COLOR
885 if (global_settings.colors_file[0])
886 read_color_theme_file();
887 #endif
890 #ifdef HAVE_LCD_COLOR
891 screens[SCREEN_MAIN].set_foreground(global_settings.fg_color);
892 screens[SCREEN_MAIN].set_background(global_settings.bg_color);
893 screens[SCREEN_MAIN].set_selector_start(global_settings.lss_color);
894 screens[SCREEN_MAIN].set_selector_end(global_settings.lse_color);
895 screens[SCREEN_MAIN].set_selector_text(global_settings.lst_color);
896 #endif
898 #ifdef HAVE_LCD_BITMAP
899 lcd_scroll_step(global_settings.scroll_step);
900 gui_list_screen_scroll_step(global_settings.screen_scroll_step);
901 gui_list_screen_scroll_out_of_view(global_settings.offset_out_of_view);
902 #else
903 lcd_jump_scroll(global_settings.jump_scroll);
904 lcd_jump_scroll_delay(global_settings.jump_scroll_delay);
905 #endif
906 lcd_bidir_scroll(global_settings.bidir_limit);
907 lcd_scroll_delay(global_settings.scroll_delay);
910 set_codepage(global_settings.default_codepage);
912 #if CONFIG_CODEC == SWCODEC
913 audio_set_crossfade(global_settings.crossfade);
914 dsp_set_replaygain();
915 dsp_set_crossfeed(global_settings.crossfeed);
916 dsp_set_crossfeed_direct_gain(global_settings.crossfeed_direct_gain);
917 dsp_set_crossfeed_cross_params(global_settings.crossfeed_cross_gain,
918 global_settings.crossfeed_hf_attenuation,
919 global_settings.crossfeed_hf_cutoff);
921 /* Configure software equalizer, hardware eq is handled in audio_init() */
922 dsp_set_eq(global_settings.eq_enabled);
923 dsp_set_eq_precut(global_settings.eq_precut);
924 for(i = 0; i < 5; i++) {
925 dsp_set_eq_coefs(i);
928 dsp_dither_enable(global_settings.dithering_enabled);
929 #endif
931 #ifdef HAVE_SPDIF_POWER
932 spdif_power_enable(global_settings.spdif_enable);
933 #endif
935 #ifdef HAVE_BACKLIGHT
936 set_backlight_filter_keypress(global_settings.bl_filter_first_keypress);
937 #ifdef HAVE_REMOTE_LCD
938 set_remote_backlight_filter_keypress(global_settings.remote_bl_filter_first_keypress);
939 #endif
940 #ifdef HAS_BUTTON_HOLD
941 backlight_set_on_button_hold(global_settings.backlight_on_button_hold);
942 #endif
943 #ifdef HAVE_LCD_SLEEP_SETTING
944 lcd_set_sleep_after_backlight_off(global_settings.lcd_sleep_after_backlight_off);
945 #endif
946 #endif /* HAVE_BACKLIGHT */
948 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
949 touchpad_set_sensitivity(global_settings.touchpad_sensitivity);
950 #endif
952 /* This should stay last */
953 #if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
954 enc_global_settings_apply();
955 #endif
956 list_init_viewports(NULL);
961 * reset all settings to their default value
963 void reset_setting(const struct settings_list *setting, void *var)
965 switch (setting->flags&F_T_MASK)
967 case F_T_CUSTOM:
968 setting->custom_setting->set_default(setting->setting,
969 setting->default_val.custom);
970 break;
971 case F_T_INT:
972 case F_T_UINT:
973 if (setting->flags&F_DEF_ISFUNC)
974 *(int*)var = setting->default_val.func();
975 else if (setting->flags&F_T_SOUND)
976 *(int*)var = sound_default(setting->sound_setting->setting);
977 else *(int*)var = setting->default_val.int_;
978 break;
979 case F_T_BOOL:
980 *(bool*)var = setting->default_val.bool_;
981 break;
982 case F_T_CHARPTR:
983 case F_T_UCHARPTR:
984 strncpy((char*)var, setting->default_val.charptr,
985 setting->filename_setting->max_len);
986 break;
990 void settings_reset(void)
992 int i;
994 for(i=0; i<nb_settings; i++)
995 reset_setting(&settings[i], settings[i].setting);
996 #if defined (HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
997 enc_global_settings_reset();
998 #endif
1001 /** Changing setting values **/
1002 const struct settings_list* find_setting(const void* variable, int *id)
1004 int i;
1005 for(i=0;i<nb_settings;i++)
1007 if (settings[i].setting == variable)
1009 if (id)
1010 *id = i;
1011 return &settings[i];
1014 return NULL;
1017 bool set_bool(const char* string, const bool* variable )
1019 return set_bool_options(string, variable,
1020 (char *)STR(LANG_SET_BOOL_YES),
1021 (char *)STR(LANG_SET_BOOL_NO),
1022 NULL);
1026 bool set_bool_options(const char* string, const bool* variable,
1027 const char* yes_str, int yes_voice,
1028 const char* no_str, int no_voice,
1029 void (*function)(bool))
1031 struct opt_items names[] = {
1032 {(unsigned const char *)no_str, no_voice},
1033 {(unsigned const char *)yes_str, yes_voice}
1035 bool result;
1037 result = set_option(string, variable, BOOL, names, 2,
1038 (void (*)(int))function);
1039 return result;
1042 bool set_int(const unsigned char* string,
1043 const char* unit,
1044 int voice_unit,
1045 const int* variable,
1046 void (*function)(int),
1047 int step,
1048 int min,
1049 int max,
1050 void (*formatter)(char*, size_t, int, const char*) )
1052 return set_int_ex(string, unit, voice_unit, variable, function,
1053 step, min, max, formatter, NULL);
1056 bool set_int_ex(const unsigned char* string,
1057 const char* unit,
1058 int voice_unit,
1059 const int* variable,
1060 void (*function)(int),
1061 int step,
1062 int min,
1063 int max,
1064 void (*formatter)(char*, size_t, int, const char*),
1065 int32_t (*get_talk_id)(int, int))
1067 (void)unit;
1068 struct settings_list item;
1069 struct int_setting data = {
1070 function, voice_unit, min, max, step,
1071 formatter, get_talk_id
1073 item.int_setting = &data;
1074 item.flags = F_INT_SETTING|F_T_INT;
1075 item.lang_id = -1;
1076 item.cfg_vals = (char*)string;
1077 item.setting = (void *)variable;
1078 return option_screen(&item, NULL, false, NULL);
1082 static const struct opt_items *set_option_options;
1083 static void set_option_formatter(char* buf, size_t size, int item, const char* unit)
1085 (void)unit;
1086 const unsigned char *text = set_option_options[item].string;
1087 strncpy(buf, P2STR(text), size);
1089 static int32_t set_option_get_talk_id(int value, int unit)
1091 (void)unit;
1092 return set_option_options[value].voice_id;
1094 bool set_option(const char* string, const void* variable, enum optiontype type,
1095 const struct opt_items* options,
1096 int numoptions, void (*function)(int))
1098 int temp;
1099 struct settings_list item;
1100 struct int_setting data = {
1101 function, UNIT_INT, 0, numoptions-1, 1,
1102 set_option_formatter, set_option_get_talk_id
1104 set_option_options = options;
1105 item.int_setting = &data;
1106 item.flags = F_INT_SETTING|F_T_INT;
1107 item.lang_id = -1;
1108 item.cfg_vals = (char*)string;
1109 item.setting = &temp;
1110 if (type == BOOL)
1111 temp = *(bool*)variable? 1: 0;
1112 else
1113 temp = *(int*)variable;
1114 if (!option_screen(&item, NULL, false, NULL))
1116 if (type == BOOL)
1117 *(bool*)variable = (temp == 1? true: false);
1118 else
1119 *(int*)variable = temp;
1120 return false;
1122 return true;
1126 void set_file(const char* filename, char* setting, int maxlen)
1128 char* fptr = strrchr(filename,'/');
1129 int len;
1130 int extlen = 0;
1131 char* ptr;
1133 if (!fptr)
1134 return;
1136 *fptr = 0;
1137 fptr++;
1139 len = strlen(fptr);
1140 ptr = fptr + len;
1141 while ((*ptr != '.') && (ptr != fptr)) {
1142 extlen++;
1143 ptr--;
1145 if(ptr == fptr) extlen = 0;
1147 if (strncasecmp(ROCKBOX_DIR, filename ,strlen(ROCKBOX_DIR)) ||
1148 (len-extlen > maxlen))
1149 return;
1151 strncpy(setting, fptr, len-extlen);
1152 setting[len-extlen]=0;
1154 settings_save();