2016-01-07 08:14:33 +00:00
|
|
|
#pragma once
|
2011-08-06 14:03:52 +00:00
|
|
|
|
|
|
|
#include <nall/file.hpp>
|
Update to v094r09 release.
byuu says:
This will easily be the biggest diff in the history of higan. And not in
a good way.
* target-higan and target-loki have been blown away completely
* nall and ruby massively updated
* phoenix replaced with hiro (pretty near a total rewrite)
* target-higan restarted using hiro (just a window for now)
* all emulation cores updated to compile again
* installation changed to not require root privileges (installs locally)
For the foreseeable future (maybe even permanently?), the new higan UI
will only build under Linux/BSD with GTK+ 2.20+. Probably the most
likely route for Windows/OS X will be to try and figure out how to build
hiro/GTK on those platforms, as awful as that would be. The other
alternative would be to produce new UIs for those platforms ... which
would actually be a good opportunity to make something much more user
friendly.
Being that I just started on this a few hours ago, that means that for
at least a few weeks, don't expect to be able to actually play any
games. Right now, you can pretty much just compile the binary and that's
it. It's quite possible that some nall changes didn't produce
compilation errors, but will produce runtime errors. So until the UI can
actually load games, we won't know if anything is broken. But we should
mostly be okay. It was mostly just trim<1> -> trim changes, moving to
Hash::SHA256 (much cleaner), and patching some reckless memory copy
functions enough to compile.
Progress isn't going to be like it was before: I'm now dividing my time
much thinner between studying and other hobbies.
My aim this time is not to produce a binary for everyone to play games
on. Rather, it's to keep the emulator alive. I want to be able to apply
critical patches again. And I would also like the base of the emulator
to live on, for use in other emulator frontends that utilize higan.
2015-02-26 10:10:46 +00:00
|
|
|
#include <nall/decode/inflate.hpp>
|
2011-08-06 14:03:52 +00:00
|
|
|
|
2019-01-16 00:46:42 +00:00
|
|
|
namespace nall::Decode {
|
2011-08-06 14:03:52 +00:00
|
|
|
|
Update to v094r09 release.
byuu says:
This will easily be the biggest diff in the history of higan. And not in
a good way.
* target-higan and target-loki have been blown away completely
* nall and ruby massively updated
* phoenix replaced with hiro (pretty near a total rewrite)
* target-higan restarted using hiro (just a window for now)
* all emulation cores updated to compile again
* installation changed to not require root privileges (installs locally)
For the foreseeable future (maybe even permanently?), the new higan UI
will only build under Linux/BSD with GTK+ 2.20+. Probably the most
likely route for Windows/OS X will be to try and figure out how to build
hiro/GTK on those platforms, as awful as that would be. The other
alternative would be to produce new UIs for those platforms ... which
would actually be a good opportunity to make something much more user
friendly.
Being that I just started on this a few hours ago, that means that for
at least a few weeks, don't expect to be able to actually play any
games. Right now, you can pretty much just compile the binary and that's
it. It's quite possible that some nall changes didn't produce
compilation errors, but will produce runtime errors. So until the UI can
actually load games, we won't know if anything is broken. But we should
mostly be okay. It was mostly just trim<1> -> trim changes, moving to
Hash::SHA256 (much cleaner), and patching some reckless memory copy
functions enough to compile.
Progress isn't going to be like it was before: I'm now dividing my time
much thinner between studying and other hobbies.
My aim this time is not to produce a binary for everyone to play games
on. Rather, it's to keep the emulator alive. I want to be able to apply
critical patches again. And I would also like the base of the emulator
to live on, for use in other emulator frontends that utilize higan.
2015-02-26 10:10:46 +00:00
|
|
|
struct GZIP {
|
2015-12-14 09:41:06 +00:00
|
|
|
inline ~GZIP();
|
2011-08-06 14:03:52 +00:00
|
|
|
|
2015-12-14 09:41:06 +00:00
|
|
|
inline auto decompress(const string& filename) -> bool;
|
Update to v097r14 release.
byuu says:
This is a few days old, but oh well.
This WIP changes nall,hiro,ruby,icarus back to (u)int(8,16,32,64)_t.
I'm slowly pushing for (u)int(8,16,32,64) to use my custom
Integer<Size>/Natural<Size> classes instead. But it's going to be one
hell of a struggle to get that into higan.
2016-02-16 09:11:58 +00:00
|
|
|
inline auto decompress(const uint8_t* data, uint size) -> bool;
|
2011-08-06 14:03:52 +00:00
|
|
|
|
2015-12-14 09:41:06 +00:00
|
|
|
string filename;
|
Update to v097r14 release.
byuu says:
This is a few days old, but oh well.
This WIP changes nall,hiro,ruby,icarus back to (u)int(8,16,32,64)_t.
I'm slowly pushing for (u)int(8,16,32,64) to use my custom
Integer<Size>/Natural<Size> classes instead. But it's going to be one
hell of a struggle to get that into higan.
2016-02-16 09:11:58 +00:00
|
|
|
uint8_t* data = nullptr;
|
2015-12-14 09:41:06 +00:00
|
|
|
uint size = 0;
|
2011-08-06 14:03:52 +00:00
|
|
|
};
|
|
|
|
|
2015-12-14 09:41:06 +00:00
|
|
|
GZIP::~GZIP() {
|
|
|
|
if(data) delete[] data;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto GZIP::decompress(const string& filename) -> bool {
|
Update to v088r03 release.
byuu says:
static vector<uint8_t> file::read(const string &filename); replaces:
static bool file::read(const string &filename, uint8_t *&data, unsigned
&size); This allows automatic deletion of the underlying data.
Added vectorstream, which is obviously a vector<uint8_t> wrapper for
a data stream. Plan is for all data accesses inside my emulation cores
to take stream objects, especially MSU1. This lets you feed the core
anything: memorystream, filestream, zipstream, gzipstream, httpstream,
etc. There will still be exceptions for link and serial, those need
actual library files on disk. But those aren't official hardware devices
anyway.
So to help with speed a bit, I'm rethinking the video rendering path.
Previous system:
- core outputs system-native samples (SNES = 19-bit LRGB, NES = 9-bit
emphasis+palette, DMG = 2-bit grayscale, etc.)
- interfaceSystem transforms samples to 30-bit via lookup table inside
the emulation core
- interfaceSystem masks off overscan areas, if enabled
- interfaceUI runs filter to produce new target buffer, if enabled
- interfaceUI transforms 30-bit video to native display depth (24-bit or
30-bit), and applies color-adjustments (gamma, etc) at the same time
New system:
- all cores now generate an internal palette, and call
Interface::videoColor(uint32_t source, uint16_t red, uint16_t green,
uint16_t blue) to get native display color post-adjusted (gamma, etc
applied already.)
- all cores output to uint32_t* buffer now (output video.palette[color]
instead of just color)
- interfaceUI runs filter to produce new target buffer, if enabled
- interfaceUI memcpy()'s buffer to the video card
videoColor() is pretty neat. source is the raw pixel (as per the
old-format, 19-bit SNES, 9-bit NES, etc), and you can create a color
from that if you really want to. Or return that value to get a buffer
just like v088 and below. red, green, blue are 16-bits per channel,
because why the hell not, right? Just lop off all the bits you don't
want. If you have more bits on your display than that, fuck you :P
The last step is extremely difficult to avoid. Video cards can and do
have pitches that differ from the width of the texture. Trying to make
the core account for this would be really awful. And even if we did
that, the emulation routine would need to write directly to a video card
RAM buffer. Some APIs require you to lock the video buffer while
writing, so this would leave the video buffer locked for a long time.
Probably not catastrophic, but still awful. And lastly, if the
emulation core tried writing directly to the display texture, software
filters would no longer be possible (unless you -really- jump through
hooks and divert to a memory buffer when a filter is enabled, but ...
fuck.)
Anyway, the point of all that work was to eliminate an extra video copy,
and the need for a really painful 30-bit to 24-bit conversion (three
shifts, three masks, three array indexes.) So this basically reverts us,
performance-wise, to where we were pre-30 bit support.
[...]
The downside to this is that we're going to need a filter for each
output depth. Since the array type is uint32_t*, and I don't intend to
support higher or lower depths, we really only need 24+30-bit versions
of each filter. Kinda shitty, but oh well.
2012-04-27 12:12:53 +00:00
|
|
|
if(auto memory = file::read(filename)) {
|
|
|
|
return decompress(memory.data(), memory.size());
|
|
|
|
}
|
|
|
|
return false;
|
2011-08-06 14:03:52 +00:00
|
|
|
}
|
|
|
|
|
Update to v097r14 release.
byuu says:
This is a few days old, but oh well.
This WIP changes nall,hiro,ruby,icarus back to (u)int(8,16,32,64)_t.
I'm slowly pushing for (u)int(8,16,32,64) to use my custom
Integer<Size>/Natural<Size> classes instead. But it's going to be one
hell of a struggle to get that into higan.
2016-02-16 09:11:58 +00:00
|
|
|
auto GZIP::decompress(const uint8_t* data, uint size) -> bool {
|
2011-08-06 14:03:52 +00:00
|
|
|
if(size < 18) return false;
|
|
|
|
if(data[0] != 0x1f) return false;
|
|
|
|
if(data[1] != 0x8b) return false;
|
2015-12-14 09:41:06 +00:00
|
|
|
uint cm = data[2];
|
|
|
|
uint flg = data[3];
|
|
|
|
uint mtime = data[4];
|
2011-08-06 14:03:52 +00:00
|
|
|
mtime |= data[5] << 8;
|
|
|
|
mtime |= data[6] << 16;
|
|
|
|
mtime |= data[7] << 24;
|
2015-12-14 09:41:06 +00:00
|
|
|
uint xfl = data[8];
|
|
|
|
uint os = data[9];
|
|
|
|
uint p = 10;
|
|
|
|
uint isize = data[size - 4];
|
2011-08-06 14:03:52 +00:00
|
|
|
isize |= data[size - 3] << 8;
|
|
|
|
isize |= data[size - 2] << 16;
|
|
|
|
isize |= data[size - 1] << 24;
|
|
|
|
filename = "";
|
|
|
|
|
|
|
|
if(flg & 0x04) { //FEXTRA
|
2015-12-14 09:41:06 +00:00
|
|
|
uint xlen = data[p + 0];
|
2011-08-06 14:03:52 +00:00
|
|
|
xlen |= data[p + 1] << 8;
|
|
|
|
p += 2 + xlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flg & 0x08) { //FNAME
|
|
|
|
char buffer[PATH_MAX];
|
2015-12-14 09:41:06 +00:00
|
|
|
for(uint n = 0; n < PATH_MAX; n++, p++) {
|
2011-08-06 14:03:52 +00:00
|
|
|
buffer[n] = data[p];
|
|
|
|
if(data[p] == 0) break;
|
|
|
|
}
|
|
|
|
if(data[p++]) return false;
|
|
|
|
filename = buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flg & 0x10) { //FCOMMENT
|
|
|
|
while(data[p++]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flg & 0x02) { //FHCRC
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->size = isize;
|
|
|
|
this->data = new uint8_t[this->size];
|
|
|
|
return inflate(this->data, this->size, data + p, size - p - 8);
|
|
|
|
}
|
|
|
|
|
2019-01-16 00:46:42 +00:00
|
|
|
}
|