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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "CCDataReaderHelper.h"
|
|
|
|
#include "CCArmatureDataManager.h"
|
|
|
|
#include "CCTransformHelp.h"
|
|
|
|
#include "CCArmatureDefine.h"
|
|
|
|
#include "../datas/CCDatas.h"
|
|
|
|
#include "support/tinyxml2/tinyxml2.h"
|
|
|
|
|
|
|
|
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
|
|
|
|
std::vector<std::string> s_arrConfigFileList;
|
|
|
|
float s_PositionReadScale = 1;
|
|
|
|
static float s_FlashToolVersion = VERSION_2_0;
|
|
|
|
|
|
|
|
void CCDataReaderHelper::setPositionReadScale(float scale)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
s_PositionReadScale = scale;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
float CCDataReaderHelper::getPositionReadScale()
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
return s_PositionReadScale;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
void CCDataReaderHelper::clear()
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
s_arrConfigFileList.clear();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCDataReaderHelper::addDataFromFile(const char *filePath)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
/*
|
|
|
|
* Check if file is already added to CCArmatureDataManager, if then return.
|
|
|
|
*/
|
|
|
|
for(unsigned int i = 0; i < s_arrConfigFileList.size(); i++)
|
|
|
|
{
|
|
|
|
if (s_arrConfigFileList[i].compare(filePath) == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s_arrConfigFileList.push_back(filePath);
|
|
|
|
|
|
|
|
|
|
|
|
std::string filePathStr = filePath;
|
|
|
|
size_t startPos = filePathStr.find_last_of(".");
|
|
|
|
std::string str = &filePathStr[startPos];
|
|
|
|
|
|
|
|
if (str.compare(".xml") == 0)
|
|
|
|
{
|
|
|
|
CCDataReaderHelper::addDataFromXML(filePathStr.c_str());
|
|
|
|
}
|
|
|
|
else if(str.compare(".json") == 0 || str.compare(".ExportJson") == 0)
|
|
|
|
{
|
|
|
|
CCDataReaderHelper::addDataFromJson(filePathStr.c_str());
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
void CCDataReaderHelper::addDataFromXML(const char *xmlPath)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
/*
|
|
|
|
* Need to get the full path of the xml file, or the Tiny XML can't find the xml at IOS
|
|
|
|
*/
|
|
|
|
std::string fullPath = CCFileUtils::sharedFileUtils()->fullPathForFilename(xmlPath);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Need to read the tiny xml into memory first, or the Tiny XML can't find the xml at IOS
|
|
|
|
*/
|
|
|
|
unsigned long size;
|
|
|
|
const char *pFileContent = (char *)CCFileUtils::sharedFileUtils()->getFileData(fullPath.c_str() , "r", &size);
|
|
|
|
|
|
|
|
if (pFileContent)
|
|
|
|
{
|
|
|
|
addDataFromCache(pFileContent);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCDataReaderHelper::addDataFromXMLPak(const char *xmlPakPath)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
// #if CS_TOOL_PLATFORM
|
|
|
|
//
|
|
|
|
// char *_pFileContent = NULL;
|
|
|
|
// JsonReader::getFileBuffer(xmlPakPath, &_pFileContent);
|
|
|
|
//
|
|
|
|
// if (_pFileContent)
|
|
|
|
// {
|
|
|
|
// addDataFromCache(_pFileContent);
|
|
|
|
// }
|
|
|
|
// #endif
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
void CCDataReaderHelper::addDataFromCache(const char *pFileContent)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
tinyxml2::XMLDocument document;
|
|
|
|
document.Parse(pFileContent);
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *root = document.RootElement();
|
|
|
|
CCAssert(root, "XML error or XML is empty.");
|
|
|
|
|
|
|
|
root->QueryFloatAttribute(VERSION, &s_FlashToolVersion);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Begin decode armature data from xml
|
|
|
|
*/
|
|
|
|
tinyxml2::XMLElement *armaturesXML = root->FirstChildElement(ARMATURES);
|
|
|
|
tinyxml2::XMLElement *armatureXML = armaturesXML->FirstChildElement(ARMATURE);
|
|
|
|
while(armatureXML)
|
|
|
|
{
|
|
|
|
CCArmatureData *armatureData = CCDataReaderHelper::decodeArmature(armatureXML);
|
|
|
|
CCArmatureDataManager::sharedArmatureDataManager()->addArmatureData(armatureData->name.c_str(), armatureData);
|
|
|
|
|
|
|
|
armatureXML = armatureXML->NextSiblingElement(ARMATURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Begin decode animation data from xml
|
|
|
|
*/
|
|
|
|
tinyxml2::XMLElement *animationsXML = root->FirstChildElement(ANIMATIONS);
|
|
|
|
tinyxml2::XMLElement *animationXML = animationsXML->FirstChildElement(ANIMATION);
|
|
|
|
while(animationXML)
|
|
|
|
{
|
|
|
|
CCAnimationData *animationData = CCDataReaderHelper::decodeAnimation(animationXML);
|
|
|
|
CCArmatureDataManager::sharedArmatureDataManager()->addAnimationData(animationData->name.c_str(), animationData);
|
|
|
|
|
|
|
|
animationXML = animationXML->NextSiblingElement(ANIMATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Begin decode texture data from xml
|
|
|
|
*/
|
|
|
|
tinyxml2::XMLElement *texturesXML = root->FirstChildElement(TEXTURE_ATLAS);
|
|
|
|
tinyxml2::XMLElement *textureXML = texturesXML->FirstChildElement(SUB_TEXTURE);
|
|
|
|
while(textureXML)
|
|
|
|
{
|
|
|
|
CCTextureData *textureData = CCDataReaderHelper::decodeTexture(textureXML);
|
|
|
|
CCArmatureDataManager::sharedArmatureDataManager()->addTextureData(textureData->name.c_str(), textureData);
|
|
|
|
|
|
|
|
textureXML = textureXML->NextSiblingElement(SUB_TEXTURE);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCArmatureData *CCDataReaderHelper::decodeArmature(tinyxml2::XMLElement *armatureXML)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *name = armatureXML->Attribute(A_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
CCArmatureData *armatureData = CCArmatureData::create();
|
|
|
|
armatureData->name = name;
|
|
|
|
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *boneXML = armatureXML->FirstChildElement(BONE);
|
|
|
|
|
|
|
|
while( boneXML )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If this bone have parent, then get the parent bone xml
|
|
|
|
*/
|
|
|
|
const char *parentName = boneXML->Attribute(A_PARENT);
|
|
|
|
tinyxml2::XMLElement *parentXML = NULL;
|
|
|
|
if (parentName)
|
|
|
|
{
|
|
|
|
parentXML = armatureXML->FirstChildElement(BONE);
|
|
|
|
std::string name = parentName;
|
|
|
|
while (parentXML)
|
|
|
|
{
|
|
|
|
if (name.compare(parentXML->Attribute(A_NAME)) == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
parentXML = parentXML->NextSiblingElement(BONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CCBoneData *boneData = decodeBone(boneXML, parentXML);
|
|
|
|
armatureData->addBoneData(boneData);
|
|
|
|
|
|
|
|
boneXML = boneXML->NextSiblingElement(BONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return armatureData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCBoneData *CCDataReaderHelper::decodeBone(tinyxml2::XMLElement *boneXML, tinyxml2::XMLElement *parentXml)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
std::string name = boneXML->Attribute(A_NAME);
|
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
CCAssert(name.length() != 0, "");
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
CCBoneData *boneData = CCBoneData::create();
|
|
|
|
|
|
|
|
boneData->name = name;
|
|
|
|
|
|
|
|
if( boneXML->Attribute(A_PARENT) != NULL )
|
|
|
|
{
|
|
|
|
boneData->parentName = boneXML->Attribute(A_PARENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *displayXML = boneXML->FirstChildElement(DISPLAY);
|
|
|
|
while(displayXML)
|
|
|
|
{
|
|
|
|
CCDisplayData *displayData = decodeBoneDisplay(displayXML);
|
|
|
|
boneData->addDisplayData(displayData);
|
|
|
|
|
|
|
|
displayXML = displayXML->NextSiblingElement(DISPLAY);
|
|
|
|
}
|
|
|
|
|
|
|
|
return boneData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCDisplayData *CCDataReaderHelper::decodeBoneDisplay(tinyxml2::XMLElement *displayXML)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
int _isArmature = 0;
|
|
|
|
|
|
|
|
CCDisplayData *displayData;
|
|
|
|
|
|
|
|
if( displayXML->QueryIntAttribute(A_IS_ARMATURE, &(_isArmature)) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
if(!_isArmature)
|
|
|
|
{
|
|
|
|
displayData = CCSpriteDisplayData::create();
|
|
|
|
displayData->displayType = CS_DISPLAY_SPRITE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
displayData = CCArmatureDisplayData::create();
|
|
|
|
displayData->displayType = CS_DISPLAY_ARMATURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
displayData = CCSpriteDisplayData::create();
|
|
|
|
displayData->displayType = CS_DISPLAY_SPRITE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(displayXML->Attribute(A_NAME) != NULL )
|
|
|
|
{
|
|
|
|
if(!_isArmature)
|
|
|
|
{
|
|
|
|
((CCSpriteDisplayData *)displayData)->displayName = displayXML->Attribute(A_NAME);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
((CCArmatureDisplayData *)displayData)->displayName = displayXML->Attribute(A_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return displayData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCAnimationData *CCDataReaderHelper::decodeAnimation(tinyxml2::XMLElement *animationXML)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *name = animationXML->Attribute(A_NAME);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CCAnimationData *aniData = CCAnimationData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CCArmatureData *armatureData = CCArmatureDataManager::sharedArmatureDataManager()->getArmatureData(name);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
aniData->name = name;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
tinyxml2::XMLElement *movementXML = animationXML->FirstChildElement(MOVEMENT);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
while( movementXML )
|
|
|
|
{
|
|
|
|
CCMovementData *movementData = decodeMovement(movementXML, armatureData);
|
|
|
|
aniData->addMovement(movementData);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
movementXML = movementXML->NextSiblingElement(MOVEMENT);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return aniData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCMovementData *CCDataReaderHelper::decodeMovement(tinyxml2::XMLElement *movementXML, CCArmatureData *armatureData)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *movName = movementXML->Attribute(A_NAME);
|
|
|
|
|
|
|
|
CCMovementData *movementData = CCMovementData::create();
|
|
|
|
|
|
|
|
movementData->name = movName;
|
|
|
|
|
|
|
|
|
|
|
|
int duration, durationTo, durationTween, loop, tweenEasing = 0;
|
|
|
|
|
|
|
|
if( movementXML->QueryIntAttribute(A_DURATION, &(duration)) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
movementData->duration = duration;
|
|
|
|
}
|
|
|
|
if( movementXML->QueryIntAttribute(A_DURATION_TO, &(durationTo)) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
movementData->durationTo = durationTo;
|
|
|
|
}
|
|
|
|
if( movementXML->QueryIntAttribute(A_DURATION_TWEEN, &(durationTween)) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
movementData->durationTween = durationTween;
|
|
|
|
}
|
|
|
|
if( movementXML->QueryIntAttribute(A_LOOP, &(loop)) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
movementData->loop = (bool)loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *_easing = movementXML->Attribute(A_TWEEN_EASING);
|
|
|
|
if(_easing != NULL)
|
|
|
|
{
|
|
|
|
std::string str = _easing;
|
|
|
|
if(str.compare(FL_NAN) != 0)
|
|
|
|
{
|
|
|
|
if( movementXML->QueryIntAttribute(A_TWEEN_EASING, &(tweenEasing)) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
movementData->tweenEasing = (CCTweenType)tweenEasing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
movementData->tweenEasing = TWEEN_EASING_MAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *movBoneXml = movementXML->FirstChildElement(BONE);
|
|
|
|
while(movBoneXml)
|
|
|
|
{
|
2013-06-07 14:01:03 +08:00
|
|
|
const char *boneName = movBoneXml->Attribute(A_NAME);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
if (movementData->getMovementBoneData(boneName))
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
movBoneXml = movBoneXml->NextSiblingElement();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
CCBoneData *boneData = (CCBoneData *)armatureData->getBoneData(boneName);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
std::string parentName = boneData->parentName;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *parentXml = NULL;
|
2013-06-07 14:01:03 +08:00
|
|
|
if (parentName.length() != 0)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
parentXml = movementXML->FirstChildElement(BONE);
|
|
|
|
|
|
|
|
while (parentXml)
|
|
|
|
{
|
2013-06-07 14:01:03 +08:00
|
|
|
if (parentName.compare(parentXml->Attribute(A_NAME)) == 0)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
parentXml = parentXml->NextSiblingElement(BONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CCMovementBoneData *_moveBoneData = decodeMovementBone(movBoneXml, parentXml, boneData);
|
|
|
|
movementData->addMovementBoneData(_moveBoneData);
|
|
|
|
|
|
|
|
movBoneXml = movBoneXml->NextSiblingElement(BONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return movementData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CCMovementBoneData *CCDataReaderHelper::decodeMovementBone(tinyxml2::XMLElement *movBoneXml, tinyxml2::XMLElement *parentXml, CCBoneData *boneData)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCMovementBoneData *movBoneData = CCMovementBoneData::create();
|
|
|
|
float scale, delay;
|
|
|
|
|
|
|
|
if( movBoneXml )
|
|
|
|
{
|
|
|
|
if( movBoneXml->QueryFloatAttribute(A_MOVEMENT_SCALE, &scale) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
movBoneData->scale = scale;
|
|
|
|
}
|
|
|
|
if( movBoneXml->QueryFloatAttribute(A_MOVEMENT_DELAY, &delay) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
if(delay > 0)
|
|
|
|
{
|
|
|
|
delay -= 1;
|
|
|
|
}
|
|
|
|
movBoneData->delay = delay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int length = 0;
|
|
|
|
int i = 0;
|
|
|
|
int parentTotalDuration = 0;
|
|
|
|
int currentDuration = 0;
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *parentFrameXML = NULL;
|
|
|
|
|
|
|
|
std::vector<tinyxml2::XMLElement *> parentXmlList;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get the parent frame xml list, we need get the origin data
|
|
|
|
*/
|
|
|
|
if( parentXml != NULL )
|
|
|
|
{
|
|
|
|
parentFrameXML = parentXml->FirstChildElement(FRAME);
|
|
|
|
while (parentFrameXML)
|
|
|
|
{
|
|
|
|
parentXmlList.push_back(parentFrameXML);
|
|
|
|
parentFrameXML = parentFrameXML->NextSiblingElement(FRAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
parentFrameXML = NULL;
|
|
|
|
|
|
|
|
length = parentXmlList.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int totalDuration = 0;
|
|
|
|
|
|
|
|
std::string name = movBoneXml->Attribute(A_NAME);
|
|
|
|
|
|
|
|
movBoneData->name = name;
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *frameXML = movBoneXml->FirstChildElement(FRAME);
|
|
|
|
|
|
|
|
while( frameXML )
|
|
|
|
{
|
|
|
|
if(parentXml)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* in this loop we get the corresponding parent frame xml
|
|
|
|
*/
|
|
|
|
while(i < length && (parentFrameXML ? (totalDuration < parentTotalDuration || totalDuration >= parentTotalDuration + currentDuration) : true))
|
|
|
|
{
|
|
|
|
parentFrameXML = parentXmlList[i];
|
|
|
|
parentTotalDuration += currentDuration;
|
|
|
|
parentFrameXML->QueryIntAttribute(A_DURATION, ¤tDuration);
|
|
|
|
i++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CCFrameData *frameData = decodeFrame( frameXML, parentFrameXML, boneData);
|
|
|
|
movBoneData->addFrameData(frameData);
|
|
|
|
|
|
|
|
totalDuration += frameData->duration;
|
|
|
|
|
|
|
|
frameXML = frameXML->NextSiblingElement(FRAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return movBoneData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CCFrameData *CCDataReaderHelper::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
|
|
|
float _x, _y, _scale_x, _scale_y, _skew_x, _skew_y = 0;
|
|
|
|
int _duration, _displayIndex, _zOrder, _tweenEasing = 0;
|
|
|
|
|
|
|
|
CCFrameData *frameData = CCFrameData::create();
|
|
|
|
|
|
|
|
|
|
|
|
if(frameXML->Attribute(A_MOVEMENT) != NULL)
|
|
|
|
{
|
|
|
|
frameData->m_strMovement = frameXML->Attribute(A_MOVEMENT);
|
|
|
|
}
|
|
|
|
if(frameXML->Attribute(A_EVENT) != NULL)
|
|
|
|
{
|
|
|
|
frameData->m_strEvent = frameXML->Attribute(A_EVENT);
|
|
|
|
}
|
|
|
|
if(frameXML->Attribute(A_SOUND) != NULL)
|
|
|
|
{
|
|
|
|
frameData->m_strSound = frameXML->Attribute(A_SOUND);
|
|
|
|
}
|
|
|
|
if(frameXML->Attribute(A_SOUND_EFFECT) != NULL)
|
|
|
|
{
|
|
|
|
frameData->m_strSoundEffect = frameXML->Attribute(A_SOUND_EFFECT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (s_FlashToolVersion >= VERSION_2_0)
|
|
|
|
{
|
|
|
|
if(frameXML->QueryFloatAttribute(A_COCOS2DX_X, &_x) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
frameData->x = _x;
|
|
|
|
frameData->x *= s_PositionReadScale;
|
|
|
|
}
|
|
|
|
if(frameXML->QueryFloatAttribute(A_COCOS2DX_Y, &_y) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
frameData->y = -_y;
|
|
|
|
frameData->y *= s_PositionReadScale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(frameXML->QueryFloatAttribute(A_X, &_x) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
frameData->x = _x;
|
|
|
|
frameData->x *= s_PositionReadScale;
|
|
|
|
}
|
|
|
|
if(frameXML->QueryFloatAttribute(A_Y, &_y) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
frameData->y = -_y;
|
|
|
|
frameData->y *= s_PositionReadScale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( frameXML->QueryFloatAttribute(A_SCALE_X, &_scale_x) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->scaleX = _scale_x;
|
|
|
|
}
|
|
|
|
if( frameXML->QueryFloatAttribute(A_SCALE_Y, &_scale_y) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->scaleY = _scale_y;
|
|
|
|
}
|
|
|
|
if( frameXML->QueryFloatAttribute(A_SKEW_X, &_skew_x) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->skewX = CC_DEGREES_TO_RADIANS(_skew_x);
|
|
|
|
}
|
|
|
|
if( frameXML->QueryFloatAttribute(A_SKEW_Y, &_skew_y) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->skewY = CC_DEGREES_TO_RADIANS(-_skew_y);
|
|
|
|
}
|
|
|
|
if( frameXML->QueryIntAttribute(A_DURATION, &_duration) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->duration = _duration;
|
|
|
|
}
|
|
|
|
if( frameXML->QueryIntAttribute(A_DISPLAY_INDEX, &_displayIndex) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->displayIndex = _displayIndex;
|
|
|
|
}
|
|
|
|
if( frameXML->QueryIntAttribute(A_Z, &_zOrder) == tinyxml2::XML_SUCCESS )
|
|
|
|
{
|
|
|
|
frameData->zOrder = _zOrder;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tinyxml2::XMLElement *colorTransformXML = frameXML->FirstChildElement(A_COLOR_TRANSFORM);
|
|
|
|
if (colorTransformXML)
|
|
|
|
{
|
|
|
|
int alpha, red, green, blue = 100;
|
|
|
|
int alphaOffset, redOffset, greenOffset, blueOffset = 0;
|
|
|
|
|
|
|
|
colorTransformXML->QueryIntAttribute(A_ALPHA, &alpha);
|
|
|
|
colorTransformXML->QueryIntAttribute(A_RED, &red);
|
|
|
|
colorTransformXML->QueryIntAttribute(A_GREEN, &green);
|
|
|
|
colorTransformXML->QueryIntAttribute(A_BLUE, &blue) ;
|
|
|
|
|
|
|
|
colorTransformXML->QueryIntAttribute(A_ALPHA_OFFSET, &alphaOffset);
|
|
|
|
colorTransformXML->QueryIntAttribute(A_RED_OFFSET, &redOffset);
|
|
|
|
colorTransformXML->QueryIntAttribute(A_GREEN_OFFSET, &greenOffset);
|
|
|
|
colorTransformXML->QueryIntAttribute(A_BLUE_OFFSET, &blueOffset) ;
|
|
|
|
|
|
|
|
frameData->a = 2.55 * alphaOffset + alpha;
|
|
|
|
frameData->r = 2.55 * redOffset + red;
|
|
|
|
frameData->g = 2.55 * greenOffset + green;
|
|
|
|
frameData->b = 2.55 * blueOffset + blue;
|
|
|
|
|
|
|
|
frameData->isUseColorInfo = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *_easing = frameXML->Attribute(A_TWEEN_EASING);
|
|
|
|
if(_easing != NULL)
|
|
|
|
{
|
|
|
|
std::string str = _easing;
|
|
|
|
if(str.compare(FL_NAN) != 0)
|
|
|
|
{
|
|
|
|
if( frameXML->QueryIntAttribute(A_TWEEN_EASING, &(_tweenEasing)) == tinyxml2::XML_SUCCESS)
|
|
|
|
{
|
|
|
|
frameData->tweenEasing = (CCTweenType)_tweenEasing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
frameData->tweenEasing = TWEEN_EASING_MAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parentFrameXml)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* recalculate frame data from parent frame data, use for translate matrix
|
|
|
|
*/
|
|
|
|
CCBaseData helpNode;
|
|
|
|
if (s_FlashToolVersion >= VERSION_2_0)
|
|
|
|
{
|
|
|
|
parentFrameXml->QueryFloatAttribute(A_COCOS2DX_X, &helpNode.x);
|
|
|
|
parentFrameXml->QueryFloatAttribute(A_COCOS2DX_Y, &helpNode.y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
parentFrameXml->QueryFloatAttribute(A_X, &helpNode.x);
|
|
|
|
parentFrameXml->QueryFloatAttribute(A_Y, &helpNode.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
parentFrameXml->QueryFloatAttribute(A_SKEW_X, &helpNode.skewX);
|
|
|
|
parentFrameXml->QueryFloatAttribute(A_SKEW_Y, &helpNode.skewY);
|
|
|
|
|
|
|
|
helpNode.y = -helpNode.y;
|
|
|
|
helpNode.skewX = CC_DEGREES_TO_RADIANS(helpNode.skewX);
|
|
|
|
helpNode.skewY = CC_DEGREES_TO_RADIANS(-helpNode.skewY);
|
|
|
|
|
|
|
|
CCTransformHelp::transformFromParent(*frameData, helpNode);
|
|
|
|
}
|
|
|
|
return frameData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCTextureData *CCDataReaderHelper::decodeTexture(tinyxml2::XMLElement *textureXML)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCTextureData *textureData = CCTextureData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
if( textureXML->Attribute(A_NAME) != NULL)
|
|
|
|
{
|
|
|
|
textureData->name = textureXML->Attribute(A_NAME);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
float px, py, width, height = 0;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
if(s_FlashToolVersion >= VERSION_2_0)
|
|
|
|
{
|
|
|
|
textureXML->QueryFloatAttribute(A_COCOS2D_PIVOT_X, &px);
|
|
|
|
textureXML->QueryFloatAttribute(A_COCOS2D_PIVOT_Y, &py);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
textureXML->QueryFloatAttribute(A_PIVOT_X, &px);
|
|
|
|
textureXML->QueryFloatAttribute(A_PIVOT_Y, &py);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
textureXML->QueryFloatAttribute(A_WIDTH, &width);
|
|
|
|
textureXML->QueryFloatAttribute(A_HEIGHT, &height);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
float anchorPointX = px / width;
|
|
|
|
float anchorPointY = (height - py) / height;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
textureData->pivotX = anchorPointX;
|
|
|
|
textureData->pivotY = anchorPointY;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
tinyxml2::XMLElement *contourXML = textureXML->FirstChildElement(CONTOUR);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
while (contourXML)
|
|
|
|
{
|
|
|
|
CCContourData *contourData = decodeContour(contourXML);
|
|
|
|
textureData->addContourData(contourData);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
contourXML = contourXML->NextSiblingElement(CONTOUR);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return textureData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCContourData *CCDataReaderHelper::decodeContour(tinyxml2::XMLElement *contourXML)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCContourData *contourData = CCContourData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
tinyxml2::XMLElement *vertexDataXML = contourXML->FirstChildElement(CONTOUR_VERTEX);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
while (vertexDataXML)
|
|
|
|
{
|
|
|
|
CCContourVertex2 *vertex = new CCContourVertex2(0, 0);
|
|
|
|
vertex->autorelease();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
vertexDataXML->QueryFloatAttribute(A_X, &vertex->x);
|
|
|
|
vertexDataXML->QueryFloatAttribute(A_Y, &vertex->y);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
vertex->y = -vertex->y;
|
|
|
|
contourData->vertexList.addObject(vertex);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
vertexDataXML = vertexDataXML->NextSiblingElement(CONTOUR_VERTEX);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return contourData;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CCDataReaderHelper::addDataFromJson(const char *filePath)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
unsigned long size;
|
|
|
|
std::string fullPath = CCFileUtils::sharedFileUtils()->fullPathForFilename(filePath);
|
|
|
|
const char *pFileContent = (char *)CCFileUtils::sharedFileUtils()->getFileData(fullPath.c_str() , "r", &size);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
addDataFromJsonCache(pFileContent);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCDataReaderHelper::addDataFromJsonCache(const char *fileContent)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
cs::CSJsonDictionary json;
|
|
|
|
json.initWithDescription(fileContent);
|
|
|
|
|
|
|
|
// Decode armatures
|
|
|
|
int length = json.getArrayItemCount(ARMATURE_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *armatureDic = json.getSubItemFromArray(ARMATURE_DATA, i);
|
|
|
|
CCArmatureData *armatureData = decodeArmature(*armatureDic);
|
|
|
|
CCArmatureDataManager::sharedArmatureDataManager()->addArmatureData(armatureData->name.c_str(), armatureData);
|
|
|
|
|
|
|
|
delete armatureDic;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode animations
|
|
|
|
length = json.getArrayItemCount(ANIMATION_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *animationDic = json.getSubItemFromArray(ANIMATION_DATA, i);
|
|
|
|
CCAnimationData *animationData = decodeAnimation(*animationDic);
|
|
|
|
CCArmatureDataManager::sharedArmatureDataManager()->addAnimationData(animationData->name.c_str(), animationData);
|
|
|
|
|
|
|
|
delete animationDic;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode textures
|
|
|
|
length = json.getArrayItemCount(TEXTURE_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *textureDic = json.getSubItemFromArray(TEXTURE_DATA, i);
|
|
|
|
CCTextureData *textureData = decodeTexture(*textureDic);
|
|
|
|
CCArmatureDataManager::sharedArmatureDataManager()->addTextureData(textureData->name.c_str(), textureData);
|
|
|
|
|
|
|
|
delete textureDic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCArmatureData *CCDataReaderHelper::decodeArmature(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCArmatureData *armatureData = CCArmatureData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
armatureData->name = name;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
int length = json.getArrayItemCount(BONE_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(BONE_DATA, i);
|
|
|
|
armatureData->addBoneData(decodeBone(*dic));
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete dic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return armatureData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCBoneData *CCDataReaderHelper::decodeBone(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCBoneData *boneData = CCBoneData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
decodeNode(boneData, json);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *str = json.getItemStringValue(A_NAME);
|
|
|
|
if(str != NULL)
|
|
|
|
{
|
|
|
|
boneData->name = str;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
str = json.getItemStringValue(A_PARENT);
|
|
|
|
if(str != NULL)
|
|
|
|
{
|
|
|
|
boneData->parentName = str;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
int length = json.getArrayItemCount(DISPLAY_DATA);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(DISPLAY_DATA, i);
|
|
|
|
boneData->addDisplayData(decodeBoneDisplay(*dic));
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete dic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return boneData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCDisplayData *CCDataReaderHelper::decodeBoneDisplay(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
DisplayType displayType = (DisplayType)json.getItemIntValue(A_DISPLAY_TYPE, CS_DISPLAY_SPRITE);
|
|
|
|
|
|
|
|
CCDisplayData *displayData = NULL;
|
|
|
|
|
|
|
|
switch (displayType)
|
|
|
|
{
|
|
|
|
case CS_DISPLAY_SPRITE:
|
|
|
|
{
|
|
|
|
displayData = CCSpriteDisplayData::create();
|
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
((CCSpriteDisplayData *)displayData)->displayName = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case CS_DISPLAY_ARMATURE:
|
|
|
|
{
|
|
|
|
displayData = CCArmatureDisplayData::create();
|
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
((CCArmatureDisplayData *)displayData)->displayName = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CS_DISPLAY_PARTICLE:
|
|
|
|
{
|
|
|
|
displayData = CCParticleDisplayData::create();
|
|
|
|
const char *plist = json.getItemStringValue(A_PLIST);
|
|
|
|
if(plist != NULL)
|
|
|
|
{
|
|
|
|
((CCParticleDisplayData *)displayData)->plist = plist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CS_DISPLAY_SHADER:
|
|
|
|
{
|
|
|
|
displayData = CCShaderDisplayData::create();
|
|
|
|
const char *vert = json.getItemStringValue(A_VERT);
|
|
|
|
if(vert != NULL)
|
|
|
|
{
|
|
|
|
((CCShaderDisplayData *)displayData)->vert = vert;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *frag = json.getItemStringValue(A_FRAG);
|
|
|
|
if(frag != NULL)
|
|
|
|
{
|
|
|
|
((CCShaderDisplayData *)displayData)->frag = vert;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
displayData = CCSpriteDisplayData::create();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
displayData->displayType = displayType;
|
|
|
|
|
|
|
|
return displayData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCAnimationData *CCDataReaderHelper::decodeAnimation(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCAnimationData *aniData = CCAnimationData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
aniData->name = name;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
int length = json.getArrayItemCount(MOVEMENT_DATA);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(MOVEMENT_DATA, i);
|
|
|
|
aniData->addMovement(decodeMovement(*dic));
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete dic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return aniData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCMovementData *CCDataReaderHelper::decodeMovement(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCMovementData *movementData = CCMovementData::create();
|
|
|
|
|
|
|
|
movementData->loop = json.getItemBoolvalue(A_LOOP, true);
|
|
|
|
movementData->durationTween = json.getItemIntValue(A_DURATION_TWEEN, 0);
|
|
|
|
movementData->durationTo = json.getItemIntValue(A_DURATION_TO, 0);
|
|
|
|
movementData->duration = json.getItemIntValue(A_DURATION, 0);
|
|
|
|
movementData->tweenEasing = (CCTweenType)json.getItemIntValue(A_TWEEN_EASING, Linear);
|
|
|
|
|
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
movementData->name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
int length = json.getArrayItemCount(MOVEMENT_BONE_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(MOVEMENT_BONE_DATA, i);
|
|
|
|
movementData->addMovementBoneData(decodeMovementBone(*dic));
|
|
|
|
|
|
|
|
delete dic;
|
|
|
|
}
|
|
|
|
|
|
|
|
return movementData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCMovementBoneData *CCDataReaderHelper::decodeMovementBone(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCMovementBoneData *movementBoneData = CCMovementBoneData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
movementBoneData->delay = json.getItemFloatValue(A_MOVEMENT_DELAY, 0);
|
|
|
|
movementBoneData->scale = json.getItemFloatValue(A_MOVEMENT_SCALE, 1);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
movementBoneData->name = name;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
int length = json.getArrayItemCount(FRAME_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(FRAME_DATA, i);
|
|
|
|
CCFrameData *frameData = decodeFrame(*dic);
|
|
|
|
movementBoneData->addFrameData(frameData);
|
|
|
|
//movementBoneData->duration += frameData->duration;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete dic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return movementBoneData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCFrameData *CCDataReaderHelper::decodeFrame(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCFrameData *frameData = CCFrameData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
decodeNode(frameData, json);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
frameData->duration = json.getItemIntValue(A_DURATION, 1);
|
|
|
|
frameData->tweenEasing = (CCTweenType)json.getItemIntValue(A_TWEEN_EASING, Linear);
|
|
|
|
frameData->displayIndex = json.getItemIntValue(A_DISPLAY_INDEX, 0);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *event = json.getItemStringValue(A_EVENT);
|
|
|
|
if (event != NULL)
|
|
|
|
{
|
|
|
|
frameData->m_strEvent = event;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return frameData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCTextureData *CCDataReaderHelper::decodeTexture(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCTextureData *textureData = CCTextureData::create();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
const char *name = json.getItemStringValue(A_NAME);
|
|
|
|
if(name != NULL)
|
|
|
|
{
|
|
|
|
textureData->name = name;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
textureData->width = json.getItemFloatValue(A_WIDTH, 0);
|
|
|
|
textureData->height = json.getItemFloatValue(A_HEIGHT, 0);
|
|
|
|
textureData->pivotX = json.getItemFloatValue(A_PIVOT_X, 0);
|
|
|
|
textureData->pivotY = json.getItemFloatValue(A_PIVOT_Y, 0);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
int length = json.getArrayItemCount(CONTOUR_DATA);
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(CONTOUR_DATA, i);
|
|
|
|
textureData->contourDataList.addObject(decodeContour(*dic));
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete dic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return textureData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCContourData *CCDataReaderHelper::decodeContour(cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCContourData *contourData = CCContourData::create();
|
|
|
|
|
|
|
|
int length = json.getArrayItemCount(VERTEX_POINT);
|
|
|
|
for (int i = length - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
cs::CSJsonDictionary *dic = json.getSubItemFromArray(VERTEX_POINT, i);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CCContourVertex2 *vertex = new CCContourVertex2(0, 0);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
vertex->x = dic->getItemFloatValue(A_X, 0);
|
|
|
|
vertex->y = dic->getItemFloatValue(A_Y, 0);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
contourData->vertexList.addObject(vertex);
|
|
|
|
vertex->release();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete dic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return contourData;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
void CCDataReaderHelper::decodeNode(CCBaseData *node, cs::CSJsonDictionary &json)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
node->x = json.getItemFloatValue(A_X, 0) * s_PositionReadScale;
|
|
|
|
node->y = json.getItemFloatValue(A_Y, 0) * s_PositionReadScale;
|
|
|
|
node->zOrder = json.getItemIntValue(A_Z, 0);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
node->skewX = json.getItemFloatValue(A_SKEW_X, 0);
|
|
|
|
node->skewY = json.getItemFloatValue(A_SKEW_Y, 0);
|
|
|
|
node->scaleX = json.getItemFloatValue(A_SCALE_X, 1);
|
|
|
|
node->scaleY = json.getItemFloatValue(A_SCALE_Y, 1);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
cs::CSJsonDictionary *colorDic = json.getSubItemFromArray(COLOR_INFO, 0);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
if (colorDic)
|
|
|
|
{
|
|
|
|
node->a = colorDic->getItemIntValue(A_ALPHA, 255);
|
|
|
|
node->r = colorDic->getItemIntValue(A_RED, 255);
|
|
|
|
node->g = colorDic->getItemIntValue(A_GREEN, 255);
|
|
|
|
node->b = colorDic->getItemIntValue(A_BLUE, 255);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
node->isUseColorInfo = true;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
delete colorDic;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
NS_CC_EXT_END
|