2019-11-23 20:27:39 +08:00
|
|
|
|
/****************************************************************************
|
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
|
|
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 _COCOLOADER_H
|
|
|
|
|
#define _COCOLOADER_H
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2020-05-06 15:42:25 +08:00
|
|
|
|
#include "rapidjson/document-wrapper.h"
|
2020-10-21 10:12:00 +08:00
|
|
|
|
#include "CocosStudioExport.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
|
|
#pragma pack (4)
|
|
|
|
|
|
|
|
|
|
namespace cocostudio{
|
|
|
|
|
|
|
|
|
|
class CocoLoader;
|
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
|
struct CCS_DLL stExpCocoAttribDesc
|
2019-11-23 20:27:39 +08:00
|
|
|
|
{
|
|
|
|
|
char m_cTypeName;
|
|
|
|
|
uint32_t m_szName;
|
|
|
|
|
public:
|
|
|
|
|
char* GetName(CocoLoader* pCoco);
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
|
struct CCS_DLL stExpCocoObjectDesc
|
2019-11-23 20:27:39 +08:00
|
|
|
|
{
|
|
|
|
|
unsigned char m_cAttribNum;
|
|
|
|
|
uint32_t m_szName;
|
|
|
|
|
uint32_t m_pAttribDescArray;
|
|
|
|
|
public:
|
|
|
|
|
char* GetName(CocoLoader* pCoco);
|
|
|
|
|
int GetAttribNum();
|
|
|
|
|
stExpCocoAttribDesc* GetAttribDescArray(CocoLoader* pCoco);
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
|
struct CCS_DLL stExpCocoNode
|
2019-11-23 20:27:39 +08:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
int16_t m_ObjIndex;
|
|
|
|
|
int16_t m_AttribIndex;
|
|
|
|
|
unsigned char m_ChildNum;
|
|
|
|
|
uint32_t m_szValue;
|
|
|
|
|
uint32_t m_ChildArray;
|
|
|
|
|
public:
|
|
|
|
|
rapidjson::Type GetType(CocoLoader* pCoco);
|
|
|
|
|
char* GetName(CocoLoader* pCoco);
|
|
|
|
|
char* GetValue(CocoLoader* pCoco);
|
|
|
|
|
int GetChildNum();
|
|
|
|
|
stExpCocoNode* GetChildArray(CocoLoader* pCoco);
|
|
|
|
|
public:
|
|
|
|
|
void WriteJson(CocoLoader* pCoco,void* pFileName = nullptr, int vLayer = 0, bool bEndNode = false, bool bParentNodeIsArray = false);
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
|
struct CCS_DLL stCocoFileHeader
|
2019-11-23 20:27:39 +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;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
|
class CCS_DLL CocoLoader
|
2019-11-23 20:27:39 +08:00
|
|
|
|
{
|
|
|
|
|
stCocoFileHeader* m_pFileHeader;
|
|
|
|
|
stExpCocoNode* m_pRootNode;
|
|
|
|
|
stExpCocoObjectDesc* m_pObjectDescArray;
|
|
|
|
|
char* m_pMemoryBuff;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CocoLoader();
|
|
|
|
|
~CocoLoader();
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma pack ()
|
|
|
|
|
#endif
|