2002-06-27 00:20:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by wavey@wavey.org
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SETTINGS_H__
|
|
|
|
#define __SETTINGS_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2003-07-15 02:34:10 +00:00
|
|
|
#include "config.h"
|
2002-08-16 14:41:47 +00:00
|
|
|
#include "file.h"
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2002-09-01 19:50:45 +00:00
|
|
|
#define ROCKBOX_DIR "/.rockbox"
|
2004-01-08 12:40:25 +00:00
|
|
|
#define FONT_DIR "/fonts"
|
|
|
|
#define LANG_DIR "/langs"
|
2003-09-29 21:26:53 +00:00
|
|
|
#define PLUGIN_DIR ROCKBOX_DIR"/rocks"
|
2002-09-01 19:50:45 +00:00
|
|
|
|
2002-10-08 15:42:40 +00:00
|
|
|
#define MAX_FILENAME 20
|
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
/* data structures */
|
|
|
|
|
2002-08-19 10:57:55 +00:00
|
|
|
#define RESUME_OFF 0
|
|
|
|
#define RESUME_ASK 1
|
2002-10-16 07:25:33 +00:00
|
|
|
#define RESUME_ASK_ONCE 2
|
|
|
|
#define RESUME_ON 3
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2002-09-04 03:38:37 +00:00
|
|
|
#define FF_REWIND_1000 0
|
|
|
|
#define FF_REWIND_2000 1
|
|
|
|
#define FF_REWIND_3000 2
|
|
|
|
#define FF_REWIND_4000 3
|
|
|
|
#define FF_REWIND_5000 4
|
|
|
|
#define FF_REWIND_6000 5
|
|
|
|
#define FF_REWIND_8000 6
|
|
|
|
#define FF_REWIND_10000 7
|
|
|
|
#define FF_REWIND_15000 8
|
|
|
|
#define FF_REWIND_20000 9
|
|
|
|
#define FF_REWIND_25000 10
|
|
|
|
#define FF_REWIND_30000 11
|
|
|
|
#define FF_REWIND_45000 12
|
|
|
|
#define FF_REWIND_60000 13
|
|
|
|
|
2003-09-29 21:26:53 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
struct user_settings
|
|
|
|
{
|
|
|
|
/* audio settings */
|
|
|
|
|
|
|
|
int volume; /* audio output volume: 0-100 0=off 100=max */
|
|
|
|
int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
|
|
|
|
int bass; /* bass eq: 0-100 0=off 100=max */
|
|
|
|
int treble; /* treble eq: 0-100 0=low 100=high */
|
|
|
|
int loudness; /* loudness eq: 0-100 0=off 100=max */
|
|
|
|
int bass_boost; /* bass boost eq: 0-100 0=off 100=max */
|
2002-07-25 15:55:22 +00:00
|
|
|
int avc; /* auto volume correct: 0=disable, 1=2s 2=4s 3=8s */
|
2002-09-09 15:13:33 +00:00
|
|
|
int channel_config; /* Stereo, Mono, Mono left, Mono right */
|
2002-11-10 23:18:33 +00:00
|
|
|
|
|
|
|
int rec_quality; /* 0-7 */
|
|
|
|
int rec_source; /* 0=mic, 1=line, 2=S/PDIF */
|
|
|
|
int rec_frequency; /* 0 = 44.1kHz
|
|
|
|
1 = 48kHz
|
|
|
|
2 = 32kHz
|
|
|
|
3 = 22.05kHz
|
|
|
|
4 = 24kHz
|
|
|
|
5 = 16kHz */
|
|
|
|
int rec_channels; /* 0=Stereo, 1=Mono */
|
|
|
|
int rec_mic_gain; /* 0-15 */
|
|
|
|
int rec_left_gain; /* 0-15 */
|
|
|
|
int rec_right_gain; /* 0-15 */
|
2003-04-20 22:00:30 +00:00
|
|
|
bool rec_editable; /* true means that the bit reservoir is off */
|
2003-06-04 13:48:50 +00:00
|
|
|
|
|
|
|
/* note: timesplit setting is not saved */
|
2003-06-10 19:24:51 +00:00
|
|
|
int rec_timesplit; /* 0 = off,
|
|
|
|
1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
|
|
|
|
5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
|
|
|
|
9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
|
|
|
|
13= 24:00 */
|
2003-12-31 03:13:29 +00:00
|
|
|
|
|
|
|
int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
|
2002-07-25 15:55:22 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
/* device settings */
|
|
|
|
|
2003-02-27 14:22:30 +00:00
|
|
|
int contrast; /* lcd contrast: 0-63 0=low 63=high */
|
|
|
|
bool invert; /* invert display */
|
2003-04-16 00:12:31 +00:00
|
|
|
bool invert_cursor; /* invert the current file in dir browser and menu
|
|
|
|
instead of using the default cursor */
|
2003-12-20 10:00:37 +00:00
|
|
|
bool flip_display; /* turn display (and button layout) by 180 degrees */
|
2002-09-23 11:42:48 +00:00
|
|
|
int poweroff; /* power off timer */
|
2002-11-10 23:18:33 +00:00
|
|
|
int backlight_timeout; /* backlight off timeout: 0-18 0=never,
|
|
|
|
1=always,
|
|
|
|
then according to timeout_values[] */
|
2002-10-01 10:59:36 +00:00
|
|
|
bool backlight_on_when_charging;
|
2002-12-14 15:44:57 +00:00
|
|
|
bool discharge; /* maintain charge of at least: false = 85%, true = 10% */
|
|
|
|
bool trickle_charge; /* do trickle charging: 0=off, 1=on */
|
2002-12-16 22:58:48 +00:00
|
|
|
int battery_capacity; /* in mAh */
|
2002-06-27 00:20:00 +00:00
|
|
|
|
|
|
|
/* resume settings */
|
|
|
|
|
2002-08-19 10:57:55 +00:00
|
|
|
int resume; /* resume option: 0=off, 1=ask, 2=on */
|
2003-12-09 08:18:03 +00:00
|
|
|
short resume_index; /* index in playlist (-1 for no active resume) */
|
|
|
|
short resume_first_index; /* index of first track in playlist */
|
2002-08-16 14:41:47 +00:00
|
|
|
int resume_offset; /* byte offset in mp3 file */
|
2003-12-09 08:18:03 +00:00
|
|
|
int resume_seed; /* shuffle seed (-1=no resume shuffle 0=sorted
|
|
|
|
>0=shuffled) */
|
2003-01-09 00:55:00 +00:00
|
|
|
|
2002-10-08 15:42:40 +00:00
|
|
|
unsigned char font_file[MAX_FILENAME+1]; /* last font */
|
|
|
|
unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
|
|
|
|
unsigned char lang_file[MAX_FILENAME+1]; /* last language */
|
2002-06-27 00:20:00 +00:00
|
|
|
|
|
|
|
/* misc options */
|
|
|
|
|
2002-10-04 08:48:20 +00:00
|
|
|
int repeat_mode; /* 0=off 1=repeat all 2=repeat one */
|
2002-09-24 19:12:09 +00:00
|
|
|
int dirfilter; /* 0=display all, 1=only supported, 2=only music */
|
2002-07-22 16:39:17 +00:00
|
|
|
bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
|
2002-10-26 05:26:23 +00:00
|
|
|
int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
|
2003-02-16 12:39:07 +00:00
|
|
|
int battery_type; /* how battery is displayed: 0=graphic, 1=percent */
|
2002-10-14 12:50:20 +00:00
|
|
|
int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
|
2002-09-05 04:47:24 +00:00
|
|
|
int scroll_speed; /* long texts scrolling speed: 1-30 */
|
2002-06-27 01:08:11 +00:00
|
|
|
bool playlist_shuffle;
|
2002-09-18 10:12:16 +00:00
|
|
|
bool play_selected; /* Plays selected file even in shuffle mode */
|
2002-09-04 03:38:37 +00:00
|
|
|
int ff_rewind_min_step; /* FF/Rewind minimum step size */
|
2002-08-28 19:34:07 +00:00
|
|
|
int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
|
2002-08-26 13:21:14 +00:00
|
|
|
int disk_spindown; /* time until disk spindown, in seconds (0=off) */
|
2002-11-28 22:46:19 +00:00
|
|
|
bool disk_poweroff; /* whether to cut disk power after spindown or not */
|
2002-12-05 13:09:51 +00:00
|
|
|
int buffer_margin; /* MP3 buffer watermark margin, in seconds */
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2002-09-27 09:31:31 +00:00
|
|
|
int peak_meter_release; /* units per read out */
|
|
|
|
int peak_meter_hold; /* hold time for peak meter in 1/100 s */
|
|
|
|
int peak_meter_clip_hold; /* hold time for clips */
|
2002-10-29 12:09:15 +00:00
|
|
|
bool peak_meter_dbfs; /* show linear or dbfs values */
|
|
|
|
bool peak_meter_performance; /* true: high performance, else save energy*/
|
2003-02-14 14:14:55 +00:00
|
|
|
int peak_meter_min; /* range minimum */
|
|
|
|
int peak_meter_max; /* range maximum */
|
2003-10-17 14:49:00 +00:00
|
|
|
bool car_adapter_mode; /* 0=off 1=on */
|
2002-09-27 09:31:31 +00:00
|
|
|
|
2002-08-07 10:35:26 +00:00
|
|
|
/* show status bar */
|
|
|
|
bool statusbar; /* 0=hide, 1=show */
|
2002-08-22 15:47:30 +00:00
|
|
|
|
2002-08-30 13:49:32 +00:00
|
|
|
/* show scroll bar */
|
|
|
|
bool scrollbar; /* 0=hide, 1=show */
|
|
|
|
|
2002-09-09 14:25:39 +00:00
|
|
|
/* goto current song when exiting WPS */
|
|
|
|
bool browse_current; /* 1=goto current song,
|
|
|
|
0=goto previous location */
|
|
|
|
|
2002-12-02 16:07:56 +00:00
|
|
|
int runtime; /* current runtime since last charge */
|
|
|
|
int topruntime; /* top known runtime */
|
2002-12-12 15:20:37 +00:00
|
|
|
|
|
|
|
int bidir_limit; /* bidir scroll length limit */
|
|
|
|
int scroll_delay; /* delay (in 1/10s) before starting scroll */
|
|
|
|
int scroll_step; /* pixels to advance per update */
|
2003-05-22 06:42:14 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
int jump_scroll; /* Fast jump when scrolling */
|
2003-05-27 12:54:11 +00:00
|
|
|
int jump_scroll_delay; /* Delay between jump scroll screens */
|
2003-05-22 06:42:14 +00:00
|
|
|
#endif
|
2003-02-14 15:54:52 +00:00
|
|
|
bool fade_on_stop; /* fade on pause/unpause/stop */
|
2003-04-23 09:17:34 +00:00
|
|
|
bool caption_backlight; /* turn on backlight at end and start of track */
|
2003-05-09 16:01:21 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_FMRADIO
|
|
|
|
int fm_freq_step; /* Frequency step for manual tuning, in kHz */
|
|
|
|
bool fm_force_mono; /* Forces Mono mode if true */
|
|
|
|
bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else
|
|
|
|
only 88MHz-108MHz */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int max_files_in_dir; /* Max entries in directory (file browser) */
|
|
|
|
int max_files_in_playlist; /* Max entries in playlist */
|
2003-06-05 09:38:26 +00:00
|
|
|
bool show_icons; /* 0=hide 1=show */
|
2003-07-02 15:54:44 +00:00
|
|
|
int recursive_dir_insert; /* should directories be inserted recursively */
|
2003-11-03 23:36:36 +00:00
|
|
|
|
|
|
|
bool line_in; /* false=off, true=active */
|
2002-06-27 00:20:00 +00:00
|
|
|
};
|
|
|
|
|
2003-06-05 11:11:10 +00:00
|
|
|
enum optiontype { INT, BOOL };
|
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
/* prototypes */
|
|
|
|
|
2002-07-15 11:02:12 +00:00
|
|
|
int settings_save(void);
|
|
|
|
void settings_load(void);
|
|
|
|
void settings_reset(void);
|
2002-10-03 09:31:01 +00:00
|
|
|
void settings_apply(void);
|
2002-10-29 12:09:15 +00:00
|
|
|
void settings_apply_pm_range(void);
|
2002-07-15 11:02:12 +00:00
|
|
|
void settings_display(void);
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2002-10-08 09:40:05 +00:00
|
|
|
bool settings_load_config(char* file);
|
2003-03-10 16:31:02 +00:00
|
|
|
bool settings_save_config(void);
|
2002-09-24 17:22:12 +00:00
|
|
|
bool set_bool_options(char* string, bool* variable,
|
2003-06-05 11:11:10 +00:00
|
|
|
char* yes_str, char* no_str, void (*function)(bool));
|
2002-09-05 01:20:10 +00:00
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
bool set_bool(char* string, bool* variable );
|
2003-06-05 11:11:10 +00:00
|
|
|
bool set_option(char* string, void* variable, enum optiontype type,
|
|
|
|
char* options[], int numoptions, void (*function)(int));
|
2002-11-30 09:42:13 +00:00
|
|
|
bool set_int(char* string, char* unit, int* variable,
|
|
|
|
void (*function)(int), int step, int min, int max );
|
2002-09-24 17:22:12 +00:00
|
|
|
bool set_time(char* string, int timedate[]);
|
2003-02-17 09:53:11 +00:00
|
|
|
void set_file(char* filename, char* setting, int maxlen);
|
2002-06-27 01:08:11 +00:00
|
|
|
|
2003-11-20 00:33:43 +00:00
|
|
|
#ifdef HAVE_MAS3587F
|
|
|
|
unsigned int rec_timesplit_seconds(void);
|
|
|
|
#endif
|
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
/* global settings */
|
|
|
|
extern struct user_settings global_settings;
|
2002-08-30 13:24:03 +00:00
|
|
|
/* name of directory where configuration, fonts and other data
|
|
|
|
* files are stored */
|
|
|
|
extern char rockboxdir[];
|
2003-10-17 13:54:48 +00:00
|
|
|
extern long lasttime;
|
2002-06-27 00:20:00 +00:00
|
|
|
|
|
|
|
/* system defines */
|
|
|
|
|
2002-08-13 11:10:11 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2002-08-13 17:16:09 +00:00
|
|
|
#define MAX_CONTRAST_SETTING 31
|
2002-08-13 16:00:10 +00:00
|
|
|
#define DEFAULT_CONTRAST_SETTING 30
|
2002-08-13 11:10:11 +00:00
|
|
|
#else
|
2002-08-13 17:16:09 +00:00
|
|
|
#define MAX_CONTRAST_SETTING 63
|
2002-09-04 04:25:20 +00:00
|
|
|
#define DEFAULT_CONTRAST_SETTING 38
|
2002-08-13 11:10:11 +00:00
|
|
|
#endif
|
2002-08-13 17:16:09 +00:00
|
|
|
#define MIN_CONTRAST_SETTING 5
|
2003-02-27 14:22:30 +00:00
|
|
|
#define DEFAULT_INVERT_SETTING false
|
2003-04-16 00:12:31 +00:00
|
|
|
#define DEFAULT_INVERT_CURSOR_SETTING false
|
2002-06-27 00:20:00 +00:00
|
|
|
#define DEFAULT_POWEROFF_SETTING 0
|
2002-10-01 10:59:36 +00:00
|
|
|
#define DEFAULT_BACKLIGHT_TIMEOUT_SETTING 5
|
|
|
|
#define DEFAULT_BACKLIGHT_ON_WHEN_CHARGING_SETTING 0
|
2002-09-04 03:38:37 +00:00
|
|
|
#define DEFAULT_FF_REWIND_MIN_STEP FF_REWIND_1000
|
2002-08-28 19:34:07 +00:00
|
|
|
#define DEFAULT_FF_REWIND_ACCEL_SETTING 3
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2002-10-04 08:48:20 +00:00
|
|
|
/* repeat mode options */
|
|
|
|
enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES };
|
|
|
|
|
2002-09-24 19:12:09 +00:00
|
|
|
/* dir filter options */
|
2003-09-29 21:26:53 +00:00
|
|
|
/* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
|
|
|
|
* Any new rockbox browse filter modes (accessible through the menu)
|
|
|
|
* must be added after NUM_FILTER_MODES. */
|
|
|
|
enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES,
|
|
|
|
SHOW_WPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS};
|
2002-09-24 19:12:09 +00:00
|
|
|
|
2003-07-02 15:54:44 +00:00
|
|
|
/* recursive dir insert options */
|
|
|
|
enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
|
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
#endif /* __SETTINGS_H__ */
|