mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 19:10:21 +00:00
31 lines
839 B
C++
31 lines
839 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
#include <algorithm>
|
|
#include "../Utilities/FolderUtilities.h"
|
|
#include "../Utilities/ZipReader.h"
|
|
#include "../Utilities/CRC32.h"
|
|
#include "../Utilities/IpsPatcher.h"
|
|
#include "RomData.h"
|
|
|
|
class RomLoader
|
|
{
|
|
private:
|
|
RomData _romData;
|
|
string _filename;
|
|
string _ipsFilename;
|
|
|
|
bool LoadFromZip(stringstream &zipFile);
|
|
bool LoadFromStream(stringstream &romFile);
|
|
uint32_t GetFileSize(stringstream &file);
|
|
|
|
uint8_t* ReadFile(stringstream &file, uint32_t &fileSize);
|
|
bool LoadFromMemory(uint8_t* buffer, size_t length);
|
|
|
|
public:
|
|
bool LoadFile(string filename, stringstream *filestream = nullptr, string ipsFilename = "");
|
|
RomData GetRomData();
|
|
static uint32_t GetCRC32(string filename);
|
|
static string FindMatchingRomInFolder(string folder, string romFilename, uint32_t crc32Hash);
|
|
};
|