2002-08-31 07:43:34 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2002-2003 The ScummVM project
|
2002-08-31 07:43: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-09-08 01:08:12 +00:00
|
|
|
#ifndef COMMON_FILE_H
|
|
|
|
#define COMMON_FILE_H
|
|
|
|
|
2002-08-31 07:43:34 +00:00
|
|
|
#include "stdafx.h"
|
2003-08-01 12:21:04 +00:00
|
|
|
#include "common/scummsys.h"
|
2002-08-31 07:43:34 +00:00
|
|
|
|
|
|
|
class File {
|
|
|
|
private:
|
|
|
|
|
|
|
|
FILE * _handle;
|
2002-09-02 22:06:26 +00:00
|
|
|
bool _ioFailed;
|
2002-08-31 07:43:34 +00:00
|
|
|
byte _encbyte;
|
2002-12-24 02:02:53 +00:00
|
|
|
char *_name; // For debugging
|
2002-08-31 07:43:34 +00:00
|
|
|
|
2002-11-10 14:54:21 +00:00
|
|
|
FILE *fopenNoCase(const char *filename, const char *directory, const char *mode);
|
2002-09-15 19:28:34 +00:00
|
|
|
|
2002-08-31 07:43:34 +00:00
|
|
|
public:
|
2002-09-13 18:02:34 +00:00
|
|
|
enum {
|
|
|
|
kFileReadMode = 1,
|
|
|
|
kFileWriteMode = 2
|
|
|
|
};
|
2002-08-31 07:43:34 +00:00
|
|
|
|
|
|
|
File();
|
2003-06-21 20:21:40 +00:00
|
|
|
virtual ~File();
|
2002-09-15 19:28:34 +00:00
|
|
|
bool open(const char *filename, const char *directory, int mode = kFileReadMode, byte encbyte = 0);
|
2002-08-31 07:43:34 +00:00
|
|
|
void close();
|
2002-08-31 09:55:58 +00:00
|
|
|
bool isOpen();
|
2002-09-02 22:06:26 +00:00
|
|
|
bool ioFailed();
|
|
|
|
void clearIOFailed();
|
2002-08-31 07:43:34 +00:00
|
|
|
bool eof();
|
|
|
|
uint32 pos();
|
2002-09-13 18:02:34 +00:00
|
|
|
uint32 size();
|
2002-12-24 02:02:53 +00:00
|
|
|
const char *name() const { return _name; }
|
2003-06-21 20:21:40 +00:00
|
|
|
void seek(int32 offs, int whence = SEEK_SET);
|
2002-09-02 07:53:43 +00:00
|
|
|
uint32 read(void *ptr, uint32 size);
|
2002-08-31 09:55:58 +00:00
|
|
|
byte readByte();
|
2002-10-21 13:23:25 +00:00
|
|
|
uint16 readUint16LE();
|
|
|
|
uint32 readUint32LE();
|
|
|
|
uint16 readUint16BE();
|
|
|
|
uint32 readUint32BE();
|
2003-05-28 19:03:12 +00:00
|
|
|
uint32 write(const void *ptr, uint32 size);
|
2002-09-02 22:06:26 +00:00
|
|
|
void writeByte(byte value);
|
2002-10-21 13:23:25 +00:00
|
|
|
void writeUint16LE(uint16 value);
|
|
|
|
void writeUint32LE(uint32 value);
|
|
|
|
void writeUint16BE(uint16 value);
|
|
|
|
void writeUint32BE(uint32 value);
|
2002-08-31 07:43:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|