2019-10-28 22:46:15 +00:00
|
|
|
/*
|
2020-04-11 21:54:33 +00:00
|
|
|
** file_whres.cpp
|
|
|
|
**
|
|
|
|
** reads a Witchaven/TekWar sound resource file
|
2019-10-28 22:46:15 +00:00
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
2020-04-11 21:54:33 +00:00
|
|
|
** Copyright 2009-2019 Christoph Oelckers
|
2019-10-28 22:46:15 +00:00
|
|
|
** 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.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "resourcefile.h"
|
2019-12-24 11:59:26 +00:00
|
|
|
#include "printf.h"
|
2020-04-11 21:54:33 +00:00
|
|
|
#include "cmdlib.h"
|
2019-10-28 22:46:15 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
struct whresentry
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
int filepospage, filelen, priority;
|
2019-10-28 22:46:15 +00:00
|
|
|
} ;
|
|
|
|
|
|
|
|
struct dpackheader_t
|
|
|
|
{
|
|
|
|
int ident; // == IDPAKHEADER
|
|
|
|
int dirofs;
|
|
|
|
int dirlen;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Wad file
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
class FWHResFile : public FUncompressedFile
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
FString basename;
|
2019-10-28 22:46:15 +00:00
|
|
|
public:
|
2020-04-11 21:54:33 +00:00
|
|
|
FWHResFile(const char * filename, FileReader &file);
|
|
|
|
bool Open(bool quiet, LumpFilterInfo* filter);
|
2019-10-28 22:46:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FWadFile::FWadFile
|
|
|
|
//
|
|
|
|
// Initializes a WAD file
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
FWHResFile::FWHResFile(const char *filename, FileReader &file)
|
2019-10-28 22:46:15 +00:00
|
|
|
: FUncompressedFile(filename, file)
|
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
basename = ExtractFileBase(filename, false);
|
2019-10-28 22:46:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Open it
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
bool FWHResFile::Open(bool quiet, LumpFilterInfo*)
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
int directory[1024];
|
2019-10-28 22:46:15 +00:00
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
Reader.Seek(-4096, FileReader::SeekEnd);
|
|
|
|
Reader.Read(directory, 4096);
|
|
|
|
|
|
|
|
int nl =1024/3;
|
|
|
|
Lumps.Resize(nl);
|
2019-10-28 22:46:15 +00:00
|
|
|
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
int i = 0;
|
|
|
|
for(int k = 0; k < nl; k++)
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
int offset = LittleLong(directory[k*3]) * 4096;
|
|
|
|
int length = LittleLong(directory[k*3+1]);
|
|
|
|
if (length <= 0) break;
|
|
|
|
FStringf synthname("%s/%04d", basename.GetChars(), k);
|
|
|
|
Lumps[i].LumpNameSetup(synthname);
|
2019-10-28 22:46:15 +00:00
|
|
|
Lumps[i].Owner = this;
|
2020-04-11 21:54:33 +00:00
|
|
|
Lumps[i].Position = offset;
|
|
|
|
Lumps[i].LumpSize = length;
|
|
|
|
i++;
|
2019-10-28 22:46:15 +00:00
|
|
|
}
|
2020-04-11 21:54:33 +00:00
|
|
|
NumLumps = i;
|
|
|
|
Lumps.Clamp(NumLumps);
|
|
|
|
Lumps.ShrinkToFit();
|
2019-10-28 22:46:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// File open
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
FResourceFile *CheckWHRes(const char *filename, FileReader &file, bool quiet, LumpFilterInfo* filter)
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
if (file.GetLength() >= 8192) // needs to be at least 8192 to contain one file and the directory.
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
int directory[1024];
|
|
|
|
int nl =1024/3;
|
|
|
|
|
|
|
|
file.Seek(-4096, FileReader::SeekEnd);
|
|
|
|
file.Read(directory, 4096);
|
|
|
|
|
|
|
|
int checkpos = 0;
|
|
|
|
for(int k = 0; k < nl; k++)
|
2019-10-28 22:46:15 +00:00
|
|
|
{
|
2020-04-11 21:54:33 +00:00
|
|
|
int offset = LittleLong(directory[k*3]);
|
|
|
|
int length = LittleLong(directory[k*3+1]);
|
|
|
|
if (length <= 0 && offset == 0) break;
|
|
|
|
if (offset != checkpos || length <= 0) return nullptr;
|
|
|
|
checkpos += (length+4095) / 4096;
|
2019-10-28 22:46:15 +00:00
|
|
|
}
|
2020-04-11 21:54:33 +00:00
|
|
|
FResourceFile *rf = new FWHResFile(filename, file);
|
|
|
|
if (rf->Open(quiet, filter)) return rf;
|
|
|
|
file = std::move(rf->Reader); // to avoid destruction of reader
|
|
|
|
delete rf;
|
2019-10-28 22:46:15 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2020-04-11 21:54:33 +00:00
|
|
|
|