2014-06-14 15:27:55 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
2014-06-26 01:52:37 +00:00
|
|
|
#include "Snapshotable.h"
|
2014-06-14 15:27:55 +00:00
|
|
|
#include "IMemoryHandler.h"
|
2014-06-24 06:47:32 +00:00
|
|
|
#include "ROMLoader.h"
|
2014-06-28 17:22:42 +00:00
|
|
|
#include <assert.h>
|
2014-07-03 00:28:29 +00:00
|
|
|
#include "../Utilities/FolderUtilities.h"
|
2014-06-14 15:27:55 +00:00
|
|
|
|
2014-06-26 01:52:37 +00:00
|
|
|
class BaseMapper : public IMemoryHandler, public Snapshotable
|
2014-06-14 15:27:55 +00:00
|
|
|
{
|
|
|
|
protected:
|
2014-06-24 06:47:32 +00:00
|
|
|
uint8_t* _prgRAM;
|
|
|
|
uint8_t* _chrRAM;
|
|
|
|
uint32_t _prgSize;
|
|
|
|
uint32_t _chrSize;
|
2014-06-24 19:11:04 +00:00
|
|
|
|
2014-06-26 01:52:37 +00:00
|
|
|
bool _hasCHRRAM;
|
2014-06-24 20:16:23 +00:00
|
|
|
bool _hasBattery;
|
|
|
|
wstring _romFilename;
|
|
|
|
|
2014-06-24 19:11:04 +00:00
|
|
|
MirroringType _mirroringType;
|
2014-06-14 15:27:55 +00:00
|
|
|
|
2014-06-24 14:19:24 +00:00
|
|
|
vector<uint8_t*> _prgPages;
|
|
|
|
vector<uint8_t*> _chrPages;
|
|
|
|
|
2014-06-26 01:52:37 +00:00
|
|
|
uint32_t* _prgSlotPages;
|
|
|
|
uint32_t* _chrSlotPages;
|
|
|
|
|
2014-06-25 16:22:48 +00:00
|
|
|
uint32_t _chrShift = -1;
|
|
|
|
uint32_t _prgShift = -1;
|
|
|
|
|
2014-06-14 22:20:56 +00:00
|
|
|
virtual void InitMapper() = 0;
|
|
|
|
|
2014-06-14 15:27:55 +00:00
|
|
|
public:
|
2014-06-24 06:47:32 +00:00
|
|
|
const static int PRGSize = 0x8000;
|
|
|
|
const static int CHRSize = 0x2000;
|
2014-06-24 20:16:23 +00:00
|
|
|
const static int PRGRAMSize = 0x2000;
|
2014-06-24 06:47:32 +00:00
|
|
|
|
2014-06-24 14:19:24 +00:00
|
|
|
protected:
|
|
|
|
virtual uint32_t GetPRGPageSize() = 0;
|
|
|
|
virtual uint32_t GetCHRPageSize() = 0;
|
|
|
|
|
|
|
|
void SelectPRGPage(uint32_t slot, uint32_t page)
|
|
|
|
{
|
2014-06-26 22:48:55 +00:00
|
|
|
//std::cout << std::dec << "PRG Slot " << (short)slot << ": " << (short)(page & (GetPRGPageCount() - 1)) << std::endl;
|
2014-06-24 14:19:24 +00:00
|
|
|
_prgPages[slot] = &_prgRAM[(page & (GetPRGPageCount() - 1)) * GetPRGPageSize()];
|
2014-06-26 01:52:37 +00:00
|
|
|
_prgSlotPages[slot] = page;
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SelectCHRPage(uint32_t slot, uint32_t page)
|
|
|
|
{
|
|
|
|
//std::cout << std::dec << "CHR Slot " << (short)slot << ": " << (short)page << std::endl;
|
|
|
|
_chrPages[slot] = &_chrRAM[(page & (GetCHRPageCount() - 1)) * GetCHRPageSize()];
|
2014-06-26 01:52:37 +00:00
|
|
|
_chrSlotPages[slot] = page;
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GetPRGSlotCount()
|
|
|
|
{
|
|
|
|
return BaseMapper::PRGSize / GetPRGPageSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GetCHRSlotCount()
|
|
|
|
{
|
|
|
|
return BaseMapper::CHRSize / GetCHRPageSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GetPRGPageCount()
|
|
|
|
{
|
|
|
|
return _prgSize / GetPRGPageSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GetCHRPageCount()
|
|
|
|
{
|
|
|
|
return _chrSize / GetCHRPageSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t log2(uint32_t value)
|
|
|
|
{
|
|
|
|
uint32_t counter = 0;
|
|
|
|
while(value >>= 1) {
|
|
|
|
counter++;
|
|
|
|
}
|
|
|
|
return counter;
|
|
|
|
}
|
|
|
|
|
2014-06-24 14:31:33 +00:00
|
|
|
uint32_t AddrToPRGSlot(uint16_t addr)
|
2014-06-24 14:19:24 +00:00
|
|
|
{
|
2014-06-25 16:22:48 +00:00
|
|
|
if(_prgShift == -1) {
|
|
|
|
_prgShift = this->log2(GetPRGSlotCount());
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 16:22:48 +00:00
|
|
|
return (addr >> (15 - _prgShift)) & (GetPRGSlotCount() - 1);
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 14:31:33 +00:00
|
|
|
uint32_t AddrToCHRSlot(uint16_t addr)
|
2014-06-24 14:19:24 +00:00
|
|
|
{
|
2014-06-25 16:22:48 +00:00
|
|
|
if(_chrShift == -1) {
|
|
|
|
_chrShift = this->log2(GetCHRSlotCount());
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 16:22:48 +00:00
|
|
|
return (addr >> (13 - _chrShift)) & (GetCHRSlotCount() - 1);
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 20:16:23 +00:00
|
|
|
wstring GetBatteryFilename()
|
|
|
|
{
|
2014-07-13 00:56:22 +00:00
|
|
|
return FolderUtilities::GetSaveFolder() + _romFilename + L".sav";
|
2014-06-24 20:16:23 +00:00
|
|
|
}
|
|
|
|
|
2014-06-26 01:52:37 +00:00
|
|
|
protected:
|
|
|
|
virtual void StreamState(bool saving)
|
|
|
|
{
|
|
|
|
StreamArray<uint32_t>(_prgSlotPages, GetPRGSlotCount());
|
|
|
|
StreamArray<uint32_t>(_chrSlotPages, GetCHRSlotCount());
|
|
|
|
|
|
|
|
Stream<bool>(_hasCHRRAM);
|
|
|
|
if(_hasCHRRAM) {
|
|
|
|
StreamArray<uint8_t>(_chrRAM, BaseMapper::CHRSize);
|
|
|
|
}
|
|
|
|
|
2014-06-26 22:48:55 +00:00
|
|
|
Stream<MirroringType>(_mirroringType);
|
|
|
|
|
2014-06-26 01:52:37 +00:00
|
|
|
if(!saving) {
|
|
|
|
for(int i = GetPRGSlotCount() - 1; i >= 0; i--) {
|
|
|
|
SelectPRGPage(i, _prgSlotPages[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = GetCHRSlotCount() - 1; i >= 0; i--) {
|
|
|
|
SelectCHRPage(i, _chrSlotPages[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-24 06:47:32 +00:00
|
|
|
public:
|
2014-06-24 14:19:24 +00:00
|
|
|
void Initialize(ROMLoader &romLoader)
|
2014-06-14 15:27:55 +00:00
|
|
|
{
|
2014-06-24 14:19:24 +00:00
|
|
|
_mirroringType = romLoader.GetMirroringType();
|
2014-06-24 06:47:32 +00:00
|
|
|
_prgRAM = romLoader.GetPRGRam();
|
|
|
|
_chrRAM = romLoader.GetCHRRam();
|
|
|
|
_prgSize = romLoader.GetPRGSize();
|
|
|
|
_chrSize = romLoader.GetCHRSize();
|
2014-06-24 20:16:23 +00:00
|
|
|
_hasBattery = romLoader.HasBattery();
|
|
|
|
_romFilename = romLoader.GetFilename();
|
2014-06-24 06:47:32 +00:00
|
|
|
|
|
|
|
if(_chrSize == 0) {
|
2014-06-26 01:52:37 +00:00
|
|
|
_hasCHRRAM = true;
|
2014-06-24 06:47:32 +00:00
|
|
|
_chrRAM = new uint8_t[BaseMapper::CHRSize];
|
|
|
|
_chrSize = BaseMapper::CHRSize;
|
|
|
|
}
|
2014-06-14 22:20:56 +00:00
|
|
|
|
2014-06-24 14:19:24 +00:00
|
|
|
for(int i = GetPRGSlotCount(); i > 0; i--) {
|
|
|
|
_prgPages.push_back(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = GetCHRSlotCount(); i > 0; i--) {
|
|
|
|
_chrPages.push_back(nullptr);
|
|
|
|
}
|
|
|
|
|
2014-06-26 01:52:37 +00:00
|
|
|
_prgSlotPages = new uint32_t[GetPRGSlotCount()];
|
|
|
|
_chrSlotPages = new uint32_t[GetCHRSlotCount()];
|
|
|
|
|
2014-06-14 22:20:56 +00:00
|
|
|
InitMapper();
|
2014-06-14 15:27:55 +00:00
|
|
|
}
|
2014-06-19 23:58:15 +00:00
|
|
|
|
2014-06-26 15:41:27 +00:00
|
|
|
virtual ~BaseMapper()
|
2014-06-19 23:58:15 +00:00
|
|
|
{
|
2014-06-24 06:47:32 +00:00
|
|
|
delete[] _prgRAM;
|
|
|
|
delete[] _chrRAM;
|
2014-06-28 23:56:51 +00:00
|
|
|
delete[] _prgSlotPages;
|
|
|
|
delete[] _chrSlotPages;
|
2014-06-24 06:47:32 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 16:22:48 +00:00
|
|
|
void GetMemoryRanges(MemoryRanges &ranges)
|
2014-06-16 01:45:36 +00:00
|
|
|
{
|
2014-06-25 16:22:48 +00:00
|
|
|
ranges.AddHandler(MemoryType::RAM, MemoryOperation::Read, 0x8000, 0xFFFF);
|
|
|
|
ranges.AddHandler(MemoryType::RAM, MemoryOperation::Write, 0x8000, 0xFFFF);
|
|
|
|
|
|
|
|
ranges.AddHandler(MemoryType::VRAM, MemoryOperation::Read, 0x0000, 0x1FFF);
|
|
|
|
ranges.AddHandler(MemoryType::VRAM, MemoryOperation::Write, 0x0000, 0x1FFF);
|
2014-06-14 15:27:55 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 20:16:23 +00:00
|
|
|
bool HasBattery()
|
|
|
|
{
|
|
|
|
return _hasBattery;
|
|
|
|
}
|
|
|
|
|
|
|
|
MirroringType GetMirroringType()
|
2014-06-14 15:27:55 +00:00
|
|
|
{
|
2014-06-24 14:19:24 +00:00
|
|
|
return _mirroringType;
|
2014-06-14 15:27:55 +00:00
|
|
|
}
|
2014-06-24 20:16:23 +00:00
|
|
|
|
|
|
|
void LoadBattery(uint8_t *sramBuffer)
|
|
|
|
{
|
|
|
|
ifstream batteryFile(GetBatteryFilename(), ios::in | ios::binary);
|
|
|
|
|
|
|
|
if(batteryFile) {
|
|
|
|
batteryFile.read((char*)sramBuffer, BaseMapper::PRGRAMSize);
|
|
|
|
|
|
|
|
batteryFile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SaveBattery(uint8_t *sramBuffer)
|
|
|
|
{
|
|
|
|
ofstream batteryFile(GetBatteryFilename(), ios::out | ios::binary);
|
|
|
|
|
|
|
|
if(batteryFile) {
|
|
|
|
batteryFile.write((char*)sramBuffer, BaseMapper::PRGRAMSize);
|
|
|
|
|
|
|
|
batteryFile.close();
|
|
|
|
}
|
|
|
|
}
|
2014-06-24 14:19:24 +00:00
|
|
|
|
|
|
|
uint8_t ReadRAM(uint16_t addr)
|
2014-06-14 15:27:55 +00:00
|
|
|
{
|
2014-06-24 14:31:33 +00:00
|
|
|
return _prgPages[AddrToPRGSlot(addr)][addr & (GetPRGPageSize() - 1)];
|
2014-06-14 15:27:55 +00:00
|
|
|
}
|
2014-06-16 01:45:36 +00:00
|
|
|
|
2014-06-24 14:19:24 +00:00
|
|
|
void WriteRAM(uint16_t addr, uint8_t value)
|
|
|
|
{
|
2014-07-13 00:56:22 +00:00
|
|
|
//assert(false); //Ms. Pacman triggers this assert?
|
2014-06-28 17:22:42 +00:00
|
|
|
//_prgPages[AddrToPRGSlot(addr)][addr & (GetPRGPageSize() - 1)] = value;
|
2014-06-24 14:19:24 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 06:47:32 +00:00
|
|
|
virtual uint8_t ReadVRAM(uint16_t addr)
|
2014-06-16 01:45:36 +00:00
|
|
|
{
|
2014-06-24 14:31:33 +00:00
|
|
|
return _chrPages[AddrToCHRSlot(addr)][addr & (GetCHRPageSize() - 1)];
|
2014-06-16 01:45:36 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 06:47:32 +00:00
|
|
|
virtual void WriteVRAM(uint16_t addr, uint8_t value)
|
2014-06-16 01:45:36 +00:00
|
|
|
{
|
2014-06-28 17:22:42 +00:00
|
|
|
if(_hasCHRRAM) {
|
|
|
|
_chrPages[AddrToCHRSlot(addr)][addr & (GetCHRPageSize() - 1)] = value;
|
|
|
|
} else {
|
|
|
|
assert(false);
|
|
|
|
}
|
2014-06-16 01:45:36 +00:00
|
|
|
}
|
2014-06-25 21:30:35 +00:00
|
|
|
|
|
|
|
virtual void NotifyVRAMAddressChange(uint16_t addr)
|
|
|
|
{
|
|
|
|
//Used for MMC3 IRQ counter
|
|
|
|
}
|
2014-06-24 06:47:32 +00:00
|
|
|
};
|