mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-07 10:21:31 +00:00
175 lines
4.5 KiB
C++
175 lines
4.5 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
|
*
|
|
* ScummVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
* file distributed with this source distribution.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* aint32 with this program; if not, write to the Free Software
|
|
*
|
|
*
|
|
* Based on the original sources
|
|
* Faery Tale II -- The Halls of the Dead
|
|
* (c) 1993-1996 The Wyrmkeep Entertainment Co.
|
|
*/
|
|
|
|
#ifndef SAGA2_HRESMGR_H
|
|
#define SAGA2_HRESMGR_H
|
|
|
|
#include "common/file.h"
|
|
|
|
namespace Saga2 {
|
|
|
|
|
|
#define USE_MEMORY_MAPPED_FILES 0
|
|
|
|
/* ===================================================================== *
|
|
Constants and common types
|
|
* ===================================================================== */
|
|
|
|
typedef uint32 hResID;
|
|
typedef Common::HashMap<int16, byte*> DataMap;
|
|
|
|
#define BAD_ID ((hResID)0xFFFFFFFFL)
|
|
#define NATURAL_SIZE ((hResID)0xFFFFFFFFL)
|
|
|
|
struct hResEntry;
|
|
class hResContext;
|
|
class hResource;
|
|
|
|
/* ===================================================================== *
|
|
hResEntry struct
|
|
* ===================================================================== */
|
|
|
|
struct hResEntry {
|
|
hResID id; // id of this entry or BAD_ID
|
|
uint32 offset; // offset in file
|
|
uint32 size; // size in file
|
|
public:
|
|
|
|
hResEntry() {
|
|
id = BAD_ID;
|
|
size = 0;
|
|
offset = 0;
|
|
}
|
|
|
|
void use() {
|
|
size += 0x01000000L;
|
|
}
|
|
void abandon() {
|
|
size -= 0x01000000L;
|
|
}
|
|
uint8 useCount() {
|
|
return size >> 24;
|
|
}
|
|
bool isUsed() {
|
|
return ((size & 0xFF000000L) != 0L);
|
|
}
|
|
|
|
bool isExternal() {
|
|
return ((offset & (1L << 31)) != 0L);
|
|
}
|
|
|
|
uint32 resOffset() {
|
|
return (offset & 0x0FFFFFFFL);
|
|
}
|
|
uint32 resSize() {
|
|
return (size & 0x00FFFFFF);
|
|
}
|
|
};
|
|
|
|
|
|
|
|
/* ===================================================================== *
|
|
Resource Context
|
|
* ===================================================================== */
|
|
|
|
|
|
class hResContext {
|
|
|
|
protected:
|
|
uint16 _numEntries;
|
|
hResource *_res;
|
|
hResContext *_parent;
|
|
hResEntry *_base;
|
|
DataMap _indexData; // allocated array of handles
|
|
Common::File _file;
|
|
Common::File *_handle;
|
|
uint32 _bytecount;
|
|
uint32 _bytepos;
|
|
|
|
hResEntry *findEntry(hResID id);
|
|
|
|
public:
|
|
bool _valid;
|
|
Common::String _filename;
|
|
|
|
hResContext();
|
|
hResContext(hResContext *sire, hResID id, const char []);
|
|
virtual ~hResContext();
|
|
|
|
uint32 getResID() {
|
|
return _base->id;
|
|
}
|
|
|
|
uint32 size(hResID id);
|
|
uint32 count();
|
|
uint32 count(hResID id);
|
|
bool seek(hResID id);
|
|
void rest();
|
|
uint32 readbytes(void *buffer, uint32 size);
|
|
bool eor();
|
|
inline size_t bytesleft() {
|
|
return _bytecount;
|
|
}
|
|
|
|
bool read(void *buffer, uint32 size);
|
|
bool skip(uint32 amount);
|
|
bool get(hResID id, void *buffer, uint32 size);
|
|
uint32 getSize(hResID id, const char desc[]);
|
|
byte *loadResource(hResID id, const char desc[], Common::String filename = "");
|
|
byte *loadIndexResource(int16 index, const char desc[], Common::String filename = "");
|
|
void releaseIndexData();
|
|
Common::File *resFileHandle() {
|
|
return _handle;
|
|
}
|
|
};
|
|
|
|
/* ===================================================================== *
|
|
Resource file
|
|
* ===================================================================== */
|
|
|
|
class hResource : public hResContext {
|
|
|
|
friend class hResContext;
|
|
|
|
uint32 _firstGroupOffset;
|
|
hResEntry *_table;
|
|
|
|
public:
|
|
hResource(const char *resname);
|
|
virtual ~hResource();
|
|
|
|
hResContext *newContext(hResID id, const char []);
|
|
void disposeContext(hResContext *con);
|
|
void readEntry(hResEntry &element);
|
|
void readResource(hResEntry &element);
|
|
};
|
|
|
|
#define HRES_ID MKTAG('H','R','E','S')
|
|
|
|
|
|
} // end of namespace Saga2
|
|
|
|
#endif
|