2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
2015-11-10 05:21:49 +00:00
|
|
|
* Project64 - A Nintendo 64 emulator. *
|
2012-12-19 09:30:18 +00:00
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
2015-12-06 09:59:58 +00:00
|
|
|
#include <Project64-core/N64System/N64Types.h>
|
|
|
|
#include <Project64-core/Settings/DebugSettings.h>
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2015-02-14 03:10:05 +00:00
|
|
|
class CN64Rom :
|
2015-11-15 09:56:34 +00:00
|
|
|
protected CDebugSettings
|
2015-04-28 22:19:02 +00:00
|
|
|
{
|
2015-11-15 09:56:34 +00:00
|
|
|
//constant values
|
|
|
|
enum { ReadFromRomSection = 0x400000 };
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2015-11-15 09:56:34 +00:00
|
|
|
//class variables
|
2015-11-15 20:05:55 +00:00
|
|
|
void * m_hRomFile, *m_hRomFileMapping;
|
|
|
|
uint8_t * m_ROMImage;
|
|
|
|
uint32_t m_RomFileSize;
|
2015-11-15 09:56:34 +00:00
|
|
|
Country m_Country;
|
|
|
|
CICChip m_CicChip;
|
|
|
|
LanguageStringID m_ErrorMsg;
|
|
|
|
stdstr m_RomName, m_FileName, m_MD5, m_RomIdent;
|
|
|
|
|
|
|
|
bool AllocateAndLoadN64Image(const char * FileLoc, bool LoadBootCodeOnly);
|
|
|
|
bool AllocateAndLoadZipImage(const char * FileLoc, bool LoadBootCodeOnly);
|
|
|
|
void ByteSwapRom();
|
|
|
|
void SetError(LanguageStringID ErrorMsg);
|
2015-11-15 20:05:55 +00:00
|
|
|
static void __stdcall NotificationCB(const wchar_t * Status, CN64Rom * _this);
|
2015-11-15 09:56:34 +00:00
|
|
|
void CalculateCicChip();
|
|
|
|
void CalculateRomCrc();
|
2008-09-18 03:15:49 +00:00
|
|
|
|
|
|
|
public:
|
2015-11-15 09:56:34 +00:00
|
|
|
CN64Rom();
|
|
|
|
~CN64Rom();
|
2015-04-28 22:19:02 +00:00
|
|
|
|
2015-11-15 09:56:34 +00:00
|
|
|
bool LoadN64Image(const char * FileLoc, bool LoadBootCodeOnly = false);
|
2015-11-15 20:05:55 +00:00
|
|
|
static bool IsValidRomImage(uint8_t Test[4]);
|
2015-11-15 09:56:34 +00:00
|
|
|
void SaveRomSettingID(bool temp);
|
|
|
|
void ClearRomSettingID();
|
|
|
|
CICChip CicChipID();
|
2015-11-15 20:05:55 +00:00
|
|
|
uint8_t * GetRomAddress() { return m_ROMImage; }
|
|
|
|
uint32_t GetRomSize() const { return m_RomFileSize; }
|
2015-11-15 09:56:34 +00:00
|
|
|
stdstr GetRomMD5() const { return m_MD5; }
|
|
|
|
stdstr GetRomName() const { return m_RomName; }
|
|
|
|
stdstr GetFileName() const { return m_FileName; }
|
|
|
|
Country GetCountry() const { return m_Country; }
|
|
|
|
void UnallocateRomImage();
|
2015-04-28 22:19:02 +00:00
|
|
|
|
2015-11-15 09:56:34 +00:00
|
|
|
//Get a message id for the reason that you failed to load the rom
|
|
|
|
LanguageStringID GetError() const { return m_ErrorMsg; }
|
2008-09-18 03:15:49 +00:00
|
|
|
};
|