2015-09-28 11:56:46 +00:00
|
|
|
namespace Database {
|
|
|
|
#include "../database/super-famicom.hpp"
|
|
|
|
#include "../database/bsx-satellaview.hpp"
|
|
|
|
#include "../database/sufami-turbo.hpp"
|
|
|
|
}
|
|
|
|
|
|
|
|
Icarus::Icarus() {
|
|
|
|
database.superFamicom = BML::unserialize(Database::SuperFamicom);
|
|
|
|
database.bsxSatellaview = BML::unserialize(Database::BsxSatellaview);
|
|
|
|
database.sufamiTurbo = BML::unserialize(Database::SufamiTurbo);
|
|
|
|
}
|
|
|
|
|
2015-08-21 11:29:53 +00:00
|
|
|
auto Icarus::error() const -> string {
|
|
|
|
return errorMessage;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Icarus::success() -> bool {
|
|
|
|
errorMessage = "";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Icarus::failure(const string& message) -> bool {
|
|
|
|
errorMessage = message;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Icarus::manifest(string location) -> string {
|
|
|
|
location.transform("\\", "/").rtrim("/").append("/");
|
|
|
|
if(!directory::exists(location)) return "";
|
|
|
|
|
2015-09-28 11:56:46 +00:00
|
|
|
auto type = suffixname(location).downcase();
|
2015-08-21 11:29:53 +00:00
|
|
|
if(type == ".fc") return famicomManifest(location);
|
|
|
|
if(type == ".sfc") return superFamicomManifest(location);
|
|
|
|
if(type == ".gb") return gameBoyManifest(location);
|
|
|
|
if(type == ".gbc") return gameBoyColorManifest(location);
|
|
|
|
if(type == ".gba") return gameBoyAdvanceManifest(location);
|
|
|
|
if(type == ".bs") return bsxSatellaviewManifest(location);
|
|
|
|
if(type == ".st") return sufamiTurboManifest(location);
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Icarus::import(string location) -> bool {
|
|
|
|
location.transform("\\", "/").rtrim("/");
|
|
|
|
if(!file::exists(location)) return failure("file does not exist");
|
|
|
|
if(!file::readable(location)) return failure("file is unreadable");
|
|
|
|
|
2015-09-28 11:56:46 +00:00
|
|
|
auto name = prefixname(location);
|
|
|
|
auto type = suffixname(location).downcase();
|
2015-08-21 11:29:53 +00:00
|
|
|
if(!name || !type) return failure("invalid file name");
|
|
|
|
|
|
|
|
auto buffer = file::read(location);
|
|
|
|
if(!buffer) return failure("file is empty");
|
|
|
|
|
|
|
|
if(type == ".zip") {
|
|
|
|
Decode::ZIP zip;
|
|
|
|
if(!zip.open(location)) return failure("ZIP archive is invalid");
|
|
|
|
if(!zip.file) return failure("ZIP archive is empty");
|
|
|
|
|
2015-09-28 11:56:46 +00:00
|
|
|
name = prefixname(zip.file[0].name);
|
|
|
|
type = suffixname(zip.file[0].name).downcase();
|
2015-08-21 11:29:53 +00:00
|
|
|
buffer = zip.extract(zip.file[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(type == ".fc" || type == ".nes") return famicomImport(buffer, location);
|
|
|
|
if(type == ".sfc" || type == ".smc") return superFamicomImport(buffer, location);
|
|
|
|
if(type == ".gb") return gameBoyImport(buffer, location);
|
|
|
|
if(type == ".gbc") return gameBoyColorImport(buffer, location);
|
|
|
|
if(type == ".gba") return gameBoyAdvanceImport(buffer, location);
|
|
|
|
if(type == ".bs") return bsxSatellaviewImport(buffer, location);
|
|
|
|
if(type == ".st") return sufamiTurboImport(buffer, location);
|
|
|
|
|
|
|
|
return failure("unrecognized file extension");
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Icarus::concatenate(vector<uint8_t>& output, const string& location) -> void {
|
|
|
|
if(auto input = file::read(location)) {
|
|
|
|
auto size = output.size();
|
|
|
|
output.resize(size + input.size());
|
|
|
|
memory::copy(output.data() + size, input.data(), input.size());
|
|
|
|
}
|
|
|
|
}
|