-some small compression corrections

This commit is contained in:
fix94.1 2013-01-06 18:33:29 +00:00
parent e44ec9cda1
commit 7cda297245
10 changed files with 230 additions and 255 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -22,7 +22,7 @@ static inline u32 packBytes(int a, int b, int c, int d)
return (d << 24) | (c << 16) | (b << 8) | (a); return (d << 24) | (c << 16) | (b << 8) | (a);
} }
static int __decompressLZ77_11(u8 *in, u32 inputLen, u8 **output, u32 *outputLen) static int __decompressLZ77_11(const u8 *in, u32 inputLen, u8 **output, u32 *outputLen)
{ {
int x = 0; int x = 0;
u32 y = 0; u32 y = 0;
@ -98,7 +98,7 @@ static int __decompressLZ77_11(u8 *in, u32 inputLen, u8 **output, u32 *outputLen
return 0; return 0;
} }
static int __decompressLZ77_10(u8 *in, u8 **output, u32 *outputLen) static int __decompressLZ77_10(const u8 *in, u8 **output, u32 *outputLen)
{ {
int x = 0; int x = 0;
u32 y = 0; u32 y = 0;
@ -148,14 +148,14 @@ static int __decompressLZ77_10(u8 *in, u8 **output, u32 *outputLen)
return 0; return 0;
} }
int isLZ77compressed(u8 *buffer) int isLZ77compressed(const u8 *buffer)
{ {
if((buffer[0] == LZ77_0x10_FLAG) || (buffer[0] == LZ77_0x11_FLAG)) if((buffer[0] == LZ77_0x10_FLAG) || (buffer[0] == LZ77_0x11_FLAG))
return 1; return 1;
return 0; return 0;
} }
int decompressLZ77content(u8 *buffer, u32 length, u8 **output, u32 *outputLen) int decompressLZ77content(const u8 *buffer, u32 length, u8 **output, u32 *outputLen)
{ {
int ret = 0; int ret = 0;
switch(buffer[0]) switch(buffer[0])

View File

@ -23,8 +23,8 @@
extern "C" { extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
int isLZ77compressed(u8 *buffer); int isLZ77compressed(const u8 *buffer);
int decompressLZ77content(u8 *buffer, u32 length, u8 **output, u32 *outputLen); int decompressLZ77content(const u8 *buffer, u32 length, u8 **output, u32 *outputLen);
#ifdef __cplusplus #ifdef __cplusplus
} }

View File

@ -49,7 +49,7 @@ protected:
u8 *sysFont2; u8 *sysFont2;
}; };
u8 *DecompressCopy(const u8 *stuff, const u32 len, u32 *size); u8 *DecompressCopy(const u8 *stuff, u32 len, u32 *size);
extern AnimatedBanner gameBanner; extern AnimatedBanner gameBanner;
#endif #endif

View File

@ -21,7 +21,7 @@
#include "gecko/gecko.hpp" #include "gecko/gecko.hpp"
#include "loader/fs.h" #include "loader/fs.h"
#include "loader/sys.h" #include "loader/sys.h"
#include "unzip/lz77.h" #include "banner/AnimatedBanner.h"
#include "unzip/U8Archive.h" #include "unzip/U8Archive.h"
extern const u8 save_bin[]; extern const u8 save_bin[];
@ -65,7 +65,7 @@ bool NandSave::CheckSave()
goto done; goto done;
} }
/* extract our archive */ /* extract our archive */
decompressLZ77content(save_bin, save_bin_size, &u8_bin, &u8_bin_size); u8_bin = DecompressCopy(save_bin, save_bin_size, &u8_bin_size);
if(u8_bin == NULL || u8_bin_size == 0) if(u8_bin == NULL || u8_bin_size == 0)
goto error; goto error;
/* grab cert.sys */ /* grab cert.sys */

View File

@ -7,6 +7,7 @@
#include <vector> #include <vector>
#include <string> #include <string>
#include "homebrew.h" #include "homebrew.h"
#include "banner/AnimatedBanner.h"
#include "gecko/gecko.hpp" #include "gecko/gecko.hpp"
#define EXECUTE_ADDR ((u8 *)0x91000000) #define EXECUTE_ADDR ((u8 *)0x91000000)
@ -110,9 +111,16 @@ void writeStub()
/* Clear potential homebrew channel stub */ /* Clear potential homebrew channel stub */
memset((void*)0x80001800, 0, 0x1800); memset((void*)0x80001800, 0, 0x1800);
/* Extract our stub */
u32 StubSize = 0;
u8 *Stub = DecompressCopy(stub_bin, stub_bin_size, &StubSize);
/* Copy our own stub into memory */ /* Copy our own stub into memory */
memcpy((void*)0x80001800, stub_bin, stub_bin_size); memcpy((void*)0x80001800, Stub, StubSize);
DCFlushRange((void*)0x80001800, stub_bin_size); DCFlushRange((void*)0x80001800, StubSize);
/* And free the memory again */
free(Stub);
} }
void BootHomebrew() void BootHomebrew()

