mirror of https://github.com/bsnes-emu/bsnes.git
25 lines
593 B
C++
25 lines
593 B
C++
vector<uint8_t> Ananke::extractROM() {
|
|
unzip archive;
|
|
if(archive.open(information.archive)) {
|
|
for(auto &file : archive.file) {
|
|
if(file.name.endswith(".sfc")) {
|
|
information.name = notdir(file.name);
|
|
return archive.extract(file);
|
|
}
|
|
}
|
|
}
|
|
return vector<uint8_t>();
|
|
}
|
|
|
|
vector<uint8_t> Ananke::extractFile(const string &filename) {
|
|
unzip archive;
|
|
if(archive.open(information.archive)) {
|
|
for(auto &file : archive.file) {
|
|
if(notdir(file.name) == filename) {
|
|
return archive.extract(file);
|
|
}
|
|
}
|
|
}
|
|
return vector<uint8_t>();
|
|
}
|