2003-04-07 20:43:47 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2003-2006 The ScummVM project
|
2003-04-07 20:43:47 +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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-04-07 20:43:47 +00:00
|
|
|
*
|
2006-02-11 10:03:24 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-04-07 20:43:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-02-20 17:52:55 +00:00
|
|
|
#ifndef SKY_DISK_H
|
|
|
|
#define SKY_DISK_H
|
2003-04-07 20:43:47 +00:00
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2003-10-05 20:21:20 +00:00
|
|
|
#include "common/scummsys.h"
|
2003-10-10 13:55:08 +00:00
|
|
|
#include "common/str.h"
|
2005-02-11 11:14:33 +00:00
|
|
|
#include "sky/rnc_deco.h"
|
2003-10-05 20:21:20 +00:00
|
|
|
|
2005-12-06 16:50:39 +00:00
|
|
|
#define MAX_FILES_IN_LIST 60
|
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
namespace Common {
|
|
|
|
class File;
|
|
|
|
}
|
2003-04-07 20:43:47 +00:00
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
namespace Sky {
|
|
|
|
|
2004-01-03 15:57:57 +00:00
|
|
|
class Disk {
|
2003-04-07 20:43:47 +00:00
|
|
|
public:
|
2006-05-01 22:27:56 +00:00
|
|
|
Disk();
|
2004-01-03 15:57:57 +00:00
|
|
|
~Disk(void);
|
2003-04-07 20:43:47 +00:00
|
|
|
|
2004-11-11 10:14:35 +00:00
|
|
|
uint8 *loadFile(uint16 fileNr);
|
2005-12-06 16:50:39 +00:00
|
|
|
uint16 *loadScriptFile(uint16 fileNr);
|
2003-07-12 05:38:04 +00:00
|
|
|
bool fileExists(uint16 fileNr);
|
|
|
|
|
2003-04-07 20:43:47 +00:00
|
|
|
uint32 determineGameVersion();
|
|
|
|
|
|
|
|
uint32 _lastLoadedFileSize;
|
2003-05-28 20:55:25 +00:00
|
|
|
|
2003-06-02 06:42:42 +00:00
|
|
|
void fnMiniLoad(uint16 fileNum);
|
2004-12-15 06:48:08 +00:00
|
|
|
void fnCacheFast(uint16 *fList);
|
|
|
|
void fnCacheChip(uint16 *fList);
|
2003-05-28 20:55:25 +00:00
|
|
|
void fnCacheFiles(void);
|
|
|
|
void fnFlushBuffers(void);
|
2003-06-27 02:54:05 +00:00
|
|
|
uint32 *giveLoadedFilesList(void) { return _loadedFilesList; };
|
|
|
|
void refreshFilesList(uint32 *list);
|
2003-05-28 20:55:25 +00:00
|
|
|
|
2003-04-07 20:43:47 +00:00
|
|
|
protected:
|
|
|
|
uint8 *getFileInfo(uint16 fileNr);
|
|
|
|
void dumpFile(uint16 fileNr);
|
|
|
|
|
|
|
|
uint32 _dinnerTableEntries;
|
2004-11-11 10:14:35 +00:00
|
|
|
uint8 *_dinnerTableArea;
|
2005-05-10 22:56:25 +00:00
|
|
|
Common::File *_dataDiskHandle;
|
2005-02-11 11:14:33 +00:00
|
|
|
RncDecoder _rncDecoder;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-04-07 20:43:47 +00:00
|
|
|
uint16 _buildList[MAX_FILES_IN_LIST];
|
2003-05-28 20:55:25 +00:00
|
|
|
uint32 _loadedFilesList[MAX_FILES_IN_LIST];
|
2003-04-07 20:43:47 +00:00
|
|
|
};
|
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
} // End of namespace Sky
|
|
|
|
|
2003-04-07 20:43:47 +00:00
|
|
|
#endif
|