438 lines
No EOL
16 KiB
C
438 lines
No EOL
16 KiB
C
/**********************************************************************************************
|
|
*
|
|
* rres - raylib Resource custom format management functions
|
|
*
|
|
* Basic functions to load/save rRES resource files
|
|
*
|
|
* External libs:
|
|
* tinfl - DEFLATE decompression functions
|
|
*
|
|
* Module Configuration Flags:
|
|
*
|
|
* #define RREM_IMPLEMENTATION
|
|
* Generates the implementation of the library into the included file.
|
|
*
|
|
*
|
|
* Copyright (c) 2016-2017 Ramon Santamaria (@raysan5)
|
|
*
|
|
* 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.
|
|
*
|
|
**********************************************************************************************/
|
|
|
|
#ifndef RRES_H
|
|
#define RRES_H
|
|
|
|
#if !defined(RRES_STANDALONE)
|
|
#include "raylib.h"
|
|
#endif
|
|
|
|
//#define RRES_STATIC
|
|
#ifdef RRES_STATIC
|
|
#define RRESDEF static // Functions just visible to module including this file
|
|
#else
|
|
#ifdef __cplusplus
|
|
#define RRESDEF extern "C" // Functions visible from other files (no name mangling of functions in C++)
|
|
#else
|
|
#define RRESDEF extern // Functions visible from other files
|
|
#endif
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Defines and Macros
|
|
//----------------------------------------------------------------------------------
|
|
#define MAX_RESOURCES_SUPPORTED 256
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Types and Structures Definition
|
|
// NOTE: Some types are required for RAYGUI_STANDALONE usage
|
|
//----------------------------------------------------------------------------------
|
|
#if defined(RRES_STANDALONE)
|
|
// rRES data returned when reading a resource, it contains all required data for user (24 byte)
|
|
// NOTE: Using void *data pointer, so we can load to image.data, wave.data, mesh.*, (unsigned char *)
|
|
typedef struct {
|
|
unsigned int type; // Resource type (4 byte)
|
|
|
|
unsigned int param1; // Resouce parameter 1 (4 byte)
|
|
unsigned int param2; // Resouce parameter 2 (4 byte)
|
|
unsigned int param3; // Resouce parameter 3 (4 byte)
|
|
unsigned int param4; // Resouce parameter 4 (4 byte)
|
|
|
|
void *data; // Resource data pointer (4 byte)
|
|
} RRESData;
|
|
|
|
typedef enum {
|
|
RRES_TYPE_RAW = 0,
|
|
RRES_TYPE_IMAGE,
|
|
RRES_TYPE_WAVE,
|
|
RRES_TYPE_VERTEX,
|
|
RRES_TYPE_TEXT,
|
|
RRES_TYPE_FONT_IMAGE,
|
|
RRES_TYPE_FONT_DATA, // Character { int value, recX, recY, recWidth, recHeight, offsetX, offsetY, xAdvance }
|
|
RRES_TYPE_DIRECTORY
|
|
} RRESDataType;
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Global variables
|
|
//----------------------------------------------------------------------------------
|
|
//...
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Module Functions Declaration
|
|
//----------------------------------------------------------------------------------
|
|
RRESDEF RRESData LoadResource(const char *rresFileName);
|
|
RRESDEF RRESData LoadResourceById(const char *rresFileName, int rresId);
|
|
RRESDEF void UnloadResource(RRESData rres);
|
|
|
|
#endif // RRES_H
|
|
|
|
|
|
/***********************************************************************************
|
|
*
|
|
* RRES IMPLEMENTATION
|
|
*
|
|
************************************************************************************/
|
|
|
|
#if defined(RRES_IMPLEMENTATION)
|
|
|
|
#include <stdio.h> // Required for: FILE, fopen(), fclose()
|
|
|
|
// Check if custom malloc/free functions defined, if not, using standard ones
|
|
#if !defined(RRES_MALLOC)
|
|
#include <stdlib.h> // Required for: malloc(), free()
|
|
|
|
#define RRES_MALLOC(size) malloc(size)
|
|
#define RRES_FREE(ptr) free(ptr)
|
|
#endif
|
|
|
|
#include "external/tinfl.c" // Required for: tinfl_decompress_mem_to_mem()
|
|
// NOTE: DEFLATE algorythm data decompression
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Defines and Macros
|
|
//----------------------------------------------------------------------------------
|
|
//...
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Types and Structures Definition
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// rRES file header (8 byte)
|
|
typedef struct {
|
|
char id[4]; // File identifier: rRES (4 byte)
|
|
unsigned short version; // File version and subversion (2 byte)
|
|
unsigned short count; // Number of resources in this file (2 byte)
|
|
} RRESFileHeader;
|
|
|
|
// rRES info header, every resource includes this header (16 byte + 16 byte)
|
|
typedef struct {
|
|
unsigned int id; // Resource unique identifier (4 byte)
|
|
unsigned char dataType; // Resource data type (1 byte)
|
|
unsigned char compType; // Resource data compression type (1 byte)
|
|
unsigned char cryptoType; // Resource data encryption type (1 byte)
|
|
unsigned char partsCount; // Resource data parts count, used for splitted data (1 byte)
|
|
unsigned int dataSize; // Resource data size (compressed or not, only DATA) (4 byte)
|
|
unsigned int uncompSize; // Resource data size (uncompressed, only DATA) (4 byte)
|
|
|
|
unsigned int param1; // Resouce parameter 1 (4 byte)
|
|
unsigned int param2; // Resouce parameter 2 (4 byte)
|
|
unsigned int param3; // Resouce parameter 3 (4 byte)
|
|
unsigned int param4; // Resouce parameter 4 (4 byte)
|
|
} RRESInfoHeader;
|
|
|
|
// Compression types
|
|
typedef enum {
|
|
RRES_COMP_NONE = 0, // No data compression
|
|
RRES_COMP_DEFLATE, // DEFLATE compression
|
|
RRES_COMP_LZ4, // LZ4 compression
|
|
RRES_COMP_LZMA, // LZMA compression
|
|
RRES_COMP_BROTLI, // BROTLI compression
|
|
// gzip, zopfli, lzo, zstd // Other compression algorythms...
|
|
} RRESCompressionType;
|
|
|
|
typedef enum {
|
|
RRES_CRYPTO_NONE = 0, // No data encryption
|
|
RRES_CRYPTO_XOR, // XOR (128 bit) encryption
|
|
RRES_CRYPTO_AES, // RIJNDAEL (128 bit) encryption (AES)
|
|
RRES_CRYPTO_TDES, // Triple DES encryption
|
|
RRES_CRYPTO_BLOWFISH, // BLOWFISH encryption
|
|
RRES_CRYPTO_XTEA, // XTEA encryption
|
|
// twofish, RC5, RC6 // Other encryption algorythm...
|
|
} RRESEncryptionType;
|
|
|
|
typedef enum {
|
|
RRES_IM_UNCOMP_GRAYSCALE = 1, // 8 bit per pixel (no alpha)
|
|
RRES_IM_UNCOMP_GRAY_ALPHA, // 16 bpp (2 channels)
|
|
RRES_IM_UNCOMP_R5G6B5, // 16 bpp
|
|
RRES_IM_UNCOMP_R8G8B8, // 24 bpp
|
|
RRES_IM_UNCOMP_R5G5B5A1, // 16 bpp (1 bit alpha)
|
|
RRES_IM_UNCOMP_R4G4B4A4, // 16 bpp (4 bit alpha)
|
|
RRES_IM_UNCOMP_R8G8B8A8, // 32 bpp
|
|
RRES_IM_COMP_DXT1_RGB, // 4 bpp (no alpha)
|
|
RRES_IM_COMP_DXT1_RGBA, // 4 bpp (1 bit alpha)
|
|
RRES_IM_COMP_DXT3_RGBA, // 8 bpp
|
|
RRES_IM_COMP_DXT5_RGBA, // 8 bpp
|
|
RRES_IM_COMP_ETC1_RGB, // 4 bpp
|
|
RRES_IM_COMP_ETC2_RGB, // 4 bpp
|
|
RRES_IM_COMP_ETC2_EAC_RGBA, // 8 bpp
|
|
RRES_IM_COMP_PVRT_RGB, // 4 bpp
|
|
RRES_IM_COMP_PVRT_RGBA, // 4 bpp
|
|
RRES_IM_COMP_ASTC_4x4_RGBA, // 8 bpp
|
|
RRES_IM_COMP_ASTC_8x8_RGBA // 2 bpp
|
|
//...
|
|
} RRESImageFormat;
|
|
|
|
typedef enum {
|
|
RRES_VERT_POSITION,
|
|
RRES_VERT_TEXCOORD1,
|
|
RRES_VERT_TEXCOORD2,
|
|
RRES_VERT_TEXCOORD3,
|
|
RRES_VERT_TEXCOORD4,
|
|
RRES_VERT_NORMAL,
|
|
RRES_VERT_TANGENT,
|
|
RRES_VERT_COLOR,
|
|
RRES_VERT_INDEX,
|
|
//...
|
|
} RRESVertexType;
|
|
|
|
typedef enum {
|
|
RRES_VERT_BYTE,
|
|
RRES_VERT_SHORT,
|
|
RRES_VERT_INT,
|
|
RRES_VERT_HFLOAT,
|
|
RRES_VERT_FLOAT,
|
|
//...
|
|
} RRESVertexFormat;
|
|
|
|
#if defined(RRES_STANDALONE)
|
|
typedef enum { LOG_INFO = 0, LOG_ERROR, LOG_WARNING, LOG_DEBUG, LOG_OTHER } TraceLogType;
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Global Variables Definition
|
|
//----------------------------------------------------------------------------------
|
|
//...
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Module specific Functions Declaration
|
|
//----------------------------------------------------------------------------------
|
|
static void *DecompressData(const unsigned char *data, unsigned long compSize, int uncompSize);
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Module Functions Definition
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Load resource from file (only one)
|
|
// NOTE: Returns uncompressed data with parameters, only first resource found
|
|
RRESDEF RRESData LoadResource(const char *fileName)
|
|
{
|
|
// Force loading first resource available
|
|
RRESData rres = { 0 };
|
|
|
|
rres = LoadResourceById(fileName, 0);
|
|
|
|
return rres;
|
|
}
|
|
|
|
// Load resource from file by id
|
|
// NOTE: Returns uncompressed data with parameters, search resource by id
|
|
RRESDEF RRESData LoadResourceById(const char *fileName, int rresId)
|
|
{
|
|
RRESData rres = { 0 };
|
|
|
|
RRESFileHeader fileHeader;
|
|
RRESInfoHeader infoHeader;
|
|
|
|
FILE *rresFile = fopen(fileName, "rb");
|
|
|
|
if (rresFile == NULL) TraceLog(WARNING, "[%s] rRES raylib resource file could not be opened", fileName);
|
|
else
|
|
{
|
|
// Read rres file info header
|
|
fread(&fileHeader.id[0], sizeof(char), 1, rresFile);
|
|
fread(&fileHeader.id[1], sizeof(char), 1, rresFile);
|
|
fread(&fileHeader.id[2], sizeof(char), 1, rresFile);
|
|
fread(&fileHeader.id[3], sizeof(char), 1, rresFile);
|
|
fread(&fileHeader.version, sizeof(short), 1, rresFile);
|
|
fread(&fileHeader.count, sizeof(short), 1, rresFile);
|
|
|
|
// Verify "rRES" identifier
|
|
if ((fileHeader.id[0] != 'r') && (fileHeader.id[1] != 'R') && (fileHeader.id[2] != 'E') && (fileHeader.id[3] != 'S'))
|
|
{
|
|
TraceLog(WARNING, "[%s] This is not a valid raylib resource file", fileName);
|
|
}
|
|
else
|
|
{
|
|
for (int i = 0; i < fileHeader.count; i++)
|
|
{
|
|
// Read resource info and parameters
|
|
fread(&infoHeader, sizeof(RRESInfoHeader), 1, rresFile);
|
|
|
|
if (infoHeader.id == rresId)
|
|
{
|
|
// Register data type and parameters
|
|
rres.type = infoHeader.dataType;
|
|
rres.param1 = infoHeader.param1;
|
|
rres.param2 = infoHeader.param2;
|
|
rres.param3 = infoHeader.param3;
|
|
rres.param4 = infoHeader.param4;
|
|
|
|
// Read resource data block
|
|
void *data = RRES_MALLOC(infoHeader.dataSize);
|
|
fread(data, infoHeader.dataSize, 1, rresFile);
|
|
|
|
if (infoHeader.compType == RRES_COMP_DEFLATE)
|
|
{
|
|
void *uncompData = DecompressData(data, infoHeader.dataSize, infoHeader.uncompSize);
|
|
|
|
rres.data = uncompData;
|
|
|
|
RRES_FREE(data);
|
|
}
|
|
else rres.data = data;
|
|
|
|
if (rres.data != NULL) TraceLog(INFO, "[%s][ID %i] Resource data loaded successfully", fileName, (int)infoHeader.id);
|
|
|
|
if (rresId == 0) break; // Break for loop, do not check next resource
|
|
}
|
|
else
|
|
{
|
|
// Skip required data to read next resource infoHeader
|
|
fseek(rresFile, infoHeader.dataSize, SEEK_CUR);
|
|
}
|
|
}
|
|
|
|
if (rres.data == NULL) TraceLog(WARNING, "[%s][ID %i] Requested resource could not be found", fileName, (int)rresId);
|
|
}
|
|
|
|
fclose(rresFile);
|
|
}
|
|
|
|
return rres;
|
|
}
|
|
|
|
RRESDEF void UnloadResource(RRESData rres)
|
|
{
|
|
if (rres.data != NULL) free(rres.data);
|
|
}
|
|
|
|
//----------------------------------------------------------------------------------
|
|
// Module specific Functions Definition
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Data decompression function
|
|
// NOTE: Allocated data MUST be freed by user
|
|
static void *DecompressData(const unsigned char *data, unsigned long compSize, int uncompSize)
|
|
{
|
|
int tempUncompSize;
|
|
void *uncompData;
|
|
|
|
// Allocate buffer to hold decompressed data
|
|
uncompData = (mz_uint8 *)RRES_MALLOC((size_t)uncompSize);
|
|
|
|
// Check correct memory allocation
|
|
if (uncompData == NULL)
|
|
{
|
|
TraceLog(WARNING, "Out of memory while decompressing data");
|
|
}
|
|
else
|
|
{
|
|
// Decompress data
|
|
tempUncompSize = tinfl_decompress_mem_to_mem(uncompData, (size_t)uncompSize, data, compSize, 1);
|
|
|
|
if (tempUncompSize == -1)
|
|
{
|
|
TraceLog(WARNING, "Data decompression failed");
|
|
RRES_FREE(uncompData);
|
|
}
|
|
|
|
if (uncompSize != (int)tempUncompSize)
|
|
{
|
|
TraceLog(WARNING, "Expected uncompressed size do not match, data may be corrupted");
|
|
TraceLog(WARNING, " -- Expected uncompressed size: %i", uncompSize);
|
|
TraceLog(WARNING, " -- Returned uncompressed size: %i", tempUncompSize);
|
|
}
|
|
|
|
TraceLog(INFO, "Data decompressed successfully from %u bytes to %u bytes", (mz_uint32)compSize, (mz_uint32)tempUncompSize);
|
|
}
|
|
|
|
return uncompData;
|
|
}
|
|
|
|
|
|
// Some required functions for rres standalone module version
|
|
#if defined(RRES_STANDALONE)
|
|
// Outputs a trace log message (INFO, ERROR, WARNING)
|
|
// NOTE: If a file has been init, output log is written there
|
|
void TraceLog(int logType, const char *text, ...)
|
|
{
|
|
va_list args;
|
|
int traceDebugMsgs = 0;
|
|
|
|
#ifdef DO_NOT_TRACE_DEBUG_MSGS
|
|
traceDebugMsgs = 0;
|
|
#endif
|
|
|
|
switch (msgType)
|
|
{
|
|
case LOG_INFO: fprintf(stdout, "INFO: "); break;
|
|
case LOG_ERROR: fprintf(stdout, "ERROR: "); break;
|
|
case LOG_WARNING: fprintf(stdout, "WARNING: "); break;
|
|
case LOG_DEBUG: if (traceDebugMsgs) fprintf(stdout, "DEBUG: "); break;
|
|
default: break;
|
|
}
|
|
|
|
if ((msgType != LOG_DEBUG) || ((msgType == LOG_DEBUG) && (traceDebugMsgs)))
|
|
{
|
|
va_start(args, text);
|
|
vfprintf(stdout, text, args);
|
|
va_end(args);
|
|
|
|
fprintf(stdout, "\n");
|
|
}
|
|
|
|
if (msgType == ERROR) exit(1); // If ERROR message, exit program
|
|
}
|
|
#endif
|
|
|
|
#endif // RAYGUI_IMPLEMENTATION
|
|
|
|
/*
|
|
Mesh LoadMeshEx(int numVertex, float *vData, float *vtData, float *vnData, Color *cData);
|
|
Mesh LoadMeshEx(rres.param1, rres.data, rres.data + offset, rres.data + offset*2, rres.data + offset*3);
|
|
|
|
Shader LoadShader(const char *vsText, int vsLength);
|
|
Shader LoadShaderV(rres.data, rres.param1);
|
|
|
|
// Parameters information depending on resource type (IMAGE, WAVE, MESH, TEXT)
|
|
|
|
// Image data params
|
|
int imgWidth, imgHeight;
|
|
char colorFormat, mipmaps;
|
|
|
|
// Wave data params
|
|
int sampleCount,
|
|
short sampleRate, bps;
|
|
char channels, reserved;
|
|
|
|
// Mesh data params
|
|
int vertexCount, reserved;
|
|
short vertexTypesMask, vertexFormatsMask;
|
|
|
|
// Text data params
|
|
int charsCount;
|
|
int cultureCode;
|
|
*/ |