2007-05-30 21:56:52 +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.
|
2002-03-25 08:51:34 +00:00
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:24 +00:00
|
|
|
*
|
2002-03-25 08:51:34 +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.
|
2014-02-18 01:34:24 +00:00
|
|
|
*
|
2002-03-25 08:51:34 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-03-25 08:51:34 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2009-03-20 16:33:58 +00:00
|
|
|
#include "scumm/scumm_v3.h"
|
2006-03-03 15:16:02 +00:00
|
|
|
#include "scumm/file.h"
|
2011-05-11 14:03:50 +00:00
|
|
|
#include "scumm/resource.h"
|
2005-04-10 12:59:17 +00:00
|
|
|
#include "scumm/util.h"
|
2002-03-25 01:20:05 +00:00
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
namespace Scumm {
|
2002-03-25 01:20:05 +00:00
|
|
|
|
2011-05-13 12:04:59 +00:00
|
|
|
extern const char *nameOfResType(ResType type);
|
2005-04-03 22:10:10 +00:00
|
|
|
|
2011-05-13 12:02:53 +00:00
|
|
|
int ScummEngine_v3old::readResTypeList(ResType type) {
|
|
|
|
uint num;
|
|
|
|
ResId idx;
|
2005-04-03 22:10:10 +00:00
|
|
|
|
2011-05-13 12:04:59 +00:00
|
|
|
debug(9, "readResTypeList(%s)", nameOfResType(type));
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
num = _fileHandle->readByte();
|
|
|
|
|
|
|
|
if (num >= 0xFF) {
|
2011-05-13 12:04:59 +00:00
|
|
|
error("Too many %ss (%d) in directory", nameOfResType(type), num);
|
2005-04-03 22:10:10 +00:00
|
|
|
}
|
|
|
|
|
2011-05-13 12:02:53 +00:00
|
|
|
if (type == rtRoom) {
|
|
|
|
for (idx = 0; idx < num; idx++)
|
2011-05-13 12:48:01 +00:00
|
|
|
_res->_types[type][idx]._roomno = idx;
|
2005-04-03 22:10:10 +00:00
|
|
|
_fileHandle->seek(num, SEEK_CUR);
|
|
|
|
} else {
|
2011-05-13 12:02:53 +00:00
|
|
|
for (idx = 0; idx < num; idx++)
|
2011-05-13 12:48:01 +00:00
|
|
|
_res->_types[type][idx]._roomno = _fileHandle->readByte();
|
2005-04-03 22:10:10 +00:00
|
|
|
}
|
2011-05-13 12:02:53 +00:00
|
|
|
for (idx = 0; idx < num; idx++) {
|
2011-05-13 12:48:01 +00:00
|
|
|
_res->_types[type][idx]._roomoffs = _fileHandle->readUint16LE();
|
|
|
|
if (_res->_types[type][idx]._roomoffs == 0xFFFF)
|
|
|
|
_res->_types[type][idx]._roomoffs = (uint32)RES_INVALID_OFFSET;
|
2005-04-03 22:10:10 +00:00
|
|
|
}
|
2011-04-05 11:44:50 +00:00
|
|
|
|
|
|
|
return num;
|
2005-04-03 22:10:10 +00:00
|
|
|
}
|
|
|
|
|
2005-04-03 15:06:08 +00:00
|
|
|
void ScummEngine_v3old::readIndexFile() {
|
|
|
|
int magic = 0;
|
|
|
|
debug(9, "readIndexFile()");
|
|
|
|
|
|
|
|
closeRoom();
|
|
|
|
openRoom(0);
|
|
|
|
|
|
|
|
magic = _fileHandle->readUint16LE();
|
|
|
|
if (magic != 0x0100)
|
2005-08-14 01:41:52 +00:00
|
|
|
error("The magic id doesn't match (0x%X)", magic);
|
2005-04-03 15:06:08 +00:00
|
|
|
|
|
|
|
_numGlobalObjects = _fileHandle->readUint16LE();
|
|
|
|
_fileHandle->seek(_numGlobalObjects * 4, SEEK_CUR);
|
|
|
|
_numRooms = _fileHandle->readByte();
|
|
|
|
_fileHandle->seek(_numRooms * 3, SEEK_CUR);
|
|
|
|
_numCostumes = _fileHandle->readByte();
|
|
|
|
_fileHandle->seek(_numCostumes * 3, SEEK_CUR);
|
|
|
|
_numScripts = _fileHandle->readByte();
|
|
|
|
_fileHandle->seek(_numScripts * 3, SEEK_CUR);
|
|
|
|
_numSounds = _fileHandle->readByte();
|
|
|
|
|
2009-07-29 21:39:00 +00:00
|
|
|
_fileHandle->clearErr();
|
2005-04-03 15:06:08 +00:00
|
|
|
_fileHandle->seek(0, SEEK_SET);
|
|
|
|
|
2005-04-03 23:53:34 +00:00
|
|
|
readMAXS(0);
|
2005-04-10 00:51:47 +00:00
|
|
|
allocateArrays();
|
2005-04-03 15:06:08 +00:00
|
|
|
|
|
|
|
_fileHandle->readUint16LE(); /* version magic number */
|
|
|
|
readGlobalObjects();
|
2007-02-24 19:29:40 +00:00
|
|
|
readResTypeList(rtRoom);
|
|
|
|
readResTypeList(rtCostume);
|
|
|
|
readResTypeList(rtScript);
|
|
|
|
readResTypeList(rtSound);
|
2005-04-03 15:06:08 +00:00
|
|
|
|
|
|
|
closeRoom();
|
2002-03-25 01:20:05 +00:00
|
|
|
}
|
2002-03-25 02:09:05 +00:00
|
|
|
|
2005-04-03 22:56:02 +00:00
|
|
|
void ScummEngine_v3::readRoomsOffsets() {
|
|
|
|
}
|
|
|
|
|
2003-10-02 22:42:03 +00:00
|
|
|
void ScummEngine_v3::loadCharset(int no) {
|
2002-04-11 17:19:16 +00:00
|
|
|
uint32 size;
|
2002-04-11 15:22:02 +00:00
|
|
|
memset(_charsetData, 0, sizeof(_charsetData));
|
2002-04-04 23:02:02 +00:00
|
|
|
|
2006-09-16 13:38:43 +00:00
|
|
|
assertRange(0, no, 2, "charset");
|
2002-12-22 21:58:16 +00:00
|
|
|
closeRoom();
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
Common::File file;
|
2003-04-07 06:34:42 +00:00
|
|
|
char buf[20];
|
|
|
|
|
2003-04-29 10:26:35 +00:00
|
|
|
sprintf(buf, "%02d.LFL", 99 - no);
|
2004-06-27 21:52:25 +00:00
|
|
|
file.open(buf);
|
2005-04-04 00:12:41 +00:00
|
|
|
|
2003-04-07 06:34:42 +00:00
|
|
|
if (file.isOpen() == false) {
|
|
|
|
error("loadCharset(%d): Missing file charset: %s", no, buf);
|
|
|
|
}
|
2005-04-04 00:12:41 +00:00
|
|
|
|
2003-04-07 06:34:42 +00:00
|
|
|
size = file.readUint16LE();
|
2006-09-17 20:36:48 +00:00
|
|
|
file.read(_res->createResource(rtCharset, no, size), size);
|
2002-03-25 02:09:05 +00:00
|
|
|
}
|
2003-03-07 21:38:46 +00:00
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
} // End of namespace Scumm
|