2007-01-23 13:40:44 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-02-13 00:32:17 +00:00
|
|
|
* $Id$
|
2007-01-23 13:40:44 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Jonathan Gordon
|
|
|
|
*
|
|
|
|
* 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 __SETTINGSLIST_H
|
|
|
|
#define __SETTINGSLIST_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include "inttypes.h"
|
|
|
|
|
2007-01-24 03:14:07 +00:00
|
|
|
typedef int (*_isfunc_type)(void);
|
|
|
|
|
2007-01-23 13:40:44 +00:00
|
|
|
union storage_type {
|
|
|
|
int int_;
|
|
|
|
unsigned int uint_;
|
|
|
|
bool bool_;
|
|
|
|
char *charptr;
|
|
|
|
unsigned char *ucharptr;
|
2007-01-24 03:14:07 +00:00
|
|
|
_isfunc_type func;
|
2007-01-23 13:40:44 +00:00
|
|
|
};
|
|
|
|
/* the variable type for the setting */
|
|
|
|
#define F_T_INT 1
|
|
|
|
#define F_T_UINT 2
|
|
|
|
#define F_T_BOOL 3
|
|
|
|
#define F_T_CHARPTR 4
|
|
|
|
#define F_T_UCHARPTR 5
|
|
|
|
#define F_T_MASK 0x7
|
|
|
|
|
|
|
|
struct sound_setting {
|
|
|
|
int setting; /* from the enum in firmware/sound.h */
|
|
|
|
};
|
|
|
|
#define F_T_SOUND 0x8 /* this variable uses the set_sound stuff, \
|
|
|
|
| with one of the above types (usually F_T_INT) \
|
|
|
|
These settings get the default from sound_default(setting); */
|
|
|
|
struct bool_setting {
|
|
|
|
void (*option_callback)(bool);
|
|
|
|
int lang_yes;
|
|
|
|
int lang_no;
|
|
|
|
};
|
2007-02-08 04:33:41 +00:00
|
|
|
#define F_BOOL_SETTING (F_T_BOOL|0x10)
|
2007-01-23 13:40:44 +00:00
|
|
|
#define F_RGB 0x20
|
|
|
|
|
2007-01-24 03:14:07 +00:00
|
|
|
struct filename_setting {
|
|
|
|
const char* prefix;
|
|
|
|
const char* suffix;
|
|
|
|
int max_len;
|
|
|
|
};
|
|
|
|
#define F_FILENAME 0x40
|
|
|
|
|
2007-01-23 13:40:44 +00:00
|
|
|
struct int_setting {
|
2007-02-08 10:28:42 +00:00
|
|
|
void (*option_callback)(int);
|
|
|
|
int unit;
|
|
|
|
int min;
|
|
|
|
int max;
|
|
|
|
int step;
|
|
|
|
void (*formatter)(char*, int, int, const char*);
|
2007-02-12 14:22:35 +00:00
|
|
|
long (*get_talk_id)(int);
|
2007-01-23 13:40:44 +00:00
|
|
|
};
|
2007-02-08 04:33:41 +00:00
|
|
|
#define F_INT_SETTING 0x80
|
|
|
|
|
|
|
|
struct choice_setting {
|
2007-02-08 10:28:42 +00:00
|
|
|
void (*option_callback)(int);
|
|
|
|
int count;
|
|
|
|
union {
|
|
|
|
unsigned char **desc;
|
|
|
|
int *talks;
|
|
|
|
};
|
2007-02-08 04:33:41 +00:00
|
|
|
};
|
|
|
|
#define F_CHOICE_SETTING 0x100
|
2007-02-08 10:28:42 +00:00
|
|
|
#define F_CHOICETALKS 0x200 /* uses .talks in the above struct for the talks */
|
|
|
|
/* and cfg_vals for the strings to display */
|
2007-01-24 03:14:07 +00:00
|
|
|
/* these use the _isfunc_type type for the function */
|
|
|
|
/* typedef int (*_isfunc_type)(void); */
|
|
|
|
#define F_MIN_ISFUNC 0x100000 /* min(above) is function pointer to above type */
|
|
|
|
#define F_MAX_ISFUNC 0x200000 /* max(above) is function pointer to above type */
|
|
|
|
#define F_DEF_ISFUNC 0x400000 /* default_val is function pointer to above type */
|
|
|
|
|
2007-02-08 04:33:41 +00:00
|
|
|
#define F_THEMESETTING 0x800000
|
|
|
|
|
|
|
|
#define F_NVRAM_BYTES_MASK 0xE000 /*0-4 bytes can be stored */
|
|
|
|
#define F_NVRAM_MASK_SHIFT 13
|
2007-01-24 02:19:22 +00:00
|
|
|
#define NVRAM_CONFIG_VERSION 2
|
2007-01-23 13:40:44 +00:00
|
|
|
/* Above define should be bumped if
|
|
|
|
- a new NVRAM setting is added between 2 other NVRAM settings
|
|
|
|
- number of bytes for a NVRAM setting is changed
|
|
|
|
- a NVRAM setting is removed
|
|
|
|
*/
|
2007-02-08 10:28:42 +00:00
|
|
|
#define F_TEMPVAR 0x400 /* used if the setting should be set using a temp var */
|
2007-01-24 03:14:07 +00:00
|
|
|
|
2007-01-23 13:40:44 +00:00
|
|
|
struct settings_list {
|
2007-02-08 10:28:42 +00:00
|
|
|
uint32_t flags; /* ____ ____ TFFF ____ NNN_ _TVC IFRB STTT */
|
2007-01-23 13:40:44 +00:00
|
|
|
void *setting;
|
2007-01-26 05:45:06 +00:00
|
|
|
int lang_id; /* -1 for none */
|
2007-01-23 13:40:44 +00:00
|
|
|
union storage_type default_val;
|
|
|
|
const char *cfg_name; /* this settings name in the cfg file */
|
|
|
|
const char *cfg_vals; /*comma seperated legal values, or NULL */
|
|
|
|
/* used with F_T_UCHARPTR this is the folder prefix */
|
|
|
|
union {
|
|
|
|
void *RESERVED; /* to stop compile errors, will be removed */
|
|
|
|
struct sound_setting *sound_setting; /* use F_T_SOUND for this */
|
|
|
|
struct bool_setting *bool_setting; /* F_BOOL_SETTING */
|
|
|
|
struct filename_setting *filename_setting; /* use F_FILENAME */
|
2007-02-08 04:33:41 +00:00
|
|
|
struct int_setting *int_setting; /* use F_INT_SETTING */
|
|
|
|
struct choice_setting *choice_setting; /* F_CHOICE_SETTING */
|
2007-01-23 13:40:44 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef PLUGIN
|
|
|
|
/* not needed for plugins and just causes compile error,
|
|
|
|
possibly fix proberly later */
|
|
|
|
extern const struct settings_list settings[];
|
|
|
|
extern const int nb_settings;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|