You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
// Description : Collection of Named data blocks
|
|
|
|
|
|
#ifndef CRYINCLUDE_EDITOR_UTIL_NAMEDDATA_H
|
|
#define CRYINCLUDE_EDITOR_UTIL_NAMEDDATA_H
|
|
#pragma once
|
|
#include "MemoryBlock.h"
|
|
#include "QtUtil.h"
|
|
|
|
class CPakFile;
|
|
|
|
class CNamedData
|
|
{
|
|
public:
|
|
CNamedData();
|
|
virtual ~CNamedData();
|
|
void AddDataBlock(const QString& blockName, void* pData, int nSize, bool bCompress = true);
|
|
void AddDataBlock(const QString& blockName, CMemoryBlock& block);
|
|
//! Returns uncompressed block data.
|
|
bool GetDataBlock(const QString& blockName, void*& pData, int& nSize);
|
|
//! Returns raw data block in original form (Compressed or Uncompressed).
|
|
CMemoryBlock* GetDataBlock(const QString& blockName, bool& bCompressed);
|
|
|
|
void Clear();
|
|
|
|
public:
|
|
virtual bool Serialize(CArchive& ar);
|
|
|
|
//! Save named data to pak file.
|
|
void Save(CPakFile& pakFile);
|
|
//! Load named data from pak file.
|
|
bool Load(const QString& levelPath, CPakFile& pakFile);
|
|
|
|
void SaveToFiles(const QString& rootPath);
|
|
void LoadFromFiles(const QString& rootPath);
|
|
|
|
private:
|
|
struct DataBlock
|
|
{
|
|
DataBlock();
|
|
QString blockName;
|
|
CMemoryBlock data;
|
|
CMemoryBlock compressedData;
|
|
//! This block is compressed.
|
|
bool bCompressed;
|
|
bool bFastCompression;
|
|
};
|
|
typedef std::map<QString, DataBlock*, stl::less_stricmp<QString> > TBlocks;
|
|
TBlocks m_blocks;
|
|
};
|
|
#endif // CRYINCLUDE_EDITOR_UTIL_NAMEDDATA_H
|