mirror of https://github.com/bsnes-emu/bsnes.git
76 lines
1.5 KiB
C++
76 lines
1.5 KiB
C++
#include <gba/gba.hpp>
|
|
|
|
namespace GameBoyAdvance {
|
|
|
|
#include "bios.cpp"
|
|
#include "video.cpp"
|
|
#include "serialization.cpp"
|
|
BIOS bios;
|
|
System system;
|
|
Scheduler scheduler;
|
|
|
|
auto System::init() -> void {
|
|
}
|
|
|
|
auto System::term() -> void {
|
|
}
|
|
|
|
auto System::power() -> void {
|
|
Emulator::video.reset();
|
|
Emulator::video.setInterface(interface);
|
|
configureVideoPalette();
|
|
configureVideoEffects();
|
|
|
|
Emulator::audio.reset();
|
|
Emulator::audio.setInterface(interface);
|
|
|
|
scheduler.reset();
|
|
bus.power();
|
|
player.power();
|
|
cpu.power();
|
|
ppu.power();
|
|
apu.power();
|
|
cartridge.power();
|
|
scheduler.primary(cpu);
|
|
}
|
|
|
|
auto System::load() -> bool {
|
|
if(auto fp = interface->open(ID::System, "manifest.bml", File::Read, File::Required)) {
|
|
information.manifest = fp->reads();
|
|
} else return false;
|
|
auto document = BML::unserialize(information.manifest);
|
|
|
|
if(auto name = document["system/cpu/rom/name"].text()) {
|
|
if(auto fp = interface->open(ID::System, name, File::Read, File::Required)) {
|
|
fp->read(bios.data, bios.size);
|
|
}
|
|
}
|
|
|
|
if(!cartridge.load()) return false;
|
|
serializeInit();
|
|
return _loaded = true;
|
|
}
|
|
|
|
auto System::save() -> void {
|
|
if(!loaded()) return;
|
|
cartridge.save();
|
|
}
|
|
|
|
auto System::unload() -> void {
|
|
if(!loaded()) return;
|
|
cartridge.unload();
|
|
_loaded = false;
|
|
}
|
|
|
|
auto System::run() -> void {
|
|
if(scheduler.enter() == Scheduler::Event::Frame) ppu.refresh();
|
|
}
|
|
|
|
auto System::runToSave() -> void {
|
|
scheduler.synchronize(cpu);
|
|
scheduler.synchronize(ppu);
|
|
scheduler.synchronize(apu);
|
|
}
|
|
|
|
}
|