axmol/extensions/cocostudio/CocoLoader.h

121 lines
3.3 KiB
C
Raw Normal View History

2022-02-24 18:51:36 +08:00
/****************************************************************************
2019-11-23 20:27:39 +08:00
Copyright (c) 2013 cocos2d-x.org
2021-12-25 10:04:45 +08:00
https://axis-project.github.io/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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 _COCOLOADER_H
#define _COCOLOADER_H
#include <stdint.h>
2020-05-06 15:42:25 +08:00
#include "rapidjson/document-wrapper.h"
#include "CocosStudioExport.h"
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
#pragma pack(4)
namespace cocostudio
{
2019-11-23 20:27:39 +08:00
class CocoLoader;
2021-12-25 10:04:45 +08:00
2020-10-17 16:32:16 +08:00
struct CCS_DLL stExpCocoAttribDesc
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
char m_cTypeName;
2019-11-23 20:27:39 +08:00
uint32_t m_szName;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
2021-12-25 10:04:45 +08:00
char* GetName(CocoLoader* pCoco);
2019-11-23 20:27:39 +08:00
};
2020-10-17 16:32:16 +08:00
struct CCS_DLL stExpCocoObjectDesc
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
unsigned char m_cAttribNum;
uint32_t m_szName;
uint32_t m_pAttribDescArray;
2019-11-23 20:27:39 +08:00
public:
2021-12-25 10:04:45 +08:00
char* GetName(CocoLoader* pCoco);
int GetAttribNum();
stExpCocoAttribDesc* GetAttribDescArray(CocoLoader* pCoco);
2019-11-23 20:27:39 +08:00
};
2020-10-17 16:32:16 +08:00
struct CCS_DLL stExpCocoNode
2019-11-23 20:27:39 +08:00
{
public:
2021-12-25 10:04:45 +08:00
int16_t m_ObjIndex;
int16_t m_AttribIndex;
unsigned char m_ChildNum;
uint32_t m_szValue;
uint32_t m_ChildArray;
2019-11-23 20:27:39 +08:00
public:
2021-12-25 10:04:45 +08:00
rapidjson::Type GetType(CocoLoader* pCoco);
char* GetName(CocoLoader* pCoco);
char* GetValue(CocoLoader* pCoco);
int GetChildNum();
stExpCocoNode* GetChildArray(CocoLoader* pCoco);
2019-11-23 20:27:39 +08:00
public:
2021-12-25 10:04:45 +08:00
void WriteJson(CocoLoader* pCoco,
void* pFileName = nullptr,
int vLayer = 0,
bool bEndNode = false,
bool bParentNodeIsArray = false);
2019-11-23 20:27:39 +08:00
};
2020-10-17 16:32:16 +08:00
struct CCS_DLL stCocoFileHeader
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
char m_FileDesc[32];
char m_Version[32];
uint32_t m_nDataSize;
uint32_t m_nCompressSize;
uint32_t m_ObjectCount;
uint32_t m_lAttribMemAddr;
uint32_t m_CocoNodeMemAddr;
uint32_t m_lStringMemAddr;
2019-11-23 20:27:39 +08:00
};
2020-10-17 16:32:16 +08:00
class CCS_DLL CocoLoader
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
stCocoFileHeader* m_pFileHeader;
stExpCocoNode* m_pRootNode;
stExpCocoObjectDesc* m_pObjectDescArray;
char* m_pMemoryBuff;
2019-11-23 20:27:39 +08:00
public:
CocoLoader();
~CocoLoader();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
2021-12-25 10:04:45 +08:00
bool ReadCocoBinBuff(char* pBinBuff);
stCocoFileHeader* GetFileHeader() { return m_pFileHeader; }
stExpCocoNode* GetRootCocoNode() { return m_pRootNode; }
stExpCocoObjectDesc* GetCocoObjectDescArray() { return m_pObjectDescArray; }
char* GetMemoryAddr_AttribDesc();
char* GetMemoryAddr_CocoNode();
char* GetMemoryAddr_String();
2019-11-23 20:27:39 +08:00
};
2021-12-25 10:04:45 +08:00
} // namespace cocostudio
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
#pragma pack()
2019-11-23 20:27:39 +08:00
#endif