2013-02-16 18:28:30 +00:00
|
|
|
// This file is part of libZelda.
|
|
|
|
//
|
|
|
|
// libZelda 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// libZelda 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 libZelda. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
|
|
#ifndef __ALTTP_FILE_WRITER_HPP__
|
|
|
|
#define __ALTTP_FILE_WRITER_HPP__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <Types.hpp>
|
|
|
|
#include <BinaryWriter.hpp>
|
|
|
|
#include "ALTTPQuest.hpp"
|
|
|
|
|
2013-07-21 03:57:20 +00:00
|
|
|
namespace zelda
|
|
|
|
{
|
2013-02-16 18:28:30 +00:00
|
|
|
class ALTTPFile;
|
|
|
|
|
2013-07-21 07:49:07 +00:00
|
|
|
namespace io
|
|
|
|
{
|
2013-07-21 03:57:20 +00:00
|
|
|
/*! \class ALTTPFileWriter
|
|
|
|
* \brief A Link to the Past save data writer class
|
|
|
|
*
|
|
|
|
* A Class for writing binary data to an ALTTP Save File,
|
|
|
|
* all work is done using a memory buffer, and not written directly to the disk.
|
|
|
|
* \sa BinaryReader
|
|
|
|
*/
|
2013-07-22 03:06:54 +00:00
|
|
|
class ALTTPFileWriter : protected BinaryWriter
|
2013-02-16 18:28:30 +00:00
|
|
|
{
|
2013-07-21 07:49:07 +00:00
|
|
|
BINARYWRITER_BASE
|
|
|
|
|
2013-02-16 18:28:30 +00:00
|
|
|
public:
|
2013-07-21 03:57:20 +00:00
|
|
|
/*! \brief This constructor takes an existing buffer to write to.
|
|
|
|
*
|
|
|
|
* \param data The existing buffer
|
|
|
|
* \param length The length of the existing buffer
|
|
|
|
*/
|
2013-02-16 18:28:30 +00:00
|
|
|
ALTTPFileWriter(Uint8*, Uint64);
|
2013-07-21 03:57:20 +00:00
|
|
|
|
|
|
|
/*! \brief This constructor creates an instance from a file on disk.
|
|
|
|
*
|
|
|
|
* \param filename The file to create the stream from
|
|
|
|
*/
|
2013-02-16 18:28:30 +00:00
|
|
|
ALTTPFileWriter(const std::string&);
|
|
|
|
|
2013-07-21 03:57:20 +00:00
|
|
|
/*! \brief Writes the given SRAM data to a file on disk
|
|
|
|
*
|
|
|
|
* \param file SRAM data to right
|
|
|
|
*/
|
2013-02-16 18:28:30 +00:00
|
|
|
void writeFile(ALTTPFile* file);
|
2013-07-21 03:57:20 +00:00
|
|
|
|
2013-02-16 18:28:30 +00:00
|
|
|
private:
|
|
|
|
void writeRoomFlags(ALTTPRoomFlags*);
|
|
|
|
void writeOverworldEvent(ALTTPOverworldEvent*);
|
|
|
|
void writeDungeonItems(ALTTPDungeonItemFlags);
|
|
|
|
Uint16 calculateChecksum(Uint32 game);
|
|
|
|
};
|
|
|
|
|
2013-07-21 07:49:07 +00:00
|
|
|
} // io
|
2013-07-21 03:57:20 +00:00
|
|
|
} // zelda
|
|
|
|
|
2013-02-16 18:28:30 +00:00
|
|
|
#endif // __ALTTP_FILE_WRITER_HPP__
|