ScummVM API documentation
disk.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef SKY_DISK_H
23 #define SKY_DISK_H
24 
25 
26 #include "common/scummsys.h"
27 #include "common/compression/rnc_deco.h"
28 
29 #define MAX_FILES_IN_LIST 60
30 
31 namespace Common {
32 class File;
33 }
34 
35 namespace Sky {
36 
37 class Disk {
38 public:
39  Disk();
40  ~Disk();
41 
42  uint8 *loadFile(uint16 fileNr);
43  uint16 *loadScriptFile(uint16 fileNr);
44  bool fileExists(uint16 fileNr);
45 
46  uint32 determineGameVersion();
47 
48  uint32 _lastLoadedFileSize;
49 
50  void fnMiniLoad(uint16 fileNum);
51  void fnCacheFast(uint16 *fList);
52  void fnCacheChip(uint16 *fList);
53  void fnCacheFiles();
54  void fnFlushBuffers();
55  uint32 *giveLoadedFilesList() { return _loadedFilesList; }
56  void refreshFilesList(uint32 *list);
57 
58 protected:
59  uint8 *getFileInfo(uint16 fileNr);
60  void dumpFile(uint16 fileNr);
61 
62  uint32 _dinnerTableEntries;
63  uint8 *_dinnerTableArea;
64  Common::File *_dataDiskHandle;
65  Common::RncDecoder _rncDecoder;
66 
67  uint16 _buildList[MAX_FILES_IN_LIST];
68  uint32 _loadedFilesList[MAX_FILES_IN_LIST];
69 };
70 
71 } // End of namespace Sky
72 
73 #endif
Definition: rnc_deco.h:29
Definition: disk.h:37
Definition: file.h:47
Definition: algorithm.h:29
Definition: autoroute.h:28