scummvm/engines/sherlock/resources.h

177 lines
5.2 KiB
C
Raw Normal View History

2015-03-15 20:52:55 +00:00
/* 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 2
* of the License, or (at your option) any later version.
*
2015-03-15 20:52:55 +00:00
* 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.
*
2015-03-15 20:52:55 +00:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef SHERLOCK_RESOURCES_H
#define SHERLOCK_RESOURCES_H
#include "common/array.h"
#include "common/file.h"
#include "common/hashmap.h"
#include "common/hash-str.h"
#include "common/rect.h"
2015-03-15 20:52:55 +00:00
#include "common/str.h"
#include "common/str-array.h"
2015-03-15 20:52:55 +00:00
#include "common/stream.h"
#include "graphics/surface.h"
2015-03-15 20:52:55 +00:00
namespace Sherlock {
typedef Common::Array<byte> CacheEntry;
typedef Common::HashMap<Common::String, CacheEntry, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> CacheHash;
struct LibraryEntry {
uint32 _offset, _size;
int _index;
LibraryEntry() : _index(0), _offset(0), _size(0) {}
2015-05-07 17:33:44 +00:00
LibraryEntry(int index, uint32 offset, uint32 size) :
2015-03-15 20:52:55 +00:00
_index(index), _offset(offset), _size(size) {}
};
typedef Common::HashMap<Common::String, LibraryEntry, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> LibraryIndex;
typedef Common::HashMap<Common::String, LibraryIndex, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> LibraryIndexes;
class SherlockEngine;
class Cache {
private:
SherlockEngine *_vm;
2015-03-15 20:52:55 +00:00
CacheHash _resources;
public:
Cache(SherlockEngine *_vm);
2015-03-15 20:52:55 +00:00
/**
* Returns true if a given file is currently being cached
*/
2015-03-15 20:52:55 +00:00
bool isCached(const Common::String &filename) const;
/**
* Loads a file into the cache if it's not already present, and returns it.
* If the file is LZW compressed, automatically decompresses it and loads
* the uncompressed version into memory
*/
2015-03-15 20:52:55 +00:00
void load(const Common::String &name);
/**
* Load a cache entry based on a passed stream
*/
void load(const Common::String &name, Common::SeekableReadStream &stream);
2015-03-15 20:52:55 +00:00
/**
* Get a file from the cache
*/
2015-03-15 20:52:55 +00:00
Common::SeekableReadStream *get(const Common::String &filename) const;
};
class Resources {
private:
SherlockEngine *_vm;
2015-03-15 20:52:55 +00:00
Cache _cache;
LibraryIndexes _indexes;
int _resourceIndex;
/**
2015-08-29 19:30:55 +00:00
* Reads in the index from a library file, and caches its index for later use
*/
2015-05-23 02:31:21 +00:00
void loadLibraryIndex(const Common::String &libFilename, Common::SeekableReadStream *stream, bool isNewStyle);
2015-03-15 20:52:55 +00:00
public:
Resources(SherlockEngine *vm);
2015-03-15 20:52:55 +00:00
/**
* Adds the specified file to the cache. If it's a library file, takes care of
2015-08-29 19:30:55 +00:00
* loading its index for future use
*/
2015-03-15 20:52:55 +00:00
void addToCache(const Common::String &filename);
/**
* Adds a resource from a library file to the cache
*/
void addToCache(const Common::String &filename, const Common::String &libFilename);
/**
* Adds a given stream to the cache under the given name
*/
void addToCache(const Common::String &filename, Common::SeekableReadStream &stream);
bool isInCache(const Common::String &filename) const { return _cache.isCached(filename); }
2015-03-15 20:52:55 +00:00
/**
2015-08-29 19:30:55 +00:00
* Checks the passed stream, and if is compressed, deletes it and replaces it with its uncompressed data
*/
void decompressIfNecessary(Common::SeekableReadStream *&stream);
/**
* Returns a stream for a given file
*/
2015-03-15 20:52:55 +00:00
Common::SeekableReadStream *load(const Common::String &filename);
/**
* Loads a specific resource from a given library file
*/
Common::SeekableReadStream *load(const Common::String &filename, const Common::String &libraryFile, bool suppressErrors = false);
2015-03-15 20:52:55 +00:00
/**
* Returns true if the given file exists on disk or in the cache
*/
bool exists(const Common::String &filename) const;
/**
2015-08-29 19:30:55 +00:00
* Returns the index of the last loaded resource in its given library file.
* This will be used primarily when loading talk files, so the engine can
* update the given conversation number in the journal
*/
int resourceIndex() const;
/**
* Produces a list of all resource names within a file. Used by the debugger.
*/
void getResourceNames(const Common::String &libraryFile, Common::StringArray &names);
/**
2015-05-23 02:31:21 +00:00
* Decompresses LZW compressed data
*/
Common::SeekableReadStream *decompress(Common::SeekableReadStream &source);
2015-05-23 02:31:21 +00:00
/**
* Decompresses LZW compressed data
*/
Common::SeekableReadStream *decompress(Common::SeekableReadStream &source, uint32 outSize);
2015-05-23 02:31:21 +00:00
/**
* Decompresses LZW compressed data
*/
void decompress(Common::SeekableReadStream &source, byte *buffer, uint32 outSize);
2015-05-23 02:31:21 +00:00
/**
* Decompresses LZW compressed data
*/
static Common::SeekableReadStream *decompressLZ(Common::SeekableReadStream &source, uint32 outSize);
2015-05-23 02:31:21 +00:00
/**
2015-05-23 02:31:21 +00:00
* Decompresses LZW compressed data
*/
2015-05-23 02:31:21 +00:00
static void decompressLZ(Common::SeekableReadStream &source, byte *outBuffer, int32 outSize, int32 inSize);
2015-03-15 20:52:55 +00:00
};
} // End of namespace Sherlock
#endif