1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
33 #include "backlight.h"
39 #include "ata_idle_notify.h"
47 #ifdef HAVE_LCD_BITMAP
50 #include "peakmeter.h"
54 #include "powermgmt.h"
59 #include "rbunicode.h"
63 #include "settings_list.h"
64 #include "filetypes.h"
65 #include "option_select.h"
70 #include "skin_engine/skin_engine.h"
71 #include "skin_engine/skin_fonts.h"
73 #include "statusbar-skinned.h"
75 #if CONFIG_CODEC == MAS3507D
76 void dac_line_in(bool enable
);
78 struct user_settings global_settings
;
79 struct system_status global_status
;
81 #if CONFIG_CODEC == SWCODEC
85 #include "enc_config.h"
87 #endif /* CONFIG_CODEC == SWCODEC */
89 #define NVRAM_BLOCK_SIZE 44
91 #ifdef HAVE_LCD_BITMAP
97 #ifdef HAVE_REMOTE_LCD
98 #include "lcd-remote.h"
103 /** NVRAM stuff, if the target doesnt have NVRAM it is saved in ROCKBOX_DIR /nvram.bin **/
104 /* NVRAM is set out as
108 [3] stored variable count
110 [8-NVRAM_BLOCK_SIZE] data
112 #define NVRAM_DATA_START 8
113 #define NVRAM_FILE ROCKBOX_DIR "/nvram.bin"
114 static char nvram_buffer
[NVRAM_BLOCK_SIZE
];
116 static bool read_nvram_data(char* buf
, int max_len
)
118 unsigned crc32
= 0xffffffff;
119 int var_count
= 0, i
= 0, buf_pos
= 0;
121 int fd
= open(NVRAM_FILE
,O_RDONLY
);
124 memset(buf
,0,max_len
);
125 if (read(fd
,buf
,max_len
) < 8) /* min is 8 bytes,magic, ver, vars, crc32 */
129 memset(buf
,0,max_len
);
131 for (i
=0; i
< max_len
; i
++ )
132 buf
[i
] = rtc_read(0x14+i
);
134 /* check magic, version */
135 if ((buf
[0] != 'R') || (buf
[1] != 'b')
136 || (buf
[2] != NVRAM_CONFIG_VERSION
))
139 crc32
= crc_32(&buf
[NVRAM_DATA_START
],
140 max_len
-NVRAM_DATA_START
-1,0xffffffff);
141 if (memcmp(&crc32
,&buf
[4],4))
143 /* all good, so read in the settings */
145 buf_pos
= NVRAM_DATA_START
;
146 for(i
=0; i
<nb_settings
; i
++)
148 int nvram_bytes
= (settings
[i
].flags
&F_NVRAM_BYTES_MASK
)
149 >>F_NVRAM_MASK_SHIFT
;
152 if ((var_count
>0) && (buf_pos
<max_len
))
154 memcpy(settings
[i
].setting
,&buf
[buf_pos
],nvram_bytes
);
155 buf_pos
+= nvram_bytes
;
158 else /* should only happen when new items are added to the end */
160 memcpy(settings
[i
].setting
, &settings
[i
].default_val
, nvram_bytes
);
166 static bool write_nvram_data(char* buf
, int max_len
)
168 unsigned crc32
= 0xffffffff;
169 int i
= 0, buf_pos
= 0;
174 memset(buf
,0,max_len
);
176 buf
[0] = 'R'; buf
[1] = 'b';
177 buf
[2] = NVRAM_CONFIG_VERSION
;
178 buf_pos
= NVRAM_DATA_START
;
179 for(i
=0; (i
<nb_settings
) && (buf_pos
<max_len
); i
++)
181 int nvram_bytes
= (settings
[i
].flags
&F_NVRAM_BYTES_MASK
)
182 >>F_NVRAM_MASK_SHIFT
;
185 memcpy(&buf
[buf_pos
],settings
[i
].setting
,nvram_bytes
);
186 buf_pos
+= nvram_bytes
;
190 /* count and crc32 */
192 crc32
= crc_32(&buf
[NVRAM_DATA_START
],
193 max_len
-NVRAM_DATA_START
-1,0xffffffff);
194 memcpy(&buf
[4],&crc32
,4);
196 fd
= open(NVRAM_FILE
,O_CREAT
|O_TRUNC
|O_WRONLY
);
199 int len
= write(fd
,buf
,max_len
);
205 /* FIXME: okay, it _would_ be cleaner and faster to implement rtc_write so
206 that it would write a number of bytes at a time since the RTC chip
207 supports that, but this will have to do for now 8-) */
208 for (i
=0; i
< NVRAM_BLOCK_SIZE
; i
++ ) {
209 int r
= rtc_write(0x14+i
, buf
[i
]);
217 /** Reading from a config file **/
219 * load settings from disk or RTC RAM
221 void settings_load(int which
)
223 if (which
&SETTINGS_RTC
)
224 read_nvram_data(nvram_buffer
,NVRAM_BLOCK_SIZE
);
225 if (which
&SETTINGS_HD
)
227 settings_load_config(CONFIGFILE
,false);
228 settings_load_config(FIXEDSETTINGSFILE
,false);
232 static bool cfg_string_to_int(int setting_id
, int* out
, const char* str
)
234 const char* start
= settings
[setting_id
].cfg_vals
;
240 end
= strchr(start
, ',');
243 if (!strcmp(str
, start
))
250 strlcpy(temp
, start
, end
-start
+1);
251 if (!strcmp(str
, temp
))
262 bool settings_load_config(const char* file
, bool apply
)
269 fd
= open_utf8(file
, O_RDONLY
);
273 while (read_line(fd
, line
, sizeof line
) > 0)
275 if (!settings_parseline(line
, &name
, &value
))
277 for(i
=0; i
<nb_settings
; i
++)
279 if (settings
[i
].cfg_name
== NULL
)
281 if (!strcasecmp(name
,settings
[i
].cfg_name
))
283 switch (settings
[i
].flags
&F_T_MASK
)
286 settings
[i
].custom_setting
->load_from_cfg(settings
[i
].setting
, value
);
290 #ifdef HAVE_LCD_COLOR
291 if (settings
[i
].flags
&F_RGB
)
292 hex_to_rgb(value
, (int*)settings
[i
].setting
);
295 if (settings
[i
].cfg_vals
== NULL
)
297 *(int*)settings
[i
].setting
= atoi(value
);
301 int temp
, *v
= (int*)settings
[i
].setting
;
302 bool found
= cfg_string_to_int(i
, &temp
, value
);
305 if (settings
[i
].flags
&F_TABLE_SETTING
)
306 *v
= settings
[i
].table_setting
->values
[temp
];
311 { /* atoi breaks choice settings because they
312 * don't have int-like values, and would
313 * fall back to the first value (i.e. 0)
315 if (!(settings
[i
].flags
&F_CHOICE_SETTING
))
323 if (cfg_string_to_int(i
,&temp
,value
))
324 *(bool*)settings
[i
].setting
= (temp
!=0);
325 if (settings
[i
].bool_setting
->option_callback
)
326 settings
[i
].bool_setting
->option_callback(temp
!=0);
332 char storage
[MAX_PATH
];
333 if (settings
[i
].filename_setting
->prefix
)
335 int len
= strlen(settings
[i
].filename_setting
->prefix
);
336 if (!strncasecmp(value
,
337 settings
[i
].filename_setting
->prefix
,
340 strlcpy(storage
, &value
[len
], MAX_PATH
);
342 else strlcpy(storage
, value
, MAX_PATH
);
344 else strlcpy(storage
, value
, MAX_PATH
);
345 if (settings
[i
].filename_setting
->suffix
)
347 char *s
= strcasestr(storage
,settings
[i
].filename_setting
->suffix
);
350 strlcpy((char*)settings
[i
].setting
, storage
,
351 settings
[i
].filename_setting
->max_len
);
356 } /* if (!strcmp(name,settings[i].cfg_name)) */
363 settings_apply(true);
367 /** Writing to a config file and saving settings **/
369 bool cfg_int_to_string(int setting_id
, int val
, char* buf
, int buf_len
)
371 int flags
= settings
[setting_id
].flags
;
372 const char* start
= settings
[setting_id
].cfg_vals
;
376 if ((flags
&F_T_MASK
)==F_T_INT
&&
377 flags
&F_TABLE_SETTING
)
379 const int *value
= settings
[setting_id
].table_setting
->values
;
382 end
= strchr(start
,',');
383 if (value
[count
] == val
)
386 strlcpy(buf
, start
, buf_len
);
389 int len
= (buf_len
> (end
-start
))? end
-start
: buf_len
;
390 strlcpy(buf
, start
, len
+1);
406 start
= strchr(start
,',');
412 end
= strchr(start
,',');
414 strlcpy(buf
, start
, buf_len
);
417 int len
= (buf_len
> (end
-start
))? end
-start
: buf_len
;
418 strlcpy(buf
, start
, len
+1);
423 bool cfg_to_string(int i
/*setting_id*/, char* buf
, int buf_len
)
425 switch (settings
[i
].flags
&F_T_MASK
)
428 settings
[i
].custom_setting
->write_to_cfg(settings
[i
].setting
,
433 #ifdef HAVE_LCD_COLOR
434 if (settings
[i
].flags
&F_RGB
)
436 int colour
= *(int*)settings
[i
].setting
;
437 snprintf(buf
,buf_len
,"%02x%02x%02x",
438 (int)RGB_UNPACK_RED(colour
),
439 (int)RGB_UNPACK_GREEN(colour
),
440 (int)RGB_UNPACK_BLUE(colour
));
444 if (settings
[i
].cfg_vals
== NULL
)
446 snprintf(buf
,buf_len
,"%d",*(int*)settings
[i
].setting
);
450 if (cfg_int_to_string(i
, *(int*)settings
[i
].setting
,
451 buf
, buf_len
) == false)
453 snprintf(buf
,buf_len
,"%d",*(int*)settings
[i
].setting
);
461 *(bool*)settings
[i
].setting
==false?0:1, buf
, buf_len
);
465 if (((char*)settings
[i
].setting
)[0]
466 && settings
[i
].filename_setting
->prefix
)
468 if (((char*)settings
[i
].setting
)[0] == '-')
475 snprintf(buf
,buf_len
,"%s%s%s",
476 settings
[i
].filename_setting
->prefix
,
477 (char*)settings
[i
].setting
,
478 settings
[i
].filename_setting
->suffix
);
481 else strlcpy(buf
,(char*)settings
[i
].setting
,
482 settings
[i
].filename_setting
->max_len
);
489 static bool is_changed(int setting_id
)
491 const struct settings_list
*setting
= &settings
[setting_id
];
492 switch (setting
->flags
&F_T_MASK
)
495 return setting
->custom_setting
->is_changed(setting
->setting
,
496 setting
->default_val
.custom
);
500 if (setting
->flags
&F_DEF_ISFUNC
)
502 if (*(int*)setting
->setting
== setting
->default_val
.func())
505 else if (setting
->flags
&F_T_SOUND
)
507 if (*(int*)setting
->setting
==
508 sound_default(setting
->sound_setting
->setting
))
511 else if (*(int*)setting
->setting
== setting
->default_val
.int_
)
515 if (*(bool*)setting
->setting
== setting
->default_val
.bool_
)
520 if (!strcmp((char*)setting
->setting
, setting
->default_val
.charptr
))
527 static bool settings_write_config(const char* filename
, int options
)
531 char value
[MAX_PATH
];
532 fd
= open(filename
,O_CREAT
|O_TRUNC
|O_WRONLY
);
535 fdprintf(fd
, "# .cfg file created by rockbox %s - "
536 "http://www.rockbox.org\r\n\r\n", appsversion
);
537 for(i
=0; i
<nb_settings
; i
++)
539 if (settings
[i
].cfg_name
== NULL
)
545 case SETTINGS_SAVE_CHANGED
:
549 case SETTINGS_SAVE_SOUND
:
550 if ((settings
[i
].flags
&F_SOUNDSETTING
) == 0)
553 case SETTINGS_SAVE_THEME
:
554 if ((settings
[i
].flags
&F_THEMESETTING
) == 0)
557 #ifdef HAVE_RECORDING
558 case SETTINGS_SAVE_RECPRESETS
:
559 if ((settings
[i
].flags
&F_RECSETTING
) == 0)
563 #if CONFIG_CODEC == SWCODEC
564 case SETTINGS_SAVE_EQPRESET
:
565 if ((settings
[i
].flags
&F_EQSETTING
) == 0)
571 cfg_to_string(i
, value
, MAX_PATH
);
572 fdprintf(fd
,"%s: %s\r\n",settings
[i
].cfg_name
,value
);
578 static void flush_global_status_callback(void *data
)
581 write_nvram_data(nvram_buffer
,NVRAM_BLOCK_SIZE
);
584 static void flush_config_block_callback(void *data
)
587 write_nvram_data(nvram_buffer
,NVRAM_BLOCK_SIZE
);
588 settings_write_config(CONFIGFILE
, SETTINGS_SAVE_CHANGED
);
592 * persist all runtime user settings to disk or RTC RAM
594 static void update_runtime(void)
598 elapsed_secs
= (current_tick
- lasttime
) / HZ
;
599 global_status
.runtime
+= elapsed_secs
;
600 lasttime
+= (elapsed_secs
* HZ
);
602 if ( global_status
.runtime
> global_status
.topruntime
)
603 global_status
.topruntime
= global_status
.runtime
;
606 void status_save(void)
610 /* this will be done in the storage_callback if
611 target doesnt have rtc ram */
612 write_nvram_data(nvram_buffer
,NVRAM_BLOCK_SIZE
);
614 register_storage_idle_func(flush_global_status_callback
);
618 int settings_save(void)
622 /* this will be done in the storage_callback if
623 target doesnt have rtc ram */
624 write_nvram_data(nvram_buffer
,NVRAM_BLOCK_SIZE
);
626 register_storage_idle_func(flush_config_block_callback
);
630 bool settings_save_config(int options
)
632 char filename
[MAX_PATH
];
633 char *folder
, *namebase
;
636 case SETTINGS_SAVE_THEME
:
640 #ifdef HAVE_RECORDING
641 case SETTINGS_SAVE_RECPRESETS
:
642 folder
= RECPRESETS_DIR
;
643 namebase
= "recording";
646 #if CONFIG_CODEC == SWCODEC
647 case SETTINGS_SAVE_EQPRESET
:
652 case SETTINGS_SAVE_SOUND
:
653 folder
= ROCKBOX_DIR
;
657 folder
= ROCKBOX_DIR
;
661 create_numbered_filename(filename
, folder
, namebase
, ".cfg", 2
662 IF_CNFN_NUM_(, NULL
));
664 /* allow user to modify filename */
666 if (!kbd_input(filename
, sizeof filename
)) {
674 if (settings_write_config(filename
, options
))
675 splash(HZ
, ID2P(LANG_SETTINGS_SAVED
));
677 splash(HZ
, ID2P(LANG_FAILED
));
681 /** Apply and Reset settings **/
684 #ifdef HAVE_LCD_BITMAP
686 * Applies the range infos stored in global_settings to
689 void settings_apply_pm_range(void)
693 /* depending on the scale mode (dBfs or percent) the values
694 of global_settings.peak_meter_dbfs have different meanings */
695 if (global_settings
.peak_meter_dbfs
)
697 /* convert to dBfs * 100 */
698 pm_min
= -(((int)global_settings
.peak_meter_min
) * 100);
699 pm_max
= -(((int)global_settings
.peak_meter_max
) * 100);
703 /* percent is stored directly -> no conversion */
704 pm_min
= global_settings
.peak_meter_min
;
705 pm_max
= global_settings
.peak_meter_max
;
708 /* apply the range */
709 peak_meter_init_range(global_settings
.peak_meter_dbfs
, pm_min
, pm_max
);
711 #endif /* HAVE_LCD_BITMAP */
713 void sound_settings_apply(void)
715 #if CONFIG_CODEC == SWCODEC
716 sound_set_dsp_callback(dsp_callback
);
718 sound_set(SOUND_BASS
, global_settings
.bass
);
719 sound_set(SOUND_TREBLE
, global_settings
.treble
);
720 sound_set(SOUND_BALANCE
, global_settings
.balance
);
721 sound_set(SOUND_VOLUME
, global_settings
.volume
);
722 sound_set(SOUND_CHANNELS
, global_settings
.channel_config
);
723 sound_set(SOUND_STEREO_WIDTH
, global_settings
.stereo_width
);
724 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
725 sound_set(SOUND_LOUDNESS
, global_settings
.loudness
);
726 sound_set(SOUND_AVC
, global_settings
.avc
);
727 sound_set(SOUND_MDB_STRENGTH
, global_settings
.mdb_strength
);
728 sound_set(SOUND_MDB_HARMONICS
, global_settings
.mdb_harmonics
);
729 sound_set(SOUND_MDB_CENTER
, global_settings
.mdb_center
);
730 sound_set(SOUND_MDB_SHAPE
, global_settings
.mdb_shape
);
731 sound_set(SOUND_MDB_ENABLE
, global_settings
.mdb_enable
);
732 sound_set(SOUND_SUPERBASS
, global_settings
.superbass
);
736 sound_set(SOUND_BASS_CUTOFF
, global_settings
.bass_cutoff
);
737 sound_set(SOUND_TREBLE_CUTOFF
, global_settings
.treble_cutoff
);
743 /* call this after loading a .wps/.rwps pr other skin files, so that the
744 * skin buffer is reset properly
746 void settings_apply_skins(void)
749 /* re-initialize the skin buffer before we start reloading skins */
752 #ifdef HAVE_LCD_BITMAP
753 skin_backdrop_init();
758 #ifdef HAVE_REMOTE_LCD
759 if (i
== SCREEN_REMOTE
)
760 setting
= global_settings
.rsbs_file
;
763 setting
= global_settings
.sbs_file
;
764 if (setting
[0] && setting
[0] != '-')
766 snprintf(buf
, sizeof buf
, SBS_DIR
"/%s.%ssbs", setting
,
767 i
== SCREEN_MAIN
? "" : "r");
768 sb_skin_data_load(i
, buf
, true);
772 sb_skin_data_load(i
, NULL
, true);
778 const char* setting
= global_settings
.wps_file
;
779 #ifdef HAVE_REMOTE_LCD
780 if (i
== SCREEN_REMOTE
)
781 setting
= global_settings
.rsbs_file
;
783 if (setting
[0] && setting
[0] != '-')
785 snprintf(buf
, sizeof buf
, WPS_DIR
"/%s.%swps", setting
,
786 i
== SCREEN_MAIN
? "" : "r");
787 wps_data_load(SCREEN_MAIN
, buf
, true);
791 wps_data_load(SCREEN_MAIN
, NULL
, true);
795 viewportmanager_theme_changed(THEME_STATUSBAR
);
796 #if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
798 screens
[i
].backdrop_show(sb_get_backdrop(i
));
802 void settings_apply(bool read_disk
)
806 #if CONFIG_CODEC == SWCODEC
809 sound_settings_apply();
811 #ifdef HAVE_DISK_STORAGE
812 audio_set_buffer_margin(global_settings
.buffer_margin
);
815 #ifdef HAVE_LCD_CONTRAST
816 lcd_set_contrast(global_settings
.contrast
);
818 lcd_scroll_speed(global_settings
.scroll_speed
);
819 #ifdef HAVE_REMOTE_LCD
820 lcd_remote_set_contrast(global_settings
.remote_contrast
);
821 lcd_remote_set_invert_display(global_settings
.remote_invert
);
824 lcd_remote_set_flip(global_settings
.remote_flip_display
);
827 lcd_remote_scroll_speed(global_settings
.remote_scroll_speed
);
828 lcd_remote_scroll_step(global_settings
.remote_scroll_step
);
829 lcd_remote_scroll_delay(global_settings
.remote_scroll_delay
);
830 lcd_remote_bidir_scroll(global_settings
.remote_bidir_limit
);
831 #ifdef HAVE_REMOTE_LCD_TICKING
832 lcd_remote_emireduce(global_settings
.remote_reduce_ticking
);
834 remote_backlight_set_timeout(global_settings
.remote_backlight_timeout
);
836 remote_backlight_set_timeout_plugged(global_settings
.remote_backlight_timeout_plugged
);
838 #ifdef HAS_REMOTE_BUTTON_HOLD
839 remote_backlight_set_on_button_hold(global_settings
.remote_backlight_on_button_hold
);
841 #endif /* HAVE_REMOTE_LCD */
842 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
843 backlight_set_brightness(global_settings
.brightness
);
845 #ifdef HAVE_BACKLIGHT
846 backlight_set_timeout(global_settings
.backlight_timeout
);
848 backlight_set_timeout_plugged(global_settings
.backlight_timeout_plugged
);
850 #if defined(HAVE_BACKLIGHT_FADING_INT_SETTING) \
851 || defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING)
852 backlight_set_fade_in(global_settings
.backlight_fade_in
);
853 backlight_set_fade_out(global_settings
.backlight_fade_out
);
856 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
857 buttonlight_set_brightness(global_settings
.buttonlight_brightness
);
859 #ifdef HAVE_BUTTON_LIGHT
860 buttonlight_set_timeout(global_settings
.buttonlight_timeout
);
862 #ifdef HAVE_DISK_STORAGE
863 storage_spindown(global_settings
.disk_spindown
);
865 #if (CONFIG_CODEC == MAS3507D) && !defined(SIMULATOR)
866 dac_line_in(global_settings
.line_in
);
868 set_poweroff_timeout(global_settings
.poweroff
);
870 set_battery_capacity(global_settings
.battery_capacity
);
871 #if BATTERY_TYPES_COUNT > 1
872 set_battery_type(global_settings
.battery_type
);
875 #ifdef HAVE_LCD_BITMAP
876 #ifdef HAVE_LCD_INVERT
877 lcd_set_invert_display(global_settings
.invert
);
880 lcd_set_flip(global_settings
.flip_display
);
881 button_set_flip(global_settings
.flip_display
);
883 lcd_update(); /* refresh after flipping the screen */
884 settings_apply_pm_range();
885 peak_meter_init_times(
886 global_settings
.peak_meter_release
, global_settings
.peak_meter_hold
,
887 global_settings
.peak_meter_clip_hold
);
891 audiohw_enable_speaker(global_settings
.speaker_enabled
);
896 #ifdef HAVE_LCD_BITMAP
897 /* fonts need to be loaded before the WPS */
898 if ( global_settings
.font_file
[0]) {
899 snprintf(buf
, sizeof buf
, FONT_DIR
"/%s.fnt",
900 global_settings
.font_file
);
901 if (font_load(NULL
, buf
) < 0)
906 #ifdef HAVE_REMOTE_LCD
907 if ( global_settings
.remote_font_file
[0]) {
908 snprintf(buf
, sizeof buf
, FONT_DIR
"/%s.fnt",
909 global_settings
.remote_font_file
);
910 if (font_load_remoteui(buf
) < 0)
911 font_load_remoteui(NULL
);
914 font_load_remoteui(NULL
);
916 if ( global_settings
.kbd_file
[0]) {
917 snprintf(buf
, sizeof buf
, ROCKBOX_DIR
"/%s.kbd",
918 global_settings
.kbd_file
);
925 if ( global_settings
.lang_file
[0]) {
926 snprintf(buf
, sizeof buf
, LANG_DIR
"/%s.lng",
927 global_settings
.lang_file
);
929 talk_init(); /* use voice of same language */
933 settings_apply_skins();
935 /* load the icon set */
938 #ifdef HAVE_LCD_COLOR
939 if (global_settings
.colors_file
[0])
940 read_color_theme_file();
944 #ifdef HAVE_LCD_COLOR
945 screens
[SCREEN_MAIN
].set_foreground(global_settings
.fg_color
);
946 screens
[SCREEN_MAIN
].set_background(global_settings
.bg_color
);
947 screens
[SCREEN_MAIN
].set_selector_start(global_settings
.lss_color
);
948 screens
[SCREEN_MAIN
].set_selector_end(global_settings
.lse_color
);
949 screens
[SCREEN_MAIN
].set_selector_text(global_settings
.lst_color
);
952 #ifdef HAVE_LCD_BITMAP
953 lcd_scroll_step(global_settings
.scroll_step
);
954 gui_list_screen_scroll_step(global_settings
.screen_scroll_step
);
955 gui_list_screen_scroll_out_of_view(global_settings
.offset_out_of_view
);
957 lcd_jump_scroll(global_settings
.jump_scroll
);
958 lcd_jump_scroll_delay(global_settings
.jump_scroll_delay
);
960 lcd_bidir_scroll(global_settings
.bidir_limit
);
961 lcd_scroll_delay(global_settings
.scroll_delay
);
964 set_codepage(global_settings
.default_codepage
);
966 #if CONFIG_CODEC == SWCODEC
967 #ifdef HAVE_CROSSFADE
968 audio_set_crossfade(global_settings
.crossfade
);
970 dsp_set_replaygain();
971 dsp_set_crossfeed(global_settings
.crossfeed
);
972 dsp_set_crossfeed_direct_gain(global_settings
.crossfeed_direct_gain
);
973 dsp_set_crossfeed_cross_params(global_settings
.crossfeed_cross_gain
,
974 global_settings
.crossfeed_hf_attenuation
,
975 global_settings
.crossfeed_hf_cutoff
);
977 /* Configure software equalizer, hardware eq is handled in audio_init() */
978 dsp_set_eq(global_settings
.eq_enabled
);
979 dsp_set_eq_precut(global_settings
.eq_precut
);
980 for(i
= 0; i
< 5; i
++) {
984 dsp_dither_enable(global_settings
.dithering_enabled
);
985 dsp_timestretch_enable(global_settings
.timestretch_enabled
);
986 dsp_set_compressor(global_settings
.compressor_threshold
,
987 global_settings
.compressor_makeup_gain
,
988 global_settings
.compressor_ratio
,
989 global_settings
.compressor_knee
,
990 global_settings
.compressor_release_time
);
993 #ifdef HAVE_SPDIF_POWER
994 spdif_power_enable(global_settings
.spdif_enable
);
997 #ifdef HAVE_BACKLIGHT
998 set_backlight_filter_keypress(global_settings
.bl_filter_first_keypress
);
999 #ifdef HAVE_REMOTE_LCD
1000 set_remote_backlight_filter_keypress(global_settings
.remote_bl_filter_first_keypress
);
1002 #ifdef HAS_BUTTON_HOLD
1003 backlight_set_on_button_hold(global_settings
.backlight_on_button_hold
);
1005 #ifdef HAVE_LCD_SLEEP_SETTING
1006 lcd_set_sleep_after_backlight_off(global_settings
.lcd_sleep_after_backlight_off
);
1008 #endif /* HAVE_BACKLIGHT */
1010 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
1011 touchpad_set_sensitivity(global_settings
.touchpad_sensitivity
);
1014 #ifdef HAVE_USB_CHARGING_ENABLE
1015 usb_charging_enable(global_settings
.usb_charging
);
1018 #ifdef HAVE_TOUCHSCREEN
1019 touchscreen_set_mode(global_settings
.touch_mode
);
1020 memcpy(&calibration_parameters
, &global_settings
.ts_calibration_data
, sizeof(struct touchscreen_parameter
));
1023 /* This should stay last */
1024 #if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
1025 enc_global_settings_apply();
1027 #ifdef HAVE_LCD_BITMAP
1028 /* already called with THEME_STATUSBAR in settings_apply_skins() */
1029 viewportmanager_theme_changed(THEME_UI_VIEWPORT
|THEME_LANGUAGE
);
1035 * reset all settings to their default value
1037 void reset_setting(const struct settings_list
*setting
, void *var
)
1039 switch (setting
->flags
&F_T_MASK
)
1042 setting
->custom_setting
->set_default(setting
->setting
,
1043 setting
->default_val
.custom
);
1047 if (setting
->flags
&F_DEF_ISFUNC
)
1048 *(int*)var
= setting
->default_val
.func();
1049 else if (setting
->flags
&F_T_SOUND
)
1050 *(int*)var
= sound_default(setting
->sound_setting
->setting
);
1051 else *(int*)var
= setting
->default_val
.int_
;
1054 *(bool*)var
= setting
->default_val
.bool_
;
1058 strlcpy((char*)var
, setting
->default_val
.charptr
,
1059 setting
->filename_setting
->max_len
);
1064 void settings_reset(void)
1068 for(i
=0; i
<nb_settings
; i
++)
1069 reset_setting(&settings
[i
], settings
[i
].setting
);
1070 #if defined (HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
1071 enc_global_settings_reset();
1075 /** Changing setting values **/
1076 const struct settings_list
* find_setting(const void* variable
, int *id
)
1079 for(i
=0;i
<nb_settings
;i
++)
1081 if (settings
[i
].setting
== variable
)
1085 return &settings
[i
];
1091 bool set_bool(const char* string
, const bool* variable
)
1093 return set_bool_options(string
, variable
,
1094 (char *)STR(LANG_SET_BOOL_YES
),
1095 (char *)STR(LANG_SET_BOOL_NO
),
1100 bool set_bool_options(const char* string
, const bool* variable
,
1101 const char* yes_str
, int yes_voice
,
1102 const char* no_str
, int no_voice
,
1103 void (*function
)(bool))
1105 struct opt_items names
[] = {
1106 {(unsigned const char *)no_str
, no_voice
},
1107 {(unsigned const char *)yes_str
, yes_voice
}
1111 result
= set_option(string
, variable
, BOOL
, names
, 2,
1112 (void (*)(int))function
);
1116 bool set_int(const unsigned char* string
,
1119 const int* variable
,
1120 void (*function
)(int),
1124 const char* (*formatter
)(char*, size_t, int, const char*) )
1126 return set_int_ex(string
, unit
, voice_unit
, variable
, function
,
1127 step
, min
, max
, formatter
, NULL
);
1130 bool set_int_ex(const unsigned char* string
,
1133 const int* variable
,
1134 void (*function
)(int),
1138 const char* (*formatter
)(char*, size_t, int, const char*),
1139 int32_t (*get_talk_id
)(int, int))
1142 struct settings_list item
;
1143 struct int_setting data
= {
1144 function
, voice_unit
, min
, max
, step
,
1145 formatter
, get_talk_id
1147 item
.int_setting
= &data
;
1148 item
.flags
= F_INT_SETTING
|F_T_INT
;
1150 item
.cfg_vals
= (char*)string
;
1151 item
.setting
= (void *)variable
;
1152 return option_screen(&item
, NULL
, false, NULL
);
1156 static const struct opt_items
*set_option_options
;
1157 static const char* set_option_formatter(char* buf
, size_t size
, int item
, const char* unit
)
1159 (void)buf
, (void)unit
, (void)size
;
1160 return P2STR(set_option_options
[item
].string
);
1163 static int32_t set_option_get_talk_id(int value
, int unit
)
1166 return set_option_options
[value
].voice_id
;
1169 bool set_option(const char* string
, const void* variable
, enum optiontype type
,
1170 const struct opt_items
* options
,
1171 int numoptions
, void (*function
)(int))
1174 struct settings_list item
;
1175 struct int_setting data
= {
1176 function
, UNIT_INT
, 0, numoptions
-1, 1,
1177 set_option_formatter
, set_option_get_talk_id
1179 set_option_options
= options
;
1180 item
.int_setting
= &data
;
1181 item
.flags
= F_INT_SETTING
|F_T_INT
;
1183 item
.cfg_vals
= (char*)string
;
1184 item
.setting
= &temp
;
1186 temp
= *(bool*)variable
? 1: 0;
1188 temp
= *(int*)variable
;
1189 if (!option_screen(&item
, NULL
, false, NULL
))
1192 *(bool*)variable
= (temp
== 1);
1194 *(int*)variable
= temp
;
1201 void set_file(const char* filename
, char* setting
, int maxlen
)
1203 const char* fptr
= strrchr(filename
,'/');
1215 while ((*ptr
!= '.') && (ptr
!= fptr
)) {
1219 if(ptr
== fptr
) extlen
= 0;
1221 if (strncasecmp(ROCKBOX_DIR
, filename
, strlen(ROCKBOX_DIR
)) ||
1222 (len
-extlen
> maxlen
))
1225 strlcpy(setting
, fptr
, len
-extlen
+1);