mirror of https://github.com/libAthena/athena.git
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
#ifndef FILEWRITER_HPP
|
|
#define FILEWRITER_HPP
|
|
|
|
#include "Athena/IStreamWriter.hpp"
|
|
#include <stdio.h>
|
|
|
|
namespace Athena
|
|
{
|
|
namespace io
|
|
{
|
|
class FileWriter : public IStreamWriter
|
|
{
|
|
public:
|
|
FileWriter(const std::string& filename, bool overwrite = true);
|
|
virtual ~FileWriter();
|
|
|
|
void setEndian(Endian endian);
|
|
Endian endian() const;
|
|
bool isBigEndian() const;
|
|
bool isLittleEndian() const;
|
|
void open(bool overwrite = true);
|
|
void close();
|
|
bool isOpen() const;
|
|
void seek(atInt64 pos, SeekOrigin origin = SeekOrigin::Current);
|
|
inline void seekAlign32() {seek(ROUND_UP_32(position()), SeekOrigin::Begin);}
|
|
bool atEnd() const;
|
|
atUint64 position() const;
|
|
atUint64 length() const;
|
|
|
|
void writeBit(bool val);
|
|
void seekBit(int bit);
|
|
void writeUByte(atUint8 val);
|
|
void writeByte(atInt8 val);
|
|
void writeUBytes(atUint8* data, atUint64 len);
|
|
void writeBytes(atInt8* data, atUint64 len);
|
|
void writeUint16(atUint16 val);
|
|
void writeInt16(atInt16 val);
|
|
void writeUint32(atUint32 val);
|
|
void writeInt32(atInt32 val);
|
|
void writeUint64(atUint64 val);
|
|
void writeInt64(atInt64 val);
|
|
void writeDouble(double val);
|
|
void writeFloat(float val);
|
|
void writeBool(bool val);
|
|
void writeVec3f(atVec3f vec);
|
|
void writeVec4f(atVec4f vec);
|
|
void writeString(const std::string& val, atInt32 fixedLen = -1);
|
|
void writeWString(const std::wstring& str, atInt32 fixedLen = -1);
|
|
void writeUnicode(const std::string& str, atInt32 fixedLen = -1);
|
|
void fill(atInt8 byte, atUint64 len);
|
|
void fill(atUint8 byte, atUint64 len);
|
|
private:
|
|
std::string m_filename;
|
|
FILE* m_fileHandle;
|
|
Endian m_endian;
|
|
atUint8 m_currentByte;
|
|
atUint64 m_bytePosition;
|
|
atUint8 m_bitShift;
|
|
bool m_bitValid;
|
|
};
|
|
}
|
|
} // Athena
|
|
|
|
#ifndef FILEWRITER_BASE
|
|
#define FILEWRITER_BASE() \
|
|
private: \
|
|
typedef Athena::io::FileWriter base;
|
|
|
|
#endif // FILEWRITER_BASE
|
|
#endif // FILEWRITER_HPP
|