- added RFF extraction as well.

For files with resource ID the resulting name is base.{id}.ext, so that the full information is preserved.
This commit is contained in:
Christoph Oelckers 2021-08-16 00:11:00 +02:00
parent 56d1e69f30
commit 9e97b7b0ca
5 changed files with 184 additions and 5 deletions

View file

@ -117,6 +117,7 @@ set( SOURCES
main.cpp
wadext.cpp
wadfile.cpp
file_rff.cpp
)
set( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${REL_LINKER_FLAGS}" )

164
file_rff.cpp Normal file
View file

@ -0,0 +1,164 @@
/*
** file_rff.cpp
**
**---------------------------------------------------------------------------
** Copyright 1998-2009 Randy Heit
** Copyright 2005-2009 Christoph Oelckers
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
** 3. The name of the author may not be used to endorse or promote products
** derived from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**---------------------------------------------------------------------------
**
**
*/
#ifdef _MSC_VER
#include <direct.h>
#else // !_MSC_VER
#include <unistd.h>
#include <sys/stat.h>
#endif // _MSC_VER
#include <string>
#include "resourcefile.h"
std::string ExtractFileBase(const char* path, bool include_extension);
//==========================================================================
//
//
//
//==========================================================================
struct RFFInfo
{
// Should be "RFF\x18"
uint32_t Magic;
uint32_t Version;
uint32_t DirOfs;
uint32_t NumLumps;
};
struct RFFLump
{
uint32_t DontKnow1[4];
uint32_t FilePos;
uint32_t Size;
uint32_t DontKnow2;
uint32_t Time;
uint8_t Flags;
char Extension[3];
char Name[8];
uint32_t IndexNum; // Used by .sfx, possibly others
};
//==========================================================================
//
// BloodCrypt
//
//==========================================================================
void BloodCrypt (void *data, int key, int len)
{
int p = (uint8_t)key, i;
for (i = 0; i < len; ++i)
{
((uint8_t *)data)[i] ^= (unsigned char)(p+(i>>1));
}
}
//==========================================================================
//
// Initializes a Blood RFF file
//
//==========================================================================
void RffExtract(const char* filename, FILE* f)
{
uint32_t NumLumps;
RFFInfo header;
fread(&header, 1, sizeof(header), f);
NumLumps = header.NumLumps;
header.DirOfs = header.DirOfs;
TArray<RFFLump> lumps(NumLumps, true);
fseek (f, header.DirOfs, SEEK_SET);
fread(lumps.Data(), header.NumLumps, sizeof(RFFLump), f);
BloodCrypt (lumps.Data(), header.DirOfs, header.NumLumps * sizeof(RFFLump));
auto name = ExtractFileBase(filename, false);
mkdir(name.c_str());
chdir(name.c_str());
for (uint32_t i = 0; i < NumLumps; ++i)
{
TArray<char> buffer(lumps[i].Size, true);
fseek(f, lumps[i].FilePos, SEEK_SET);
fread(buffer.Data(), 1, lumps[i].Size, f);
// Rearrange the name and extension to construct the fullname.
char fn[128];
bool mustuseid =
!memcmp(lumps[i].Extension, "KVX", 3) ||
!memcmp(lumps[i].Extension, "PLU", 3) ||
!memcmp(lumps[i].Extension, "QAV", 3) ||
!memcmp(lumps[i].Extension, "PAL", 3) ||
!memcmp(lumps[i].Extension, "SEQ", 3) ||
!memcmp(lumps[i].Extension, "SFX", 3); // these are the data types only loaded by ID, so for them even 0 must be emitted.
if (lumps[i].IndexNum != 0 || mustuseid)
{
snprintf(fn, 128, "%.8s.{%d}.%.3s", lumps[i].Name, lumps[i].IndexNum, lumps[i].Extension);
}
else
{
snprintf(fn, 128, "%.8s.%.3s", lumps[i].Name, lumps[i].Extension);
}
if (lumps[i].Flags & 0x10)
{
int cryptlen = std::min<int> (lumps[i].Size, 256);
uint8_t *data = (uint8_t *)buffer.Data();
for (int i = 0; i < cryptlen; ++i)
{
data[i] ^= i >> 1;
}
}
FILE *fo = fopen(fn, "wb");
if (fo)
{
fwrite(buffer.Data(), 1, lumps[i].Size, fo);
fclose (fo);
}
}
}

View file

@ -83,7 +83,7 @@ int main(int argc, char ** argv)
}
else
{
printf("WadExt v2.0 (c) 2016 Christoph Oelckers\nUsage: wadext [options] filename\n");
printf("WadExt v2.1 (c) 2016-2021 Christoph Oelckers\nUsage: wadext [options] filename\n");
printf("Options:\n");
printf(" -nogfxconvert : Leave Doom format patches and flats in their original form, if not specified they will be converted to PNG.\n");
printf(" -nosndconvert : Leave Doom format sounds in their original form, if not specified they will be converted to WAV.\n");

View file

@ -136,10 +136,10 @@ public:
Count = 0;
Array = NULL;
}
TArray (int max)
TArray (int max, bool alloc)
{
Most = max;
Count = 0;
Count = alloc? max : 0;
Array = (T *)malloc (sizeof(T)*max);
}
TArray (const TArray<T,TT> &other)
@ -229,6 +229,11 @@ public:
return Array[Count-1];
}
T* Data()
{
return Array;
}
unsigned int Find(const T& item) const
{
unsigned int i;

View file

@ -165,6 +165,7 @@ const char * CWADFile::GetLumpName(int lump)
//==========================================================================
void GrpExtract(const char* filename, FILE* f);
void RffExtract(const char* filename, FILE* f);
//==========================================================================
//
@ -206,7 +207,15 @@ void OpenMainWad(char *filename)
GrpExtract(filename, f);
exit(1);
}
printf("%s: not a WAD file\n", filename);
exit(1);
else if (!memcmp(type, "RFF\x1a", 4))
{
RffExtract(filename, f);
exit(1);
}
else
{
printf("%s: not a WAD file\n", filename);
exit(1);
}
}