2012-09-08 10:08:12 +10: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.
|
|
|
|
*
|
|
|
|
* 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.
|
2014-02-18 02:34:21 +01:00
|
|
|
*
|
2012-09-08 10:08:12 +10: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 02:34:21 +01:00
|
|
|
*
|
2012-09-08 10:08:12 +10:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HOPKINS_FILES_H
|
|
|
|
#define HOPKINS_FILES_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/hash-str.h"
|
|
|
|
#include "common/str.h"
|
|
|
|
#include "common/stream.h"
|
|
|
|
|
|
|
|
namespace Hopkins {
|
|
|
|
|
2012-10-06 23:21:10 +10:00
|
|
|
class HopkinsEngine;
|
|
|
|
|
2013-03-24 15:36:32 +01:00
|
|
|
// RES_ANI = 4 has been removed because it's not used
|
2013-04-05 08:17:26 +02:00
|
|
|
enum CatMode { RES_INI = 1, RES_REP = 2, RES_LIN = 3, RES_PER = 5,
|
2013-03-24 15:36:32 +01:00
|
|
|
RES_PIC = 6, RES_SAN = 7, RES_SLI = 8, RES_VOI = 9 };
|
2013-02-27 00:15:54 +01:00
|
|
|
|
2012-09-08 10:08:12 +10:00
|
|
|
class FileManager {
|
|
|
|
public:
|
2013-03-24 22:56:06 +01:00
|
|
|
uint32 _catalogPos;
|
|
|
|
uint32 _catalogSize;
|
|
|
|
|
2012-10-06 23:21:10 +10:00
|
|
|
HopkinsEngine *_vm;
|
2013-01-04 21:45:52 +01:00
|
|
|
|
2013-03-19 21:57:28 +01:00
|
|
|
FileManager(HopkinsEngine *vm);
|
2012-10-06 23:21:10 +10:00
|
|
|
|
2013-01-07 23:56:39 +01:00
|
|
|
bool fileExists(const Common::String &file);
|
2012-12-09 20:22:12 +01:00
|
|
|
byte *loadFile(const Common::String &file);
|
|
|
|
int readStream(Common::ReadStream &stream, void *buf, size_t nbytes);
|
|
|
|
void initCensorship();
|
2013-04-03 23:57:38 +02:00
|
|
|
byte *searchCat(const Common::String &file, CatMode mode, bool &fileFoundFl);
|
2012-12-09 20:22:12 +01:00
|
|
|
uint32 fileSize(const Common::String &filename);
|
2012-09-08 10:08:12 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Hopkins
|
|
|
|
|
|
|
|
#endif /* HOPKINS_GLOBALS_H */
|