2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
// WSSCompact.h
|
|
|
|
|
|
|
|
// Interfaces to the cWSSCompact class representing the "Compact" storage schema (PAK-files)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef WSSCOMPACT_H_INCLUDED
|
|
|
|
#define WSSCOMPACT_H_INCLUDED
|
|
|
|
|
|
|
|
#include "WorldStorage.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cWSSCompact :
|
|
|
|
public cWSSchema
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cWSSCompact(cWorld * a_World) : cWSSchema(a_World) {}
|
|
|
|
virtual ~cWSSCompact();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
struct sChunkHeader;
|
|
|
|
typedef std::vector<sChunkHeader *> sChunkHeaders;
|
|
|
|
|
|
|
|
/// Implements a cache for a single PAK file; implements lazy-write in order to be able to write multiple chunks fast
|
|
|
|
class cPAKFile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
cPAKFile(const AString & a_FileName, int a_LayerX, int a_LayerZ);
|
|
|
|
~cPAKFile();
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
bool SaveChunk(const cChunkCoords & a_Chunk, cWorld * a_World);
|
|
|
|
bool LoadChunk(const cChunkCoords & a_Chunk, cWorld * a_World);
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
int GetLayerX(void) const {return m_LayerX; }
|
|
|
|
int GetLayerZ(void) const {return m_LayerZ; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
AString m_FileName;
|
|
|
|
int m_LayerX;
|
|
|
|
int m_LayerZ;
|
|
|
|
|
|
|
|
sChunkHeaders m_ChunkHeaders;
|
|
|
|
AString m_DataContents; // Data contents of the file, cached
|
|
|
|
|
|
|
|
int m_NumDirty; // Number of chunks that were written into m_DataContents but not into the file
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
bool LoadChunk(const cChunkCoords & a_Chunk, int a_Offset, sChunkHeader * a_Header, cWorld * a_World);
|
|
|
|
void EraseChunk(const cChunkCoords & a_Chunk); // Erases the chunk data from m_DataContents and updates m_ChunkHeaders
|
|
|
|
bool SaveChunkToData(const cChunkCoords & a_Chunk, cWorld * a_World); // Saves the chunk to m_DataContents, updates headers and m_NumDirty
|
2012-02-13 16:47:03 -05:00
|
|
|
void SynchronizeFile(void); // Writes m_DataContents along with the headers to file, resets m_NumDirty
|
2012-02-16 08:42:35 -05:00
|
|
|
void LoadEntitiesFromJson(Json::Value & a_Value, cEntityList & a_Entities, cBlockEntityList & a_BlockEntities, cWorld * a_World);
|
2012-02-13 16:47:03 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
typedef std::list<cPAKFile *> cPAKFiles;
|
|
|
|
|
|
|
|
cPAKFiles m_PAKFiles; // A MRU cache of PAK files
|
|
|
|
|
|
|
|
/// Loads the correct PAK file either from cache or from disk, manages the m_PAKFiles cache
|
2012-02-16 08:42:35 -05:00
|
|
|
cPAKFile * LoadPAKFile(const cChunkCoords & a_Chunk);
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
// cWSSchema overrides:
|
2012-02-16 08:42:35 -05:00
|
|
|
virtual bool LoadChunk(const cChunkCoords & a_Chunk) override;
|
|
|
|
virtual bool SaveChunk(const cChunkCoords & a_Chunk) override;
|
2012-02-13 16:47:03 -05:00
|
|
|
virtual const AString GetName(void) const override {return "compact"; }
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // WSSCOMPACT_H_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|