2013-12-19 17:10:14 +00:00
|
|
|
// nullDC.cpp : Makes magic cookies
|
|
|
|
//
|
|
|
|
|
|
|
|
//initialse Emu
|
|
|
|
#include "types.h"
|
|
|
|
#include "oslib/oslib.h"
|
2015-07-17 21:58:46 +00:00
|
|
|
#include "oslib/audiostream.h"
|
2013-12-19 17:10:14 +00:00
|
|
|
#include "hw/mem/_vmem.h"
|
|
|
|
#include "stdclass.h"
|
|
|
|
#include "cfg/cfg.h"
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
#include "hw/maple/maple_cfg.h"
|
|
|
|
#include "hw/sh4/sh4_mem.h"
|
|
|
|
|
2014-04-22 14:32:04 +00:00
|
|
|
#include "webui/server.h"
|
2015-08-09 20:39:32 +00:00
|
|
|
#include "hw/naomi/naomi_cart.h"
|
2018-08-19 03:40:26 +00:00
|
|
|
#include "reios/reios.h"
|
2014-04-22 14:32:04 +00:00
|
|
|
|
2013-12-19 17:10:14 +00:00
|
|
|
settings_t settings;
|
|
|
|
|
|
|
|
/*
|
|
|
|
libndc
|
|
|
|
|
|
|
|
//initialise (and parse the command line)
|
|
|
|
ndc_init(argc,argv);
|
|
|
|
|
|
|
|
...
|
|
|
|
//run a dreamcast slice
|
|
|
|
//either a frame, or up to 25 ms of emulation
|
|
|
|
//returns 1 if the frame is ready (fb needs to be flipped -- i'm looking at you android)
|
|
|
|
ndc_step();
|
|
|
|
|
|
|
|
...
|
|
|
|
//terminate (and free everything)
|
|
|
|
ndc_term()
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if HOST_OS==OS_WINDOWS
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int GetFile(char *szFileName, char *szParse=0,u32 flags=0)
|
|
|
|
{
|
|
|
|
cfgLoadStr("config","image",szFileName,"null");
|
|
|
|
if (strcmp(szFileName,"null")==0)
|
|
|
|
{
|
|
|
|
#if HOST_OS==OS_WINDOWS
|
|
|
|
OPENFILENAME ofn;
|
|
|
|
ZeroMemory( &ofn , sizeof( ofn));
|
|
|
|
ofn.lStructSize = sizeof ( ofn );
|
|
|
|
ofn.hwndOwner = NULL ;
|
|
|
|
ofn.lpstrFile = szFileName ;
|
|
|
|
ofn.lpstrFile[0] = '\0';
|
|
|
|
ofn.nMaxFile = MAX_PATH;
|
|
|
|
ofn.lpstrFilter = "All\0*.*\0\0";
|
|
|
|
ofn.nFilterIndex =1;
|
|
|
|
ofn.lpstrFileTitle = NULL ;
|
|
|
|
ofn.nMaxFileTitle = 0 ;
|
|
|
|
ofn.lpstrInitialDir=NULL ;
|
|
|
|
ofn.Flags = OFN_PATHMUSTEXIST|OFN_FILEMUSTEXIST ;
|
|
|
|
|
|
|
|
if (GetOpenFileNameA(&ofn))
|
|
|
|
{
|
|
|
|
//already there
|
|
|
|
//strcpy(szFileName,ofn.lpstrFile);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
s32 plugins_Init()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (s32 rv = libPvr_Init())
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (s32 rv = libGDR_Init())
|
|
|
|
return rv;
|
2015-08-09 04:34:02 +00:00
|
|
|
#if DC_PLATFORM == DC_PLATFORM_NAOMI
|
2015-08-09 20:39:32 +00:00
|
|
|
if (!naomi_cart_SelectFile(libPvr_GetRenderTarget()))
|
2013-12-19 17:10:14 +00:00
|
|
|
return rv_serror;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (s32 rv = libAICA_Init())
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (s32 rv = libARM_Init())
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
//if (s32 rv = libExtDevice_Init())
|
|
|
|
// return rv;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return rv_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
void plugins_Term()
|
|
|
|
{
|
|
|
|
//term all plugins
|
|
|
|
//libExtDevice_Term();
|
|
|
|
libARM_Term();
|
|
|
|
libAICA_Term();
|
|
|
|
libGDR_Term();
|
|
|
|
libPvr_Term();
|
|
|
|
}
|
|
|
|
|
|
|
|
void plugins_Reset(bool Manual)
|
|
|
|
{
|
|
|
|
libPvr_Reset(Manual);
|
|
|
|
libGDR_Reset(Manual);
|
|
|
|
libAICA_Reset(Manual);
|
|
|
|
libARM_Reset(Manual);
|
|
|
|
//libExtDevice_Reset(Manual);
|
|
|
|
}
|
|
|
|
|
2015-02-16 22:55:11 +00:00
|
|
|
#if !defined(TARGET_NO_WEBUI)
|
2013-12-19 17:10:14 +00:00
|
|
|
|
2014-04-22 14:32:04 +00:00
|
|
|
void* webui_th(void* p)
|
|
|
|
{
|
2015-02-16 22:55:11 +00:00
|
|
|
webui_start();
|
2014-04-22 14:32:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
cThread webui_thd(&webui_th,0);
|
2015-02-16 22:55:11 +00:00
|
|
|
#endif
|
2014-04-22 14:32:04 +00:00
|
|
|
|
2013-12-19 17:10:14 +00:00
|
|
|
int dc_init(int argc,wchar* argv[])
|
|
|
|
{
|
|
|
|
setbuf(stdin,0);
|
|
|
|
setbuf(stdout,0);
|
|
|
|
setbuf(stderr,0);
|
|
|
|
if (!_vmem_reserve())
|
|
|
|
{
|
|
|
|
printf("Failed to alloc mem\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-02-16 22:55:11 +00:00
|
|
|
#if !defined(TARGET_NO_WEBUI)
|
2014-04-22 14:32:04 +00:00
|
|
|
webui_thd.Start();
|
2015-02-16 22:55:11 +00:00
|
|
|
#endif
|
2014-04-22 14:32:04 +00:00
|
|
|
|
2013-12-19 17:10:14 +00:00
|
|
|
if(ParseCommandLine(argc,argv))
|
|
|
|
{
|
|
|
|
return 69;
|
|
|
|
}
|
|
|
|
if(!cfgOpen())
|
|
|
|
{
|
|
|
|
msgboxf("Unable to open config file",MBX_ICONERROR);
|
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
LoadSettings();
|
2014-02-16 02:31:31 +00:00
|
|
|
#ifndef _ANDROID
|
2013-12-19 17:10:14 +00:00
|
|
|
os_CreateWindow();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int rv= 0;
|
|
|
|
|
2015-05-16 08:04:30 +00:00
|
|
|
#if HOST_OS != OS_DARWIN
|
|
|
|
#define DATA_PATH "/data/"
|
|
|
|
#else
|
|
|
|
#define DATA_PATH "/"
|
|
|
|
#endif
|
|
|
|
|
2015-08-28 23:28:51 +00:00
|
|
|
if (settings.bios.UseReios || !LoadRomFiles(get_readonly_data_path(DATA_PATH)))
|
2013-12-19 17:10:14 +00:00
|
|
|
{
|
2015-08-28 23:28:51 +00:00
|
|
|
if (!LoadHle(get_readonly_data_path(DATA_PATH)))
|
2014-12-29 21:05:35 +00:00
|
|
|
return -3;
|
|
|
|
else
|
|
|
|
printf("Did not load bios, using reios\n");
|
2013-12-19 17:10:14 +00:00
|
|
|
}
|
|
|
|
|
2015-07-25 06:39:35 +00:00
|
|
|
#if FEAT_SHREC != DYNAREC_NONE
|
2013-12-19 17:10:14 +00:00
|
|
|
if(settings.dynarec.Enable)
|
|
|
|
{
|
|
|
|
Get_Sh4Recompiler(&sh4_cpu);
|
|
|
|
printf("Using Recompiler\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
Get_Sh4Interpreter(&sh4_cpu);
|
|
|
|
printf("Using Interpreter\n");
|
|
|
|
}
|
2018-08-20 16:28:16 +00:00
|
|
|
|
|
|
|
InitAudio();
|
2013-12-19 17:10:14 +00:00
|
|
|
|
|
|
|
sh4_cpu.Init();
|
|
|
|
mem_Init();
|
|
|
|
|
|
|
|
plugins_Init();
|
|
|
|
|
|
|
|
mem_map_default();
|
|
|
|
|
2015-06-28 15:29:04 +00:00
|
|
|
#ifndef _ANDROID
|
2013-12-19 17:10:14 +00:00
|
|
|
mcfg_CreateDevices();
|
2015-06-28 15:29:04 +00:00
|
|
|
#else
|
|
|
|
mcfg_CreateDevices();
|
|
|
|
#endif
|
2013-12-19 17:10:14 +00:00
|
|
|
|
|
|
|
plugins_Reset(false);
|
|
|
|
mem_Reset(false);
|
|
|
|
|
|
|
|
|
|
|
|
sh4_cpu.Reset(false);
|
2018-08-20 16:28:16 +00:00
|
|
|
|
|
|
|
LoadCustom();
|
2013-12-19 17:10:14 +00:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dc_run()
|
|
|
|
{
|
|
|
|
sh4_cpu.Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
void dc_term()
|
|
|
|
{
|
|
|
|
sh4_cpu.Term();
|
|
|
|
plugins_Term();
|
|
|
|
_vmem_release();
|
|
|
|
|
2014-02-16 19:02:35 +00:00
|
|
|
#ifndef _ANDROID
|
2013-12-19 17:10:14 +00:00
|
|
|
SaveSettings();
|
2014-02-16 19:02:35 +00:00
|
|
|
#endif
|
2015-08-28 23:28:51 +00:00
|
|
|
SaveRomFiles(get_writable_data_path("/data/"));
|
2018-07-24 12:27:58 +00:00
|
|
|
|
|
|
|
TermAudio();
|
2013-12-19 17:10:14 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 15:22:15 +00:00
|
|
|
#if defined(_ANDROID)
|
|
|
|
void dc_pause()
|
|
|
|
{
|
|
|
|
SaveRomFiles(get_writable_data_path("/data/"));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-23 17:47:24 +00:00
|
|
|
void dc_stop()
|
|
|
|
{
|
|
|
|
sh4_cpu.Stop();
|
|
|
|
}
|
|
|
|
|
2013-12-19 17:10:14 +00:00
|
|
|
void LoadSettings()
|
|
|
|
{
|
2014-02-16 19:02:35 +00:00
|
|
|
#ifndef _ANDROID
|
2013-12-19 17:10:14 +00:00
|
|
|
settings.dynarec.Enable = cfgLoadInt("config","Dynarec.Enabled", 1)!=0;
|
|
|
|
settings.dynarec.idleskip = cfgLoadInt("config","Dynarec.idleskip",1)!=0;
|
|
|
|
settings.dynarec.unstable_opt = cfgLoadInt("config","Dynarec.unstable-opt",0);
|
2018-08-16 23:59:25 +00:00
|
|
|
settings.dynarec.safemode = cfgLoadInt("config","Dynarec.safemode",0);
|
2015-08-11 22:58:50 +00:00
|
|
|
//disable_nvmem can't be loaded, because nvmem init is before cfg load
|
2014-01-27 15:52:23 +00:00
|
|
|
settings.dreamcast.cable = cfgLoadInt("config","Dreamcast.Cable",3);
|
2013-12-19 17:10:14 +00:00
|
|
|
settings.dreamcast.RTC = cfgLoadInt("config","Dreamcast.RTC",GetRTC_now());
|
|
|
|
settings.dreamcast.region = cfgLoadInt("config","Dreamcast.Region",3);
|
|
|
|
settings.dreamcast.broadcast = cfgLoadInt("config","Dreamcast.Broadcast",4);
|
|
|
|
settings.aica.LimitFPS = cfgLoadInt("config","aica.LimitFPS",1);
|
|
|
|
settings.aica.NoBatch = cfgLoadInt("config","aica.NoBatch",0);
|
2014-03-01 12:37:37 +00:00
|
|
|
settings.aica.NoSound = cfgLoadInt("config","aica.NoSound",0);
|
2013-12-19 17:10:14 +00:00
|
|
|
settings.rend.UseMipmaps = cfgLoadInt("config","rend.UseMipmaps",1);
|
|
|
|
settings.rend.WideScreen = cfgLoadInt("config","rend.WideScreen",0);
|
2018-06-09 15:22:01 +00:00
|
|
|
settings.rend.ModifierVolumes = cfgLoadInt("config","rend.ModifierVolumes",1);
|
2018-05-02 13:41:42 +00:00
|
|
|
settings.rend.Clipping = cfgLoadInt("config","rend.Clipping",1);
|
2013-12-19 17:10:14 +00:00
|
|
|
|
|
|
|
settings.pvr.subdivide_transp = cfgLoadInt("config","pvr.Subdivide",0);
|
|
|
|
|
|
|
|
settings.pvr.ta_skip = cfgLoadInt("config","ta.skip",0);
|
|
|
|
settings.pvr.rend = cfgLoadInt("config","pvr.rend",0);
|
2015-02-25 19:56:58 +00:00
|
|
|
|
2015-08-07 23:36:58 +00:00
|
|
|
settings.pvr.MaxThreads = cfgLoadInt("config", "pvr.MaxThreads", 3);
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.pvr.SynchronousRender = cfgLoadInt("config", "pvr.SynchronousRendering", 0);
|
2015-08-07 23:36:58 +00:00
|
|
|
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.debug.SerialConsole = cfgLoadInt("config", "Debug.SerialConsoleEnabled", 0) != 0;
|
2015-03-22 00:16:28 +00:00
|
|
|
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.bios.UseReios = cfgLoadInt("config", "bios.UseReios", 0);
|
|
|
|
settings.reios.ElfFile = cfgLoadStr("reios", "ElfFile", "");
|
2015-04-12 20:48:16 +00:00
|
|
|
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.validate.OpenGlChecks = cfgLoadInt("validate", "OpenGlChecks", 0) != 0;
|
2014-02-16 19:02:35 +00:00
|
|
|
#endif
|
2013-12-19 17:10:14 +00:00
|
|
|
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.pvr.HashLogFile = cfgLoadStr("testing", "ta.HashLogFile", "");
|
|
|
|
settings.pvr.HashCheckFile = cfgLoadStr("testing", "ta.HashCheckFile", "");
|
2014-12-29 21:05:35 +00:00
|
|
|
|
2016-03-02 05:48:34 +00:00
|
|
|
#if SUPPORT_DISPMANX
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.dispmanx.Width = cfgLoadInt("dispmanx","width",640);
|
|
|
|
settings.dispmanx.Height = cfgLoadInt("dispmanx","height",480);
|
|
|
|
settings.dispmanx.Keep_Aspect = cfgLoadBool("dispmanx","maintain_aspect",true);
|
2016-03-02 05:48:34 +00:00
|
|
|
#endif
|
|
|
|
|
2013-12-20 15:24:38 +00:00
|
|
|
#if (HOST_OS != OS_LINUX || defined(_ANDROID) || defined(TARGET_PANDORA))
|
2013-12-19 17:10:14 +00:00
|
|
|
settings.aica.BufferSize=2048;
|
|
|
|
#else
|
|
|
|
settings.aica.BufferSize=1024;
|
|
|
|
#endif
|
|
|
|
|
2016-03-02 05:48:34 +00:00
|
|
|
#if USE_OMX
|
|
|
|
settings.omx.Audio_Latency = cfgLoadInt("omx","audio_latency",100);
|
|
|
|
settings.omx.Audio_HDMI = cfgLoadBool("omx","audio_hdmi",true);
|
|
|
|
#endif
|
|
|
|
|
2013-12-19 17:10:14 +00:00
|
|
|
/*
|
|
|
|
//make sure values are valid
|
|
|
|
settings.dreamcast.cable = min(max(settings.dreamcast.cable, 0),3);
|
|
|
|
settings.dreamcast.region = min(max(settings.dreamcast.region, 0),3);
|
|
|
|
settings.dreamcast.broadcast= min(max(settings.dreamcast.broadcast,0),4);
|
|
|
|
*/
|
|
|
|
}
|
2018-08-19 03:40:26 +00:00
|
|
|
|
2018-08-20 16:28:16 +00:00
|
|
|
void LoadCustom()
|
2018-08-19 03:40:26 +00:00
|
|
|
{
|
2018-08-20 16:28:16 +00:00
|
|
|
char *reios_id = reios_disk_id();
|
|
|
|
|
2018-08-20 17:22:33 +00:00
|
|
|
cfgSaveStr(reios_id, "software.name", reios_software_name);
|
2018-08-20 16:28:16 +00:00
|
|
|
settings.dynarec.idleskip = cfgLoadInt(reios_id,"Dynarec.idleskip", settings.dynarec.idleskip ? 1 : 0) != 0;
|
|
|
|
settings.dynarec.unstable_opt = cfgLoadInt(reios_id,"Dynarec.unstable-opt", settings.dynarec.unstable_opt);
|
|
|
|
settings.dynarec.safemode = cfgLoadInt(reios_id,"Dynarec.safemode", settings.dynarec.safemode);
|
|
|
|
settings.rend.ModifierVolumes = cfgLoadInt(reios_id,"rend.ModifierVolumes", settings.rend.ModifierVolumes);
|
|
|
|
settings.rend.Clipping = cfgLoadInt(reios_id,"rend.Clipping", settings.rend.Clipping);
|
|
|
|
|
|
|
|
settings.pvr.subdivide_transp = cfgLoadInt(reios_id,"pvr.Subdivide", settings.pvr.subdivide_transp);
|
|
|
|
|
|
|
|
settings.pvr.ta_skip = cfgLoadInt(reios_id,"ta.skip", settings.pvr.ta_skip);
|
|
|
|
settings.pvr.rend = cfgLoadInt(reios_id,"pvr.rend", settings.pvr.rend);
|
|
|
|
|
|
|
|
settings.pvr.MaxThreads = cfgLoadInt(reios_id, "pvr.MaxThreads", settings.pvr.MaxThreads);
|
|
|
|
settings.pvr.SynchronousRender = cfgLoadInt(reios_id, "pvr.SynchronousRendering", settings.pvr.SynchronousRender);
|
2018-08-19 03:40:26 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 17:10:14 +00:00
|
|
|
void SaveSettings()
|
|
|
|
{
|
2018-08-20 16:28:16 +00:00
|
|
|
cfgSaveInt("config","Dynarec.Enabled", settings.dynarec.Enable);
|
|
|
|
cfgSaveInt("config","Dreamcast.Cable", settings.dreamcast.cable);
|
|
|
|
cfgSaveInt("config","Dreamcast.RTC", settings.dreamcast.RTC);
|
|
|
|
cfgSaveInt("config","Dreamcast.Region", settings.dreamcast.region);
|
|
|
|
cfgSaveInt("config","Dreamcast.Broadcast", settings.dreamcast.broadcast);
|
|
|
|
}
|