2007-05-30 21:56:52 +00: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.
|
2006-07-09 11:47:17 +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.
|
|
|
|
*
|
|
|
|
*/
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
#ifndef _GBAMPSAVE_H_
|
|
|
|
#define _GBAMPSAVE_H_
|
|
|
|
|
|
|
|
#include "system.h"
|
2007-12-28 07:37:04 +00:00
|
|
|
#include "saves/default/default-saves.h"
|
2007-10-13 15:40:11 +00:00
|
|
|
#include "ds-fs.h"
|
2006-07-09 11:47:17 +00:00
|
|
|
|
|
|
|
#define SAVE_BUFFER_SIZE 100000
|
|
|
|
|
2007-02-18 18:38:12 +00:00
|
|
|
class GBAMPSaveFile : public Common::InSaveFile, public Common::OutSaveFile {
|
2007-10-13 15:40:11 +00:00
|
|
|
DS::fileHandle* handle;
|
2006-07-09 11:47:17 +00:00
|
|
|
char buffer[SAVE_BUFFER_SIZE];
|
|
|
|
int bufferPos;
|
|
|
|
int saveSize;
|
|
|
|
int flushed;
|
|
|
|
|
|
|
|
public:
|
|
|
|
GBAMPSaveFile(char* name, bool saveOrLoad);
|
2007-06-30 23:03:03 +00:00
|
|
|
virtual ~GBAMPSaveFile();
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
virtual uint32 read(void *buf, uint32 size);
|
|
|
|
virtual uint32 write(const void *buf, uint32 size);
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
virtual bool eos() const;
|
|
|
|
virtual void skip(uint32 bytes);
|
|
|
|
|
|
|
|
virtual uint32 pos() const;
|
|
|
|
virtual uint32 size() const;
|
|
|
|
virtual void seek(int32 pos, int whence);
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
void flushSaveBuffer();
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
virtual bool isOpen() const {
|
2006-08-19 11:11:18 +00:00
|
|
|
return handle != 0;
|
2006-07-09 11:47:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-12-28 07:37:04 +00:00
|
|
|
class GBAMPSaveFileManager : public DefaultSaveFileManager {
|
2006-07-09 11:47:17 +00:00
|
|
|
public:
|
|
|
|
GBAMPSaveFileManager();
|
|
|
|
~GBAMPSaveFileManager();
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
// static GBAMPSaveFileManager* instance() { return instancePtr; }
|
|
|
|
|
2007-02-17 22:11:00 +00:00
|
|
|
GBAMPSaveFile *openSavefile(const char *filename, bool saveOrLoad);
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
virtual Common::OutSaveFile* openForSaving(const char* filename) { return openSavefile(filename, true); }
|
|
|
|
virtual Common::InSaveFile* openForLoading(const char* filename) { return openSavefile(filename, false); }
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2007-10-13 15:40:11 +00:00
|
|
|
virtual bool removeSavefile(const char *filename) { return false; } // TODO: Implement this
|
2007-12-30 13:05:38 +00:00
|
|
|
virtual Common::StringList listSavefiles(const char *pattern);
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
void deleteFile(char* name);
|
|
|
|
void listFiles();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|