2010-01-11 20:41:07 +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.
|
|
|
|
|
|
|
|
* 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-01-22 02:31:30 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Macintosh resource fork manager used in engines:
|
|
|
|
* - groovie
|
|
|
|
* - mohawk
|
|
|
|
* - sci
|
|
|
|
* - scumm
|
|
|
|
*/
|
|
|
|
|
2010-01-11 20:41:07 +00:00
|
|
|
#include "common/array.h"
|
|
|
|
#include "common/file.h"
|
|
|
|
|
|
|
|
#ifndef COMMON_MACRESMAN_H
|
|
|
|
#define COMMON_MACRESMAN_H
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
2010-05-10 18:23:54 +00:00
|
|
|
class FSNode;
|
|
|
|
|
2010-11-07 17:17:21 +00:00
|
|
|
typedef Array<uint16> MacResIDArray;
|
|
|
|
typedef Array<uint32> MacResTagArray;
|
2010-01-11 20:41:07 +00:00
|
|
|
|
|
|
|
/**
|
2011-01-22 02:31:30 +00:00
|
|
|
* Class for handling Mac data and resource forks.
|
|
|
|
* It can read from raw, MacBinary, and AppleDouble formats.
|
2010-01-11 20:41:07 +00:00
|
|
|
*/
|
|
|
|
class MacResManager {
|
|
|
|
|
|
|
|
public:
|
2010-05-09 18:27:56 +00:00
|
|
|
MacResManager();
|
2010-01-11 20:41:07 +00:00
|
|
|
~MacResManager();
|
2010-05-20 13:46:18 +00:00
|
|
|
|
2011-01-22 02:31:30 +00:00
|
|
|
/**
|
|
|
|
* Open a Mac data/resource fork pair.
|
|
|
|
* @param filename The base file name of the file
|
|
|
|
* @note This will check for the raw resource fork, MacBinary, and AppleDouble formats.
|
|
|
|
* @return True on success
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
bool open(String filename);
|
2011-01-22 02:31:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a Mac data/resource fork pair.
|
|
|
|
* @param path The path that holds the forks
|
|
|
|
* @param filename The base file name of the file
|
|
|
|
* @note This will check for the raw resource fork, MacBinary, and AppleDouble formats.
|
|
|
|
* @return True on success
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
bool open(FSNode path, String filename);
|
2011-01-22 02:31:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the Mac data/resource fork pair.
|
|
|
|
*/
|
2010-05-09 18:27:56 +00:00
|
|
|
void close();
|
|
|
|
|
2011-01-22 02:31:30 +00:00
|
|
|
/**
|
|
|
|
* Query whether or not we have a data fork present.
|
|
|
|
* @return True if the data fork is present
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
bool hasDataFork() const;
|
2011-01-22 02:31:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query whether or not we have a data fork present.
|
|
|
|
* @return True if the resource fork is present
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
bool hasResFork() const;
|
2010-01-11 20:41:07 +00:00
|
|
|
|
2011-01-22 02:31:30 +00:00
|
|
|
/**
|
|
|
|
* Check if the given stream is in the MacBinary format.
|
|
|
|
* @param stream The stream we're checking
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
static bool isMacBinary(SeekableReadStream &stream);
|
2010-05-18 10:39:08 +00:00
|
|
|
|
2010-01-11 20:41:07 +00:00
|
|
|
/**
|
2011-01-22 02:31:30 +00:00
|
|
|
* Read resource from the MacBinary file
|
2010-09-17 03:55:41 +00:00
|
|
|
* @param typeID FourCC of the type
|
2010-01-11 20:41:07 +00:00
|
|
|
* @param resID Resource ID to fetch
|
2010-05-09 18:27:56 +00:00
|
|
|
* @return Pointer to a SeekableReadStream with loaded resource
|
2010-01-11 20:41:07 +00:00
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
SeekableReadStream *getResource(uint32 typeID, uint16 resID);
|
2010-01-11 20:41:07 +00:00
|
|
|
|
2010-05-11 15:38:21 +00:00
|
|
|
/**
|
2011-01-22 02:31:30 +00:00
|
|
|
* Read resource from the MacBinary file
|
2010-09-17 03:55:41 +00:00
|
|
|
* @note This will take the first resource that matches this name, regardless of type
|
2011-01-22 02:31:30 +00:00
|
|
|
* @param filename file name of the resource
|
2010-05-11 15:38:21 +00:00
|
|
|
* @return Pointer to a SeekableReadStream with loaded resource
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
SeekableReadStream *getResource(const String &filename);
|
2010-05-11 15:38:21 +00:00
|
|
|
|
2010-09-17 03:55:41 +00:00
|
|
|
/**
|
2011-01-22 02:31:30 +00:00
|
|
|
* Read resource from the MacBinary file
|
2010-09-17 03:55:41 +00:00
|
|
|
* @param typeID FourCC of the type
|
2011-01-22 02:31:30 +00:00
|
|
|
* @param filename file name of the resource
|
2010-09-17 03:55:41 +00:00
|
|
|
* @return Pointer to a SeekableReadStream with loaded resource
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
SeekableReadStream *getResource(uint32 typeID, const String &filename);
|
2010-09-17 03:55:41 +00:00
|
|
|
|
2011-01-22 02:31:30 +00:00
|
|
|
/**
|
|
|
|
* Retrieve the data fork
|
|
|
|
* @return The stream if present, 0 otherwise
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
SeekableReadStream *getDataFork();
|
2011-01-22 02:31:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name of a given resource
|
|
|
|
* @param typeID FourCC of the type
|
|
|
|
* @param resID Resource ID to fetch
|
|
|
|
* @return The name of a given resource and an empty string if not present
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
String getResName(uint32 typeID, uint16 resID) const;
|
2011-01-22 02:31:30 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-04 15:27:56 +00:00
|
|
|
* Get the size of the data portion of the resource fork
|
|
|
|
* @return The size of the data portion of the resource fork
|
2011-01-22 02:31:30 +00:00
|
|
|
*/
|
2011-02-04 15:27:56 +00:00
|
|
|
uint32 getResForkDataSize() const;
|
2011-01-22 02:31:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate the MD5 checksum of the resource fork
|
|
|
|
* @param length The maximum length to compute for
|
|
|
|
* @return The MD5 checksum of the resource fork
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
String computeResForkMD5AsString(uint32 length = 0) const;
|
2010-05-18 10:39:08 +00:00
|
|
|
|
2011-01-22 02:31:30 +00:00
|
|
|
/**
|
|
|
|
* Get the base file name of the data/resource fork pair
|
|
|
|
* @return The base file name of the data/resource fork pair
|
|
|
|
*/
|
2010-11-07 17:17:21 +00:00
|
|
|
String getBaseFileName() const { return _baseFileName; }
|
2010-05-20 13:46:18 +00:00
|
|
|
|
2010-01-11 20:41:07 +00:00
|
|
|
/**
|
2010-05-09 18:27:56 +00:00
|
|
|
* Convert cursor from crsr format to format suitable for feeding to CursorMan
|
2011-03-07 00:57:18 +00:00
|
|
|
* @param data Pointer to the cursor datax
|
2010-01-11 20:41:07 +00:00
|
|
|
* @param cursor Pointer to memory where result cursor will be stored. The memory
|
|
|
|
* block will be malloc()'ed
|
|
|
|
* @param w Pointer to int where the cursor width will be stored
|
|
|
|
* @param h Pointer to int where the cursor height will be stored
|
2011-03-07 00:57:18 +00:00
|
|
|
* @param hotspotX Storage for cursor hotspot X coordinate
|
|
|
|
* @param hotspotY Storage for cursor hotspot Y coordinate
|
2010-01-11 20:41:07 +00:00
|
|
|
* @param keycolor Pointer to int where the transpared color value will be stored
|
|
|
|
* @param colored If set to true then colored cursor will be returned (if any).
|
|
|
|
* b/w version will be used otherwise
|
|
|
|
* @param palette Pointer to memory where the cursor palette will be stored.
|
|
|
|
* The memory will be malloc()'ed
|
|
|
|
* @param palSize Pointer to integer where the palette size will be stored.
|
|
|
|
*/
|
2011-03-07 00:57:18 +00:00
|
|
|
static void convertCrsrCursor(SeekableReadStream *data, byte **cursor, int &w, int &h, int &hotspotX,
|
|
|
|
int &hotspotY, int &keycolor, bool colored, byte **palette, int &palSize);
|
2010-01-11 20:41:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return list of resource IDs with specified type ID
|
|
|
|
*/
|
2010-05-09 18:27:56 +00:00
|
|
|
MacResIDArray getResIDArray(uint32 typeID);
|
2010-01-11 20:41:07 +00:00
|
|
|
|
2010-05-10 18:23:54 +00:00
|
|
|
/**
|
|
|
|
* Return list of resource tags
|
|
|
|
*/
|
|
|
|
MacResTagArray getResTagArray();
|
|
|
|
|
2010-01-11 20:41:07 +00:00
|
|
|
private:
|
2010-11-07 17:17:21 +00:00
|
|
|
SeekableReadStream *_stream;
|
|
|
|
String _baseFileName;
|
2010-05-09 18:27:56 +00:00
|
|
|
|
2010-11-07 17:17:21 +00:00
|
|
|
bool load(SeekableReadStream &stream);
|
2010-05-09 18:27:56 +00:00
|
|
|
|
2010-11-07 17:17:21 +00:00
|
|
|
bool loadFromRawFork(SeekableReadStream &stream);
|
|
|
|
bool loadFromMacBinary(SeekableReadStream &stream);
|
|
|
|
bool loadFromAppleDouble(SeekableReadStream &stream);
|
2010-01-11 20:41:07 +00:00
|
|
|
|
2010-05-09 18:27:56 +00:00
|
|
|
enum {
|
|
|
|
kResForkNone = 0,
|
|
|
|
kResForkRaw,
|
|
|
|
kResForkMacBinary,
|
|
|
|
kResForkAppleDouble
|
|
|
|
} _mode;
|
|
|
|
|
|
|
|
void readMap();
|
2010-05-20 13:46:18 +00:00
|
|
|
|
2010-01-11 20:41:07 +00:00
|
|
|
struct ResMap {
|
2010-05-09 18:27:56 +00:00
|
|
|
uint16 resAttr;
|
|
|
|
uint16 typeOffset;
|
|
|
|
uint16 nameOffset;
|
|
|
|
uint16 numTypes;
|
2010-01-11 20:41:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ResType {
|
2010-05-09 18:27:56 +00:00
|
|
|
uint32 id;
|
|
|
|
uint16 items;
|
|
|
|
uint16 offset;
|
2010-01-11 20:41:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Resource {
|
2010-05-09 18:27:56 +00:00
|
|
|
uint16 id;
|
2010-01-11 20:41:07 +00:00
|
|
|
int16 nameOffset;
|
2010-05-09 18:27:56 +00:00
|
|
|
byte attr;
|
|
|
|
uint32 dataOffset;
|
|
|
|
char *name;
|
2010-01-11 20:41:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef Resource *ResPtr;
|
2010-05-20 13:46:18 +00:00
|
|
|
|
2010-05-09 18:27:56 +00:00
|
|
|
int32 _resForkOffset;
|
2010-05-10 18:23:54 +00:00
|
|
|
uint32 _resForkSize;
|
2010-01-11 20:41:07 +00:00
|
|
|
|
2010-05-09 18:27:56 +00:00
|
|
|
uint32 _dataOffset;
|
|
|
|
uint32 _dataLength;
|
|
|
|
uint32 _mapOffset;
|
|
|
|
uint32 _mapLength;
|
2010-01-11 20:41:07 +00:00
|
|
|
ResMap _resMap;
|
|
|
|
ResType *_resTypes;
|
|
|
|
ResPtr *_resLists;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Common
|
|
|
|
|
|
|
|
#endif
|