View File

@ -13,42 +13,33 @@
* *
******************************************************************************/ ******************************************************************************/
#include <gccore.h> #include <gccore.h>
#include <stdio.h> #include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "lz77.h" #include "lz77.h"
#include "loader/utils.h"
#include "memory/mem2.hpp" #include "memory/mem2.hpp"
u32 packBytes(int a, int b, int c, int d) static inline u32 packBytes(int a, int b, int c, int d)
{ {
return (d << 24) | (c << 16) | (b << 8) | (a); return (d << 24) | (c << 16) | (b << 8) | (a);
} }
s32 __decompressLZ77_11(const u8 *in, const u32 inputLen, u8 **output, u32 *outputLen) static int __decompressLZ77_11(const u8 *in, u32 inputLen, u8 **output, u32 *outputLen)
{ {
int x, y; int x = 0;
u32 y = 0;
u8 *out = NULL;
u32 compressedPos = 0x4; u32 compressedPos = 0x4;
u32 decompressedPos = 0x0; u32 decompressedPos = 0;
u32 decompressedSize = 0; u32 decompressedSize = packBytes(in[0], in[1], in[2], in[3]) >> 8;
if(decompressedSize == 0)
decompressedSize = packBytes(in[0], in[1], in[2], in[3]) >> 8;
if (!decompressedSize)
{ {
decompressedSize = packBytes(in[4], in[5], in[6], in[7]); decompressedSize = packBytes(in[4], in[5], in[6], in[7]);
compressedPos += 0x4; compressedPos += 0x4;
} }
//printf("Decompressed size : %i\n", decompressedSize); //printf("Decompressed size : %i\n", decompressedSize);
out = MEM2_memalign(32, decompressedSize); u8 *out = (u8*)MEM2_alloc(decompressedSize);
if(out == NULL) if(out == NULL)
{ {
printf("Out of memory\n"); //printf("Out of memory\n");
return -1; return -1;
} }
@ -65,48 +56,39 @@ s32 __decompressLZ77_11(const u8 *in, const u32 inputLen, u8 **output, u32 *outp
u8 second = in[compressedPos + 1]; u8 second = in[compressedPos + 1];
u32 pos, copyLen; u32 pos, copyLen;
if(first < 0x20) if(first < 0x20)
{ {
u8 third = in[compressedPos + 2]; u8 third = in[compressedPos + 2];
if(first >= 0x10) if(first >= 0x10)
{ {
u32 fourth = in[compressedPos + 3]; u32 fourth = in[compressedPos + 3];
pos = (u32)(((third & 0xF) << 8) | fourth) + 1; pos = (u32)(((third & 0xF) << 8) | fourth) + 1;
copyLen = (u32)((second << 4) | ((first & 0xF) << 12) | (third >> 4)) + 273; copyLen = (u32)((second << 4) | ((first & 0xF) << 12) | (third >> 4)) + 273;
compressedPos += 4; compressedPos += 4;
} else }
else
{ {
pos = (u32)(((second & 0xF) << 8) | third) + 1; pos = (u32)(((second & 0xF) << 8) | third) + 1;
copyLen = (u32)(((first & 0xF) << 4) | (second >> 4)) + 17; copyLen = (u32)(((first & 0xF) << 4) | (second >> 4)) + 17;
compressedPos += 3; compressedPos += 3;
} }
} else }
else
{ {
pos = (u32)(((first & 0xF) << 8) | second) + 1; pos = (u32)(((first & 0xF) << 8) | second) + 1;
copyLen = (u32)(first >> 4) + 1; copyLen = (u32)(first >> 4) + 1;
compressedPos += 2; compressedPos += 2;
} }
for(y = 0; y < copyLen; y++)
for (y = 0; y < (int)copyLen; y++)
{
out[decompressedPos + y] = out[decompressedPos - pos + y]; out[decompressedPos + y] = out[decompressedPos - pos + y];
}
decompressedPos += copyLen; decompressedPos += copyLen;
} else }
else
{ {
out[decompressedPos] = in[compressedPos]; out[decompressedPos] = in[compressedPos];
decompressedPos++; decompressedPos++;
compressedPos++; compressedPos++;
} }
if(compressedPos >= inputLen || decompressedPos >= decompressedSize) if(compressedPos >= inputLen || decompressedPos >= decompressedSize)
break; break;
} }
@ -116,66 +98,51 @@ s32 __decompressLZ77_11(const u8 *in, const u32 inputLen, u8 **output, u32 *outp
return 0; return 0;
} }
s32 __decompressLZ77_10(const u8 *in, u8 **output, u32 *outputLen) static int __decompressLZ77_10(const u8 *in, u8 **output, u32 *outputLen)
{ {
int x, y; int x = 0;
u8 *out = NULL; u32 y = 0;
u32 compressedPos = 0x4;
u32 compressedPos = 0;
u32 decompressedSize = 0x4;
u32 decompressedPos = 0; u32 decompressedPos = 0;
u32 decompressedSize = packBytes(in[0], in[1], in[2], in[3]) >> 8;
decompressedSize = packBytes(in[0], in[1], in[2], in[3]) >> 8;
//int compressionType = (packBytes(in[0], in[1], in[2], in[3]) >> 4) & 0xF;
//printf("Decompressed size : %i\n", decompressedSize); //printf("Decompressed size : %i\n", decompressedSize);
out = MEM2_memalign(32, decompressedSize); u8 *out = (u8*)MEM2_alloc(decompressedSize);
if(out == NULL) if(out == NULL)
{ {
printf("Out of memory\n"); //printf("Out of memory\n");
return -1; return -1;
} }
compressedPos += 0x4;
while(decompressedPos < decompressedSize) while(decompressedPos < decompressedSize)
{ {
u8 flag = *(u8*)(in + compressedPos); u8 byteFlag = in[compressedPos];
compressedPos += 1; compressedPos ++;
for (x = 0; x < 8; x++) for(x = 0; x < 8; ++x)
{ {
if (flag & 0x80) if(byteFlag & 0x80)
{ {
u8 first = in[compressedPos]; u8 first = in[compressedPos];
u8 second = in[compressedPos + 1]; u8 second = in[compressedPos + 1];
u16 pos = (u16)((((first << 8) + second) & 0xFFF) + 1); u16 pos = (u16)((((first << 8) + second) & 0xFFF) + 1);
u8 copyLen = (u8)(3 + ((first >> 4) & 0xF)); u8 copyLen = (u8)(3 + ((first >> 4) & 0xF));
for(y = 0; y < copyLen; y++) for(y = 0; y < copyLen; y++)
{
out[decompressedPos + y] = out[decompressedPos - pos + (y % pos)]; out[decompressedPos + y] = out[decompressedPos - pos + (y % pos)];
}
compressedPos += 2; compressedPos += 2;
decompressedPos += copyLen; decompressedPos += copyLen;
} else }
else
{ {
out[decompressedPos] = in[compressedPos]; out[decompressedPos] = in[compressedPos];
compressedPos += 1; compressedPos += 1;
decompressedPos += 1; decompressedPos += 1;
} }
byteFlag <<= 1;
flag <<= 1;
if(decompressedPos >= decompressedSize) if(decompressedPos >= decompressedSize)
break; break;
} }
} }
*output = out; *output = out;
*outputLen = decompressedSize; *outputLen = decompressedSize;
return 0; return 0;
@ -188,9 +155,9 @@ int isLZ77compressed(const u8 *buffer)
return 0; return 0;
} }
int decompressLZ77content(const u8 *buffer, const u32 length, u8 **output, u32 *outputLen) int decompressLZ77content(const u8 *buffer, u32 length, u8 **output, u32 *outputLen)
{ {
int ret; int ret = 0;
switch(buffer[0]) switch(buffer[0])
{ {
case LZ77_0x10_FLAG: case LZ77_0x10_FLAG:

View File

@ -24,7 +24,7 @@ extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
int isLZ77compressed(const u8 *buffer); int isLZ77compressed(const u8 *buffer);
int decompressLZ77content(const u8 *buffer, const u32 length, u8 **output, u32 *outputLen); int decompressLZ77content(const u8 *buffer, u32 length, u8 **output, u32 *outputLen);
#ifdef __cplusplus #ifdef __cplusplus
} }