init
This commit is contained in:
132
src/EterLib/TextFileLoader.h
Normal file
132
src/EterLib/TextFileLoader.h
Normal file
@@ -0,0 +1,132 @@
|
||||
#ifndef __INC_METIN_II_TEXTFILELOADER_H__
|
||||
#define __INC_METIN_II_TEXTFILELOADER_H__
|
||||
|
||||
#include "../eterBase/FileLoader.h"
|
||||
#include "../eterBase/MappedFile.h"
|
||||
#include "../eterLib/Util.h"
|
||||
#include "../eterLib/Pool.h"
|
||||
|
||||
class CTextFileLoader
|
||||
{
|
||||
public:
|
||||
typedef struct SGroupNode
|
||||
{
|
||||
static DWORD GenNameKey(const char* c_szGroupName, UINT uGroupNameLen);
|
||||
|
||||
void SetGroupName(const std::string& c_rstGroupName);
|
||||
bool IsGroupNameKey(DWORD dwGroupNameKey);
|
||||
|
||||
const std::string& GetGroupName();
|
||||
|
||||
CTokenVector* GetTokenVector(const std::string& c_rstGroupName);
|
||||
bool IsExistTokenVector(const std::string& c_rstGroupName);
|
||||
void InsertTokenVector(const std::string& c_rstGroupName, const CTokenVector& c_rkVct_stToken);
|
||||
|
||||
DWORD m_dwGroupNameKey;
|
||||
std::string m_strGroupName;
|
||||
|
||||
std::map<DWORD, CTokenVector> m_kMap_dwKey_kVct_stToken;
|
||||
|
||||
SGroupNode * pParentNode;
|
||||
std::vector<SGroupNode*> ChildNodeVector;
|
||||
|
||||
static SGroupNode* New();
|
||||
static void Delete(SGroupNode* pkNode);
|
||||
|
||||
static void DestroySystem();
|
||||
static CDynamicPool<SGroupNode> ms_kPool;
|
||||
} TGroupNode;
|
||||
|
||||
typedef std::vector<TGroupNode*> TGroupNodeVector;
|
||||
|
||||
class CGotoChild
|
||||
{
|
||||
public:
|
||||
CGotoChild(CTextFileLoader * pOwner, const char * c_szKey) : m_pOwner(pOwner)
|
||||
{
|
||||
m_pOwner->SetChildNode(c_szKey);
|
||||
}
|
||||
CGotoChild(CTextFileLoader * pOwner, DWORD dwIndex) : m_pOwner(pOwner)
|
||||
{
|
||||
m_pOwner->SetChildNode(dwIndex);
|
||||
}
|
||||
~CGotoChild()
|
||||
{
|
||||
m_pOwner->SetParentNode();
|
||||
}
|
||||
|
||||
CTextFileLoader * m_pOwner;
|
||||
};
|
||||
|
||||
public:
|
||||
static void DestroySystem();
|
||||
|
||||
static void SetCacheMode();
|
||||
|
||||
static CTextFileLoader* Cache(const char* c_szFileName);
|
||||
|
||||
public:
|
||||
CTextFileLoader();
|
||||
virtual ~CTextFileLoader();
|
||||
|
||||
void Destroy();
|
||||
|
||||
bool Load(const char * c_szFileName);
|
||||
const char * GetFileName();
|
||||
|
||||
bool IsEmpty();
|
||||
|
||||
void SetTop();
|
||||
DWORD GetChildNodeCount();
|
||||
BOOL SetChildNode(const char * c_szKey);
|
||||
BOOL SetChildNode(const std::string & c_rstrKeyHead, DWORD dwIndex);
|
||||
BOOL SetChildNode(DWORD dwIndex);
|
||||
BOOL SetParentNode();
|
||||
BOOL GetCurrentNodeName(std::string * pstrName);
|
||||
|
||||
BOOL IsToken(const std::string & c_rstrKey);
|
||||
BOOL GetTokenVector(const std::string & c_rstrKey, CTokenVector ** ppTokenVector);
|
||||
BOOL GetTokenBoolean(const std::string & c_rstrKey, BOOL * pData);
|
||||
BOOL GetTokenByte(const std::string & c_rstrKey, BYTE * pData);
|
||||
BOOL GetTokenWord(const std::string & c_rstrKey, WORD * pData);
|
||||
BOOL GetTokenInteger(const std::string & c_rstrKey, int * pData);
|
||||
BOOL GetTokenDoubleWord(const std::string & c_rstrKey, DWORD * pData);
|
||||
BOOL GetTokenFloat(const std::string & c_rstrKey, float * pData);
|
||||
BOOL GetTokenVector2(const std::string & c_rstrKey, D3DXVECTOR2 * pVector2);
|
||||
BOOL GetTokenVector3(const std::string & c_rstrKey, D3DXVECTOR3 * pVector3);
|
||||
BOOL GetTokenVector4(const std::string & c_rstrKey, D3DXVECTOR4 * pVector4);
|
||||
|
||||
BOOL GetTokenPosition(const std::string & c_rstrKey, D3DXVECTOR3 * pVector);
|
||||
BOOL GetTokenQuaternion(const std::string & c_rstrKey, D3DXQUATERNION * pQ);
|
||||
BOOL GetTokenDirection(const std::string & c_rstrKey, D3DVECTOR * pVector);
|
||||
BOOL GetTokenColor(const std::string & c_rstrKey, D3DXCOLOR * pColor);
|
||||
BOOL GetTokenColor(const std::string & c_rstrKey, D3DCOLORVALUE * pColor);
|
||||
BOOL GetTokenString(const std::string & c_rstrKey, std::string * pString);
|
||||
|
||||
protected:
|
||||
void __DestroyGroupNodeVector();
|
||||
|
||||
bool LoadGroup(TGroupNode * pGroupNode);
|
||||
|
||||
protected:
|
||||
std::string m_strFileName;
|
||||
|
||||
char* m_acBufData;
|
||||
DWORD m_dwBufSize;
|
||||
DWORD m_dwBufCapacity;
|
||||
|
||||
DWORD m_dwcurLineIndex;
|
||||
|
||||
CMemoryTextFileLoader m_textFileLoader;
|
||||
|
||||
TGroupNode m_GlobalNode;
|
||||
TGroupNode * m_pcurNode;
|
||||
|
||||
std::vector<SGroupNode*> m_kVct_pkNode;
|
||||
|
||||
protected:
|
||||
static std::map<DWORD, CTextFileLoader*> ms_kMap_dwNameKey_pkTextFileLoader;
|
||||
static bool ms_isCacheMode;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user