2008-12-11 18:38:29 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* config.c
|
|
|
|
*
|
|
|
|
* Genesis Plus GX configuration file support
|
|
|
|
*
|
|
|
|
* code by Eke-Eke (2008)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2008-08-07 14:26:07 +02:00
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Config Option
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
typedef struct
|
|
|
|
{
|
2008-08-17 22:17:49 +02:00
|
|
|
char version[15];
|
2008-08-07 14:26:07 +02:00
|
|
|
double psg_preamp;
|
|
|
|
double fm_preamp;
|
|
|
|
uint8 boost;
|
2008-08-21 22:34:00 +02:00
|
|
|
uint8 filter;
|
2008-08-07 14:26:07 +02:00
|
|
|
uint8 hq_fm;
|
|
|
|
uint8 fm_core;
|
|
|
|
int8 sram_auto;
|
|
|
|
int8 freeze_auto;
|
|
|
|
uint8 region_detect;
|
|
|
|
uint8 force_dtack;
|
|
|
|
uint8 bios_enabled;
|
|
|
|
int16 xshift;
|
|
|
|
int16 yshift;
|
|
|
|
int16 xscale;
|
|
|
|
int16 yscale;
|
|
|
|
uint8 tv_mode;
|
|
|
|
uint8 aspect;
|
|
|
|
uint8 overscan;
|
|
|
|
uint8 render;
|
2008-10-02 22:22:53 +02:00
|
|
|
uint8 ntsc;
|
2008-10-23 22:38:06 +02:00
|
|
|
uint8 bilinear;
|
2008-08-07 14:26:07 +02:00
|
|
|
uint16 pad_keymap[4][MAX_KEYS];
|
|
|
|
uint32 wpad_keymap[4*3][MAX_KEYS];
|
|
|
|
t_input_config input[MAX_DEVICES];
|
2008-08-10 22:40:04 +02:00
|
|
|
uint8 gun_cursor;
|
|
|
|
uint8 invert_mouse;
|
2008-08-07 14:26:07 +02:00
|
|
|
} t_config;
|
|
|
|
|
2008-12-07 20:31:50 +01:00
|
|
|
/* Global data */
|
|
|
|
t_config config;
|
|
|
|
|
|
|
|
|
2008-08-07 14:26:07 +02:00
|
|
|
extern void config_save();
|
|
|
|
extern void config_load();
|
|
|
|
extern void set_config_defaults(void);
|
2008-12-12 16:38:04 +01:00
|
|
|
|
2008-08-07 14:26:07 +02:00
|
|
|
|
|
|
|
#endif /* _CONFIG_H_ */
|
|
|
|
|