mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 10:05:05 +01:00
fa11a745d6
*Rewrote the whole Settings.cpp into 11 classes. Each settings menu has it's own class now *Reworked the whole sound system. Supported formats AIF/MP3/OGG/BNS/WAV now with no file size limit (streaming). *Changed button click/over sounds to wav from raw pcm *Lot's of bug fixes
186 lines
4.5 KiB
C
186 lines
4.5 KiB
C
/***************************************************************************
|
|
* Copyright (C) 2010
|
|
* by Dimok
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any
|
|
* damages arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose, including commercial applications, and to alter it and
|
|
* redistribute it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
* must not claim that you wrote the original software. If you use
|
|
* this software in a product, an acknowledgment in the product
|
|
* documentation would be appreciated but is not required.
|
|
*
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
* must not be misrepresented as being the original software.
|
|
*
|
|
* 3. This notice may not be removed or altered from any source
|
|
* distribution.
|
|
*
|
|
* for WiiXplorer 2010
|
|
***************************************************************************/
|
|
#include <malloc.h>
|
|
#include <string.h>
|
|
|
|
#include "uncompress.h"
|
|
|
|
struct _LZ77Info
|
|
{
|
|
u16 length : 4;
|
|
u16 offset : 12;
|
|
} __attribute__((packed));
|
|
|
|
typedef struct _LZ77Info LZ77Info;
|
|
|
|
u8 * uncompressLZ77(const u8 *inBuf, u32 inLength, u32 * size)
|
|
{
|
|
u8 *buffer = NULL;
|
|
if (inLength <= 0x8 || *((const u32 *)inBuf) != 0x4C5A3737 /*"LZ77"*/ || inBuf[4] != 0x10)
|
|
return NULL;
|
|
|
|
u32 uncSize = le32(((const u32 *)inBuf)[1] << 8);
|
|
|
|
const u8 *inBufEnd = inBuf + inLength;
|
|
inBuf += 8;
|
|
|
|
buffer = (u8 *) malloc(uncSize);
|
|
|
|
if (!buffer)
|
|
return buffer;
|
|
|
|
u8 *bufCur = buffer;
|
|
u8 *bufEnd = buffer + uncSize;
|
|
|
|
while (bufCur < bufEnd && inBuf < inBufEnd)
|
|
{
|
|
u8 flags = *inBuf;
|
|
++inBuf;
|
|
int i = 0;
|
|
for (i = 0; i < 8 && bufCur < bufEnd && inBuf < inBufEnd; ++i)
|
|
{
|
|
if ((flags & 0x80) != 0)
|
|
{
|
|
const LZ77Info * info = (const LZ77Info *)inBuf;
|
|
inBuf += sizeof (LZ77Info);
|
|
int length = info->length + 3;
|
|
if (bufCur - info->offset - 1 < buffer || bufCur + length > bufEnd)
|
|
return buffer;
|
|
memcpy(bufCur, bufCur - info->offset - 1, length);
|
|
bufCur += length;
|
|
}
|
|
else
|
|
{
|
|
*bufCur = *inBuf;
|
|
++inBuf;
|
|
++bufCur;
|
|
}
|
|
flags <<= 1;
|
|
}
|
|
}
|
|
|
|
*size = uncSize;
|
|
|
|
return buffer;
|
|
}
|
|
|
|
//Thanks to _demo_ for this function
|
|
//src points to the yaz0 source data (to the "real" source data, not at the header!)
|
|
//dst points to a buffer uncompressedSize bytes large (you get uncompressedSize from
|
|
//the second 4 bytes in the Yaz0 header).
|
|
void uncompressYaz0(const u8* srcBuf, u8* dst, int uncompressedSize)
|
|
{
|
|
const u8 * src = srcBuf;
|
|
|
|
if(memcmp(src, "Yaz0", 4) == 0)
|
|
{
|
|
src += sizeof(Yaz0_Header);
|
|
}
|
|
|
|
int srcPlace = 0, dstPlace = 0; //current read/write positions
|
|
|
|
u32 validBitCount = 0; //number of valid bits left in "code" byte
|
|
u8 currCodeByte = 0;
|
|
|
|
while(dstPlace < uncompressedSize)
|
|
{
|
|
//read new "code" byte if the current one is used up
|
|
if(validBitCount == 0)
|
|
{
|
|
currCodeByte = src[srcPlace];
|
|
++srcPlace;
|
|
validBitCount = 8;
|
|
}
|
|
|
|
if((currCodeByte & 0x80) != 0)
|
|
{
|
|
//straight copy
|
|
dst[dstPlace] = src[srcPlace];
|
|
dstPlace++;
|
|
srcPlace++;
|
|
}
|
|
else
|
|
{
|
|
//RLE part
|
|
u8 byte1 = src[srcPlace];
|
|
u8 byte2 = src[srcPlace + 1];
|
|
srcPlace += 2;
|
|
|
|
u32 dist = ((byte1 & 0xF) << 8) | byte2;
|
|
u32 copySource = dstPlace - (dist + 1);
|
|
|
|
u32 numBytes = byte1 >> 4;
|
|
if(numBytes == 0)
|
|
{
|
|
numBytes = src[srcPlace] + 0x12;
|
|
srcPlace++;
|
|
}
|
|
else
|
|
numBytes += 2;
|
|
|
|
//copy run
|
|
u32 i = 0;
|
|
for(i = 0; i < numBytes; ++i)
|
|
{
|
|
dst[dstPlace] = dst[copySource];
|
|
copySource++;
|
|
dstPlace++;
|
|
}
|
|
}
|
|
|
|
//use next bit from "code" byte
|
|
currCodeByte <<= 1;
|
|
validBitCount-=1;
|
|
}
|
|
}
|
|
|
|
|
|
u32 CheckIMD5Type(const u8 * buffer, int length)
|
|
{
|
|
if(*((u32 *) buffer) != 'IMD5')
|
|
{
|
|
return *((u32 *) buffer);
|
|
}
|
|
|
|
const u8 * file = buffer+32;
|
|
|
|
if(*((u32 *) file) != 'LZ77')
|
|
{
|
|
return *((u32 *) file);
|
|
}
|
|
|
|
u32 uncSize = 0;
|
|
u8 * uncompressed_data = uncompressLZ77(file, length-32, &uncSize);
|
|
if(!uncompressed_data)
|
|
return 0;
|
|
|
|
u32 * magic = (u32 *) uncompressed_data;
|
|
u32 Type = magic[0];
|
|
free(uncompressed_data);
|
|
|
|
return Type;
|
|
}
|