mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
Merge b6b70c4147
into 5e8beb3ab7
This commit is contained in:
commit
fee544494f
@ -44,6 +44,13 @@ CommandLineOptions* ManageArgs(QApplication& melon)
|
|||||||
parser.addOption(QCommandLineOption({"b", "boot"}, "Whether to boot firmware on startup. Defaults to \"auto\" (boot if NDS rom given)", "auto/always/never", "auto"));
|
parser.addOption(QCommandLineOption({"b", "boot"}, "Whether to boot firmware on startup. Defaults to \"auto\" (boot if NDS rom given)", "auto/always/never", "auto"));
|
||||||
parser.addOption(QCommandLineOption({"f", "fullscreen"}, "Start melonDS in fullscreen mode"));
|
parser.addOption(QCommandLineOption({"f", "fullscreen"}, "Start melonDS in fullscreen mode"));
|
||||||
|
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
|
parser.addOption(QCommandLineOption("break-arm9", "Yield ARM9 execution to the GDB stub immediately on startup"));
|
||||||
|
parser.addOption(QCommandLineOption("break-arm7", "Yield ARM7 execution to the GDB stub immediately on startup"));
|
||||||
|
parser.addOption(QCommandLineOption("no-break-arm9", "Do not wait for GDB on ARM9 startup, even if the option to do so is enabled"));
|
||||||
|
parser.addOption(QCommandLineOption("no-break-arm7", "Do not wait for GDB on ARM9 startup, even if the option to do so is enabled"));
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ARCHIVE_SUPPORT_ENABLED
|
#ifdef ARCHIVE_SUPPORT_ENABLED
|
||||||
parser.addOption(QCommandLineOption({"a", "archive-file"}, "Specify file to load inside an archive given (NDS)", "rom"));
|
parser.addOption(QCommandLineOption({"a", "archive-file"}, "Specify file to load inside an archive given (NDS)", "rom"));
|
||||||
parser.addOption(QCommandLineOption({"A", "archive-file-gba"}, "Specify file to load inside an archive given (GBA)", "rom"));
|
parser.addOption(QCommandLineOption({"A", "archive-file-gba"}, "Specify file to load inside an archive given (GBA)", "rom"));
|
||||||
@ -55,6 +62,25 @@ CommandLineOptions* ManageArgs(QApplication& melon)
|
|||||||
|
|
||||||
options->fullscreen = parser.isSet("fullscreen");
|
options->fullscreen = parser.isSet("fullscreen");
|
||||||
|
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
|
if (parser.isSet("break-arm9"))
|
||||||
|
{
|
||||||
|
options->arm9BreakOnStartup = true;
|
||||||
|
}
|
||||||
|
if (parser.isSet("no-break-arm9"))
|
||||||
|
{
|
||||||
|
options->arm9BreakOnStartup = false;
|
||||||
|
}
|
||||||
|
if (parser.isSet("break-arm7"))
|
||||||
|
{
|
||||||
|
options->arm7BreakOnStartup = true;
|
||||||
|
}
|
||||||
|
if (parser.isSet("no-break-arm7"))
|
||||||
|
{
|
||||||
|
options->arm7BreakOnStartup = false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
QStringList posargs = parser.positionalArguments();
|
QStringList posargs = parser.positionalArguments();
|
||||||
switch (posargs.size())
|
switch (posargs.size())
|
||||||
{
|
{
|
||||||
|
@ -34,6 +34,10 @@ struct CommandLineOptions
|
|||||||
std::optional<QString> gbaRomArchivePath;
|
std::optional<QString> gbaRomArchivePath;
|
||||||
bool fullscreen;
|
bool fullscreen;
|
||||||
bool boot;
|
bool boot;
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
|
std::optional<bool> arm9BreakOnStartup;
|
||||||
|
std::optional<bool> arm7BreakOnStartup;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
extern CommandLineOptions* ManageArgs(QApplication& melon);
|
extern CommandLineOptions* ManageArgs(QApplication& melon);
|
||||||
|
@ -65,7 +65,12 @@ const string kWifiSettingsPath = "wfcsettings.bin";
|
|||||||
extern Net net;
|
extern Net net;
|
||||||
|
|
||||||
|
|
||||||
EmuInstance::EmuInstance(int inst) : deleting(false),
|
EmuInstance::EmuInstance(int inst, std::optional<bool> arm9BreakOnStart, std::optional<bool> arm7BreakOnStart) :
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
|
overrideArm9BreakOnStart(arm9BreakOnStart),
|
||||||
|
overrideArm7BreakOnStart(arm7BreakOnStart),
|
||||||
|
#endif
|
||||||
|
deleting(false),
|
||||||
instanceID(inst),
|
instanceID(inst),
|
||||||
globalCfg(Config::GetGlobalTable()),
|
globalCfg(Config::GetGlobalTable()),
|
||||||
localCfg(Config::GetLocalTable(inst))
|
localCfg(Config::GetLocalTable(inst))
|
||||||
@ -147,6 +152,12 @@ EmuInstance::EmuInstance(int inst) : deleting(false),
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EmuInstance::EmuInstance(int inst) :
|
||||||
|
EmuInstance(inst, std::nullopt, std::nullopt)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
EmuInstance::~EmuInstance()
|
EmuInstance::~EmuInstance()
|
||||||
{
|
{
|
||||||
deleting = true;
|
deleting = true;
|
||||||
@ -1283,8 +1294,8 @@ bool EmuInstance::updateConsole(UpdateConsoleNDSArgs&& _ndsargs, UpdateConsoleGB
|
|||||||
GDBArgs _gdbargs {
|
GDBArgs _gdbargs {
|
||||||
static_cast<u16>(gdbopt.GetInt("ARM7.Port")),
|
static_cast<u16>(gdbopt.GetInt("ARM7.Port")),
|
||||||
static_cast<u16>(gdbopt.GetInt("ARM9.Port")),
|
static_cast<u16>(gdbopt.GetInt("ARM9.Port")),
|
||||||
gdbopt.GetBool("ARM7.BreakOnStartup"),
|
overrideArm7BreakOnStart.value_or(gdbopt.GetBool("ARM7.BreakOnStartup")),
|
||||||
gdbopt.GetBool("ARM9.BreakOnStartup"),
|
overrideArm9BreakOnStart.value_or(gdbopt.GetBool("ARM9.BreakOnStartup")),
|
||||||
};
|
};
|
||||||
auto gdbargs = gdbopt.GetBool("Enabled") ? std::make_optional(_gdbargs) : std::nullopt;
|
auto gdbargs = gdbopt.GetBool("Enabled") ? std::make_optional(_gdbargs) : std::nullopt;
|
||||||
#else
|
#else
|
||||||
|
@ -79,6 +79,7 @@ class EmuInstance
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
EmuInstance(int inst);
|
EmuInstance(int inst);
|
||||||
|
EmuInstance(int inst, std::optional<bool> arm9BreakOnStart, std::optional<bool> arm7BreakOnStart);
|
||||||
~EmuInstance();
|
~EmuInstance();
|
||||||
|
|
||||||
int getInstanceID() { return instanceID; }
|
int getInstanceID() { return instanceID; }
|
||||||
@ -265,6 +266,11 @@ private:
|
|||||||
std::string baseGBAROMName;
|
std::string baseGBAROMName;
|
||||||
std::string baseGBAAssetName;
|
std::string baseGBAAssetName;
|
||||||
|
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
|
std::optional<bool> overrideArm9BreakOnStart = std::nullopt;
|
||||||
|
std::optional<bool> overrideArm7BreakOnStart = std::nullopt;
|
||||||
|
#endif
|
||||||
|
|
||||||
// HACK
|
// HACK
|
||||||
public:
|
public:
|
||||||
std::unique_ptr<SaveManager> ndsSave;
|
std::unique_ptr<SaveManager> ndsSave;
|
||||||
|
@ -1709,7 +1709,7 @@ void MainWindow::onOpenTitleManager()
|
|||||||
|
|
||||||
void MainWindow::onMPNewInstance()
|
void MainWindow::onMPNewInstance()
|
||||||
{
|
{
|
||||||
createEmuInstance();
|
createEmuInstance(std::nullopt, std::nullopt);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onLANStartHost()
|
void MainWindow::onLANStartHost()
|
||||||
|
@ -118,7 +118,7 @@ void NetInit()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool createEmuInstance()
|
bool createEmuInstance(std::optional<bool> arm9BreakOnStartup, std::optional<bool> arm7BreakOnStartup)
|
||||||
{
|
{
|
||||||
int id = -1;
|
int id = -1;
|
||||||
for (int i = 0; i < kMaxEmuInstances; i++)
|
for (int i = 0; i < kMaxEmuInstances; i++)
|
||||||
@ -133,7 +133,11 @@ bool createEmuInstance()
|
|||||||
if (id == -1)
|
if (id == -1)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
|
auto inst = new EmuInstance(id, arm9BreakOnStartup, arm7BreakOnStartup);
|
||||||
|
#else
|
||||||
auto inst = new EmuInstance(id);
|
auto inst = new EmuInstance(id);
|
||||||
|
#endif
|
||||||
emuInstances[id] = inst;
|
emuInstances[id] = inst;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -348,9 +352,11 @@ int main(int argc, char** argv)
|
|||||||
setMPInterface(MPInterface_Local);
|
setMPInterface(MPInterface_Local);
|
||||||
|
|
||||||
NetInit();
|
NetInit();
|
||||||
|
#ifdef GDBSTUB_ENABLED
|
||||||
createEmuInstance();
|
createEmuInstance(options->arm9BreakOnStartup, options->arm7BreakOnStartup);
|
||||||
|
#else
|
||||||
|
createEmuInstance(std::nullopt, std::nullopt);
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
MainWindow* win = emuInstances[0]->getMainWindow();
|
MainWindow* win = emuInstances[0]->getMainWindow();
|
||||||
bool memberSyntaxUsed = false;
|
bool memberSyntaxUsed = false;
|
||||||
|
@ -54,7 +54,7 @@ extern QString emuDirectory;
|
|||||||
|
|
||||||
extern QElapsedTimer sysTimer;
|
extern QElapsedTimer sysTimer;
|
||||||
|
|
||||||
bool createEmuInstance();
|
bool createEmuInstance(std::optional<bool> arm9BreakOnStartup, std::optional<bool> arm7BreakOnStartup);
|
||||||
void deleteEmuInstance(int id);
|
void deleteEmuInstance(int id);
|
||||||
void deleteAllEmuInstances(int first = 0);
|
void deleteAllEmuInstances(int first = 0);
|
||||||
int numEmuInstances();
|
int numEmuInstances();
|
||||||
|
Loading…
Reference in New Issue
Block a user