2002-03-25 08:51:34 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2001-2003 The ScummVM project
|
2002-03-25 08:51:34 +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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-03-25 08:46:24 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "scumm.h"
|
2002-12-22 21:58:16 +00:00
|
|
|
#include "intern.h"
|
2002-03-25 02:09:05 +00:00
|
|
|
|
2003-03-06 17:58:13 +00:00
|
|
|
void Scumm_v4::loadCharset(int no) {
|
2002-03-25 02:09:05 +00:00
|
|
|
uint32 size;
|
2002-04-20 04:09:02 +00:00
|
|
|
memset(_charsetData, 0, sizeof(_charsetData));
|
2002-04-04 23:02:02 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
checkRange(4, 0, no, "Loading illegal charset %d");
|
2002-12-22 21:58:16 +00:00
|
|
|
closeRoom();
|
2002-03-25 02:09:05 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
openRoom(900 + no);
|
2002-03-25 02:09:05 +00:00
|
|
|
|
2002-10-21 13:23:25 +00:00
|
|
|
size = _fileHandle.readUint32LE() + 11;
|
2002-03-25 02:09:05 +00:00
|
|
|
|
2002-09-10 07:34:27 +00:00
|
|
|
_fileHandle.read(createResource(6, no, size), size);
|
2002-12-22 21:58:16 +00:00
|
|
|
closeRoom();
|
2002-03-25 02:09:05 +00:00
|
|
|
}
|