scummvm/engines/sky/disk.h

76 lines
1.8 KiB
C
Raw Normal View History

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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2003-04-07 20:43:47 +00:00
*
* $URL$
* $Id$
2003-04-07 20:43:47 +00:00
*
*/
#ifndef SKY_DISK_H
#define SKY_DISK_H
2003-04-07 20:43:47 +00:00
#include "common/stdafx.h"
#include "common/scummsys.h"
2003-10-10 13:55:08 +00:00
#include "common/str.h"
#include "sky/rnc_deco.h"
2005-12-06 16:50:39 +00:00
#define MAX_FILES_IN_LIST 60
namespace Common {
class File;
}
2003-04-07 20:43:47 +00:00
namespace Sky {
class Disk {
2003-04-07 20:43:47 +00:00
public:
Disk();
~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);
bool fileExists(uint16 fileNr);
2003-04-07 20:43:47 +00:00
uint32 determineGameVersion();
uint32 _lastLoadedFileSize;
void fnMiniLoad(uint16 fileNum);
void fnCacheFast(uint16 *fList);
void fnCacheChip(uint16 *fList);
void fnCacheFiles(void);
void fnFlushBuffers(void);
uint32 *giveLoadedFilesList(void) { return _loadedFilesList; };
void refreshFilesList(uint32 *list);
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;
Common::File *_dataDiskHandle;
RncDecoder _rncDecoder;
2003-04-07 20:43:47 +00:00
uint16 _buildList[MAX_FILES_IN_LIST];
uint32 _loadedFilesList[MAX_FILES_IN_LIST];
2003-04-07 20:43:47 +00:00
};
} // End of namespace Sky
2003-04-07 20:43:47 +00:00
#endif