From 95c62f92acbfb3791e58cf107aa97d6828982032 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Mon, 19 Mar 2012 21:27:40 +1100 Subject: [PATCH] Update to v087r03 release. byuu says: Fixing the PPU stepping increased FPS to 250. Promising, at least, since the ARM core is still severely overclocked. However, I reverted back to r02. This one patches gameboy/ and GameBoy:: to gb/ and GB:: and that's it. Sorry, I just couldn't shake this bad feeling about the code. There were some poorly hacked-together constructs. I'd rather just redo two days of work than feel bad about the codebase for the next several years. Going to attempt the GBA bridge again. Third time's a charm, I suppose (there was a pre-r03 WIP I abandoned as well.) This isn't unprecedented, GB core took a few attempts like this as well. --- bsnes/Makefile | 21 +-- bsnes/gb/gb.hpp | 4 +- bsnes/gba/Makefile | 15 --- bsnes/gba/apu/apu.cpp | 30 ----- bsnes/gba/apu/apu.hpp | 9 -- bsnes/gba/cartridge/cartridge.cpp | 35 ----- bsnes/gba/cartridge/cartridge.hpp | 16 --- bsnes/gba/cpu/core/core.cpp | 3 - bsnes/gba/cpu/core/core.hpp | 8 -- bsnes/gba/cpu/core/registers.hpp | 62 --------- bsnes/gba/cpu/cpu.cpp | 32 ----- bsnes/gba/cpu/cpu.hpp | 11 -- bsnes/gba/gba.hpp | 61 --------- bsnes/gba/interface/interface.cpp | 21 --- bsnes/gba/interface/interface.hpp | 9 -- bsnes/gba/memory/memory.cpp | 36 ----- bsnes/gba/memory/memory.hpp | 6 - bsnes/gba/ppu/ppu.cpp | 38 ------ bsnes/gba/ppu/ppu.hpp | 9 -- bsnes/gba/scheduler/scheduler-inline.hpp | 17 --- bsnes/gba/scheduler/scheduler.cpp | 31 ----- bsnes/gba/scheduler/scheduler.hpp | 19 --- bsnes/gba/system/system.cpp | 53 -------- bsnes/gba/system/system.hpp | 23 ---- bsnes/gba/video/video.cpp | 53 -------- bsnes/gba/video/video.hpp | 11 -- bsnes/snes/cartridge/cartridge.cpp | 2 +- bsnes/snes/chip/icd2/icd2.cpp | 14 +- bsnes/snes/chip/icd2/icd2.hpp | 2 +- bsnes/snes/chip/icd2/interface/interface.cpp | 26 ++-- bsnes/snes/chip/icd2/mmio/mmio.cpp | 2 +- bsnes/snes/chip/icd2/serialization.cpp | 2 +- bsnes/snes/snes.hpp | 2 +- bsnes/target-libsnes/Makefile | 2 +- bsnes/target-ui/Makefile | 3 +- bsnes/target-ui/base.hpp | 3 +- bsnes/target-ui/config/config.cpp | 67 +++++----- bsnes/target-ui/config/config.hpp | 3 +- bsnes/target-ui/general/file-browser.cpp | 15 +-- bsnes/target-ui/general/file-browser.hpp | 11 +- bsnes/target-ui/general/main-window.cpp | 12 +- bsnes/target-ui/general/main-window.hpp | 1 - bsnes/target-ui/input/gameboy.hpp | 20 --- bsnes/target-ui/input/{gameboy.cpp => gb.cpp} | 8 +- bsnes/target-ui/input/gb.hpp | 20 +++ bsnes/target-ui/input/gba.cpp | 62 --------- bsnes/target-ui/input/gba.hpp | 20 --- bsnes/target-ui/input/input.cpp | 6 +- bsnes/target-ui/input/input.hpp | 6 +- bsnes/target-ui/interface/gameboy/gameboy.cpp | 126 ------------------ bsnes/target-ui/interface/gb/gb.cpp | 126 ++++++++++++++++++ .../{gameboy/gameboy.hpp => gb/gb.hpp} | 4 +- bsnes/target-ui/interface/gba/gba.cpp | 110 --------------- bsnes/target-ui/interface/gba/gba.hpp | 20 --- bsnes/target-ui/interface/interface.cpp | 52 +++----- bsnes/target-ui/interface/interface.hpp | 8 +- bsnes/target-ui/interface/snes/snes.cpp | 18 +-- bsnes/target-ui/main.cpp | 1 - bsnes/target-ui/settings/audio.cpp | 31 ++--- bsnes/target-ui/settings/audio.hpp | 3 +- bsnes/target-ui/utility/utility.cpp | 18 +-- bsnes/target-ui/window/window.cpp | 6 - bsnes/target-ui/window/window.hpp | 1 - 63 files changed, 289 insertions(+), 1177 deletions(-) delete mode 100755 bsnes/gba/Makefile delete mode 100755 bsnes/gba/apu/apu.cpp delete mode 100755 bsnes/gba/apu/apu.hpp delete mode 100755 bsnes/gba/cartridge/cartridge.cpp delete mode 100755 bsnes/gba/cartridge/cartridge.hpp delete mode 100755 bsnes/gba/cpu/core/core.cpp delete mode 100755 bsnes/gba/cpu/core/core.hpp delete mode 100755 bsnes/gba/cpu/core/registers.hpp delete mode 100755 bsnes/gba/cpu/cpu.cpp delete mode 100755 bsnes/gba/cpu/cpu.hpp delete mode 100755 bsnes/gba/gba.hpp delete mode 100755 bsnes/gba/interface/interface.cpp delete mode 100755 bsnes/gba/interface/interface.hpp delete mode 100755 bsnes/gba/memory/memory.cpp delete mode 100755 bsnes/gba/memory/memory.hpp delete mode 100755 bsnes/gba/ppu/ppu.cpp delete mode 100755 bsnes/gba/ppu/ppu.hpp delete mode 100755 bsnes/gba/scheduler/scheduler-inline.hpp delete mode 100755 bsnes/gba/scheduler/scheduler.cpp delete mode 100755 bsnes/gba/scheduler/scheduler.hpp delete mode 100755 bsnes/gba/system/system.cpp delete mode 100755 bsnes/gba/system/system.hpp delete mode 100755 bsnes/gba/video/video.cpp delete mode 100755 bsnes/gba/video/video.hpp delete mode 100755 bsnes/target-ui/input/gameboy.hpp rename bsnes/target-ui/input/{gameboy.cpp => gb.cpp} (87%) create mode 100755 bsnes/target-ui/input/gb.hpp delete mode 100755 bsnes/target-ui/input/gba.cpp delete mode 100755 bsnes/target-ui/input/gba.hpp delete mode 100755 bsnes/target-ui/interface/gameboy/gameboy.cpp create mode 100755 bsnes/target-ui/interface/gb/gb.cpp rename bsnes/target-ui/interface/{gameboy/gameboy.hpp => gb/gb.hpp} (72%) delete mode 100755 bsnes/target-ui/interface/gba/gba.cpp delete mode 100755 bsnes/target-ui/interface/gba/gba.hpp diff --git a/bsnes/Makefile b/bsnes/Makefile index b6d89634..9e8c5ac6 100755 --- a/bsnes/Makefile +++ b/bsnes/Makefile @@ -1,46 +1,39 @@ include nall/Makefile -nes := nes +nes := nes snes := snes -gameboy := gameboy -gba := gba +gb := gb profile := accuracy -target := ui +target := ui # options += console # compiler c := $(compiler) -std=gnu99 cpp := $(subst cc,++,$(compiler)) -std=gnu++0x -flags := -I. -O3 -fomit-frame-pointer +flags := -I. -march=native -O3 -fomit-frame-pointer link := objects := libco # profile-guided optimization mode # pgo := instrument # pgo := optimize -# pgo := analyze ifeq ($(pgo),instrument) flags += -fprofile-generate link += -lgcov else ifeq ($(pgo),optimize) flags += -fprofile-use -else ifeq ($(pgo),analyze) - flags := $(subst -fomit-frame-pointer,,$(flags)) - flags += -pg - link += -pg -lgcov endif # platform ifeq ($(platform),x) - flags += -march=native - link += -ldl -lX11 -lXext + link += -s -ldl -lX11 -lXext else ifeq ($(platform),osx) else ifeq ($(platform),win) link += $(if $(findstring console,$(options)),-mconsole,-mwindows) - link += -mthreads -luuid -lkernel32 -luser32 -lgdi32 -lcomctl32 -lcomdlg32 -lshell32 -lole32 + link += -mthreads -s -luuid -lkernel32 -luser32 -lgdi32 -lcomctl32 -lcomdlg32 -lshell32 -lole32 link += -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc else unknown_platform: help; @@ -99,6 +92,6 @@ sync: rm -r phoenix/test archive-all: - tar -cjf bsnes.tar.bz2 base data gameboy gba libco nall nes obj out phoenix ruby snes target-debugger target-libsnes target-ui Makefile cc.bat purge.bat + tar -cjf bsnes.tar.bz2 base data gb libco nall nes obj out phoenix ruby snes target-debugger target-libsnes target-ui Makefile cc.bat purge.bat help:; diff --git a/bsnes/gb/gb.hpp b/bsnes/gb/gb.hpp index 27275900..1959cec8 100755 --- a/bsnes/gb/gb.hpp +++ b/bsnes/gb/gb.hpp @@ -1,5 +1,5 @@ -#ifndef GAMEBOY_HPP -#define GAMEBOY_HPP +#ifndef GB_HPP +#define GB_HPP #include diff --git a/bsnes/gba/Makefile b/bsnes/gba/Makefile deleted file mode 100755 index c138967e..00000000 --- a/bsnes/gba/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -gba_objects := gba-interface gba-system gba-scheduler -gba_objects += gba-cartridge gba-memory -gba_objects += gba-cpu gba-ppu gba-apu -gba_objects += gba-video -objects += $(gba_objects) - -obj/gba-interface.o: $(gba)/interface/interface.cpp $(call rwildcard,$(gba)/interface) -obj/gba-system.o: $(gba)/system/system.cpp $(call rwildcard,$(gba)/system) -obj/gba-scheduler.o: $(gba)/scheduler/scheduler.cpp $(call rwildcard,$(gba)/scheduler) -obj/gba-cartridge.o: $(gba)/cartridge/cartridge.cpp $(call rwildcard,$(gba)/cartridge) -obj/gba-memory.o: $(gba)/memory/memory.cpp $(call rwildcard,$(gba)/memory) -obj/gba-cpu.o: $(gba)/cpu/cpu.cpp $(call rwildcard,$(gba)/cpu) -obj/gba-ppu.o: $(gba)/ppu/ppu.cpp $(call rwildcard,$(gba)/ppu) -obj/gba-apu.o: $(gba)/apu/apu.cpp $(call rwildcard,$(gba)/apu) -obj/gba-video.o: $(gba)/video/video.cpp $(call rwildcard,$(gba)/video) diff --git a/bsnes/gba/apu/apu.cpp b/bsnes/gba/apu/apu.cpp deleted file mode 100755 index f59df4af..00000000 --- a/bsnes/gba/apu/apu.cpp +++ /dev/null @@ -1,30 +0,0 @@ -#include - -#define APU_CPP -namespace GBA { - -APU apu; - -void APU::Enter() { apu.enter(); } - -void APU::enter() { - while(true) { - //scheduler.synchronize_all(); - - interface->audioSample(0, 0); - step(1); - } -} - -void APU::step(unsigned clocks) { - clock += clocks << 9; //16777216hz / 32768hz = 512hz (1 << 9) - if(clock >= 0 && scheduler.sync != Scheduler::SynchronizeMode::All) { - co_switch(cpu.thread); - } -} - -void APU::power() { - create(APU::Enter, 16777216); -} - -} diff --git a/bsnes/gba/apu/apu.hpp b/bsnes/gba/apu/apu.hpp deleted file mode 100755 index 4df22978..00000000 --- a/bsnes/gba/apu/apu.hpp +++ /dev/null @@ -1,9 +0,0 @@ -struct APU : Processor { - static void Enter(); - void enter(); - void step(unsigned clocks); - - void power(); -}; - -extern APU apu; diff --git a/bsnes/gba/cartridge/cartridge.cpp b/bsnes/gba/cartridge/cartridge.cpp deleted file mode 100755 index 2979f37f..00000000 --- a/bsnes/gba/cartridge/cartridge.cpp +++ /dev/null @@ -1,35 +0,0 @@ -#include - -#define CARTRIDGE_CPP -namespace GBA { - -Cartridge cartridge; - -void Cartridge::load(const string &markup, const uint8_t *data, unsigned size) { - romdata = new uint8_t[romsize = size]; - memcpy(romdata, data, size); - sha256 = nall::sha256(data, size); - - loaded = true; -} - -void Cartridge::unload() { - if(loaded == false) return; - - delete[] romdata; - romdata = nullptr; - romsize = 0u; - - loaded = false; -} - -void Cartridge::power() { -} - -Cartridge::Cartridge() { - loaded = false; - romdata = nullptr; - romsize = 0u; -} - -} diff --git a/bsnes/gba/cartridge/cartridge.hpp b/bsnes/gba/cartridge/cartridge.hpp deleted file mode 100755 index 68b00c7d..00000000 --- a/bsnes/gba/cartridge/cartridge.hpp +++ /dev/null @@ -1,16 +0,0 @@ -struct Cartridge : property { - readonly loaded; - readonly sha256; - - uint8_t *romdata; - unsigned romsize; - - void load(const string &markup, const uint8_t *data, unsigned size); - void unload(); - - void power(); - - Cartridge(); -}; - -extern Cartridge cartridge; diff --git a/bsnes/gba/cpu/core/core.cpp b/bsnes/gba/cpu/core/core.cpp deleted file mode 100755 index b0af1294..00000000 --- a/bsnes/gba/cpu/core/core.cpp +++ /dev/null @@ -1,3 +0,0 @@ -void ARM7TDMI::power() { - for(auto &gpr : r) gpr = 0; -} diff --git a/bsnes/gba/cpu/core/core.hpp b/bsnes/gba/cpu/core/core.hpp deleted file mode 100755 index 08eccf80..00000000 --- a/bsnes/gba/cpu/core/core.hpp +++ /dev/null @@ -1,8 +0,0 @@ -struct ARM7TDMI { - #include "registers.hpp" - GPR r[31]; - PSR cpsr; - PSR spsr[5]; - - void power(); -}; diff --git a/bsnes/gba/cpu/core/registers.hpp b/bsnes/gba/cpu/core/registers.hpp deleted file mode 100755 index de6cc604..00000000 --- a/bsnes/gba/cpu/core/registers.hpp +++ /dev/null @@ -1,62 +0,0 @@ -struct GPR { - uint32 data; - - inline operator uint32() const { return data; } - inline GPR& operator=(uint32 n) { data = n; return *this; } -}; - -struct PSR { - struct Mode { - enum : unsigned { - User = 0x10, - FIQ = 0x11, - IRQ = 0x12, - SWI = 0x13, - Abort = 0x17, - Undefined = 0x1b, - System = 0x1f, - }; - }; - - bool n, z, c, v; - bool i, f, t; - unsigned mode; - - inline operator uint32() const { - return (n << 31) | (z << 30) | (c << 29) | (v << 28) - | (i << 7) | (f << 6) | (t << 5) | (mode << 0); - } - - inline PSR& operator=(uint32 d) { - n = d & (1 << 31); - z = d & (1 << 30); - c = d & (1 << 29); - v = d & (1 << 28); - i = d & (1 << 7); - f = d & (1 << 6); - t = d & (1 << 5); - mode = d & 31; - return *this; - } -}; - -struct GPRs { - struct ID { - enum : unsigned { - R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, SP, LR, PC, - R8_FIQ, R9_FIQ, R10_FIQ, R11_FIQ, R12_FIQ, R13_FIQ, R14_FIQ, - R13_SWI, R14_SWI, - R13_Abort, R14_Abort, - R13_IRQ, R14_IRQ, - R13_Undefined, R14_Undefined, - }; - }; -}; - -struct SPSRs { - struct ID { - enum : unsigned { - FIQ, SWI, Abort, IRQ, Undefined, - }; - }; -}; diff --git a/bsnes/gba/cpu/cpu.cpp b/bsnes/gba/cpu/cpu.cpp deleted file mode 100755 index 150eff00..00000000 --- a/bsnes/gba/cpu/cpu.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include - -#define CPU_CPP -namespace GBA { - -#include "core/core.cpp" -CPU cpu; - -void CPU::Enter() { cpu.enter(); } - -void CPU::enter() { - while(true) { - //scheduler.synchronize_cpu(); - - step(4); - } -} - -void CPU::step(unsigned clocks) { - ppu.clock -= clocks; - if(ppu.clock < 0) co_switch(ppu.thread); - -//apu.clock -= clocks; -//if(apu.clock < 0) co_switch(apu.thread); -} - -void CPU::power() { - create(CPU::Enter, 16777216); - ARM7TDMI::power(); -} - -} diff --git a/bsnes/gba/cpu/cpu.hpp b/bsnes/gba/cpu/cpu.hpp deleted file mode 100755 index 5bb7e419..00000000 --- a/bsnes/gba/cpu/cpu.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#include "core/core.hpp" - -struct CPU : Processor, ARM7TDMI { - static void Enter(); - void enter(); - void step(unsigned clocks); - - void power(); -}; - -extern CPU cpu; diff --git a/bsnes/gba/gba.hpp b/bsnes/gba/gba.hpp deleted file mode 100755 index 6f6953bb..00000000 --- a/bsnes/gba/gba.hpp +++ /dev/null @@ -1,61 +0,0 @@ -#ifndef GBA_HPP -#define GBA_HPP - -#include - -namespace GBA { - namespace Info { - static const char Name[] = "bgba"; - static const unsigned SerializerVersion = 1; - } -} - -/* - bgba - Game Boy Advance emulator - author: byuu - license: GPLv3 - project started: 2012-03-17 -*/ - -#include - -namespace GBA { - struct Processor { - cothread_t thread; - unsigned frequency; - signed clock; - - inline void create(void (*entrypoint)(), unsigned frequency) { - if(thread) co_delete(thread); - thread = co_create(65536 * sizeof(void*), entrypoint); - this->frequency = frequency; - clock = 0; - } - - inline void serialize(serializer &s) { - s.integer(frequency); - s.integer(clock); - } - - inline Processor() : thread(nullptr) { - } - - inline ~Processor() { - if(thread) co_delete(thread); - } - }; - - #include - #include - #include - #include - #include - #include - #include - #include - #include - - #include -} - -#endif diff --git a/bsnes/gba/interface/interface.cpp b/bsnes/gba/interface/interface.cpp deleted file mode 100755 index b9177c5c..00000000 --- a/bsnes/gba/interface/interface.cpp +++ /dev/null @@ -1,21 +0,0 @@ -#include - -namespace GBA { - -Interface *interface = nullptr; - -void Interface::videoRefresh(const uint16_t *data) { -} - -void Interface::audioSample(int16_t lsample, int16_t rsample) { -} - -bool Interface::inputPoll(unsigned id) { - return false; -} - -void Interface::message(const string &text) { - print(text, "\n"); -} - -} diff --git a/bsnes/gba/interface/interface.hpp b/bsnes/gba/interface/interface.hpp deleted file mode 100755 index d33517a5..00000000 --- a/bsnes/gba/interface/interface.hpp +++ /dev/null @@ -1,9 +0,0 @@ -struct Interface { - virtual void videoRefresh(const uint16_t *data); - virtual void audioSample(int16_t lsample, int16_t rsample); - virtual bool inputPoll(unsigned id); - - virtual void message(const string &text); -}; - -extern Interface *interface; diff --git a/bsnes/gba/memory/memory.cpp b/bsnes/gba/memory/memory.cpp deleted file mode 100755 index 4061f8fe..00000000 --- a/bsnes/gba/memory/memory.cpp +++ /dev/null @@ -1,36 +0,0 @@ -#include - -#define MEMORY_CPP -namespace GBA { - -Bus bus; - -uint8 Bus::read(unsigned addr) { - if((addr & 0x0fffc000) == 0x00000000) { - //00000000-00003fff BIOS - return system.bios.data[addr & 0x3fff]; - } - - if((addr & 0x0e000000) == 0x08000000) { - //08000000-09ffffff ROM (wait state 0) - return cartridge.romdata[addr & 0x01ffffff]; - } - - if((addr & 0x0e000000) == 0x0a000000) { - //0a000000-0bffffff ROM (wait state 1) - return cartridge.romdata[addr & 0x01ffffff]; - } - - if((addr & 0x0e000000) == 0x0c000000) { - //0c000000-0dffffff ROM (wait state 2) - return cartridge.romdata[addr & 0x01ffffff]; - } - - //unmapped - return 0u; -} - -void Bus::write(unsigned addr, uint8 data) { -} - -} diff --git a/bsnes/gba/memory/memory.hpp b/bsnes/gba/memory/memory.hpp deleted file mode 100755 index ef1540a0..00000000 --- a/bsnes/gba/memory/memory.hpp +++ /dev/null @@ -1,6 +0,0 @@ -struct Bus { - uint8 read(unsigned addr); - void write(unsigned addr, uint8 data); -}; - -extern Bus bus; diff --git a/bsnes/gba/ppu/ppu.cpp b/bsnes/gba/ppu/ppu.cpp deleted file mode 100755 index 45c5d87e..00000000 --- a/bsnes/gba/ppu/ppu.cpp +++ /dev/null @@ -1,38 +0,0 @@ -#include - -#define PPU_CPP -namespace GBA { - -PPU ppu; - -void PPU::Enter() { ppu.enter(); } - -void PPU::enter() { - while(true) { - //scheduler.synchronize_all(); - - step(16777216); - static uint16_t buffer[240 * 160]; - for(unsigned y = 0; y < 160; y++) { - uint16_t *dp = buffer + y * 240; - for(unsigned x = 0; x < 240; x++) { - *dp++ = x + y; - } - } - interface->videoRefresh(buffer); - scheduler.exit(Scheduler::ExitReason::FrameEvent); - } -} - -void PPU::step(unsigned clocks) { - clock += clocks; - if(clock >= 0 && scheduler.sync != Scheduler::SynchronizeMode::All) { - co_switch(cpu.thread); - } -} - -void PPU::power() { - create(PPU::Enter, 16777216); -} - -} diff --git a/bsnes/gba/ppu/ppu.hpp b/bsnes/gba/ppu/ppu.hpp deleted file mode 100755 index 15ba4c89..00000000 --- a/bsnes/gba/ppu/ppu.hpp +++ /dev/null @@ -1,9 +0,0 @@ -struct PPU : Processor { - static void Enter(); - void enter(); - void step(unsigned clocks); - - void power(); -}; - -extern PPU ppu; diff --git a/bsnes/gba/scheduler/scheduler-inline.hpp b/bsnes/gba/scheduler/scheduler-inline.hpp deleted file mode 100755 index ae230466..00000000 --- a/bsnes/gba/scheduler/scheduler-inline.hpp +++ /dev/null @@ -1,17 +0,0 @@ -void Scheduler::swapto(Processor &p) { - active_thread = p.thread; - co_switch(active_thread); -} - -void Scheduler::synchronize_cpu() { - if(sync == SynchronizeMode::CPU) { - sync = SynchronizeMode::All; - exit(ExitReason::SynchronizeEvent); - } -} - -void Scheduler::synchronize_all() { - if(sync == SynchronizeMode::All) { - exit(ExitReason::SynchronizeEvent); - } -} diff --git a/bsnes/gba/scheduler/scheduler.cpp b/bsnes/gba/scheduler/scheduler.cpp deleted file mode 100755 index 42335f24..00000000 --- a/bsnes/gba/scheduler/scheduler.cpp +++ /dev/null @@ -1,31 +0,0 @@ -#include - -#define SCHEDULER_CPP -namespace GBA { - -Scheduler scheduler; - -void Scheduler::enter() { - host_thread = co_active(); - co_switch(active_thread); -} - -void Scheduler::exit(ExitReason reason) { - exit_reason = reason; - active_thread = co_active(); - co_switch(host_thread); -} - -void Scheduler::power() { - host_thread = co_active(); - active_thread = cpu.thread; -} - -Scheduler::Scheduler() { - sync = SynchronizeMode::None; - exit_reason = ExitReason::UnknownEvent; - host_thread = nullptr; - active_thread = nullptr; -} - -} diff --git a/bsnes/gba/scheduler/scheduler.hpp b/bsnes/gba/scheduler/scheduler.hpp deleted file mode 100755 index 9b7aca46..00000000 --- a/bsnes/gba/scheduler/scheduler.hpp +++ /dev/null @@ -1,19 +0,0 @@ -struct Scheduler : property { - enum class SynchronizeMode : unsigned { None, CPU, All } sync; - enum class ExitReason : unsigned { UnknownEvent, FrameEvent, SynchronizeEvent }; - readonly exit_reason; - - cothread_t host_thread; - cothread_t active_thread; - - void enter(); - void exit(ExitReason); - alwaysinline void swapto(Processor&); - alwaysinline void synchronize_cpu(); - alwaysinline void synchronize_all(); - - void power(); - Scheduler(); -}; - -extern Scheduler scheduler; diff --git a/bsnes/gba/system/system.cpp b/bsnes/gba/system/system.cpp deleted file mode 100755 index 62a3f6f7..00000000 --- a/bsnes/gba/system/system.cpp +++ /dev/null @@ -1,53 +0,0 @@ -#include - -#define SYSTEM_CPP -namespace GBA { - -System system; - -void System::BIOS::load(const uint8_t *newdata, unsigned newsize) { - if(data) delete[] data; - data = new uint8[size = newsize]; - memcpy(data, newdata, newsize); - - string sha256 = nall::sha256(data, size); - if(size != 16384 || sha256 != "fd2547724b505f487e6dcb29ec2ecff3af35a841a77ab2e85fd87350abd36570") { - interface->message("Warning: Game Boy Advance BIOS SHA256 sum is incorrect."); - } -} - -System::BIOS::BIOS() { - data = nullptr; - size = 0u; -} - -System::BIOS::~BIOS() { - delete[] data; -} - -void System::run() { - scheduler.enter(); -} - -void System::init() { -} - -void System::term() { -} - -void System::load() { -} - -void System::unload() { - cartridge.unload(); -} - -void System::power() { - cartridge.power(); - cpu.power(); - ppu.power(); - apu.power(); - scheduler.power(); -} - -} diff --git a/bsnes/gba/system/system.hpp b/bsnes/gba/system/system.hpp deleted file mode 100755 index 35ac26a8..00000000 --- a/bsnes/gba/system/system.hpp +++ /dev/null @@ -1,23 +0,0 @@ -enum class Input : unsigned { - A, B, Select, Start, Right, Left, Up, Down, R, L, -}; - -struct System : property { - struct BIOS { - uint8_t *data; - unsigned size; - void load(const uint8_t *data, unsigned size); - BIOS(); - ~BIOS(); - } bios; - - void run(); - - void init(); - void term(); - void load(); - void unload(); - void power(); -}; - -extern System system; diff --git a/bsnes/gba/video/video.cpp b/bsnes/gba/video/video.cpp deleted file mode 100755 index 7171ca1e..00000000 --- a/bsnes/gba/video/video.cpp +++ /dev/null @@ -1,53 +0,0 @@ -#include - -#define VIDEO_CPP -namespace GBA { - -Video video; - -unsigned Video::color(unsigned color) const { - uint5_t b = color >> 10; - uint5_t g = color >> 5; - uint5_t r = color >> 0; - - uint10_t R = (r << 5) | (r << 0); - uint10_t G = (g << 5) | (g << 0); - uint10_t B = (b << 5) | (b << 0); - - return (R << 20) | (G << 10) | (B << 0); -} - -void Video::generate(Format format) { - for(unsigned n = 0; n < (1 << 15); n++) palette[n] = color(n); - - if(format == Format::RGB24) { - for(unsigned n = 0; n < (1 << 15); n++) { - unsigned color = palette[n]; - palette[n] = ((color >> 6) & 0xff0000) + ((color >> 4) & 0x00ff00) + ((color >> 2) & 0x0000ff); - } - } - - if(format == Format::RGB16) { - for(unsigned n = 0; n < (1 << 15); n++) { - unsigned color = palette[n]; - palette[n] = ((color >> 14) & 0xf800) + ((color >> 9) & 0x07e0) + ((color >> 5) & 0x001f); - } - } - - if(format == Format::RGB15) { - for(unsigned n = 0; n < (1 << 15); n++) { - unsigned color = palette[n]; - palette[n] = ((color >> 15) & 0x7c00) + ((color >> 10) & 0x03e0) + ((color >> 5) & 0x001f); - } - } -} - -Video::Video() { - palette = new unsigned[1 << 15](); -} - -Video::~Video() { - delete[] palette; -} - -} diff --git a/bsnes/gba/video/video.hpp b/bsnes/gba/video/video.hpp deleted file mode 100755 index 5856930b..00000000 --- a/bsnes/gba/video/video.hpp +++ /dev/null @@ -1,11 +0,0 @@ -struct Video { - enum class Format : unsigned { RGB30, RGB24, RGB16, RGB15 }; - unsigned *palette; - - unsigned color(unsigned color) const; - void generate(Format format); - Video(); - ~Video(); -}; - -extern Video video; diff --git a/bsnes/snes/cartridge/cartridge.cpp b/bsnes/snes/cartridge/cartridge.cpp index bc155f60..d431f145 100755 --- a/bsnes/snes/cartridge/cartridge.cpp +++ b/bsnes/snes/cartridge/cartridge.cpp @@ -59,7 +59,7 @@ void Cartridge::load(Mode cartridge_mode, const char *markup) { break; case Mode::SuperGameBoy: #if defined(GAMEBOY) - sha256 = GameBoy::cartridge.sha256(); + sha256 = GB::cartridge.sha256(); #else throw "Game Boy support not present"; #endif diff --git a/bsnes/snes/chip/icd2/icd2.cpp b/bsnes/snes/chip/icd2/icd2.cpp index 2b145915..30b8b240 100755 --- a/bsnes/snes/chip/icd2/icd2.cpp +++ b/bsnes/snes/chip/icd2/icd2.cpp @@ -15,14 +15,14 @@ void ICD2::Enter() { icd2.enter(); } void ICD2::enter() { while(true) { if(scheduler.sync == Scheduler::SynchronizeMode::All) { - GameBoy::system.runtosave(); + GB::system.runtosave(); scheduler.exit(Scheduler::ExitReason::SynchronizeEvent); } if(r6003 & 0x80) { - GameBoy::system.run(); - step(GameBoy::system.clocks_executed); - GameBoy::system.clocks_executed = 0; + GB::system.run(); + step(GB::system.clocks_executed); + GB::system.clocks_executed = 0; } else { //DMG halted audio.coprocessor_sample(0x0000, 0x0000); step(1); @@ -69,9 +69,9 @@ void ICD2::reset() { joyp14lock = 0; pulselock = true; - GameBoy::interface = this; - GameBoy::system.init(); - GameBoy::system.power(); + GB::interface = this; + GB::system.init(); + GB::system.power(); } } diff --git a/bsnes/snes/chip/icd2/icd2.hpp b/bsnes/snes/chip/icd2/icd2.hpp index 511ca1cf..9e35dfdb 100755 --- a/bsnes/snes/chip/icd2/icd2.hpp +++ b/bsnes/snes/chip/icd2/icd2.hpp @@ -1,4 +1,4 @@ -class ICD2 : public GameBoy::Interface, public Coprocessor { +class ICD2 : public GB::Interface, public Coprocessor { public: unsigned revision; diff --git a/bsnes/snes/chip/icd2/interface/interface.cpp b/bsnes/snes/chip/icd2/interface/interface.cpp index 8a188bc3..7b861471 100755 --- a/bsnes/snes/chip/icd2/interface/interface.cpp +++ b/bsnes/snes/chip/icd2/interface/interface.cpp @@ -2,12 +2,12 @@ //called on rendered lines 0-143 (not on Vblank lines 144-153) void ICD2::lcdScanline() { - if((GameBoy::lcd.status.ly & 7) == 0) { + if((GB::lcd.status.ly & 7) == 0) { lcd.row = (lcd.row + 1) & 3; } - unsigned offset = (lcd.row * 160 * 8) + ((GameBoy::lcd.status.ly & 7) * 160); - memcpy(lcd.buffer + offset, GameBoy::lcd.screen + GameBoy::lcd.status.ly * 160, 160 * sizeof(uint16)); + unsigned offset = (lcd.row * 160 * 8) + ((GB::lcd.status.ly & 7) * 160); + memcpy(lcd.buffer + offset, GB::lcd.screen + GB::lcd.status.ly * 160, 160 * sizeof(uint16)); } void ICD2::joypWrite(bool p15, bool p14) { @@ -88,7 +88,7 @@ void ICD2::audioSample(int16_t center, int16_t left, int16_t right) { } bool ICD2::inputPoll(unsigned id) { - GameBoy::cpu.status.mlt_req = joyp_id & mlt_req; + GB::cpu.status.mlt_req = joyp_id & mlt_req; unsigned data = 0x00; switch(joyp_id & mlt_req) { @@ -98,15 +98,15 @@ bool ICD2::inputPoll(unsigned id) { case 3: data = ~r6007; break; } - switch((GameBoy::Input)id) { - case GameBoy::Input::Start: return data & 0x80; - case GameBoy::Input::Select: return data & 0x40; - case GameBoy::Input::B: return data & 0x20; - case GameBoy::Input::A: return data & 0x10; - case GameBoy::Input::Down: return data & 0x08; - case GameBoy::Input::Up: return data & 0x04; - case GameBoy::Input::Left: return data & 0x02; - case GameBoy::Input::Right: return data & 0x01; + switch((GB::Input)id) { + case GB::Input::Start: return data & 0x80; + case GB::Input::Select: return data & 0x40; + case GB::Input::B: return data & 0x20; + case GB::Input::A: return data & 0x10; + case GB::Input::Down: return data & 0x08; + case GB::Input::Up: return data & 0x04; + case GB::Input::Left: return data & 0x02; + case GB::Input::Right: return data & 0x01; } return 0; diff --git a/bsnes/snes/chip/icd2/mmio/mmio.cpp b/bsnes/snes/chip/icd2/mmio/mmio.cpp index 0835c027..d8ce9a17 100755 --- a/bsnes/snes/chip/icd2/mmio/mmio.cpp +++ b/bsnes/snes/chip/icd2/mmio/mmio.cpp @@ -19,7 +19,7 @@ uint8 ICD2::read(unsigned addr) { //LY counter if(addr == 0x6000) { - r6000_ly = GameBoy::lcd.status.ly; + r6000_ly = GB::lcd.status.ly; r6000_row = lcd.row; return r6000_ly; } diff --git a/bsnes/snes/chip/icd2/serialization.cpp b/bsnes/snes/chip/icd2/serialization.cpp index 5c31448e..bd0a4086 100755 --- a/bsnes/snes/chip/icd2/serialization.cpp +++ b/bsnes/snes/chip/icd2/serialization.cpp @@ -2,7 +2,7 @@ void ICD2::serialize(serializer &s) { Processor::serialize(s); - GameBoy::system.serialize_all(s); + GB::system.serialize_all(s); for(unsigned n = 0; n < 64; n++) s.array(packet[n].data); s.integer(packetsize); diff --git a/bsnes/snes/snes.hpp b/bsnes/snes/snes.hpp index 29861846..42077c6b 100755 --- a/bsnes/snes/snes.hpp +++ b/bsnes/snes/snes.hpp @@ -20,7 +20,7 @@ namespace SNES { #include #if defined(GAMEBOY) - #include + #include #endif namespace SNES { diff --git a/bsnes/target-libsnes/Makefile b/bsnes/target-libsnes/Makefile index 378bcfff..d709ea3e 100755 --- a/bsnes/target-libsnes/Makefile +++ b/bsnes/target-libsnes/Makefile @@ -1,5 +1,5 @@ include $(snes)/Makefile -include $(gameboy)/Makefile +include $(gb)/Makefile output := libsnes ifeq ($(platform),x) diff --git a/bsnes/target-ui/Makefile b/bsnes/target-ui/Makefile index 8424ff54..2dafd693 100755 --- a/bsnes/target-ui/Makefile +++ b/bsnes/target-ui/Makefile @@ -1,7 +1,6 @@ include $(nes)/Makefile include $(snes)/Makefile -include $(gameboy)/Makefile -include $(gba)/Makefile +include $(gb)/Makefile name := bsnes ui_objects := ui-main ui-config ui-interface ui-input ui-utility diff --git a/bsnes/target-ui/base.hpp b/bsnes/target-ui/base.hpp index 7c224bda..a8c807a2 100755 --- a/bsnes/target-ui/base.hpp +++ b/bsnes/target-ui/base.hpp @@ -1,7 +1,6 @@ #include #include -#include -#include +#include #include #include diff --git a/bsnes/target-ui/config/config.cpp b/bsnes/target-ui/config/config.cpp index 3c9a6d5e..ae659092 100755 --- a/bsnes/target-ui/config/config.cpp +++ b/bsnes/target-ui/config/config.cpp @@ -2,50 +2,49 @@ Config *config = nullptr; Config::Config() { - append(video.driver = "", "Video::Driver"); - append(video.filter = "None", "Video::Filter"); - append(video.shader = "Blur", "Video::Shader"); - append(video.synchronize = true, "Video::Synchronize"); - append(video.correctAspectRatio = true, "Video::CorrectAspectRatio"); + attach(video.driver = "", "Video::Driver"); + attach(video.filter = "None", "Video::Filter"); + attach(video.shader = "Blur", "Video::Shader"); + attach(video.synchronize = true, "Video::Synchronize"); + attach(video.correctAspectRatio = true, "Video::CorrectAspectRatio"); - append(video.maskOverscan = false, "Video::MaskOverscan"); - append(video.maskOverscanHorizontal = 8, "Video::MaskOverscanHorizontal"); - append(video.maskOverscanVertical = 8, "Video::MaskOverscanVertical"); + attach(video.maskOverscan = false, "Video::MaskOverscan"); + attach(video.maskOverscanHorizontal = 8, "Video::MaskOverscanHorizontal"); + attach(video.maskOverscanVertical = 8, "Video::MaskOverscanVertical"); - append(video.brightness = 100, "Video::Brightness"); - append(video.contrast = 100, "Video::Contrast"); - append(video.gamma = 50, "Video::Gamma"); + attach(video.brightness = 100, "Video::Brightness"); + attach(video.contrast = 100, "Video::Contrast"); + attach(video.gamma = 50, "Video::Gamma"); - append(video.fullScreenMode = 0, "Video::FullScreenMode"); + attach(video.fullScreenMode = 0, "Video::FullScreenMode"); - append(video.startFullScreen = false, "Video::StartFullScreen"); - append(video.compositionMode = 0, "Video::CompositionMode"); + attach(video.startFullScreen = false, "Video::StartFullScreen"); + attach(video.compositionMode = 0, "Video::CompositionMode"); - append(audio.driver = "", "Audio::Driver"); - append(audio.synchronize = true, "Audio::Synchronize"); - append(audio.mute = false, "Audio::Mute"); - append(audio.volume = 100, "Audio::Volume"); - append(audio.latency = 60, "Audio::Latency"); - append(audio.resampler = "sinc", "Audio::Resampler"); + attach(audio.driver = "", "Audio::Driver"); + attach(audio.synchronize = true, "Audio::Synchronize"); + attach(audio.mute = false, "Audio::Mute"); + attach(audio.volume = 100, "Audio::Volume"); + attach(audio.latency = 60, "Audio::Latency"); + attach(audio.resampler = "sinc", "Audio::Resampler"); - append(audio.frequency = 48000, "Audio::Frequency::Native"); - append(audio.frequencyNES = 1789772, "Audio::Frequency::NES"); - append(audio.frequencySNES = 32000, "Audio::Frequency::SNES"); - append(audio.frequencyGameBoy = 4194304, "Audio::Frequency::GameBoy"); - append(audio.frequencyGBA = 32768, "Audio::Frequency::GBA"); + attach(audio.frequency = 48000, "Audio::Frequency::Native"); + attach(audio.frequencyNES = 1789772, "Audio::Frequency::NES"); + attach(audio.frequencySNES = 32000, "Audio::Frequency::SNES"); + attach(audio.frequencyGB = 4194304, "Audio::Frequency::GB"); - append(input.driver = "", "Input::Driver"); - append(input.focusPolicy = 1, "Input::FocusPolicy"); + attach(input.driver = "", "Input::Driver"); + attach(input.focusPolicy = 1, "Input::FocusPolicy"); - append(path.bios.satellaview = "", "Path::BIOS::Satellaview"); - append(path.bios.sufamiTurbo = "", "Path::BIOS::SufamiTurbo"); - append(path.bios.superGameBoy = "", "Path::BIOS::SuperGameBoy"); + attach(path.bios.satellaview = "", "Path::BIOS::Satellaview"); + attach(path.bios.sufamiTurbo = "", "Path::BIOS::SufamiTurbo"); + attach(path.bios.superGameBoy = "", "Path::BIOS::SuperGameBoy"); - append(nes.controllerPort1Device = 1, "NES::Controller::Port1"); - append(nes.controllerPort2Device = 0, "NES::Controller::Port2"); + attach(nes.controllerPort1Device = 1, "NES::Controller::Port1"); + attach(nes.controllerPort2Device = 0, "NES::Controller::Port2"); - append(snes.controllerPort1Device = 1, "SNES::Controller::Port1"); - append(snes.controllerPort2Device = 0, "SNES::Controller::Port2"); + attach(snes.controllerPort1Device = 1, "SNES::Controller::Port1"); + attach(snes.controllerPort2Device = 0, "SNES::Controller::Port2"); load(application->path("settings.cfg")); save(application->path("settings.cfg")); diff --git a/bsnes/target-ui/config/config.hpp b/bsnes/target-ui/config/config.hpp index 4822e10d..07a7d09f 100755 --- a/bsnes/target-ui/config/config.hpp +++ b/bsnes/target-ui/config/config.hpp @@ -33,8 +33,7 @@ struct Config : public configuration { unsigned frequency; unsigned frequencyNES; unsigned frequencySNES; - unsigned frequencyGameBoy; - unsigned frequencyGBA; + unsigned frequencyGB; } audio; struct Input { diff --git a/bsnes/target-ui/general/file-browser.cpp b/bsnes/target-ui/general/file-browser.cpp index 9966678e..cf51b675 100755 --- a/bsnes/target-ui/general/file-browser.cpp +++ b/bsnes/target-ui/general/file-browser.cpp @@ -42,14 +42,13 @@ FileBrowser::FileBrowser() { fileList.onChange = { &FileBrowser::synchronize, this }; fileList.onActivate = openButton.onActivate = { &FileBrowser::fileListActivate, this }; - filterModes.append({ "Default", "", { "*" } }); - filterModes.append({ "NES", "", { "*.fc", "*.nes" } }); - filterModes.append({ "SNES", "", { "*.sfc" } }); - filterModes.append({ "GameBoy", "", { "*.gb", "*.gbc" } }); - filterModes.append({ "GameBoyColor", "", { "*.gbc" } }); - filterModes.append({ "GameBoyAdvance", "", { "*.gba" } }); - filterModes.append({ "Satellaview", "", { "*.bs" } }); - filterModes.append({ "SufamiTurbo", "", { "*.st" } }); + filterModes.append({ "Default", "", { "*" } }); + filterModes.append({ "NES", "", { "*.fc", "*.nes" } }); + filterModes.append({ "SNES", "", { "*.sfc" } }); + filterModes.append({ "GameBoy", "", { "*.gb", "*.gbc" } }); + filterModes.append({ "GameBoyColor", "", { "*.gbc" } }); + filterModes.append({ "Satellaview", "", { "*.bs" } }); + filterModes.append({ "SufamiTurbo", "", { "*.st" } }); mode = &filterModes[Mode::Default]; for(auto &mode : filterModes) config.attach(mode.path, mode.name); diff --git a/bsnes/target-ui/general/file-browser.hpp b/bsnes/target-ui/general/file-browser.hpp index 628ae401..93ce2fef 100755 --- a/bsnes/target-ui/general/file-browser.hpp +++ b/bsnes/target-ui/general/file-browser.hpp @@ -9,16 +9,7 @@ struct FileBrowser : Window { Label filterLabel; Button openButton; - struct Mode { enum : unsigned { - Default, - NES, - SNES, - GameBoy, - GameBoyColor, - GameBoyAdvance, - Satellaview, - SufamiTurbo - }; }; + struct Mode { enum : unsigned { Default, NES, SNES, GameBoy, GameBoyColor, Satellaview, SufamiTurbo }; }; void open(const string &title, unsigned mode, function callback); FileBrowser(); diff --git a/bsnes/target-ui/general/main-window.cpp b/bsnes/target-ui/general/main-window.cpp index f0094d40..ee5aac82 100755 --- a/bsnes/target-ui/general/main-window.cpp +++ b/bsnes/target-ui/general/main-window.cpp @@ -11,7 +11,6 @@ MainWindow::MainWindow() { cartridgeLoadNES.setText("Load &NES Cartridge ..."); cartridgeLoadGameBoy.setText("Load &Game Boy Cartridge ..."); cartridgeLoadGameBoyColor.setText("Load Game Boy &Color Cartridge ..."); - cartridgeLoadGameBoyAdvance.setText("Load Game Boy &Advance Cartridge ..."); cartridgeLoadSatellaviewSlotted.setText("Load Satellaview-Slotted Cartridge ..."); cartridgeLoadSatellaview.setText("Load Satellaview Cartridge ..."); cartridgeLoadSufamiTurbo.setText("Load Sufami Turbo Cartridge ..."); @@ -104,7 +103,6 @@ MainWindow::MainWindow() { cartridgeMenu.append(cartridgeLoadSNES); cartridgeMenu.append(cartridgeLoadGameBoy); cartridgeMenu.append(cartridgeLoadGameBoyColor); - cartridgeMenu.append(cartridgeLoadGameBoyAdvance); cartridgeMenu.append(cartridgeSeparator); cartridgeMenu.append(cartridgeLoadSatellaviewSlotted); cartridgeMenu.append(cartridgeLoadSatellaview); @@ -207,19 +205,13 @@ MainWindow::MainWindow() { cartridgeLoadGameBoy.onActivate = [&] { fileBrowser->open("Load Cartridge - Game Boy", FileBrowser::Mode::GameBoy, [](string filename) { - interface->gameBoy.loadCartridge(GameBoy::System::Revision::GameBoy, filename); + interface->gb.loadCartridge(GB::System::Revision::GameBoy, filename); }); }; cartridgeLoadGameBoyColor.onActivate = [&] { fileBrowser->open("Load Cartridge - Game Boy Color", FileBrowser::Mode::GameBoyColor, [](string filename) { - interface->gameBoy.loadCartridge(GameBoy::System::Revision::GameBoyColor, filename); - }); - }; - - cartridgeLoadGameBoyAdvance.onActivate = [&] { - fileBrowser->open("Load Cartridge - Game Boy Advance", FileBrowser::Mode::GameBoyAdvance, [](string filename) { - interface->gba.loadCartridge(filename); + interface->gb.loadCartridge(GB::System::Revision::GameBoyColor, filename); }); }; diff --git a/bsnes/target-ui/general/main-window.hpp b/bsnes/target-ui/general/main-window.hpp index 7a404f3c..a29ff481 100755 --- a/bsnes/target-ui/general/main-window.hpp +++ b/bsnes/target-ui/general/main-window.hpp @@ -7,7 +7,6 @@ struct MainWindow : Window { Item cartridgeLoadNES; Item cartridgeLoadGameBoy; Item cartridgeLoadGameBoyColor; - Item cartridgeLoadGameBoyAdvance; Separator cartridgeSeparator; Item cartridgeLoadSatellaviewSlotted; Item cartridgeLoadSatellaview; diff --git a/bsnes/target-ui/input/gameboy.hpp b/bsnes/target-ui/input/gameboy.hpp deleted file mode 100755 index 41159fff..00000000 --- a/bsnes/target-ui/input/gameboy.hpp +++ /dev/null @@ -1,20 +0,0 @@ -struct GameBoyController : TertiaryInput { - DigitalInput up, down, left, right; - DigitalInput b, a, select, start; - TurboInput bTurbo, aTurbo; - - int16_t poll(unsigned n); - GameBoyController(); -}; - -struct GameBoyDevice : SecondaryInput { - GameBoyController controller; - - GameBoyDevice(); -}; - -struct GameBoyInput : PrimaryInput { - GameBoyDevice device; - - GameBoyInput(); -}; diff --git a/bsnes/target-ui/input/gameboy.cpp b/bsnes/target-ui/input/gb.cpp similarity index 87% rename from bsnes/target-ui/input/gameboy.cpp rename to bsnes/target-ui/input/gb.cpp index c8b9bbe2..5720d42f 100755 --- a/bsnes/target-ui/input/gameboy.cpp +++ b/bsnes/target-ui/input/gb.cpp @@ -1,4 +1,4 @@ -int16_t GameBoyController::poll(unsigned n) { +int16_t GbController::poll(unsigned n) { switch(n) { case 0: return up.poll() & !down.poll(); case 1: return down.poll() & !up.poll(); @@ -12,7 +12,7 @@ int16_t GameBoyController::poll(unsigned n) { return 0; } -GameBoyController::GameBoyController() { +GbController::GbController() { name = "Controller"; up.name = "Up"; @@ -40,14 +40,14 @@ GameBoyController::GameBoyController() { // -GameBoyDevice::GameBoyDevice() { +GbDevice::GbDevice() { name = "Device"; append(controller); } // -GameBoyInput::GameBoyInput() { +GbInput::GbInput() { name = "Game Boy"; append(device); } diff --git a/bsnes/target-ui/input/gb.hpp b/bsnes/target-ui/input/gb.hpp new file mode 100755 index 00000000..8ebe9d2a --- /dev/null +++ b/bsnes/target-ui/input/gb.hpp @@ -0,0 +1,20 @@ +struct GbController : TertiaryInput { + DigitalInput up, down, left, right; + DigitalInput b, a, select, start; + TurboInput bTurbo, aTurbo; + + int16_t poll(unsigned n); + GbController(); +}; + +struct GbDevice : SecondaryInput { + GbController controller; + + GbDevice(); +}; + +struct GbInput : PrimaryInput { + GbDevice device; + + GbInput(); +}; diff --git a/bsnes/target-ui/input/gba.cpp b/bsnes/target-ui/input/gba.cpp deleted file mode 100755 index 897b212c..00000000 --- a/bsnes/target-ui/input/gba.cpp +++ /dev/null @@ -1,62 +0,0 @@ -int16_t GbaController::poll(unsigned n) { - switch((GBA::Input)n) { - case GBA::Input::Up: return up.poll() & !down.poll(); - case GBA::Input::Down: return down.poll() & !up.poll(); - case GBA::Input::Left: return left.poll() & !right.poll(); - case GBA::Input::Right: return right.poll() & !left.poll(); - case GBA::Input::B: return b.poll() | bTurbo.poll(); - case GBA::Input::A: return a.poll() | aTurbo.poll(); - case GBA::Input::L: return l.poll() | lTurbo.poll(); - case GBA::Input::R: return r.poll() | rTurbo.poll(); - case GBA::Input::Select: return select.poll(); - case GBA::Input::Start: return start.poll(); - } - return 0; //never reached -} - -GbaController::GbaController() { - name = "Controller"; - - up.name = "Up"; - down.name = "Down"; - left.name = "Left"; - right.name = "Right"; - b.name = "B"; - a.name = "A"; - l.name = "L"; - r.name = "R"; - select.name = "Select"; - start.name = "Start"; - bTurbo.name = "Turbo B"; - aTurbo.name = "Turbo A"; - lTurbo.name = "Turbo L"; - rTurbo.name = "Turbo R"; - - up.mapping = "KB0::Up"; - down.mapping = "KB0::Down"; - left.mapping = "KB0::Left"; - right.mapping = "KB0::Right"; - b.mapping = "KB0::Z"; - a.mapping = "KB0::X"; - l.mapping = "KB0::A"; - r.mapping = "KB0::S"; - select.mapping = "KB0::Apostrophe"; - start.mapping = "KB0::Return"; - - append(up, down, left, right, b, a, l, r, select, start); - append(bTurbo, aTurbo, lTurbo, rTurbo); -} - -// - -GbaDevice::GbaDevice() { - name = "Device"; - append(controller); -} - -// - -GbaInput::GbaInput() { - name = "Game Boy Advance"; - append(device); -} diff --git a/bsnes/target-ui/input/gba.hpp b/bsnes/target-ui/input/gba.hpp deleted file mode 100755 index 2ddb076e..00000000 --- a/bsnes/target-ui/input/gba.hpp +++ /dev/null @@ -1,20 +0,0 @@ -struct GbaController : TertiaryInput { - DigitalInput up, down, left, right; - DigitalInput b, a, l, r, select, start; - TurboInput bTurbo, aTurbo, lTurbo, rTurbo; - - int16_t poll(unsigned n); - GbaController(); -}; - -struct GbaDevice : SecondaryInput { - GbaController controller; - - GbaDevice(); -}; - -struct GbaInput : PrimaryInput { - GbaDevice device; - - GbaInput(); -}; diff --git a/bsnes/target-ui/input/input.cpp b/bsnes/target-ui/input/input.cpp index 6fb5d74d..00086b6c 100755 --- a/bsnes/target-ui/input/input.cpp +++ b/bsnes/target-ui/input/input.cpp @@ -1,8 +1,7 @@ #include "../base.hpp" #include "nes.cpp" #include "snes.cpp" -#include "gameboy.cpp" -#include "gba.cpp" +#include "gb.cpp" #include "user-interface.cpp" InputManager *inputManager = nullptr; @@ -200,8 +199,7 @@ InputManager::InputManager() { inputList.append(nes); inputList.append(snes); - inputList.append(gameBoy); - inputList.append(gba); + inputList.append(gb); inputList.append(userInterface); for(unsigned n = 0; n < inputList.size(); n++) inputList[n].attach(); diff --git a/bsnes/target-ui/input/input.hpp b/bsnes/target-ui/input/input.hpp index b908366a..a7011baf 100755 --- a/bsnes/target-ui/input/input.hpp +++ b/bsnes/target-ui/input/input.hpp @@ -51,8 +51,7 @@ struct PrimaryInput : array { #include "nes.hpp" #include "snes.hpp" -#include "gameboy.hpp" -#include "gba.hpp" +#include "gb.hpp" #include "user-interface.hpp" struct InputManager { @@ -63,8 +62,7 @@ struct InputManager { array inputList; NesInput nes; SnesInput snes; - GameBoyInput gameBoy; - GbaInput gba; + GbInput gb; UserInterfaceInput userInterface; void scan(); diff --git a/bsnes/target-ui/interface/gameboy/gameboy.cpp b/bsnes/target-ui/interface/gameboy/gameboy.cpp deleted file mode 100755 index 0fc8c4f2..00000000 --- a/bsnes/target-ui/interface/gameboy/gameboy.cpp +++ /dev/null @@ -1,126 +0,0 @@ -void InterfaceGameBoy::initialize() { - GameBoy::interface = this; - GameBoy::system.init(); -} - -bool InterfaceGameBoy::cartridgeLoaded() { - return GameBoy::cartridge.loaded(); -} - -bool InterfaceGameBoy::loadCartridge(GameBoy::System::Revision revision, const string &filename) { - interface->unloadCartridge(); - - uint8_t *data; - unsigned size; - - if(filename.endswith("/")) { - if(file::read({ filename, "program.rom" }, data, size) == false) return false; - interface->base = { true, filename }; - } else { - if(file::read(filename, data, size) == false) return false; - interface->base = { false, nall::basename(filename) }; - } - - interface->game = interface->base; - interface->cartridgeTitle = interface->base.title(); - interface->applyPatch(interface->base, data, size); - - string markup; - markup.readfile(interface->base.filename("manifest.xml", ".xml")); - - GameBoyCartridge info(data, size); - if(markup.empty()) markup = info.markup; - - GameBoy::cartridge.load(revision, markup, data, size); - GameBoy::system.power(); - delete[] data; - - if(GameBoy::cartridge.ramsize) { - filemap fp; - if(fp.open(interface->base.filename("program.ram", ".sav"), filemap::mode::read)) { - memcpy(GameBoy::cartridge.ramdata, fp.data(), min(GameBoy::cartridge.ramsize, fp.size())); - } - } - - GameBoy::interface = this; - GameBoy::video.generate(GameBoy::Video::Format::RGB30); - interface->loadCartridge(::Interface::Mode::GameBoy); - return true; -} - -void InterfaceGameBoy::unloadCartridge() { - if(GameBoy::cartridge.ramsize) { - file::write(interface->base.filename("program.ram", ".sav"), GameBoy::cartridge.ramdata, GameBoy::cartridge.ramsize); - } - - GameBoy::cartridge.unload(); - interface->base.name = ""; -} - -void InterfaceGameBoy::power() { - GameBoy::system.power(); -} - -void InterfaceGameBoy::reset() { - GameBoy::system.power(); //Game Boy lacks reset button -} - -void InterfaceGameBoy::run() { - do { - GameBoy::system.run(); - } while(GameBoy::scheduler.exit_reason() != GameBoy::Scheduler::ExitReason::FrameEvent); -} - -serializer InterfaceGameBoy::serialize() { - GameBoy::system.runtosave(); - return GameBoy::system.serialize(); -} - -bool InterfaceGameBoy::unserialize(serializer &s) { - return GameBoy::system.unserialize(s); -} - -void InterfaceGameBoy::setCheats(const lstring &list) { - GameBoy::cheat.reset(); - for(auto &code : list) { - lstring codelist; - codelist.split("+", code); - for(auto &part : codelist) { - unsigned addr, data, comp; - if(GameBoy::Cheat::decode(part, addr, data, comp)) { - GameBoy::cheat.append({ addr, data, comp }); - } - } - } - GameBoy::cheat.synchronize(); -} - -// - -void InterfaceGameBoy::videoRefresh(const uint16_t *data) { - static uint32_t output[160 * 144]; - - for(unsigned y = 0; y < 144; y++) { - const uint16_t *sp = data + y * 160; - uint32_t *dp = output + y * 160; - for(unsigned x = 0; x < 160; x++) { - uint16_t color = *sp++; - *dp++ = GameBoy::video.palette[color]; - } - } - - interface->videoRefresh(output, 160 * sizeof(uint32_t), 160, 144); -} - -void InterfaceGameBoy::audioSample(int16_t csample, int16_t lsample, int16_t rsample) { - signed samples[] = { lsample, rsample }; - dspaudio.sample(samples); - while(dspaudio.pending()) { - dspaudio.read(samples); - audio.sample(samples[0], samples[1]); - } -} - -bool InterfaceGameBoy::inputPoll(unsigned id) { - return inputManager->gameBoy.device.controller.poll(id); -} diff --git a/bsnes/target-ui/interface/gb/gb.cpp b/bsnes/target-ui/interface/gb/gb.cpp new file mode 100755 index 00000000..a08e4d96 --- /dev/null +++ b/bsnes/target-ui/interface/gb/gb.cpp @@ -0,0 +1,126 @@ +void InterfaceGB::initialize() { + GB::interface = this; + GB::system.init(); +} + +bool InterfaceGB::cartridgeLoaded() { + return GB::cartridge.loaded(); +} + +bool InterfaceGB::loadCartridge(GB::System::Revision revision, const string &filename) { + interface->unloadCartridge(); + + uint8_t *data; + unsigned size; + + if(filename.endswith("/")) { + if(file::read({ filename, "program.rom" }, data, size) == false) return false; + interface->base = { true, filename }; + } else { + if(file::read(filename, data, size) == false) return false; + interface->base = { false, nall::basename(filename) }; + } + + interface->game = interface->base; + interface->cartridgeTitle = interface->base.title(); + interface->applyPatch(interface->base, data, size); + + string markup; + markup.readfile(interface->base.filename("manifest.xml", ".xml")); + + GameBoyCartridge info(data, size); + if(markup.empty()) markup = info.markup; + + GB::cartridge.load(revision, markup, data, size); + GB::system.power(); + delete[] data; + + if(GB::cartridge.ramsize) { + filemap fp; + if(fp.open(interface->base.filename("program.ram", ".sav"), filemap::mode::read)) { + memcpy(GB::cartridge.ramdata, fp.data(), min(GB::cartridge.ramsize, fp.size())); + } + } + + GB::interface = this; + GB::video.generate(GB::Video::Format::RGB30); + interface->loadCartridge(::Interface::Mode::GB); + return true; +} + +void InterfaceGB::unloadCartridge() { + if(GB::cartridge.ramsize) { + file::write(interface->base.filename("program.ram", ".sav"), GB::cartridge.ramdata, GB::cartridge.ramsize); + } + + GB::cartridge.unload(); + interface->base.name = ""; +} + +void InterfaceGB::power() { + GB::system.power(); +} + +void InterfaceGB::reset() { + GB::system.power(); //Game Boy lacks reset button +} + +void InterfaceGB::run() { + do { + GB::system.run(); + } while(GB::scheduler.exit_reason() != GB::Scheduler::ExitReason::FrameEvent); +} + +serializer InterfaceGB::serialize() { + GB::system.runtosave(); + return GB::system.serialize(); +} + +bool InterfaceGB::unserialize(serializer &s) { + return GB::system.unserialize(s); +} + +void InterfaceGB::setCheats(const lstring &list) { + GB::cheat.reset(); + for(auto &code : list) { + lstring codelist; + codelist.split("+", code); + for(auto &part : codelist) { + unsigned addr, data, comp; + if(GB::Cheat::decode(part, addr, data, comp)) { + GB::cheat.append({ addr, data, comp }); + } + } + } + GB::cheat.synchronize(); +} + +// + +void InterfaceGB::videoRefresh(const uint16_t *data) { + static uint32_t output[160 * 144]; + + for(unsigned y = 0; y < 144; y++) { + const uint16_t *sp = data + y * 160; + uint32_t *dp = output + y * 160; + for(unsigned x = 0; x < 160; x++) { + uint16_t color = *sp++; + *dp++ = GB::video.palette[color]; + } + } + + interface->videoRefresh(output, 160 * sizeof(uint32_t), 160, 144); +} + +void InterfaceGB::audioSample(int16_t csample, int16_t lsample, int16_t rsample) { + signed samples[] = { lsample, rsample }; + dspaudio.sample(samples); + while(dspaudio.pending()) { + dspaudio.read(samples); + audio.sample(samples[0], samples[1]); + } +} + +bool InterfaceGB::inputPoll(unsigned id) { + return inputManager->gb.device.controller.poll(id); +} diff --git a/bsnes/target-ui/interface/gameboy/gameboy.hpp b/bsnes/target-ui/interface/gb/gb.hpp similarity index 72% rename from bsnes/target-ui/interface/gameboy/gameboy.hpp rename to bsnes/target-ui/interface/gb/gb.hpp index 3b4b0d0e..6dca8a58 100755 --- a/bsnes/target-ui/interface/gameboy/gameboy.hpp +++ b/bsnes/target-ui/interface/gb/gb.hpp @@ -1,8 +1,8 @@ -struct InterfaceGameBoy : InterfaceCore, GameBoy::Interface { +struct InterfaceGB : InterfaceCore, GB::Interface { void initialize(); bool cartridgeLoaded(); - bool loadCartridge(GameBoy::System::Revision revision, const string &filename); + bool loadCartridge(GB::System::Revision revision, const string &filename); void unloadCartridge(); void power(); diff --git a/bsnes/target-ui/interface/gba/gba.cpp b/bsnes/target-ui/interface/gba/gba.cpp deleted file mode 100755 index 9779edee..00000000 --- a/bsnes/target-ui/interface/gba/gba.cpp +++ /dev/null @@ -1,110 +0,0 @@ -void InterfaceGBA::initialize() { - GBA::interface = this; - GBA::system.init(); -} - -bool InterfaceGBA::cartridgeLoaded() { - return GBA::cartridge.loaded(); -} - -bool InterfaceGBA::loadCartridge(const string &filename) { - interface->unloadCartridge(); - - uint8_t *biosdata; - unsigned biossize; - - uint8_t *cartdata; - unsigned cartsize; - - if(filename.endswith("/")) { - if(!file::exists({filename, "bios.rom"})) { - message("Error: Game Boy Advance BIOS (bios.bin) not found."); - return false; - } - if(file::read({filename, "bios.rom"}, biosdata, biossize) == false) return false; - if(file::read({filename, "program.rom"}, cartdata, cartsize) == false) return false; - interface->base = {true, filename}; - } else { - if(!file::exists({dir(filename), "gbabios.rom"})) { - message("Error: Game Boy Advance BIOS (gbabios.bin) not found."); - return false; - } - if(file::read({dir(filename), "gbabios.rom"}, biosdata, biossize) == false) return false; - if(file::read(filename, cartdata, cartsize) == false) return false; - interface->base = {false, filename}; - } - - interface->game = interface->base; - interface->cartridgeTitle = interface->base.title(); - interface->applyPatch(interface->base, cartdata, cartsize); - - string markup; - markup.readfile(interface->base.filename("manifest.xml", ".xml")); - - GBA::system.bios.load(biosdata, biossize); - GBA::cartridge.load(markup, cartdata, cartsize); - GBA::system.power(); - delete[] biosdata; - delete[] cartdata; - - GBA::video.generate(GBA::Video::Format::RGB30); - interface->loadCartridge(::Interface::Mode::GBA); - return true; -} - -void InterfaceGBA::unloadCartridge() { - GBA::system.unload(); -} - -void InterfaceGBA::power() { - GBA::system.power(); -} - -void InterfaceGBA::reset() { - GBA::system.power(); //GBA lacks reset button -} - -void InterfaceGBA::run() { - GBA::system.run(); -} - -serializer InterfaceGBA::serialize() { - return serializer(); -} - -bool InterfaceGBA::unserialize(serializer &s) { - return false; -} - -void InterfaceGBA::setCheats(const lstring &list) { -} - -// - -void InterfaceGBA::videoRefresh(const uint16_t *data) { - static uint32_t output[240 * 160]; - - for(unsigned y = 0; y < 160; y++) { - const uint16_t *sp = data + y * 240; - uint32_t *dp = output + y * 240; - for(unsigned x = 0; x < 240; x++) { - uint16_t color = *sp++; - *dp++ = GBA::video.palette[color]; - } - } - - interface->videoRefresh(output, 240 * sizeof(uint32_t), 240, 160); -} - -void InterfaceGBA::audioSample(int16_t lsample, int16_t rsample) { - signed samples[] = { lsample, rsample }; - dspaudio.sample(samples); - while(dspaudio.pending()) { - dspaudio.read(samples); - audio.sample(samples[0], samples[1]); - } -} - -bool InterfaceGBA::inputPoll(unsigned id) { - return inputManager->gba.device.controller.poll(id); -} diff --git a/bsnes/target-ui/interface/gba/gba.hpp b/bsnes/target-ui/interface/gba/gba.hpp deleted file mode 100755 index dd313f2f..00000000 --- a/bsnes/target-ui/interface/gba/gba.hpp +++ /dev/null @@ -1,20 +0,0 @@ -struct InterfaceGBA : InterfaceCore, GBA::Interface { - void initialize(); - - bool cartridgeLoaded(); - bool loadCartridge(const string &filename); - void unloadCartridge(); - - void power(); - void reset(); - void run(); - - serializer serialize(); - bool unserialize(serializer&); - - void setCheats(const lstring &list = lstring{}); - - void videoRefresh(const uint16_t *data); - void audioSample(int16_t lsample, int16_t rsample); - bool inputPoll(unsigned id); -}; diff --git a/bsnes/target-ui/interface/interface.cpp b/bsnes/target-ui/interface/interface.cpp index 106c810c..50f110af 100755 --- a/bsnes/target-ui/interface/interface.cpp +++ b/bsnes/target-ui/interface/interface.cpp @@ -2,8 +2,7 @@ #include "palette.cpp" #include "nes/nes.cpp" #include "snes/snes.cpp" -#include "gameboy/gameboy.cpp" -#include "gba/gba.cpp" +#include "gb/gb.cpp" Interface *interface = nullptr; Filter filter; @@ -72,19 +71,17 @@ void Interface::updateDSP() { dspaudio.setVolume(config->audio.mute == false ? (double)config->audio.volume / 100.0 : 0.0); switch(mode()) { - case Mode::NES: return dspaudio.setFrequency(config->audio.frequencyNES); - case Mode::SNES: return dspaudio.setFrequency(config->audio.frequencySNES); - case Mode::GameBoy: return dspaudio.setFrequency(config->audio.frequencyGameBoy); - case Mode::GBA: return dspaudio.setFrequency(config->audio.frequencyGBA); + case Mode::NES: return dspaudio.setFrequency(config->audio.frequencyNES); + case Mode::SNES: return dspaudio.setFrequency(config->audio.frequencySNES); + case Mode::GB: return dspaudio.setFrequency(config->audio.frequencyGB); } } bool Interface::cartridgeLoaded() { switch(mode()) { - case Mode::NES: return nes.cartridgeLoaded(); - case Mode::SNES: return snes.cartridgeLoaded(); - case Mode::GameBoy: return gameBoy.cartridgeLoaded(); - case Mode::GBA: return gba.cartridgeLoaded(); + case Mode::NES: return nes.cartridgeLoaded(); + case Mode::SNES: return snes.cartridgeLoaded(); + case Mode::GB: return gb.cartridgeLoaded(); } return false; } @@ -92,11 +89,10 @@ bool Interface::cartridgeLoaded() { void Interface::loadCartridge(Mode mode) { utility->setMode(this->mode = mode); switch(mode) { - case Mode::NES: core = &nes; break; + case Mode::NES: core = &nes; break; case Mode::SNES: core = &snes; break; - case Mode::GameBoy: core = &gameBoy; break; - case Mode::GBA: core = &gba; break; - default: core = nullptr; break; + case Mode::GB: core = &gb; break; + default: core = nullptr; break; } bindControllers(); @@ -112,8 +108,8 @@ bool Interface::loadCartridge(string filename) { bool result = false; if(filename.endswith(".nes") || filename.endswith(".nes/")) result = nes.loadCartridge(filename); if(filename.endswith(".sfc") || filename.endswith(".sfc/")) result = snes.loadCartridge(filename); - if(filename.endswith(".gb" ) || filename.endswith(".gb/" )) result = gameBoy.loadCartridge(GameBoy::System::Revision::GameBoy, filename); - if(filename.endswith(".gbc") || filename.endswith(".gbc/")) result = gameBoy.loadCartridge(GameBoy::System::Revision::GameBoyColor, filename); + if(filename.endswith(".gb" ) || filename.endswith(".gb/" )) result = gb.loadCartridge(GB::System::Revision::GameBoy, filename); + if(filename.endswith(".gbc") || filename.endswith(".gbc/")) result = gb.loadCartridge(GB::System::Revision::GameBoyColor, filename); return result; } @@ -125,10 +121,9 @@ void Interface::unloadCartridge() { setCheatCodes(); switch(mode()) { - case Mode::NES: nes.unloadCartridge(); break; - case Mode::SNES: snes.unloadCartridge(); break; - case Mode::GameBoy: gameBoy.unloadCartridge(); break; - case Mode::GBA: gba.unloadCartridge(); break; + case Mode::NES: nes.unloadCartridge(); break; + case Mode::SNES: snes.unloadCartridge(); break; + case Mode::GB: gb.unloadCartridge(); break; } cartridgeTitle = ""; @@ -186,19 +181,17 @@ bool Interface::loadState(unsigned slot) { void Interface::setCheatCodes(const lstring &list) { switch(mode()) { - case Mode::NES: return nes.setCheats(list); - case Mode::SNES: return snes.setCheats(list); - case Mode::GameBoy: return gameBoy.setCheats(list); - case Mode::GBA: return gba.setCheats(list); + case Mode::NES: return nes.setCheats(list); + case Mode::SNES: return snes.setCheats(list); + case Mode::GB: return gb.setCheats(list); } } string Interface::sha256() { switch(mode()) { - case Mode::NES: return NES::cartridge.sha256(); - case Mode::SNES: return SNES::cartridge.sha256(); - case Mode::GameBoy: return GameBoy::cartridge.sha256(); - case Mode::GBA: return GBA::cartridge.sha256(); + case Mode::NES: return NES::cartridge.sha256(); + case Mode::SNES: return SNES::cartridge.sha256(); + case Mode::GB: return GB::cartridge.sha256(); } return "{None}"; } @@ -207,8 +200,7 @@ Interface::Interface() : core(nullptr) { mode = Mode::None; nes.initialize(); snes.initialize(); - gameBoy.initialize(); - gba.initialize(); + gb.initialize(); } //internal diff --git a/bsnes/target-ui/interface/interface.hpp b/bsnes/target-ui/interface/interface.hpp index bd7380f5..4484590e 100755 --- a/bsnes/target-ui/interface/interface.hpp +++ b/bsnes/target-ui/interface/interface.hpp @@ -18,8 +18,7 @@ struct CartridgePath { #include "nes/nes.hpp" #include "snes/snes.hpp" -#include "gameboy/gameboy.hpp" -#include "gba/gba.hpp" +#include "gb/gb.hpp" struct Filter : public library { function dl_size; @@ -37,7 +36,7 @@ struct Filter : public library { extern Filter filter; struct Interface : property { - enum class Mode : unsigned { None, SNES, NES, GameBoy, GBA }; + enum class Mode : unsigned { None, SNES, NES, GB }; readonly mode; void bindControllers(); @@ -74,8 +73,7 @@ struct Interface : property { InterfaceCore *core; InterfaceNES nes; InterfaceSNES snes; - InterfaceGameBoy gameBoy; - InterfaceGBA gba; + InterfaceGB gb; }; extern Interface *interface; diff --git a/bsnes/target-ui/interface/snes/snes.cpp b/bsnes/target-ui/interface/snes/snes.cpp index 74cddf5e..36d4d32f 100755 --- a/bsnes/target-ui/interface/snes/snes.cpp +++ b/bsnes/target-ui/interface/snes/snes.cpp @@ -193,7 +193,7 @@ bool InterfaceSNES::loadSuperGameBoyCartridge(string basename, string slotname) if(gbMarkup.empty()) gbMarkup = GameBoyCartridge(data[1], size[1]).markup; SNES::cartridge.rom.copy(data[0], size[0]); - GameBoy::cartridge.load(GameBoy::System::Revision::SuperGameBoy, gbMarkup, data[1], size[1]); + GB::cartridge.load(GB::System::Revision::SuperGameBoy, gbMarkup, data[1], size[1]); SNES::cartridge.load(SNES::Cartridge::Mode::SuperGameBoy, markup); SNES::system.power(); @@ -256,11 +256,11 @@ void InterfaceSNES::loadMemory() { } if(SNES::cartridge.mode() == SNES::Cartridge::Mode::SuperGameBoy) { - if(GameBoy::cartridge.ramsize) { + if(GB::cartridge.ramsize) { uint8_t *data; unsigned size; if(file::read(interface->slot[0].filename("program.ram", ".sav"), data, size)) { - memcpy(GameBoy::cartridge.ramdata, data, min(GameBoy::cartridge.ramsize, size)); + memcpy(GB::cartridge.ramdata, data, min(GB::cartridge.ramsize, size)); delete[] data; } } @@ -278,9 +278,9 @@ void InterfaceSNES::saveMemory() { } if(SNES::cartridge.mode() == SNES::Cartridge::Mode::SuperGameBoy) { - if(GameBoy::cartridge.ramsize) { + if(GB::cartridge.ramsize) { file::write(interface->slot[0].filename("program.ram", ".sav"), - GameBoy::cartridge.ramdata, GameBoy::cartridge.ramsize + GB::cartridge.ramdata, GB::cartridge.ramsize ); } } @@ -297,18 +297,18 @@ bool InterfaceSNES::unserialize(serializer &s) { void InterfaceSNES::setCheats(const lstring &list) { if(SNES::cartridge.mode() == SNES::Cartridge::Mode::SuperGameBoy) { - GameBoy::cheat.reset(); + GB::cheat.reset(); for(auto &code : list) { lstring codelist; codelist.split("+", code); for(auto &part : codelist) { unsigned addr, data, comp; - if(GameBoy::Cheat::decode(part, addr, data, comp)) { - GameBoy::cheat.append({ addr, data, comp }); + if(GB::Cheat::decode(part, addr, data, comp)) { + GB::cheat.append({ addr, data, comp }); } } } - GameBoy::cheat.synchronize(); + GB::cheat.synchronize(); return; } diff --git a/bsnes/target-ui/main.cpp b/bsnes/target-ui/main.cpp index 2c2d7c2c..483fea67 100755 --- a/bsnes/target-ui/main.cpp +++ b/bsnes/target-ui/main.cpp @@ -125,7 +125,6 @@ Application::Application(int argc, char **argv) { interface->unloadCartridge(); windowManager->saveGeometry(); - windowManager->hideAll(); if(compositionEnable) compositor::enable(true); } diff --git a/bsnes/target-ui/settings/audio.cpp b/bsnes/target-ui/settings/audio.cpp index 28927267..37a5fd51 100755 --- a/bsnes/target-ui/settings/audio.cpp +++ b/bsnes/target-ui/settings/audio.cpp @@ -1,7 +1,7 @@ AudioSettings *audioSettings = nullptr; AudioSlider::AudioSlider() { - append(name, { 75, 0 }); + append(name, { 45, 0 }); append(value, { 75, 0 }); append(slider, { ~0, 0 }); } @@ -63,15 +63,10 @@ AudioSettings::AudioSettings() { snes.base = 32000; snes.step = 1; - gameBoy.name.setText("Game Boy:"); - gameBoy.slider.setLength(2001); - gameBoy.base = 4194304; - gameBoy.step = 131; - - gba.name.setText("GBA:"); - gba.slider.setLength(2001); - gba.base = 32768; - gba.step = 1; + gb.name.setText("GB:"); + gb.slider.setLength(2001); + gb.base = 4194304; + gb.step = 131; append(title, { ~0, 0 }, 5); append(outputLabel, { ~0, 0 }, 0); @@ -86,8 +81,7 @@ AudioSettings::AudioSettings() { append(frequencyAdjustmentLabel, { ~0, 0 }, 0); append(nes, { ~0, 0 }, 0); append(snes, { ~0, 0 }, 0); - append(gameBoy, { ~0, 0 }, 0); - append(gba, { ~0, 0 }, 0); + append(gb, { ~0, 0 }, 0); frequencySelection.setSelection( config->audio.frequency == 32000 ? 0 : @@ -114,11 +108,10 @@ AudioSettings::AudioSettings() { nes.setPosition(config->audio.frequencyNES); snes.setPosition(config->audio.frequencySNES); - gameBoy.setPosition(config->audio.frequencyGameBoy); - gba.setPosition(config->audio.frequencyGBA); + gb.setPosition(config->audio.frequencyGB); - frequencySelection.onChange = latencySelection.onChange = resamplerSelection.onChange = volume.slider.onChange = - nes.slider.onChange = snes.slider.onChange = gameBoy.slider.onChange = gba.slider.onChange = + frequencySelection.onChange = latencySelection.onChange = resamplerSelection.onChange = + volume.slider.onChange = nes.slider.onChange = snes.slider.onChange = gb.slider.onChange = { &AudioSettings::synchronize, this }; synchronize(); @@ -147,13 +140,11 @@ void AudioSettings::synchronize() { config->audio.frequencyNES = nes.position(); config->audio.frequencySNES = snes.position(); - config->audio.frequencyGameBoy = gameBoy.position(); - config->audio.frequencyGBA = gba.position(); + config->audio.frequencyGB = gb.position(); nes.value.setText({ nes.position(), "hz" }); snes.value.setText({ snes.position(), "hz" }); - gameBoy.value.setText({ gameBoy.position(), "hz" }); - gba.value.setText({ gba.position(), "hz" }); + gb.value.setText({ gb.position(), "hz" }); volume.value.setText({ volume.position(), "%" }); interface->updateDSP(); diff --git a/bsnes/target-ui/settings/audio.hpp b/bsnes/target-ui/settings/audio.hpp index 92643af2..a988d118 100755 --- a/bsnes/target-ui/settings/audio.hpp +++ b/bsnes/target-ui/settings/audio.hpp @@ -25,8 +25,7 @@ struct AudioSettings : SettingsLayout { Label frequencyAdjustmentLabel; AudioSlider nes; AudioSlider snes; - AudioSlider gameBoy; - AudioSlider gba; + AudioSlider gb; void synchronize(); AudioSettings(); diff --git a/bsnes/target-ui/utility/utility.cpp b/bsnes/target-ui/utility/utility.cpp index c349e4e0..74541206 100755 --- a/bsnes/target-ui/utility/utility.cpp +++ b/bsnes/target-ui/utility/utility.cpp @@ -28,20 +28,15 @@ void Utility::setMode(Interface::Mode mode) { dspaudio.setChannels(2); } - else if(mode == Interface::Mode::GameBoy) { + else if(mode == Interface::Mode::GB) { mainWindow->gameBoyMenu.setText( - GameBoy::system.cgb() == false ? "Game Boy" : "Game Boy Color" + GB::system.cgb() == false ? "Game Boy" : "Game Boy Color" ); mainWindow->setTitle(interface->cartridgeTitle); mainWindow->gameBoyMenu.setVisible(true); dspaudio.setChannels(2); } - else if(mode == Interface::Mode::GBA) { - mainWindow->setTitle(interface->cartridgeTitle); - dspaudio.setChannels(2); - } - interface->updateDSP(); mainWindow->synchronize(); resizeMainWindow(); @@ -52,11 +47,10 @@ void Utility::resizeMainWindow(bool shrink) { unsigned width = geometry.width, height = geometry.height; switch(interface->mode()) { - case Interface::Mode::None: return mainWindow->viewport.setGeometry({ 0, 0, 1, 1 }); - case Interface::Mode::NES: width = 256, height = 240; break; - case Interface::Mode::SNES: width = 256, height = 240; break; - case Interface::Mode::GameBoy: width = 160, height = 144; break; - case Interface::Mode::GBA: width = 240, height = 160; break; + case Interface::Mode::None: return mainWindow->viewport.setGeometry({ 0, 0, 1, 1 }); + case Interface::Mode::NES: width = 256, height = 240; break; + case Interface::Mode::SNES: width = 256, height = 240; break; + case Interface::Mode::GB: width = 160, height = 144; break; } if(config->video.correctAspectRatio) { diff --git a/bsnes/target-ui/window/window.cpp b/bsnes/target-ui/window/window.cpp index fdea7002..26f85cd7 100755 --- a/bsnes/target-ui/window/window.cpp +++ b/bsnes/target-ui/window/window.cpp @@ -44,9 +44,3 @@ void WindowManager::saveGeometry() { } config.save(application->path("geometry.cfg")); } - -void WindowManager::hideAll() { - for(auto &window : windowList) { - window.window->setVisible(false); - } -} diff --git a/bsnes/target-ui/window/window.hpp b/bsnes/target-ui/window/window.hpp index 41184cd3..e67ab928 100755 --- a/bsnes/target-ui/window/window.hpp +++ b/bsnes/target-ui/window/window.hpp @@ -13,7 +13,6 @@ struct WindowManager { void loadGeometry(); void saveGeometry(); - void hideAll(); private: configuration config;