2012-04-02 17:51:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FILESTREAM_H
|
|
|
|
#define FILESTREAM_H
|
|
|
|
|
|
|
|
#include "declarations.h"
|
2012-07-14 03:10:24 +02:00
|
|
|
#include <framework/luaengine/luaobject.h>
|
2012-06-23 23:30:54 +02:00
|
|
|
#include <framework/util/databuffer.h>
|
2012-08-19 17:41:03 +02:00
|
|
|
#include <otclient/position.h>
|
|
|
|
#include <framework/util/point.h>
|
2012-04-02 17:51:03 +02:00
|
|
|
|
|
|
|
struct PHYSFS_File;
|
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
// @bindclass
|
|
|
|
class FileStream : public LuaObject
|
2012-04-02 17:51:03 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-06-23 23:30:54 +02:00
|
|
|
FileStream(const std::string& name, PHYSFS_File *fileHandle, bool writeable);
|
2012-04-02 17:51:03 +02:00
|
|
|
~FileStream();
|
|
|
|
|
2012-04-24 23:05:46 +02:00
|
|
|
void cache();
|
2012-06-22 01:58:18 +02:00
|
|
|
void close();
|
|
|
|
void flush();
|
2012-06-23 16:26:18 +02:00
|
|
|
void write(const void *buffer, uint count);
|
2012-06-22 01:58:18 +02:00
|
|
|
int read(void *buffer, uint size, uint nmemb = 1);
|
|
|
|
void seek(uint pos);
|
|
|
|
void skip(uint len);
|
2012-07-15 15:23:13 +02:00
|
|
|
uint size();
|
|
|
|
uint tell();
|
2012-07-31 05:12:04 +02:00
|
|
|
bool eof();
|
2012-04-02 17:51:03 +02:00
|
|
|
std::string name() { return m_name; }
|
|
|
|
|
|
|
|
uint8 getU8();
|
|
|
|
uint16 getU16();
|
|
|
|
uint32 getU32();
|
|
|
|
uint64 getU64();
|
2012-05-12 06:52:16 +02:00
|
|
|
std::string getString();
|
2012-06-24 15:05:44 +02:00
|
|
|
BinaryTreePtr getBinaryTree();
|
2012-06-22 01:58:18 +02:00
|
|
|
|
2012-08-19 17:41:03 +02:00
|
|
|
void startNode(uint8 n);
|
|
|
|
void endNode();
|
2012-04-02 17:51:03 +02:00
|
|
|
void addU8(uint8 v);
|
2012-06-23 16:26:18 +02:00
|
|
|
void addU16(uint16 v);
|
|
|
|
void addU32(uint32 v);
|
|
|
|
void addU64(uint64 v);
|
|
|
|
void addString(const std::string& v);
|
2012-08-19 17:41:03 +02:00
|
|
|
void addPos(const Position& pos) { addU16(pos.x); addU16(pos.y); addU8(pos.z); }
|
|
|
|
void addPoint(const Point& p) { addU8(p.x); addU8(p.y); }
|
2012-04-02 17:51:03 +02:00
|
|
|
|
2012-08-01 09:49:09 +02:00
|
|
|
FileStreamPtr asFileStream() { return static_self_cast<FileStream>(); }
|
2012-06-24 15:05:44 +02:00
|
|
|
|
2012-04-02 17:51:03 +02:00
|
|
|
private:
|
2012-06-22 01:58:18 +02:00
|
|
|
void checkWrite();
|
2012-06-23 16:26:18 +02:00
|
|
|
void throwError(const std::string& message, bool physfsError = false);
|
2012-06-22 01:58:18 +02:00
|
|
|
|
2012-04-02 17:51:03 +02:00
|
|
|
std::string m_name;
|
|
|
|
PHYSFS_File *m_fileHandle;
|
2012-06-22 01:58:18 +02:00
|
|
|
uint m_pos;
|
2012-06-23 23:30:54 +02:00
|
|
|
bool m_writeable;
|
|
|
|
bool m_caching;
|
|
|
|
|
|
|
|
DataBuffer<uint8_t> m_data;
|
2012-04-02 17:51:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|