2003-03-30 20:59:54 +02:00
|
|
|
/*
|
|
|
|
* MVL support routines for PhysicsFS.
|
|
|
|
*
|
|
|
|
* This driver handles Descent II Movielib archives.
|
|
|
|
*
|
|
|
|
* The file format of MVL is quite easy...
|
|
|
|
*
|
|
|
|
* //MVL File format - Written by Heiko Herrmann
|
|
|
|
* char sig[4] = {'D','M', 'V', 'L'}; // "DMVL"=Descent MoVie Library
|
|
|
|
*
|
|
|
|
* int num_files; // the number of files in this MVL
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* char file_name[13]; // Filename, padded to 13 bytes with 0s
|
|
|
|
* int file_size; // filesize in bytes
|
|
|
|
* }DIR_STRUCT[num_files];
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* char data[file_size]; // The file data
|
|
|
|
* }FILE_STRUCT[num_files];
|
|
|
|
*
|
|
|
|
* (That info is from http://www.descent2.com/ddn/specs/mvl/)
|
|
|
|
*
|
2007-03-11 11:10:28 +01:00
|
|
|
* Please see the file LICENSE.txt in the source's root directory.
|
2003-03-30 20:59:54 +02:00
|
|
|
*
|
|
|
|
* This file written by Bradley Bell.
|
|
|
|
* Based on grp.c by Ryan C. Gordon.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if (defined PHYSFS_SUPPORTS_MVL)
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "physfs.h"
|
|
|
|
|
|
|
|
#define __PHYSICSFS_INTERNAL__
|
|
|
|
#include "physfs_internal.h"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char name[13];
|
|
|
|
PHYSFS_uint32 startPos;
|
|
|
|
PHYSFS_uint32 size;
|
|
|
|
} MVLentry;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
PHYSFS_Io *io;
|
2003-03-30 20:59:54 +02:00
|
|
|
PHYSFS_uint32 entryCount;
|
|
|
|
MVLentry *entries;
|
|
|
|
} MVLinfo;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
PHYSFS_Io *io;
|
2003-03-30 20:59:54 +02:00
|
|
|
MVLentry *entry;
|
|
|
|
PHYSFS_uint32 curPos;
|
|
|
|
} MVLfileinfo;
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static inline int readAll(PHYSFS_Io *io, void *buf, const PHYSFS_uint64 len)
|
|
|
|
{
|
|
|
|
return (io->read(io, buf, len) == len);
|
|
|
|
} /* readAll */
|
|
|
|
|
|
|
|
|
2004-09-26 15:00:59 +02:00
|
|
|
static void MVL_dirClose(dvoid *opaque)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2004-09-26 02:25:04 +02:00
|
|
|
MVLinfo *info = ((MVLinfo *) opaque);
|
2010-08-30 09:01:57 +02:00
|
|
|
info->io->destroy(info->io);
|
2005-03-14 12:49:30 +01:00
|
|
|
allocator.Free(info->entries);
|
|
|
|
allocator.Free(info);
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_dirClose */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_sint64 MVL_read(PHYSFS_Io *io, void *buffer, PHYSFS_uint64 len)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
MVLfileinfo *finfo = (MVLfileinfo *) io->opaque;
|
2010-08-21 08:47:58 +02:00
|
|
|
const MVLentry *entry = finfo->entry;
|
|
|
|
const PHYSFS_uint64 bytesLeft = (PHYSFS_uint64)(entry->size-finfo->curPos);
|
2003-03-30 20:59:54 +02:00
|
|
|
PHYSFS_sint64 rc;
|
|
|
|
|
2010-08-21 08:47:58 +02:00
|
|
|
if (bytesLeft < len)
|
|
|
|
len = bytesLeft;
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
rc = finfo->io->read(finfo->io, buffer, len);
|
2003-03-30 20:59:54 +02:00
|
|
|
if (rc > 0)
|
2010-08-21 08:47:58 +02:00
|
|
|
finfo->curPos += (PHYSFS_uint32) rc;
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-01-28 08:27:45 +01:00
|
|
|
return rc;
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_read */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_sint64 MVL_write(PHYSFS_Io *io, const void *b, PHYSFS_uint64 len)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
BAIL_MACRO(ERR_NOT_SUPPORTED, -1);
|
|
|
|
} /* MVL_write */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_sint64 MVL_tell(PHYSFS_Io *io)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
return ((MVLfileinfo *) io->opaque)->curPos;
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_tell */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static int MVL_seek(PHYSFS_Io *io, PHYSFS_uint64 offset)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
MVLfileinfo *finfo = (MVLfileinfo *) io->opaque;
|
|
|
|
const MVLentry *entry = finfo->entry;
|
2003-03-30 20:59:54 +02:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
BAIL_IF_MACRO(offset >= entry->size, ERR_PAST_EOF, 0);
|
2010-08-30 09:01:57 +02:00
|
|
|
rc = finfo->io->seek(finfo->io, entry->startPos + offset);
|
2003-03-30 20:59:54 +02:00
|
|
|
if (rc)
|
|
|
|
finfo->curPos = (PHYSFS_uint32) offset;
|
|
|
|
|
2010-01-28 08:27:45 +01:00
|
|
|
return rc;
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_seek */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_sint64 MVL_length(PHYSFS_Io *io)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
const MVLfileinfo *finfo = (MVLfileinfo *) io->opaque;
|
2010-01-28 08:27:45 +01:00
|
|
|
return ((PHYSFS_sint64) finfo->entry->size);
|
2010-08-30 09:01:57 +02:00
|
|
|
} /* MVL_length */
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_Io *MVL_duplicate(PHYSFS_Io *_io)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
MVLfileinfo *origfinfo = (MVLfileinfo *) _io->opaque;
|
|
|
|
PHYSFS_Io *io = NULL;
|
|
|
|
PHYSFS_Io *retval = (PHYSFS_Io *) allocator.Malloc(sizeof (PHYSFS_Io));
|
|
|
|
MVLfileinfo *finfo = (MVLfileinfo *) allocator.Malloc(sizeof (MVLfileinfo));
|
|
|
|
GOTO_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, MVL_duplicate_failed);
|
|
|
|
GOTO_IF_MACRO(finfo == NULL, ERR_OUT_OF_MEMORY, MVL_duplicate_failed);
|
|
|
|
|
|
|
|
io = origfinfo->io->duplicate(origfinfo->io);
|
|
|
|
GOTO_IF_MACRO(io == NULL, NULL, MVL_duplicate_failed);
|
|
|
|
finfo->io = io;
|
|
|
|
finfo->entry = origfinfo->entry;
|
|
|
|
finfo->curPos = 0;
|
|
|
|
memcpy(retval, _io, sizeof (PHYSFS_Io));
|
|
|
|
retval->opaque = finfo;
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
MVL_duplicate_failed:
|
|
|
|
if (finfo != NULL) allocator.Free(finfo);
|
|
|
|
if (retval != NULL) allocator.Free(retval);
|
|
|
|
if (io != NULL) io->destroy(io);
|
|
|
|
return NULL;
|
|
|
|
} /* MVL_duplicate */
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static int MVL_flush(PHYSFS_Io *io) { return 1; /* no write support. */ }
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static void MVL_destroy(PHYSFS_Io *io)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
MVLfileinfo *finfo = (MVLfileinfo *) io->opaque;
|
|
|
|
finfo->io->destroy(finfo->io);
|
|
|
|
allocator.Free(finfo);
|
|
|
|
allocator.Free(io);
|
|
|
|
} /* MVL_destroy */
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static const PHYSFS_Io MVL_Io =
|
|
|
|
{
|
|
|
|
MVL_read,
|
|
|
|
MVL_write,
|
|
|
|
MVL_seek,
|
|
|
|
MVL_tell,
|
|
|
|
MVL_length,
|
|
|
|
MVL_duplicate,
|
|
|
|
MVL_flush,
|
|
|
|
MVL_destroy,
|
|
|
|
NULL
|
|
|
|
};
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static int mvlEntryCmp(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2008-02-20 13:24:10 +01:00
|
|
|
if (one != two)
|
|
|
|
{
|
|
|
|
const MVLentry *a = (const MVLentry *) _a;
|
2010-08-30 09:01:57 +02:00
|
|
|
return __PHYSFS_stricmpASCII(a[one].name, a[two].name);
|
2008-02-20 13:24:10 +01:00
|
|
|
} /* if */
|
|
|
|
|
|
|
|
return 0;
|
2010-08-30 09:01:57 +02:00
|
|
|
} /* mvlEntryCmp */
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static void mvlEntrySwap(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2008-02-20 13:24:10 +01:00
|
|
|
if (one != two)
|
|
|
|
{
|
|
|
|
MVLentry tmp;
|
|
|
|
MVLentry *first = &(((MVLentry *) _a)[one]);
|
|
|
|
MVLentry *second = &(((MVLentry *) _a)[two]);
|
|
|
|
memcpy(&tmp, first, sizeof (MVLentry));
|
|
|
|
memcpy(first, second, sizeof (MVLentry));
|
|
|
|
memcpy(second, &tmp, sizeof (MVLentry));
|
|
|
|
} /* if */
|
2010-08-30 09:01:57 +02:00
|
|
|
} /* mvlEntrySwap */
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static int mvl_load_entries(PHYSFS_Io *io, MVLinfo *info)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
PHYSFS_uint32 fileCount = info->entryCount;
|
2003-03-30 20:59:54 +02:00
|
|
|
PHYSFS_uint32 location = 8; /* sizeof sig. */
|
|
|
|
MVLentry *entry;
|
|
|
|
|
2005-03-14 12:49:30 +01:00
|
|
|
info->entries = (MVLentry *) allocator.Malloc(sizeof(MVLentry)*fileCount);
|
2010-08-30 09:01:57 +02:00
|
|
|
BAIL_IF_MACRO(info->entries == NULL, ERR_OUT_OF_MEMORY, 0);
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
location += (17 * fileCount);
|
|
|
|
|
|
|
|
for (entry = info->entries; fileCount > 0; fileCount--, entry++)
|
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
BAIL_IF_MACRO(!readAll(io, &entry->name, 13), NULL, 0);
|
|
|
|
BAIL_IF_MACRO(!readAll(io, &entry->size, 4), NULL, 0);
|
2003-03-30 20:59:54 +02:00
|
|
|
entry->size = PHYSFS_swapULE32(entry->size);
|
|
|
|
entry->startPos = location;
|
|
|
|
location += entry->size;
|
|
|
|
} /* for */
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
__PHYSFS_sort(info->entries, info->entryCount, mvlEntryCmp, mvlEntrySwap);
|
2010-01-28 08:27:45 +01:00
|
|
|
return 1;
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* mvl_load_entries */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static void *MVL_openArchive(PHYSFS_Io *io, const char *name, int forWriting)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
PHYSFS_uint8 buf[4];
|
|
|
|
MVLinfo *info = NULL;
|
|
|
|
PHYSFS_uint32 val = 0;
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
assert(io != NULL); /* shouldn't ever happen. */
|
|
|
|
|
|
|
|
BAIL_IF_MACRO(forWriting, ERR_ARC_IS_READ_ONLY, 0);
|
|
|
|
|
|
|
|
BAIL_IF_MACRO(!readAll(io, buf, 4), NULL, NULL);
|
|
|
|
if (memcmp(buf, "DMVL", 4) != 0)
|
|
|
|
GOTO_MACRO(ERR_NOT_AN_ARCHIVE, MVL_openArchive_failed);
|
|
|
|
|
|
|
|
info = (MVLinfo *) allocator.Malloc(sizeof (MVLinfo));
|
|
|
|
GOTO_IF_MACRO(info == NULL, ERR_OUT_OF_MEMORY, MVL_openArchive_failed);
|
2003-03-30 20:59:54 +02:00
|
|
|
memset(info, '\0', sizeof (MVLinfo));
|
2010-08-30 09:01:57 +02:00
|
|
|
info->io = io;
|
|
|
|
|
|
|
|
GOTO_IF_MACRO(!readAll(io,&val,sizeof(val)), NULL, MVL_openArchive_failed);
|
|
|
|
info->entryCount = PHYSFS_swapULE32(val);
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
GOTO_IF_MACRO(!mvl_load_entries(io, info), NULL, MVL_openArchive_failed);
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-01-28 08:27:45 +01:00
|
|
|
return info;
|
2003-03-30 20:59:54 +02:00
|
|
|
|
|
|
|
MVL_openArchive_failed:
|
2004-09-26 02:25:04 +02:00
|
|
|
if (info != NULL)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2004-09-26 02:25:04 +02:00
|
|
|
if (info->entries != NULL)
|
2005-03-14 12:49:30 +01:00
|
|
|
allocator.Free(info->entries);
|
|
|
|
allocator.Free(info);
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* if */
|
|
|
|
|
2010-01-28 08:27:45 +01:00
|
|
|
return NULL;
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_openArchive */
|
|
|
|
|
|
|
|
|
2004-09-29 08:09:29 +02:00
|
|
|
static void MVL_enumerateFiles(dvoid *opaque, const char *dname,
|
2005-09-18 23:44:42 +02:00
|
|
|
int omitSymLinks, PHYSFS_EnumFilesCallback cb,
|
|
|
|
const char *origdir, void *callbackdata)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
/* no directories in MVL files. */
|
2007-03-28 19:29:52 +02:00
|
|
|
if (*dname == '\0')
|
2004-09-29 08:09:29 +02:00
|
|
|
{
|
|
|
|
MVLinfo *info = ((MVLinfo *) opaque);
|
|
|
|
MVLentry *entry = info->entries;
|
|
|
|
PHYSFS_uint32 max = info->entryCount;
|
|
|
|
PHYSFS_uint32 i;
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2004-09-29 08:09:29 +02:00
|
|
|
for (i = 0; i < max; i++, entry++)
|
2005-09-18 23:44:42 +02:00
|
|
|
cb(callbackdata, origdir, entry->name);
|
2004-09-29 08:09:29 +02:00
|
|
|
} /* if */
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_enumerateFiles */
|
|
|
|
|
|
|
|
|
2010-02-15 20:02:36 +01:00
|
|
|
static MVLentry *mvl_find_entry(const MVLinfo *info, const char *name)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
char *ptr = strchr(name, '.');
|
|
|
|
MVLentry *a = info->entries;
|
|
|
|
PHYSFS_sint32 lo = 0;
|
|
|
|
PHYSFS_sint32 hi = (PHYSFS_sint32) (info->entryCount - 1);
|
|
|
|
PHYSFS_sint32 middle;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Rule out filenames to avoid unneeded processing...no dirs,
|
|
|
|
* big filenames, or extensions > 3 chars.
|
|
|
|
*/
|
|
|
|
BAIL_IF_MACRO((ptr) && (strlen(ptr) > 4), ERR_NO_SUCH_FILE, NULL);
|
|
|
|
BAIL_IF_MACRO(strlen(name) > 12, ERR_NO_SUCH_FILE, NULL);
|
|
|
|
BAIL_IF_MACRO(strchr(name, '/') != NULL, ERR_NO_SUCH_FILE, NULL);
|
|
|
|
|
|
|
|
while (lo <= hi)
|
|
|
|
{
|
|
|
|
middle = lo + ((hi - lo) / 2);
|
2007-03-15 09:16:23 +01:00
|
|
|
rc = __PHYSFS_stricmpASCII(name, a[middle].name);
|
2003-03-30 20:59:54 +02:00
|
|
|
if (rc == 0) /* found it! */
|
2010-01-28 08:27:45 +01:00
|
|
|
return &a[middle];
|
2003-03-30 20:59:54 +02:00
|
|
|
else if (rc > 0)
|
|
|
|
lo = middle + 1;
|
|
|
|
else
|
|
|
|
hi = middle - 1;
|
|
|
|
} /* while */
|
|
|
|
|
|
|
|
BAIL_MACRO(ERR_NO_SUCH_FILE, NULL);
|
|
|
|
} /* mvl_find_entry */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_Io *MVL_openRead(dvoid *opaque, const char *fnm, int *fileExists)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
PHYSFS_Io *retval = NULL;
|
|
|
|
MVLinfo *info = (MVLinfo *) opaque;
|
2003-03-30 20:59:54 +02:00
|
|
|
MVLfileinfo *finfo;
|
|
|
|
MVLentry *entry;
|
|
|
|
|
|
|
|
entry = mvl_find_entry(info, fnm);
|
|
|
|
*fileExists = (entry != NULL);
|
2010-08-30 09:01:57 +02:00
|
|
|
GOTO_IF_MACRO(entry == NULL, NULL, MVL_openRead_failed);
|
|
|
|
|
|
|
|
retval = (PHYSFS_Io *) allocator.Malloc(sizeof (PHYSFS_Io));
|
|
|
|
GOTO_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, MVL_openRead_failed);
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2005-03-14 12:49:30 +01:00
|
|
|
finfo = (MVLfileinfo *) allocator.Malloc(sizeof (MVLfileinfo));
|
2010-08-30 09:01:57 +02:00
|
|
|
GOTO_IF_MACRO(finfo == NULL, ERR_OUT_OF_MEMORY, MVL_openRead_failed);
|
|
|
|
|
|
|
|
finfo->io = info->io->duplicate(info->io);
|
|
|
|
GOTO_IF_MACRO(finfo->io == NULL, NULL, MVL_openRead_failed);
|
|
|
|
|
|
|
|
if (!finfo->io->seek(finfo->io, entry->startPos))
|
|
|
|
GOTO_MACRO(NULL, MVL_openRead_failed);
|
|
|
|
|
|
|
|
finfo->curPos = 0;
|
|
|
|
finfo->entry = entry;
|
|
|
|
|
|
|
|
memcpy(retval, &MVL_Io, sizeof (*retval));
|
|
|
|
retval->opaque = finfo;
|
|
|
|
return retval;
|
2003-03-30 20:59:54 +02:00
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
MVL_openRead_failed:
|
|
|
|
if (finfo != NULL)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
2010-08-30 09:01:57 +02:00
|
|
|
if (finfo->io != NULL)
|
|
|
|
finfo->io->destroy(finfo->io);
|
2005-03-14 12:49:30 +01:00
|
|
|
allocator.Free(finfo);
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* if */
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
if (retval != NULL)
|
|
|
|
allocator.Free(retval);
|
|
|
|
|
|
|
|
return NULL;
|
2003-03-30 20:59:54 +02:00
|
|
|
} /* MVL_openRead */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_Io *MVL_openWrite(dvoid *opaque, const char *name)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
BAIL_MACRO(ERR_NOT_SUPPORTED, NULL);
|
|
|
|
} /* MVL_openWrite */
|
|
|
|
|
|
|
|
|
2010-08-30 09:01:57 +02:00
|
|
|
static PHYSFS_Io *MVL_openAppend(dvoid *opaque, const char *name)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
BAIL_MACRO(ERR_NOT_SUPPORTED, NULL);
|
|
|
|
} /* MVL_openAppend */
|
|
|
|
|
|
|
|
|
2004-09-26 15:00:59 +02:00
|
|
|
static int MVL_remove(dvoid *opaque, const char *name)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
|
|
|
|
} /* MVL_remove */
|
|
|
|
|
|
|
|
|
2004-09-26 15:00:59 +02:00
|
|
|
static int MVL_mkdir(dvoid *opaque, const char *name)
|
2003-03-30 20:59:54 +02:00
|
|
|
{
|
|
|
|
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
|
|
|
|
} /* MVL_mkdir */
|
|
|
|
|
2004-09-29 08:18:04 +02:00
|
|
|
|
2010-08-22 06:37:25 +02:00
|
|
|
static int MVL_stat(dvoid *opaque, const char *filename, int *exists,
|
2010-02-15 20:02:36 +01:00
|
|
|
PHYSFS_Stat *stat)
|
|
|
|
{
|
|
|
|
const MVLinfo *info = (const MVLinfo *) opaque;
|
|
|
|
const MVLentry *entry = mvl_find_entry(info, filename);
|
|
|
|
|
|
|
|
*exists = (entry != 0);
|
|
|
|
if (!entry)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
stat->filesize = entry->size;
|
|
|
|
stat->filetype = PHYSFS_FILETYPE_REGULAR;
|
2010-08-25 07:28:28 +02:00
|
|
|
stat->modtime = -1;
|
|
|
|
stat->createtime = -1;
|
|
|
|
stat->accesstime = -1;
|
2010-02-15 20:02:36 +01:00
|
|
|
stat->readonly = 1;
|
|
|
|
|
2010-08-22 01:10:42 +02:00
|
|
|
return 1;
|
2010-02-15 20:02:36 +01:00
|
|
|
} /* MVL_stat */
|
|
|
|
|
|
|
|
|
2004-09-29 08:18:04 +02:00
|
|
|
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_MVL =
|
|
|
|
{
|
|
|
|
"MVL",
|
|
|
|
MVL_ARCHIVE_DESCRIPTION,
|
|
|
|
"Bradley Bell <btb@icculus.org>",
|
|
|
|
"http://icculus.org/physfs/",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const PHYSFS_Archiver __PHYSFS_Archiver_MVL =
|
|
|
|
{
|
|
|
|
&__PHYSFS_ArchiveInfo_MVL,
|
|
|
|
MVL_openArchive, /* openArchive() method */
|
|
|
|
MVL_enumerateFiles, /* enumerateFiles() method */
|
|
|
|
MVL_openRead, /* openRead() method */
|
|
|
|
MVL_openWrite, /* openWrite() method */
|
|
|
|
MVL_openAppend, /* openAppend() method */
|
|
|
|
MVL_remove, /* remove() method */
|
|
|
|
MVL_mkdir, /* mkdir() method */
|
|
|
|
MVL_dirClose, /* dirClose() method */
|
2010-08-30 09:01:57 +02:00
|
|
|
MVL_stat /* stat() method */
|
2004-09-29 08:18:04 +02:00
|
|
|
};
|
|
|
|
|
2003-03-30 20:59:54 +02:00
|
|
|
#endif /* defined PHYSFS_SUPPORTS_MVL */
|
|
|
|
|
|
|
|
/* end of mvl.c ... */
|
|
|
|
|