2017-03-26 16:38:55 +00:00
|
|
|
#ifndef INCLUDED_GAMELOADER_H
|
|
|
|
#define INCLUDED_GAMELOADER_H
|
|
|
|
|
|
|
|
#include "Util/NewConfig.h"
|
|
|
|
#include "Pkgs/unzip.h"
|
|
|
|
#include "Game.h"
|
|
|
|
#include "ROMSet.h"
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
class GameLoader
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
// Describes a file node in the game XML
|
|
|
|
struct File
|
|
|
|
{
|
|
|
|
typedef std::shared_ptr<File> ptr_t;
|
|
|
|
uint32_t offset;
|
|
|
|
std::string filename;
|
|
|
|
uint32_t crc32;
|
|
|
|
bool has_crc32;
|
|
|
|
static ptr_t Create(const GameLoader &loader, const Util::Config::Node &file_node);
|
|
|
|
bool Matches(const std::string &filename, uint32_t crc32) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Describes a region node in the game XML
|
|
|
|
struct Region
|
|
|
|
{
|
|
|
|
typedef std::shared_ptr<Region> ptr_t;
|
|
|
|
std::string region_name;
|
|
|
|
size_t stride;
|
|
|
|
size_t chunk_size;
|
|
|
|
bool byte_swap;
|
2017-03-27 02:02:22 +00:00
|
|
|
std::vector<File::ptr_t> files;
|
2017-03-26 16:38:55 +00:00
|
|
|
static ptr_t Create(const GameLoader &loader, const Util::Config::Node ®ion_node);
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<std::string, Game> m_game_info_by_game; // ROMs not loaded here
|
|
|
|
|
|
|
|
// Parsed XML
|
|
|
|
typedef std::map<std::string, Region::ptr_t> RegionsByName_t;
|
|
|
|
std::map<std::string, RegionsByName_t> m_regions_by_game;
|
|
|
|
std::string m_xml_filename;
|
|
|
|
|
|
|
|
// Zip file info
|
2017-03-27 02:02:22 +00:00
|
|
|
struct ZippedFile
|
|
|
|
{
|
|
|
|
std::string filename;
|
2017-03-28 19:33:16 +00:00
|
|
|
size_t uncompressed_size;
|
2017-03-27 02:02:22 +00:00
|
|
|
uint32_t crc32;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ZipArchive
|
|
|
|
{
|
|
|
|
std::string zipfilename;
|
|
|
|
unzFile zf = nullptr;
|
|
|
|
std::map<uint32_t, ZippedFile> files_by_crc;
|
|
|
|
|
|
|
|
~ZipArchive()
|
|
|
|
{
|
|
|
|
if (zf != nullptr)
|
|
|
|
unzClose(zf);
|
|
|
|
}
|
|
|
|
};
|
2017-03-26 16:38:55 +00:00
|
|
|
|
2017-03-27 02:02:22 +00:00
|
|
|
bool LoadZipArchive(ZipArchive *zip, const std::string &zipfilename) const;
|
|
|
|
bool LoadZippedFile(std::shared_ptr<uint8_t> *buffer, size_t *file_size, const GameLoader::File::ptr_t &file, const ZipArchive &zip);
|
|
|
|
const ZippedFile *LookupFile(const File::ptr_t &file, const ZipArchive &zip) const;
|
2017-03-26 16:38:55 +00:00
|
|
|
static bool MissingAttrib(const GameLoader &loader, const Util::Config::Node &node, const std::string &attribute);
|
|
|
|
bool ParseXML(const Util::Config::Node &xml);
|
2017-03-31 05:23:04 +00:00
|
|
|
bool LoadDefinitionXML(const std::string &filename);
|
2017-03-30 06:17:34 +00:00
|
|
|
std::set<std::string> IdentifyCompleteGamesInZipArchive(const ZipArchive &zip) const;
|
2017-03-27 02:02:22 +00:00
|
|
|
bool ComputeRegionSize(uint32_t *region_size, const Region::ptr_t ®ion, const ZipArchive &zip) const;
|
|
|
|
bool LoadRegion(ROM *buffer, const GameLoader::Region::ptr_t ®ion, const ZipArchive &zip);
|
2017-03-30 06:17:34 +00:00
|
|
|
bool LoadROMs(ROMSet *rom_set, const std::string &game_name, const ZipArchive *zip, const std::string &parent_name, const ZipArchive *parent_zip);
|
2017-03-31 05:23:04 +00:00
|
|
|
std::string ChooseGame(const std::set<std::string> &games_found) const;
|
2017-03-26 16:38:55 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
GameLoader(const std::string &xml_file);
|
|
|
|
bool Load(Game *game, ROMSet *rom_set, const std::string &zipfilename);
|
|
|
|
const std::map<std::string, Game> &GetGames() const
|
|
|
|
{
|
|
|
|
return m_game_info_by_game;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDED_GAMELOADER_H
|