mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
Refactor NDS
and DSi
to be objects (#1893)
* First crack at refactoring NDS and DSi into objects - Remove all global/`static` variables in `NDS` and related classes - Rely more on virtual dispatch when we need to pick methods at runtime - Pass `NDS&` or `DSi&` to its constituent components where necessary - Introduce some headers or move some definitions to break `#include` cycles * Refactor the frontend to accommodate the core's changes * Move up `SchedList`'s declaration - Move it to before the components are initialized so the `map`s inside are initialized - Fields in C++ are initialized in the order they're declared * Fix a crash when allocating memory * Fix JIT-free builds * Fix GDB-free builds * Fix Linux builds - Explicitly qualify some member types in NDS, since they share the same name as their classes * Remove an unnecessary template argument - This was causing the build to fail on macOS * Fix ARM and Android builds * Rename `Constants.h` to `MemConstants.h` * Add `NDS::IsRunning()` * Use an `#include` guard instead of `#pragma once`
This commit is contained in:

committed by
GitHub

parent
c84cb17462
commit
e973236203
@ -57,7 +57,7 @@ const u8 DSi_BPTWL::VolumeUpTable[32] =
|
||||
};
|
||||
|
||||
|
||||
DSi_BPTWL::DSi_BPTWL(DSi_I2CHost* host) : DSi_I2CDevice(host)
|
||||
DSi_BPTWL::DSi_BPTWL(melonDS::DSi& dsi, DSi_I2CHost* host) : DSi_I2CDevice(dsi, host)
|
||||
{
|
||||
}
|
||||
|
||||
@ -177,19 +177,19 @@ void DSi_BPTWL::DoHardwareReset(bool direct)
|
||||
if (direct)
|
||||
{
|
||||
// TODO: This doesn't seem to stop the SPU
|
||||
DSi::SoftReset();
|
||||
DSi.SoftReset();
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO: soft-reset might need to be scheduled later!
|
||||
// TODO: this has been moved for the JIT to work, nothing is confirmed here
|
||||
NDS::ARM7->Halt(4);
|
||||
DSi.ARM7.Halt(4);
|
||||
}
|
||||
|
||||
void DSi_BPTWL::DoShutdown()
|
||||
{
|
||||
ResetButtonState();
|
||||
NDS::Stop(Platform::StopReason::PowerOff);
|
||||
DSi.Stop(Platform::StopReason::PowerOff);
|
||||
}
|
||||
|
||||
|
||||
@ -369,7 +369,7 @@ void DSi_BPTWL::SetIRQ(u8 irqFlag)
|
||||
|
||||
if (GetIRQMode())
|
||||
{
|
||||
NDS::SetIRQ2(NDS::IRQ2_DSi_BPTWL);
|
||||
DSi.SetIRQ2(IRQ2_DSi_BPTWL);
|
||||
}
|
||||
}
|
||||
|
||||
@ -451,11 +451,11 @@ void DSi_BPTWL::Write(u8 val, bool last)
|
||||
}
|
||||
|
||||
|
||||
DSi_I2CHost::DSi_I2CHost()
|
||||
DSi_I2CHost::DSi_I2CHost(melonDS::DSi& dsi) : DSi(dsi)
|
||||
{
|
||||
BPTWL = new DSi_BPTWL(this);
|
||||
Camera0 = new DSi_Camera(this, 0);
|
||||
Camera1 = new DSi_Camera(this, 1);
|
||||
BPTWL = new DSi_BPTWL(dsi, this);
|
||||
Camera0 = new DSi_Camera(dsi, this, 0);
|
||||
Camera1 = new DSi_Camera(dsi, this, 1);
|
||||
}
|
||||
|
||||
DSi_I2CHost::~DSi_I2CHost()
|
||||
|
Reference in New Issue
Block a user