2003-07-21 02:27:09 +02:00
|
|
|
/*
|
|
|
|
* QPAK support routines for PhysicsFS.
|
|
|
|
*
|
|
|
|
* This archiver handles the archive format utilized by Quake 1 and 2.
|
|
|
|
* Quake3-based games use the PkZip/Info-Zip format (which our zip.c
|
|
|
|
* archiver handles).
|
|
|
|
*
|
|
|
|
* ========================================================================
|
|
|
|
*
|
|
|
|
* This format info (in more detail) comes from:
|
2017-06-20 20:06:13 +02:00
|
|
|
* https://web.archive.org/web/20040209101748/http://debian.fmi.uni-sofia.bg/~sergei/cgsr/docs/pak.txt
|
2003-07-21 02:27:09 +02:00
|
|
|
*
|
|
|
|
* Quake PAK Format
|
|
|
|
*
|
|
|
|
* Header
|
|
|
|
* (4 bytes) signature = 'PACK'
|
|
|
|
* (4 bytes) directory offset
|
|
|
|
* (4 bytes) directory length
|
|
|
|
*
|
|
|
|
* Directory
|
|
|
|
* (56 bytes) file name
|
|
|
|
* (4 bytes) file position
|
|
|
|
* (4 bytes) file length
|
|
|
|
*
|
|
|
|
* ========================================================================
|
|
|
|
*
|
2007-03-11 11:10:28 +01:00
|
|
|
* Please see the file LICENSE.txt in the source's root directory.
|
2003-07-21 02:27:09 +02:00
|
|
|
*
|
|
|
|
* This file written by Ryan C. Gordon.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define __PHYSICSFS_INTERNAL__
|
|
|
|
#include "physfs_internal.h"
|
|
|
|
|
2012-03-23 05:52:32 +01:00
|
|
|
#if PHYSFS_SUPPORTS_QPAK
|
|
|
|
|
2012-03-23 07:45:38 +01:00
|
|
|
#define QPAK_SIG 0x4B434150 /* "PACK" in ASCII. */
|
2003-11-09 22:06:15 +01:00
|
|
|
|
2012-03-23 07:45:38 +01:00
|
|
|
static UNPKentry *qpakLoadEntries(PHYSFS_Io *io, PHYSFS_uint32 fileCount)
|
2003-07-21 02:27:09 +02:00
|
|
|
{
|
2012-03-23 07:45:38 +01:00
|
|
|
UNPKentry *entries = NULL;
|
|
|
|
UNPKentry *entry = NULL;
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2012-03-23 07:45:38 +01:00
|
|
|
entries = (UNPKentry *) allocator.Malloc(sizeof (UNPKentry) * fileCount);
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF(entries == NULL, PHYSFS_ERR_OUT_OF_MEMORY, NULL);
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2012-03-23 07:45:38 +01:00
|
|
|
for (entry = entries; fileCount > 0; fileCount--, entry++)
|
2003-07-21 02:27:09 +02:00
|
|
|
{
|
2012-03-23 07:45:38 +01:00
|
|
|
if (!__PHYSFS_readAll(io, &entry->name, 56)) goto failed;
|
|
|
|
if (!__PHYSFS_readAll(io, &entry->startPos, 4)) goto failed;
|
|
|
|
if (!__PHYSFS_readAll(io, &entry->size, 4)) goto failed;
|
2003-07-21 02:27:09 +02:00
|
|
|
entry->size = PHYSFS_swapULE32(entry->size);
|
2010-08-21 08:47:58 +02:00
|
|
|
entry->startPos = PHYSFS_swapULE32(entry->startPos);
|
2003-07-21 02:27:09 +02:00
|
|
|
} /* for */
|
|
|
|
|
2012-03-23 07:45:38 +01:00
|
|
|
return entries;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
allocator.Free(entries);
|
|
|
|
return NULL;
|
|
|
|
} /* qpakLoadEntries */
|
2003-07-21 02:27:09 +02:00
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static void *QPAK_openArchive(PHYSFS_Io *io, const char *name, int forWriting)
|
2003-07-21 02:27:09 +02:00
|
|
|
{
|
2012-03-23 07:45:38 +01:00
|
|
|
UNPKentry *entries = NULL;
|
2010-08-30 09:01:57 +02:00
|
|
|
PHYSFS_uint32 val = 0;
|
|
|
|
PHYSFS_uint32 pos = 0;
|
|
|
|
PHYSFS_uint32 count = 0;
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
assert(io != NULL); /* shouldn't ever happen. */
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF(forWriting, PHYSFS_ERR_READ_ONLY, NULL);
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF_ERRPASS(!__PHYSFS_readAll(io, &val, 4), NULL);
|
2012-03-20 20:38:12 +01:00
|
|
|
if (PHYSFS_swapULE32(val) != QPAK_SIG)
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL(PHYSFS_ERR_UNSUPPORTED, NULL);
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF_ERRPASS(!__PHYSFS_readAll(io, &val, 4), NULL);
|
2010-08-30 09:01:57 +02:00
|
|
|
pos = PHYSFS_swapULE32(val); /* directory table offset. */
|
|
|
|
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF_ERRPASS(!__PHYSFS_readAll(io, &val, 4), NULL);
|
2010-08-30 09:01:57 +02:00
|
|
|
count = PHYSFS_swapULE32(val);
|
2003-07-21 02:27:09 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
/* corrupted archive? */
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF((count % 64) != 0, PHYSFS_ERR_CORRUPT, NULL);
|
2010-08-30 09:01:57 +02:00
|
|
|
count /= 64;
|
|
|
|
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF_ERRPASS(!io->seek(io, pos), NULL);
|
2010-08-30 09:01:57 +02:00
|
|
|
|
2012-03-23 07:45:38 +01:00
|
|
|
entries = qpakLoadEntries(io, count);
|
2017-07-06 17:51:41 +02:00
|
|
|
BAIL_IF_ERRPASS(!entries, NULL);
|
2012-03-23 07:45:38 +01:00
|
|
|
return UNPK_openArchive(io, entries, count);
|
2003-07-21 02:27:09 +02:00
|
|
|
} /* QPAK_openArchive */
|
|
|
|
|
|
|
|
|
2004-09-29 08:18:04 +02:00
|
|
|
const PHYSFS_Archiver __PHYSFS_Archiver_QPAK =
|
|
|
|
{
|
2012-11-28 07:36:13 +01:00
|
|
|
CURRENT_PHYSFS_ARCHIVER_API_VERSION,
|
2012-03-25 23:17:56 +02:00
|
|
|
{
|
|
|
|
"PAK",
|
|
|
|
"Quake I/II format",
|
|
|
|
"Ryan C. Gordon <icculus@icculus.org>",
|
2016-02-25 08:51:28 +01:00
|
|
|
"https://icculus.org/physfs/",
|
2012-11-30 06:04:52 +01:00
|
|
|
0, /* supportsSymlinks */
|
2012-03-25 23:17:56 +02:00
|
|
|
},
|
2012-11-30 20:06:21 +01:00
|
|
|
QPAK_openArchive,
|
|
|
|
UNPK_enumerateFiles,
|
|
|
|
UNPK_openRead,
|
|
|
|
UNPK_openWrite,
|
|
|
|
UNPK_openAppend,
|
|
|
|
UNPK_remove,
|
|
|
|
UNPK_mkdir,
|
2012-11-30 20:09:56 +01:00
|
|
|
UNPK_stat,
|
|
|
|
UNPK_closeArchive
|
2004-09-29 08:18:04 +02:00
|
|
|
};
|
|
|
|
|
2003-07-21 02:27:09 +02:00
|
|
|
#endif /* defined PHYSFS_SUPPORTS_QPAK */
|
|
|
|
|
2012-11-27 06:12:39 +01:00
|
|
|
/* end of archiver_qpak.c ... */
|
2003-07-21 02:27:09 +02:00
|
|
|
|