2013-06-06 12:02:54 +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 __CCDATAREADERHELPER_H__
|
|
|
|
#define __CCDATAREADERHELPER_H__
|
|
|
|
|
|
|
|
#include "CCArmatureDefine.h"
|
|
|
|
#include "../datas/CCDatas.h"
|
|
|
|
#include "../utils/CCConstValue.h"
|
|
|
|
#include "../CCArmature.h"
|
|
|
|
#include "../external_tool/Json/CSContentJsonDictionary.h"
|
|
|
|
|
|
|
|
class tinyxml2::XMLElement;
|
|
|
|
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
|
|
|
|
|
|
|
|
class CCDataReaderHelper
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Scale the position data, used for multiresolution adapter
|
|
|
|
* It won't effect the data already read.
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
|
|
|
static void setPositionReadScale(float scale);
|
|
|
|
static float getPositionReadScale();
|
|
|
|
|
|
|
|
static void addDataFromFile(const char *filePath);
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
static void clear();
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Translate XML export from Dragon CCBone flash tool to datas, and save them.
|
|
|
|
* When you add a new xml, the data already saved will be keeped.
|
2013-06-06 12:02:54 +08:00
|
|
|
*
|
|
|
|
* @param xmlPath Path of xml file
|
|
|
|
*/
|
|
|
|
static void addDataFromXML(const char *xmlPath);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Translate XML export from Dragon CCBone flash tool to datas, and save them.
|
|
|
|
* When you add a new xml, the data already saved will be keeped.
|
2013-06-06 12:02:54 +08:00
|
|
|
*
|
|
|
|
* @param xmlPath Path of pak file
|
|
|
|
*/
|
|
|
|
static void addDataFromXMLPak(const char *xmlPakPath);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Translate XML export from Dragon CCBone flash tool to datas, and save them.
|
|
|
|
* When you add a new xml, the data already saved will be keeped.
|
2013-06-06 12:02:54 +08:00
|
|
|
*
|
|
|
|
* @param xmlPath The cache of the xml
|
|
|
|
*/
|
|
|
|
static void addDataFromCache(const char *pFileContent);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Decode CCArmature Datas from xml export from Dragon CCBone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-06-07 10:52:32 +08:00
|
|
|
static CCArmatureData *decodeArmature(tinyxml2::XMLElement *armatureXML);
|
|
|
|
static CCBoneData *decodeBone(tinyxml2::XMLElement *boneXML, tinyxml2::XMLElement *parentXML);
|
|
|
|
static CCDisplayData *decodeBoneDisplay(tinyxml2::XMLElement *displayXML);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decode CCAnimation Datas from xml export from Dragon CCBone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-06-07 10:52:32 +08:00
|
|
|
static CCAnimationData *decodeAnimation(tinyxml2::XMLElement *animationXML);
|
|
|
|
static CCMovementData *decodeMovement(tinyxml2::XMLElement *movementXML, CCArmatureData *armatureData);
|
|
|
|
static CCMovementBoneData *decodeMovementBone(tinyxml2::XMLElement *movBoneXml, tinyxml2::XMLElement *parentXml, CCBoneData *boneData);
|
|
|
|
static CCFrameData *decodeFrame(tinyxml2::XMLElement *frameXML, tinyxml2::XMLElement *parentFrameXml, CCBoneData *boneData);
|
|
|
|
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Decode Texture Datas from xml export from Dragon CCBone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-06-07 10:52:32 +08:00
|
|
|
static CCTextureData *decodeTexture(tinyxml2::XMLElement *textureXML);
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Decode Contour Datas from xml export from Dragon CCBone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-06-06 16:22:58 +08:00
|
|
|
static CCContourData *decodeContour(tinyxml2::XMLElement *contourXML);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
public:
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
static void addDataFromJson(const char *filePath);
|
2013-06-07 10:52:32 +08:00
|
|
|
static void addDataFromJsonCache(const char *fileContent);
|
|
|
|
|
|
|
|
static CCArmatureData *decodeArmature(cs::CSJsonDictionary &json);
|
|
|
|
static CCBoneData *decodeBone(cs::CSJsonDictionary &json);
|
|
|
|
static CCDisplayData *decodeBoneDisplay(cs::CSJsonDictionary &json);
|
|
|
|
|
|
|
|
static CCAnimationData *decodeAnimation(cs::CSJsonDictionary &json);
|
|
|
|
static CCMovementData *decodeMovement(cs::CSJsonDictionary &json);
|
|
|
|
static CCMovementBoneData *decodeMovementBone(cs::CSJsonDictionary &json);
|
|
|
|
static CCFrameData *decodeFrame(cs::CSJsonDictionary &json);
|
|
|
|
|
|
|
|
static CCTextureData *decodeTexture(cs::CSJsonDictionary &json);
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
static CCContourData *decodeContour(cs::CSJsonDictionary &json);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
static void decodeNode(CCBaseData *node, cs::CSJsonDictionary &json);
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_EXT_END
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
#endif /*__CCDATAREADERHELPER_H__*/
|