Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
#ifndef NALL_BEAT_ARCHIVE_HPP
|
|
|
|
#define NALL_BEAT_ARCHIVE_HPP
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
#include <nall/beat/file.hpp>
|
|
|
|
|
|
|
|
namespace nall { namespace Beat {
|
|
|
|
|
|
|
|
struct Archive {
|
|
|
|
static auto create(const string& beatname, const string& pathname, const string& metadata = "") -> bool;
|
|
|
|
static auto unpack(const string& beatname, const string& pathname) -> bool;
|
|
|
|
static auto extract(const string& beatname, const string& pathname) -> vector<uint8_t>;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static auto scan(lstring& result, const string& basename, const string& pathname) -> void;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto Archive::create(const string& beatname, const string& pathname, const string& metadata) -> bool {
|
|
|
|
if(!beatname.endsWith(".bpa") || !pathname.endsWith("/")) return false; //protect against reversed arguments
|
|
|
|
|
|
|
|
File beat{beatname, file::mode::write};
|
|
|
|
if(!beat) return false; //file not writable?
|
|
|
|
|
|
|
|
beat.writes("BPA1");
|
|
|
|
beat.writevu(metadata.size());
|
|
|
|
beat.writes(metadata);
|
|
|
|
|
|
|
|
lstring contents;
|
|
|
|
scan(contents, pathname, pathname);
|
|
|
|
|
|
|
|
for(auto& name : contents) {
|
2015-08-02 06:23:13 +00:00
|
|
|
string location{pathname, name};
|
|
|
|
bool directory = name.endsWith("/");
|
|
|
|
bool writable = file_system_object::writable(location);
|
|
|
|
bool executable = file_system_object::executable(location);
|
2015-11-08 08:54:42 +00:00
|
|
|
unsigned info = directory << 0 | writable << 1 | executable << 2 | (name.rtrim("/").size() - 1) << 3;
|
2015-08-02 06:23:13 +00:00
|
|
|
|
|
|
|
beat.writevu(info);
|
|
|
|
beat.writes(name);
|
|
|
|
if(directory) continue;
|
|
|
|
|
|
|
|
File input{location, file::mode::read};
|
|
|
|
if(input) {
|
2015-07-14 09:32:43 +00:00
|
|
|
auto size = input.size();
|
|
|
|
beat.writevu(size);
|
|
|
|
while(size--) beat.write(input.read());
|
|
|
|
beat.writel(input.checksum.value(), 4);
|
2015-08-02 06:23:13 +00:00
|
|
|
} else {
|
|
|
|
beat.writevu(0);
|
|
|
|
beat.writel(0x00000000, 4);
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
}
|
2015-07-14 09:32:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
beat.writel(beat.checksum.value(), 4);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Archive::unpack(const string& beatname, const string& pathname) -> bool {
|
|
|
|
if(!beatname.endsWith(".bpa") || !pathname.endsWith("/")) return false; //protect against reversed arguments
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
File beat{beatname, file::mode::read};
|
|
|
|
if(!beat) return false; //file not readable?
|
|
|
|
|
|
|
|
if(beat.reads(4) != "BPA1") return false;
|
|
|
|
auto size = beat.readvu();
|
|
|
|
while(size--) beat.read();
|
|
|
|
|
|
|
|
directory::create(pathname);
|
|
|
|
while(beat.offset() < beat.size() - 4) {
|
2015-08-02 06:23:13 +00:00
|
|
|
auto info = beat.readvu();
|
2015-11-08 08:54:42 +00:00
|
|
|
auto name = beat.reads((info >> 3) + 1);
|
2015-07-14 09:32:43 +00:00
|
|
|
if(name.find("\\") || name.find("../")) return false; //block path exploits
|
|
|
|
|
2015-08-02 06:23:13 +00:00
|
|
|
string location{pathname, name};
|
|
|
|
bool directory = info & 1;
|
2015-11-08 08:54:42 +00:00
|
|
|
bool writable = info & 2;
|
|
|
|
bool executable = info & 4;
|
2015-08-02 06:23:13 +00:00
|
|
|
|
|
|
|
if(directory) {
|
|
|
|
if(!nall::directory::create(location)) return false;
|
2015-07-14 09:32:43 +00:00
|
|
|
} else {
|
2015-08-02 06:23:13 +00:00
|
|
|
File output{location, file::mode::write};
|
2015-07-14 09:32:43 +00:00
|
|
|
if(!output) return false;
|
|
|
|
|
|
|
|
auto size = beat.readvu();
|
|
|
|
while(size--) output.write(beat.read());
|
|
|
|
if(beat.readl(4) != output.checksum.value()) return false;
|
|
|
|
}
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
uint32_t checksum = beat.checksum.value();
|
|
|
|
return beat.readl(4) == checksum;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Archive::extract(const string& beatname, const string& filename) -> vector<uint8_t> {
|
|
|
|
File beat{beatname, file::mode::read};
|
|
|
|
if(!beat) return {}; //file not readable?
|
|
|
|
|
|
|
|
if(beat.reads(4) != "BPA1") return {};
|
|
|
|
auto size = beat.readvu();
|
|
|
|
beat.seek(beat.offset() + size);
|
|
|
|
|
|
|
|
while(beat.offset() < beat.size() - 4) {
|
2015-08-02 06:23:13 +00:00
|
|
|
auto info = beat.readvu();
|
2015-11-08 08:54:42 +00:00
|
|
|
auto name = beat.reads((info >> 3) + 1);
|
2015-08-02 06:23:13 +00:00
|
|
|
if(info & 1) continue; //ignore directories
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
auto size = beat.readvu();
|
|
|
|
if(name != filename) {
|
|
|
|
beat.seek(beat.offset() + size + 4);
|
|
|
|
continue;
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
vector<uint8_t> result;
|
|
|
|
result.resize(size);
|
|
|
|
beat.checksum.reset();
|
|
|
|
for(auto n : range(size)) result[n] = beat.read();
|
|
|
|
uint32_t checksum = beat.checksum.value();
|
|
|
|
if(beat.readl(4) != checksum) return {};
|
|
|
|
return result;
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
return {};
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
auto Archive::scan(lstring& result, const string& basename, const string& pathname) -> void {
|
|
|
|
for(auto& name : directory::contents(pathname)) {
|
|
|
|
result.append(string{pathname, name}.ltrim(basename, 1L));
|
|
|
|
if(name.endsWith("/")) scan(result, basename, {pathname, name});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
Update to v091r11 release.
byuu says:
This release refines HSU1 support as a bidirectional protocol, nests SFC
manifests as "release/cartridge" and "release/information" (but release/
is not guaranteed to be finalized just yet), removes the database
integration, and adds support for ananke.
ananke represents inevitability. It's a library that, when installed,
higan can use to load files from the command-line, and also from a new
File -> Load Game menu option.
I need to change the build rules a bit for it to work on Windows (need
to make phoenix a DLL, basically), but it works now on Linux.
Right now, it only takes *.sfc file names, looks them up in the included
database, converts them to game folders, and returns the game folder
path for higan to load.
The idea is to continue expanding it to support everything we can that
I don't want in the higan core:
- load *.sfc, *.smc, *.swc, *.fig files
- remove SNES copier headers
- split apart merged firmware files
- pull in external firmware files (eg dsp1b.rom - these are staying
merged, just as SPC7110 prg+dat are merged)
- load *.zip and *.7z archives
- prompt for selection on multi-file archives
- generate manifest files based on heuristics
- apply BPS patches
The "Load" menu option has been renamed to "Library", to represent games
in your library. I'm going to add some sort of suffix to indicate
unverified games, and use a different folder icon for those (eg
manifests built on heuristics rather than from the database.)
So basically, to future end users:
File -> Load Game will be how they play games.
Library -> (specific system) can be thought of as an infinitely-sized
recent games list.
purify will likely become a simple stub that invokes ananke's functions.
No reason to duplicate all that code.
2012-11-05 08:22:50 +00:00
|
|
|
#endif
|