136 lines
3 KiB
C++
136 lines
3 KiB
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "IMemoryHandler.h"
|
|
#include "CartTypes.h"
|
|
#include "BaseCoprocessor.h"
|
|
#include "../Utilities/ISerializable.h"
|
|
|
|
class MemoryMappings;
|
|
class VirtualFile;
|
|
class EmuSettings;
|
|
class NecDsp;
|
|
class Sa1;
|
|
class Gsu;
|
|
class Cx4;
|
|
class SuperGameboy;
|
|
class BsxCart;
|
|
class BsxMemoryPack;
|
|
class Gameboy;
|
|
class Console;
|
|
class SpcFileData;
|
|
enum class ConsoleRegion;
|
|
|
|
class BaseCartridge : public ISerializable
|
|
{
|
|
private:
|
|
Console *_console;
|
|
|
|
vector<unique_ptr<IMemoryHandler>> _prgRomHandlers;
|
|
vector<unique_ptr<IMemoryHandler>> _saveRamHandlers;
|
|
SnesCartInformation _cartInfo = {};
|
|
uint32_t _headerOffset = 0;
|
|
|
|
bool _needCoprocSync = false;
|
|
unique_ptr<BaseCoprocessor> _coprocessor;
|
|
|
|
NecDsp *_necDsp = nullptr;
|
|
Sa1 *_sa1 = nullptr;
|
|
Gsu *_gsu = nullptr;
|
|
Cx4 *_cx4 = nullptr;
|
|
SuperGameboy *_sgb = nullptr;
|
|
BsxCart* _bsx = nullptr;
|
|
unique_ptr<BsxMemoryPack> _bsxMemPack;
|
|
unique_ptr<Gameboy> _gameboy;
|
|
|
|
CartFlags::CartFlags _flags = CartFlags::CartFlags::None;
|
|
CoprocessorType _coprocessorType = CoprocessorType::None;
|
|
bool _hasBattery = false;
|
|
bool _hasRtc = false;
|
|
string _romPath;
|
|
string _patchPath;
|
|
|
|
uint8_t* _prgRom = nullptr;
|
|
uint8_t* _saveRam = nullptr;
|
|
|
|
uint32_t _prgRomSize = 0;
|
|
uint32_t _saveRamSize = 0;
|
|
uint32_t _coprocessorRamSize = 0;
|
|
|
|
shared_ptr<SpcFileData> _spcData;
|
|
vector<uint8_t> _embeddedFirmware;
|
|
|
|
void LoadBattery();
|
|
|
|
int32_t GetHeaderScore(uint32_t addr);
|
|
void DisplayCartInfo();
|
|
|
|
CoprocessorType GetCoprocessorType();
|
|
CoprocessorType GetSt01xVersion();
|
|
CoprocessorType GetDspVersion();
|
|
|
|
bool MapSpecificCarts(MemoryMappings& mm);
|
|
void MapBsxMemoryPack(MemoryMappings& mm);
|
|
void ApplyConfigOverrides();
|
|
|
|
void LoadRom();
|
|
void LoadSpc();
|
|
bool LoadGameboy(VirtualFile& romFile, bool sgbEnabled);
|
|
void SetupCpuHalt();
|
|
void InitCoprocessor();
|
|
void LoadEmbeddedFirmware();
|
|
|
|
string GetCartName();
|
|
string GetGameCode();
|
|
|
|
public:
|
|
virtual ~BaseCartridge();
|
|
|
|
static shared_ptr<BaseCartridge> CreateCartridge(Console* console, VirtualFile &romFile, VirtualFile &patchFile);
|
|
|
|
void Reset();
|
|
|
|
void SaveBattery();
|
|
|
|
void Init(MemoryMappings &mm);
|
|
|
|
RomInfo GetRomInfo();
|
|
vector<uint8_t> GetOriginalPrgRom();
|
|
ConsoleRegion GetRegion();
|
|
uint32_t GetCrc32();
|
|
string GetSha1Hash();
|
|
CartFlags::CartFlags GetCartFlags();
|
|
|
|
void RegisterHandlers(MemoryMappings &mm);
|
|
|
|
uint8_t* DebugGetPrgRom() { return _prgRom; }
|
|
uint8_t* DebugGetSaveRam() { return _saveRam; }
|
|
uint32_t DebugGetPrgRomSize() { return _prgRomSize; }
|
|
uint32_t DebugGetSaveRamSize() { return _saveRamSize; }
|
|
|
|
NecDsp* GetDsp();
|
|
Sa1* GetSa1();
|
|
Gsu* GetGsu();
|
|
Cx4* GetCx4();
|
|
SuperGameboy* GetSuperGameboy();
|
|
BsxCart* GetBsx();
|
|
BsxMemoryPack* GetBsxMemoryPack();
|
|
Gameboy* GetGameboy();
|
|
|
|
void RunCoprocessors();
|
|
|
|
__forceinline void SyncCoprocessors()
|
|
{
|
|
if(_needCoprocSync) {
|
|
_coprocessor->Run();
|
|
}
|
|
}
|
|
|
|
BaseCoprocessor* GetCoprocessor();
|
|
|
|
vector<unique_ptr<IMemoryHandler>>& GetPrgRomHandlers();
|
|
vector<unique_ptr<IMemoryHandler>>& GetSaveRamHandlers();
|
|
|
|
SpcFileData* GetSpcData();
|
|
|
|
void Serialize(Serializer &s) override;
|
|
};
|