mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
171 lines
5.0 KiB
C++
Executable File
171 lines
5.0 KiB
C++
Executable File
/* Mednafen - Multi-system Emulator
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
#include "mednafen.h"
|
|
#include "settings.h"
|
|
|
|
int setting_initial_scanline = 0;
|
|
int setting_initial_scanline_pal = 0;
|
|
int setting_last_scanline = 239;
|
|
int setting_last_scanline_pal = 287;
|
|
|
|
uint32_t setting_psx_multitap_port_1 = 0;
|
|
uint32_t setting_psx_multitap_port_2 = 0;
|
|
uint32_t setting_psx_analog_toggle = 0;
|
|
uint32_t setting_psx_fastboot = 1;
|
|
|
|
bool MDFN_SaveSettings(const char *path)
|
|
{
|
|
return(1);
|
|
}
|
|
|
|
uint64_t MDFN_GetSettingUI(const char *name)
|
|
{
|
|
if (!strcmp("psx.spu.resamp_quality", name)) /* make configurable */
|
|
return 4;
|
|
|
|
fprintf(stderr, "unhandled setting UI: %s\n", name);
|
|
return 0;
|
|
}
|
|
|
|
int64 MDFN_GetSettingI(const char *name)
|
|
{
|
|
if (!strcmp("psx.region_default", name)) /* make configurable */
|
|
return 1; /* REGION_JP = 0, REGION_NA = 1, REGION_EU = 2 */
|
|
if (!strcmp("psx.slstart", name))
|
|
return setting_initial_scanline;
|
|
if (!strcmp("psx.slstartp", name))
|
|
return setting_initial_scanline_pal;
|
|
if (!strcmp("psx.slend", name))
|
|
return setting_last_scanline;
|
|
if (!strcmp("psx.slendp", name))
|
|
return setting_last_scanline_pal;
|
|
fprintf(stderr, "unhandled setting I: %s\n", name);
|
|
return 0;
|
|
}
|
|
|
|
double MDFN_GetSettingF(const char *name)
|
|
{
|
|
if (!strcmp("psx.input.mouse_sensitivity", name))
|
|
return 1.00; /* TODO - make configurable */
|
|
|
|
fprintf(stderr, "unhandled setting F: %s\n", name);
|
|
return 0;
|
|
}
|
|
|
|
bool MDFN_GetSettingB(const char *name)
|
|
{
|
|
if (!strcmp("cheats", name))
|
|
return 0;
|
|
/* LIBRETRO */
|
|
if (!strcmp("libretro.cd_load_into_ram", name))
|
|
return 0;
|
|
if (!strcmp("psx.input.port1.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port2.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port3.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port4.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port5.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port6.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port7.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.port8.memcard", name))
|
|
return 1;
|
|
if (!strcmp("psx.input.pport1.multitap", name)) /* make configurable */
|
|
return setting_psx_multitap_port_1;
|
|
if (!strcmp("psx.input.pport2.multitap", name)) /* make configurable */
|
|
return setting_psx_multitap_port_2;
|
|
if (!strcmp("psx.region_autodetect", name)) /* make configurable */
|
|
return 1;
|
|
if (!strcmp("psx.input.analog_mode_ct", name)) /* make configurable */
|
|
return setting_psx_analog_toggle;
|
|
if (!strcmp("psx.fastboot", name))
|
|
return setting_psx_fastboot;
|
|
/* CDROM */
|
|
if (!strcmp("cdrom.lec_eval", name))
|
|
return 1;
|
|
/* FILESYS */
|
|
if (!strcmp("filesys.untrusted_fip_check", name))
|
|
return 0;
|
|
if (!strcmp("filesys.disablesavegz", name))
|
|
return 1;
|
|
fprintf(stderr, "unhandled setting B: %s\n", name);
|
|
return 0;
|
|
}
|
|
|
|
extern std::string retro_base_directory;
|
|
extern std::string retro_base_name;
|
|
|
|
std::string MDFN_GetSettingS(const char *name)
|
|
{
|
|
if (!strcmp("psx.bios_eu", name))
|
|
return std::string("scph5502.bin");
|
|
if (!strcmp("psx.bios_jp", name))
|
|
return std::string("scph5500.bin");
|
|
if (!strcmp("psx.bios_na", name))
|
|
return std::string("scph5501.bin");
|
|
if (!strcmp("psx.region_default", name)) /* make configurable */
|
|
return "na";
|
|
/* FILESYS */
|
|
if (!strcmp("filesys.path_firmware", name))
|
|
return retro_base_directory;
|
|
if (!strcmp("filesys.path_palette", name))
|
|
return retro_base_directory;
|
|
if (!strcmp("filesys.path_sav", name))
|
|
return retro_base_directory;
|
|
if (!strcmp("filesys.path_state", name))
|
|
return retro_base_directory;
|
|
if (!strcmp("filesys.path_cheat", name))
|
|
return retro_base_directory;
|
|
if (!strcmp("filesys.fname_state", name))
|
|
return retro_base_name + std::string(".sav");
|
|
if (!strcmp("filesys.fname_sav", name))
|
|
return retro_base_name + std::string(".bsv");
|
|
fprintf(stderr, "unhandled setting S: %s\n", name);
|
|
return 0;
|
|
}
|
|
|
|
bool MDFNI_SetSetting(const char *name, const char *value, bool NetplayOverride)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool MDFNI_SetSettingB(const char *name, bool value)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool MDFNI_SetSettingUI(const char *name, uint64_t value)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool MDFNI_DumpSettingsDef(const char *path)
|
|
{
|
|
return true;
|
|
}
|