mirror of https://github.com/bsnes-emu/bsnes.git
48 lines
1.7 KiB
C++
48 lines
1.7 KiB
C++
auto Icarus::bsMemoryManifest(string location) -> string {
|
|
vector<uint8_t> buffer;
|
|
concatenate(buffer, {location, "program.rom"});
|
|
return bsMemoryManifest(buffer, location);
|
|
}
|
|
|
|
auto Icarus::bsMemoryManifest(vector<uint8_t>& buffer, string location) -> string {
|
|
string markup;
|
|
string digest = Hash::SHA256(buffer.data(), buffer.size()).digest();
|
|
|
|
if(settings["icarus/UseDatabase"].boolean() && !markup) {
|
|
for(auto node : database.bsMemory) {
|
|
if(node["sha256"].text() == digest) {
|
|
markup.append(node.text(), "\n sha256: ", digest, "\n");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(settings["icarus/UseHeuristics"].boolean() && !markup) {
|
|
BSMemoryCartridge cartridge{buffer.data(), buffer.size()};
|
|
if(markup = cartridge.markup) {
|
|
markup.append("\n");
|
|
markup.append("information\n");
|
|
markup.append(" title: ", Location::prefix(location), "\n");
|
|
markup.append(" sha256: ", digest, "\n");
|
|
markup.append(" note: ", "heuristically generated by icarus\n");
|
|
}
|
|
}
|
|
|
|
return markup;
|
|
}
|
|
|
|
auto Icarus::bsMemoryImport(vector<uint8_t>& buffer, string location) -> string {
|
|
auto name = Location::prefix(location);
|
|
auto source = Location::path(location);
|
|
string target{settings["Library/Location"].text(), "BS Memory/", name, ".bs/"};
|
|
//if(directory::exists(target)) return failure("game already exists");
|
|
|
|
auto markup = bsMemoryManifest(buffer, location);
|
|
if(!markup) return failure("failed to parse ROM image");
|
|
if(!directory::create(target)) return failure("library path unwritable");
|
|
|
|
if(settings["icarus/CreateManifests"].boolean()) file::write({target, "manifest.bml"}, markup);
|
|
file::write({target, "program.rom"}, buffer);
|
|
return success(target);
|
|
}
|