axmol/extensions/cocostudio/CCDataReaderHelper.cpp

2495 lines
83 KiB
C++
Raw Normal View History

2013-06-06 12:02:54 +08:00
/****************************************************************************
2020-10-17 16:32:16 +08:00
Copyright (c) 2013-2017 Chukong Technologies Inc.
2013-06-06 12:02:54 +08:00
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.
****************************************************************************/
Squashed commit of the following: commit a794d107ad85667e3d754f0b6251fc864dfbf288 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 14:33:49 2014 -0700 Yeah... everything compiles on win32 and wp8 commit 4740be6e4a0d16f742c27996e7ab2c100adc76af Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:58:38 2014 -0700 CCIME moved to base and compiles on Android commit ff3e1bf1eb27a01019f4e1b56d1aebbe2d385f72 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:02:57 2014 -0700 compiles Ok for Windows Phone 8 commit 8160a4eb2ecdc61b5bd1cf56b90d2da6f11e3ebd Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 12:25:31 2014 -0700 fixes for Windows Phone 8 commit 418197649efc93032aee0adc205e502101cdb53d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 11:15:13 2014 -0700 Compiles on Win32 commit 08813ed7cf8ac1079ffadeb1ce78ea9e833e1a33 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 10:08:31 2014 -0700 Compiles on linux! commit 118896521e5b335a5257090b6863f1fb2a2002fe Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 09:30:42 2014 -0700 moves cocos/2d/platform -> cocos/platform commit 4fe9319d7717b0c1bccb2db0156eeb86255a89e0 Merge: bd68ec2 511295e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 08:24:41 2014 -0700 Merge remote-tracking branch 'cocos2d/v3' into files commit bd68ec2f0e3a826d8b2f4b60564ba65ce766bc56 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu May 15 19:36:23 2014 -0700 files in the correct directory
2014-05-17 05:36:00 +08:00
#include "platform/CCFileUtils.h"
2014-04-30 08:37:36 +08:00
#include "base/CCDirector.h"
#include "base/CCScheduler.h"
2014-07-14 20:45:24 +08:00
#include "base/ccUtils.h"
#include "pugixml/pugixml.hpp"
2020-10-17 16:32:16 +08:00
#include "CCDataReaderHelper.h"
#include "CCArmatureDataManager.h"
#include "CCTransformHelp.h"
#include "CCArmatureDefine.h"
#include "CCDatas.h"
#include "CocoLoader.h"
using namespace cocos2d;
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
static const char* VERSION = "version";
static const float VERSION_2_0 = 2.0f;
2021-12-25 10:04:45 +08:00
static const char* ARMATURES = "armatures";
static const char* ARMATURE = "armature";
static const char* BONE = "b";
static const char* DISPLAY = "d";
static const char* ANIMATIONS = "animations";
static const char* ANIMATION = "animation";
static const char* MOVEMENT = "mov";
static const char* FRAME = "f";
static const char* TEXTURE_ATLAS = "TextureAtlas";
static const char* SUB_TEXTURE = "SubTexture";
static const char* A_NAME = "name";
static const char* A_DURATION = "dr";
static const char* A_FRAME_INDEX = "fi";
static const char* A_DURATION_TO = "to";
static const char* A_DURATION_TWEEN = "drTW";
static const char* A_LOOP = "lp";
static const char* A_MOVEMENT_SCALE = "sc";
static const char* A_MOVEMENT_DELAY = "dl";
static const char* A_DISPLAY_INDEX = "dI";
static const char* A_PLIST = "plist";
static const char* A_PARENT = "parent";
static const char* A_SKEW_X = "kX";
static const char* A_SKEW_Y = "kY";
static const char* A_SCALE_X = "cX";
static const char* A_SCALE_Y = "cY";
static const char* A_Z = "z";
static const char* A_EVENT = "evt";
static const char* A_SOUND = "sd";
static const char* A_SOUND_EFFECT = "sdE";
static const char* A_TWEEN_EASING = "twE";
static const char* A_EASING_PARAM = "twEP";
static const char* A_TWEEN_ROTATE = "twR";
static const char* A_IS_ARMATURE = "isArmature";
static const char* A_DISPLAY_TYPE = "displayType";
static const char* A_MOVEMENT = "mov";
static const char* A_X = "x";
static const char* A_Y = "y";
static const char* A_COCOS2DX_X = "cocos2d_x";
static const char* A_COCOS2DX_Y = "cocos2d_y";
static const char* A_WIDTH = "width";
static const char* A_HEIGHT = "height";
static const char* A_PIVOT_X = "pX";
static const char* A_PIVOT_Y = "pY";
static const char* A_COCOS2D_PIVOT_X = "cocos2d_pX";
static const char* A_COCOS2D_PIVOT_Y = "cocos2d_pY";
static const char* A_BLEND_TYPE = "bd";
static const char* A_BLEND_SRC = "bd_src";
static const char* A_BLEND_DST = "bd_dst";
static const char* A_ALPHA = "a";
static const char* A_RED = "r";
static const char* A_GREEN = "g";
static const char* A_BLUE = "b";
static const char* A_ALPHA_OFFSET = "aM";
static const char* A_RED_OFFSET = "rM";
static const char* A_GREEN_OFFSET = "gM";
static const char* A_BLUE_OFFSET = "bM";
static const char* A_COLOR_TRANSFORM = "colorTransform";
static const char* A_TWEEN_FRAME = "tweenFrame";
static const char* CONTOUR = "con";
static const char* CONTOUR_VERTEX = "con_vt";
static const char* FL_NAN = "NaN";
static const char* FRAME_DATA = "frame_data";
static const char* MOVEMENT_BONE_DATA = "mov_bone_data";
static const char* MOVEMENT_DATA = "mov_data";
static const char* ANIMATION_DATA = "animation_data";
static const char* DISPLAY_DATA = "display_data";
static const char* SKIN_DATA = "skin_data";
static const char* BONE_DATA = "bone_data";
static const char* ARMATURE_DATA = "armature_data";
static const char* CONTOUR_DATA = "contour_data";
static const char* TEXTURE_DATA = "texture_data";
static const char* VERTEX_POINT = "vertex";
static const char* COLOR_INFO = "color";
static const char* CONFIG_FILE_PATH = "config_file_path";
static const char* CONTENT_SCALE = "content_scale";
2021-12-26 23:26:34 +08:00
static std::string readFileContent(std::string_view filename, bool binary)
2021-12-25 10:04:45 +08:00
{
auto fs = FileUtils::getInstance();
Add FileUtils::getContents(). (#15479) * Add FileUtils::getContents(). * skip FileUtils::getContents() in binding generator config. * use FileUtils::getContents in CCDataReaderHelper. * obey the cocos2d-x coding style. * Explicit constructor. * More docs. * More tests. * Move FileError to FileUtils::Error. * Fixes wrong buffer size for reading into string and vector. * Update tests. * Add note on padding for output buffers. * FileUtils: implements old methods by using `getContents()`. methods are: * FileUtils::getDataFromFile() * FileUtils::getStringFromFile() * FileUtils::getFileData() and follow Android methods are now just calls FileUtils' ones. * FileUtilsAndroid::getDataFromFile() * FileUtilsAndroid::getStringFromFile() * FileUtilsAndroid::getFileData() * Fixes build error. * FileUtils::getFileData: Return the size of data. * Remove old methods form FileUtilsAndroid they are now done in FileUtils. * Fixes for win32 code. * Fixes build error in test and add more test. * Better error message. * Make template type name more readable. * Update comments. * Move internal functions to anonymous namespace. * Refactor FileUtils test. * Fix warning about compare signed and unsigned. * Win32 and WinRT does not use text mode. That is we don't need simulate convert CRLF to LF. * Fixes for Win32 and WinRT. * Update for Win32 and WinRT. * Win32: return FileUtils:Error::TooLarge when file is large than 2^32-1. * Win32: remove checkFileName() which has no effect at all. * WinRT: add FileUtilsWinRT::getContents() using ::CreateFile2. * WinRT: add override keyword for FileUtilsWinRT::getFileSize(). * Update for coding styles. * More error strings. * check read and malloc return codes. * rename FileUtils::Error to FileUtils::Status. * Fixes for WinRT, use GetFileInformationByHandleEx to get file size. * Fixes build error for winrt and cleanup FileUtils::Status. * Try to fix the build error on Linux. Status must defined in some header, so move FileUtils.h up. * Remove support of text mode on WinRT (it is the last platform support text mode).
2016-04-26 13:37:22 +08:00
std::string s;
if (binary)
fs->getContents(filename, &s);
else
s = fs->getStringFromFile(filename);
Add FileUtils::getContents(). (#15479) * Add FileUtils::getContents(). * skip FileUtils::getContents() in binding generator config. * use FileUtils::getContents in CCDataReaderHelper. * obey the cocos2d-x coding style. * Explicit constructor. * More docs. * More tests. * Move FileError to FileUtils::Error. * Fixes wrong buffer size for reading into string and vector. * Update tests. * Add note on padding for output buffers. * FileUtils: implements old methods by using `getContents()`. methods are: * FileUtils::getDataFromFile() * FileUtils::getStringFromFile() * FileUtils::getFileData() and follow Android methods are now just calls FileUtils' ones. * FileUtilsAndroid::getDataFromFile() * FileUtilsAndroid::getStringFromFile() * FileUtilsAndroid::getFileData() * Fixes build error. * FileUtils::getFileData: Return the size of data. * Remove old methods form FileUtilsAndroid they are now done in FileUtils. * Fixes for win32 code. * Fixes build error in test and add more test. * Better error message. * Make template type name more readable. * Update comments. * Move internal functions to anonymous namespace. * Refactor FileUtils test. * Fix warning about compare signed and unsigned. * Win32 and WinRT does not use text mode. That is we don't need simulate convert CRLF to LF. * Fixes for Win32 and WinRT. * Update for Win32 and WinRT. * Win32: return FileUtils:Error::TooLarge when file is large than 2^32-1. * Win32: remove checkFileName() which has no effect at all. * WinRT: add FileUtilsWinRT::getContents() using ::CreateFile2. * WinRT: add override keyword for FileUtilsWinRT::getFileSize(). * Update for coding styles. * More error strings. * check read and malloc return codes. * rename FileUtils::Error to FileUtils::Status. * Fixes for WinRT, use GetFileInformationByHandleEx to get file size. * Fixes build error for winrt and cleanup FileUtils::Status. * Try to fix the build error on Linux. Status must defined in some header, so move FileUtils.h up. * Remove support of text mode on WinRT (it is the last platform support text mode).
2016-04-26 13:37:22 +08:00
return s;
};
2021-12-25 10:04:45 +08:00
namespace cocostudio
{
2013-06-06 12:02:54 +08:00
float s_PositionReadScale = 1;
2013-09-13 18:07:37 +08:00
std::vector<std::string> DataReaderHelper::_configFileList;
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
DataReaderHelper* DataReaderHelper::_dataReaderHelper = nullptr;
2013-06-06 12:02:54 +08:00
2013-09-13 18:07:37 +08:00
//! Async load
void DataReaderHelper::loadData()
2013-09-13 18:07:37 +08:00
{
2021-12-25 10:04:45 +08:00
AsyncStruct* pAsyncStruct = nullptr;
2013-09-13 18:07:37 +08:00
while (true)
{
2021-12-25 10:04:45 +08:00
std::queue<AsyncStruct*>* pQueue = _asyncStructQueue;
_asyncStructQueueMutex.lock(); // get async struct from queue
2013-09-13 18:07:37 +08:00
if (pQueue->empty())
{
2013-09-15 20:24:25 +08:00
_asyncStructQueueMutex.unlock();
2013-09-13 18:07:37 +08:00
if (need_quit)
{
break;
}
else
{
2021-12-25 10:04:45 +08:00
std::unique_lock<std::mutex> lk(_sleepMutex);
_sleepCondition.wait(lk);
2013-09-13 18:07:37 +08:00
continue;
}
}
else
{
pAsyncStruct = pQueue->front();
pQueue->pop();
2013-09-15 20:24:25 +08:00
_asyncStructQueueMutex.unlock();
2013-09-13 18:07:37 +08:00
}
// generate data info
2021-12-25 10:04:45 +08:00
DataInfo* pDataInfo = new DataInfo();
pDataInfo->asyncStruct = pAsyncStruct;
pDataInfo->filename = pAsyncStruct->filename;
pDataInfo->baseFilePath = pAsyncStruct->baseFilePath;
2013-09-13 18:07:37 +08:00
if (pAsyncStruct->configType == DragonBone_XML)
{
DataReaderHelper::addDataFromCache(pAsyncStruct->fileContent, pDataInfo);
2013-09-13 18:07:37 +08:00
}
2021-12-25 10:04:45 +08:00
else if (pAsyncStruct->configType == CocoStudio_JSON)
2013-09-13 18:07:37 +08:00
{
DataReaderHelper::addDataFromJsonCache(pAsyncStruct->fileContent, pDataInfo);
2013-09-13 18:07:37 +08:00
}
2021-12-25 10:04:45 +08:00
else if (pAsyncStruct->configType == CocoStudio_Binary)
2014-06-18 20:09:12 +08:00
{
2021-12-25 10:04:45 +08:00
DataReaderHelper::addDataFromBinaryCache(pAsyncStruct->fileContent.c_str(), pDataInfo);
2014-06-18 20:09:12 +08:00
}
2013-09-13 18:07:37 +08:00
// put the image info into the queue
2013-09-15 20:24:25 +08:00
_dataInfoMutex.lock();
_dataQueue->push(pDataInfo);
_dataInfoMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2021-12-25 10:04:45 +08:00
if (_asyncStructQueue != nullptr)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
delete _asyncStructQueue;
_asyncStructQueue = nullptr;
2013-09-15 20:24:25 +08:00
delete _dataQueue;
_dataQueue = nullptr;
2013-09-13 18:07:37 +08:00
}
}
2021-12-25 10:04:45 +08:00
DataReaderHelper* DataReaderHelper::getInstance()
2013-09-13 18:07:37 +08:00
{
2021-12-25 10:04:45 +08:00
if (!_dataReaderHelper)
2013-09-13 18:07:37 +08:00
{
2021-12-08 00:11:53 +08:00
_dataReaderHelper = new DataReaderHelper();
2013-09-13 18:07:37 +08:00
}
2013-09-15 20:24:25 +08:00
return _dataReaderHelper;
2013-09-13 18:07:37 +08:00
}
void DataReaderHelper::setPositionReadScale(float scale)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
s_PositionReadScale = scale;
2013-06-06 12:02:54 +08:00
}
float DataReaderHelper::getPositionReadScale()
2013-06-06 12:02:54 +08:00
{
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
void DataReaderHelper::purge()
2013-09-13 18:07:37 +08:00
{
_configFileList.clear();
2013-09-15 20:24:25 +08:00
CC_SAFE_RELEASE_NULL(_dataReaderHelper);
2013-09-13 18:07:37 +08:00
}
DataReaderHelper::DataReaderHelper()
2021-12-25 10:04:45 +08:00
: _loadingThread(nullptr)
, _asyncRefCount(0)
, _asyncRefTotalCount(0)
, need_quit(false)
, _asyncStructQueue(nullptr)
, _dataQueue(nullptr)
{}
2013-09-13 18:07:37 +08:00
DataReaderHelper::~DataReaderHelper()
2013-09-13 18:07:37 +08:00
{
need_quit = true;
2021-12-25 10:04:45 +08:00
_sleepCondition.notify_one();
if (_loadingThread)
_loadingThread->join();
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
CC_SAFE_DELETE(_loadingThread);
_dataReaderHelper = nullptr;
2013-09-13 18:07:37 +08:00
}
2021-12-26 23:26:34 +08:00
void DataReaderHelper::addDataFromFile(std::string_view filePath)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
/*
2021-12-25 10:04:45 +08:00
* Check if file is already added to ArmatureDataManager, if then return.
*/
for (unsigned int i = 0; i < _configFileList.size(); i++)
2013-06-07 10:52:32 +08:00
{
2013-12-24 14:21:25 +08:00
if (_configFileList[i] == filePath)
2013-06-07 10:52:32 +08:00
{
return;
}
}
2021-12-27 13:52:08 +08:00
_configFileList.push_back(std::string{filePath});
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
//! find the base file path
2021-12-27 13:52:08 +08:00
std::string basefilePath;
2021-12-28 11:00:34 +08:00
size_t pos = filePath.find_last_of('/');
2013-09-13 18:07:37 +08:00
if (pos != std::string::npos)
{
2021-12-27 13:52:08 +08:00
basefilePath = filePath.substr(0, pos + 1);
2013-09-13 18:07:37 +08:00
}
std::string fileExtension = cocos2d::FileUtils::getInstance()->getFileExtension(filePath);
2013-06-07 10:52:32 +08:00
2013-12-24 13:35:46 +08:00
// Read content from file
std::string fullPath = FileUtils::getInstance()->fullPathForFilename(filePath);
bool isbinaryfilesrc = fileExtension == ".csb";
2014-06-18 20:09:12 +08:00
_dataReaderHelper->_getFileMutex.lock();
std::string contentStr(readFileContent(fullPath, isbinaryfilesrc));
2014-06-18 20:09:12 +08:00
_dataReaderHelper->_getFileMutex.unlock();
DataInfo dataInfo;
2021-12-25 10:04:45 +08:00
dataInfo.filename = filePath;
dataInfo.asyncStruct = nullptr;
dataInfo.baseFilePath = basefilePath;
if (fileExtension == ".xml")
2013-06-07 10:52:32 +08:00
{
2013-12-24 13:35:46 +08:00
DataReaderHelper::addDataFromCache(contentStr, &dataInfo);
2013-06-07 10:52:32 +08:00
}
2021-12-25 10:04:45 +08:00
else if (fileExtension == ".json" || fileExtension == ".exportjson")
2013-06-07 10:52:32 +08:00
{
2013-12-24 13:35:46 +08:00
DataReaderHelper::addDataFromJsonCache(contentStr, &dataInfo);
2013-06-07 10:52:32 +08:00
}
2021-12-25 10:04:45 +08:00
else if (isbinaryfilesrc)
2014-06-18 20:09:12 +08:00
{
2021-12-25 10:04:45 +08:00
DataReaderHelper::addDataFromBinaryCache(contentStr.c_str(), &dataInfo);
2014-06-18 20:09:12 +08:00
}
2013-06-06 12:02:54 +08:00
}
2021-12-26 23:26:34 +08:00
void DataReaderHelper::addDataFromFileAsync(std::string_view imagePath,
std::string_view plistPath,
std::string_view filePath,
2021-12-25 10:04:45 +08:00
Ref* target,
SEL_SCHEDULE selector)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
/*
2021-12-25 10:04:45 +08:00
* Check if file is already added to ArmatureDataManager, if then return.
*/
for (unsigned int i = 0; i < _configFileList.size(); i++)
2013-09-13 18:07:37 +08:00
{
2013-12-24 14:21:25 +08:00
if (_configFileList[i] == filePath)
2013-09-13 18:07:37 +08:00
{
if (target && selector)
{
2013-09-15 20:24:25 +08:00
if (_asyncRefTotalCount == 0 && _asyncRefCount == 0)
2013-09-13 18:07:37 +08:00
{
(target->*selector)(1);
}
else
{
2013-09-15 20:24:25 +08:00
(target->*selector)((_asyncRefTotalCount - _asyncRefCount) / (float)_asyncRefTotalCount);
2013-09-13 18:07:37 +08:00
}
}
return;
}
}
2021-12-27 13:52:08 +08:00
_configFileList.push_back(std::string{filePath});
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
//! find the base file path
2021-12-27 13:52:08 +08:00
std::string basefilePath;
2021-12-28 11:00:34 +08:00
size_t pos = filePath.find_last_of('/');
2013-10-30 09:41:40 +08:00
2013-09-13 18:07:37 +08:00
if (pos != std::string::npos)
{
2021-12-27 13:52:08 +08:00
basefilePath = filePath.substr(0, pos + 1);
2020-10-04 23:41:01 +08:00
}
2013-09-13 18:07:37 +08:00
// lazy init
if (_asyncStructQueue == nullptr)
2013-09-13 18:07:37 +08:00
{
2021-12-25 10:04:45 +08:00
_asyncStructQueue = new std::queue<AsyncStruct*>();
_dataQueue = new std::queue<DataInfo*>();
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
// create a new thread to load images
_loadingThread = new std::thread(&DataReaderHelper::loadData, this);
2013-09-13 18:07:37 +08:00
need_quit = false;
}
2013-09-15 20:24:25 +08:00
if (0 == _asyncRefCount)
2013-09-13 18:07:37 +08:00
{
2021-12-25 10:04:45 +08:00
Director::getInstance()->getScheduler()->schedule(CC_SCHEDULE_SELECTOR(DataReaderHelper::addDataAsyncCallBack),
this, 0, false);
2013-09-13 18:07:37 +08:00
}
2013-09-15 20:24:25 +08:00
++_asyncRefCount;
++_asyncRefTotalCount;
2013-09-13 18:07:37 +08:00
if (target)
{
target->retain();
}
// generate async struct
2021-12-25 10:04:45 +08:00
AsyncStruct* data = new AsyncStruct();
data->filename = filePath;
data->baseFilePath = basefilePath;
data->target = target;
data->selector = selector;
data->autoLoadSpriteFile = ArmatureDataManager::getInstance()->isAutoLoadSpriteFile();
2013-09-13 18:07:37 +08:00
2013-10-30 09:41:40 +08:00
data->imagePath = imagePath;
data->plistPath = plistPath;
2013-09-13 18:07:37 +08:00
std::string fileExtension = cocos2d::FileUtils::getInstance()->getFileExtension(filePath);
2021-12-25 10:04:45 +08:00
std::string fullPath = FileUtils::getInstance()->fullPathForFilename(filePath);
bool isbinaryfilesrc = fileExtension == ".csb";
// This only read exportJson file, it takes only a little time.
// Large image files are loaded in DataReaderHelper::addDataFromJsonCache(dataInfo) asynchronously.
2014-06-18 20:09:12 +08:00
_dataReaderHelper->_getFileMutex.lock();
data->fileContent.assign(readFileContent(fullPath, isbinaryfilesrc));
2014-06-18 20:09:12 +08:00
_dataReaderHelper->_getFileMutex.unlock();
if (fileExtension == ".xml")
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
data->configType = DragonBone_XML;
2013-06-07 10:52:32 +08:00
}
2021-12-25 10:04:45 +08:00
else if (fileExtension == ".json" || fileExtension == ".exportjson")
2013-09-13 18:07:37 +08:00
{
data->configType = CocoStudio_JSON;
}
2021-12-25 10:04:45 +08:00
else if (isbinaryfilesrc)
2014-06-18 20:09:12 +08:00
{
data->configType = CocoStudio_Binary;
}
2013-09-13 18:07:37 +08:00
// add async struct into queue
2013-09-15 20:24:25 +08:00
_asyncStructQueueMutex.lock();
_asyncStructQueue->push(data);
_asyncStructQueueMutex.unlock();
2013-09-13 18:07:37 +08:00
2013-09-15 20:24:25 +08:00
_sleepCondition.notify_one();
2013-06-06 12:02:54 +08:00
}
void DataReaderHelper::addDataAsyncCallBack(float /*dt*/)
2013-06-06 12:02:54 +08:00
{
2013-09-13 18:07:37 +08:00
// the data is generated in loading thread
2021-12-25 10:04:45 +08:00
std::queue<DataInfo*>* dataQueue = _dataQueue;
2013-09-13 18:07:37 +08:00
2013-09-15 20:24:25 +08:00
_dataInfoMutex.lock();
2013-09-13 18:07:37 +08:00
if (dataQueue->empty())
{
2013-09-15 20:24:25 +08:00
_dataInfoMutex.unlock();
2013-09-13 18:07:37 +08:00
}
else
{
2021-12-25 10:04:45 +08:00
DataInfo* pDataInfo = dataQueue->front();
2013-09-13 18:07:37 +08:00
dataQueue->pop();
2013-09-15 20:24:25 +08:00
_dataInfoMutex.unlock();
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
AsyncStruct* pAsyncStruct = pDataInfo->asyncStruct;
2013-10-30 09:41:40 +08:00
if (pAsyncStruct->imagePath != "" && pAsyncStruct->plistPath != "")
{
_getFileMutex.lock();
2021-12-25 10:04:45 +08:00
ArmatureDataManager::getInstance()->addSpriteFrameFromFile(pAsyncStruct->plistPath, pAsyncStruct->imagePath,
pDataInfo->filename);
2013-10-30 09:41:40 +08:00
_getFileMutex.unlock();
}
2013-09-13 18:07:37 +08:00
while (!pDataInfo->configFileQueue.empty())
{
std::string configPath = pDataInfo->configFileQueue.front();
2013-10-30 09:41:40 +08:00
_getFileMutex.lock();
2021-12-25 10:04:45 +08:00
ArmatureDataManager::getInstance()->addSpriteFrameFromFile(
(pAsyncStruct->baseFilePath + configPath + ".plist"),
(pAsyncStruct->baseFilePath + configPath + ".png"), pDataInfo->filename);
2013-10-30 09:41:40 +08:00
_getFileMutex.unlock();
2013-09-13 18:07:37 +08:00
pDataInfo->configFileQueue.pop();
}
2021-12-25 10:04:45 +08:00
Ref* target = pAsyncStruct->target;
2013-09-13 18:07:37 +08:00
SEL_SCHEDULE selector = pAsyncStruct->selector;
2013-09-15 20:24:25 +08:00
--_asyncRefCount;
2013-09-13 18:07:37 +08:00
if (target && selector)
{
2013-09-15 20:24:25 +08:00
(target->*selector)((_asyncRefTotalCount - _asyncRefCount) / (float)_asyncRefTotalCount);
2013-09-13 18:07:37 +08:00
target->release();
}
delete pAsyncStruct;
delete pDataInfo;
2013-09-15 20:24:25 +08:00
if (0 == _asyncRefCount)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_asyncRefTotalCount = 0;
2021-12-25 10:04:45 +08:00
Director::getInstance()->getScheduler()->unschedule(
CC_SCHEDULE_SELECTOR(DataReaderHelper::addDataAsyncCallBack), this);
2013-09-13 18:07:37 +08:00
}
}
2013-06-06 12:02:54 +08:00
}
2021-12-26 23:26:34 +08:00
void DataReaderHelper::removeConfigFile(std::string_view configFile)
{
auto it_end = _configFileList.end();
for (auto it = _configFileList.begin(); it != it_end; ++it)
{
if (*it == configFile)
{
_configFileList.erase(it);
break;
}
}
}
2013-09-13 18:07:37 +08:00
2021-12-26 23:26:34 +08:00
void DataReaderHelper::addDataFromCache(std::string_view pFileContent, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2019-11-24 23:15:56 +08:00
pugi::xml_document document;
2021-12-27 13:52:08 +08:00
pugi::xml_parse_result ret = document.load_buffer(pFileContent.data(), pFileContent.length());
2021-12-28 11:00:34 +08:00
if (!ret)
return;
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
auto root = document.document_element();
2019-11-24 23:15:56 +08:00
dataInfo->flashToolVersion = root.attribute(VERSION).as_float();
2021-12-25 10:04:45 +08:00
2013-06-07 10:52:32 +08:00
/*
2021-12-25 10:04:45 +08:00
* Begin decode armature data from xml
*/
2019-11-24 23:15:56 +08:00
auto armaturesXML = root.child(ARMATURES);
2021-12-25 10:04:45 +08:00
auto armatureXML = armaturesXML.child(ARMATURE);
while (armatureXML)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
ArmatureData* armatureData = DataReaderHelper::decodeArmature(armatureXML, dataInfo);
2013-09-13 18:07:37 +08:00
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.lock();
2013-09-13 18:07:37 +08:00
}
ArmatureDataManager::getInstance()->addArmatureData(armatureData->name, armatureData, dataInfo->filename);
2013-09-13 18:07:37 +08:00
armatureData->release();
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
armatureXML = armatureXML.next_sibling(ARMATURE);
2013-06-07 10:52:32 +08:00
}
/*
2021-12-25 10:04:45 +08:00
* Begin decode animation data from xml
*/
2019-11-24 23:15:56 +08:00
auto animationsXML = root.child(ANIMATIONS);
2021-12-25 10:04:45 +08:00
auto animationXML = animationsXML.child(ANIMATION);
while (animationXML)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
AnimationData* animationData = DataReaderHelper::decodeAnimation(animationXML, dataInfo);
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.lock();
2013-09-13 18:07:37 +08:00
}
ArmatureDataManager::getInstance()->addAnimationData(animationData->name, animationData, dataInfo->filename);
2013-09-13 18:07:37 +08:00
animationData->release();
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2019-11-24 23:15:56 +08:00
animationXML = animationXML.next_sibling(ANIMATION);
2013-06-07 10:52:32 +08:00
}
/*
2021-12-25 10:04:45 +08:00
* Begin decode texture data from xml
*/
2019-11-24 23:15:56 +08:00
auto texturesXML = root.child(TEXTURE_ATLAS);
2021-12-25 10:04:45 +08:00
auto textureXML = texturesXML.child(SUB_TEXTURE);
while (textureXML)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
TextureData* textureData = DataReaderHelper::decodeTexture(textureXML, dataInfo);
2013-06-07 10:52:32 +08:00
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.lock();
2013-09-13 18:07:37 +08:00
}
ArmatureDataManager::getInstance()->addTextureData(textureData->name, textureData, dataInfo->filename);
2013-09-13 18:07:37 +08:00
textureData->release();
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2019-11-24 23:15:56 +08:00
textureXML = textureXML.next_sibling(SUB_TEXTURE);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
ArmatureData* DataReaderHelper::decodeArmature(pugi::xml_node& armatureXML, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
ArmatureData* armatureData = new ArmatureData();
2013-09-13 18:07:37 +08:00
armatureData->init();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
armatureData->name = armatureXML.attribute(A_NAME).as_string();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugi::xml_node boneXML = armatureXML.child(BONE);
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
while (boneXML)
2013-06-07 10:52:32 +08:00
{
/*
2021-12-25 10:04:45 +08:00
* If this bone have parent, then get the parent bone xml
*/
const char* parentName = boneXML.attribute(A_PARENT).as_string();
2019-11-24 23:15:56 +08:00
pugi::xml_node parentXML;
2013-06-07 10:52:32 +08:00
if (parentName)
{
2021-12-25 10:04:45 +08:00
parentXML = armatureXML.child(BONE);
std::string parentNameStr = parentName;
2013-06-07 10:52:32 +08:00
while (parentXML)
{
2019-11-24 23:15:56 +08:00
if (parentNameStr == parentXML.attribute(A_NAME).as_string())
2013-06-07 10:52:32 +08:00
{
break;
}
2019-11-24 23:15:56 +08:00
parentXML = parentXML.next_sibling(BONE);
2013-06-07 10:52:32 +08:00
}
}
2021-12-25 10:04:45 +08:00
BoneData* boneData = decodeBone(boneXML, parentXML, dataInfo);
2013-06-07 10:52:32 +08:00
armatureData->addBoneData(boneData);
2013-09-13 18:07:37 +08:00
boneData->release();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
boneXML = boneXML.next_sibling(BONE);
2013-06-07 10:52:32 +08:00
}
return armatureData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
BoneData* DataReaderHelper::decodeBone(pugi::xml_node& boneXML, pugi::xml_node& /*parentXml*/, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
BoneData* boneData = new BoneData();
2013-09-13 18:07:37 +08:00
boneData->init();
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
boneData->name = boneXML.attribute(A_NAME).as_string();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
auto aparent = boneXML.attribute(A_PARENT);
2021-12-25 10:04:45 +08:00
if (aparent)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
boneData->parentName = aparent.as_string();
2013-06-07 10:52:32 +08:00
}
2019-11-24 23:15:56 +08:00
boneData->zOrder = boneXML.attribute(A_Z).as_int();
2013-09-13 18:07:37 +08:00
2019-11-24 23:15:56 +08:00
pugi::xml_node displayXML = boneXML.child(DISPLAY);
2021-12-25 10:04:45 +08:00
while (displayXML)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
DisplayData* displayData = decodeBoneDisplay(displayXML, dataInfo);
2013-06-07 10:52:32 +08:00
boneData->addDisplayData(displayData);
2013-09-13 18:07:37 +08:00
displayData->release();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
displayXML = displayXML.next_sibling(DISPLAY);
2013-06-07 10:52:32 +08:00
}
return boneData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
DisplayData* DataReaderHelper::decodeBoneDisplay(pugi::xml_node& displayXML, DataInfo* /*dataInfo*/)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
int _isArmature = 0;
2021-12-25 10:04:45 +08:00
DisplayData* displayData;
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
auto isArmatureDS = displayXML.attribute(A_IS_ARMATURE);
2021-12-25 10:04:45 +08:00
if (isArmatureDS)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
_isArmature = isArmatureDS.as_int();
2021-12-25 10:04:45 +08:00
if (!_isArmature)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
displayData = new SpriteDisplayData();
displayData->displayType = CS_DISPLAY_SPRITE;
2013-06-07 10:52:32 +08:00
}
else
{
2021-12-25 10:04:45 +08:00
displayData = new ArmatureDisplayData();
displayData->displayType = CS_DISPLAY_ARMATURE;
2013-06-07 10:52:32 +08:00
}
}
else
{
2021-12-25 10:04:45 +08:00
displayData = new SpriteDisplayData();
displayData->displayType = CS_DISPLAY_SPRITE;
2013-06-07 10:52:32 +08:00
}
2019-11-24 23:15:56 +08:00
auto nameDS = displayXML.attribute(A_NAME);
2021-12-25 10:04:45 +08:00
if (nameDS)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
if (!_isArmature)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
((SpriteDisplayData*)displayData)->displayName = nameDS.as_string();
2013-06-07 10:52:32 +08:00
}
else
{
2021-12-25 10:04:45 +08:00
((ArmatureDisplayData*)displayData)->displayName = nameDS.as_string();
2013-06-07 10:52:32 +08:00
}
}
return displayData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
AnimationData* DataReaderHelper::decodeAnimation(pugi::xml_node& animationXML, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
AnimationData* aniData = new AnimationData();
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* name = animationXML.attribute(A_NAME).as_string();
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
ArmatureData* armatureData = ArmatureDataManager::getInstance()->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
2019-11-24 23:15:56 +08:00
pugi::xml_node movementXML = animationXML.child(MOVEMENT);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
while (movementXML)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
MovementData* movementData = decodeMovement(movementXML, armatureData, dataInfo);
2013-06-07 10:52:32 +08:00
aniData->addMovement(movementData);
2013-09-13 18:07:37 +08:00
movementData->release();
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
movementXML = movementXML.next_sibling(MOVEMENT);
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
}
2021-12-25 10:04:45 +08:00
MovementData* DataReaderHelper::decodeMovement(pugi::xml_node& movementXML,
ArmatureData* armatureData,
DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
MovementData* movementData = new MovementData();
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
const char* movName = movementXML.attribute(A_NAME).as_string();
movementData->name = movName;
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(movementXML, A_DURATION, &movementData->duration);
pugiext::query_attribute(movementXML, A_DURATION_TO, &movementData->durationTo);
pugiext::query_attribute(movementXML, A_DURATION_TWEEN, &movementData->durationTween);
pugiext::query_attribute(movementXML, A_LOOP, &movementData->loop);
2021-12-25 10:04:45 +08:00
const char* _easing = movementXML.attribute(A_TWEEN_EASING).as_string();
if (_easing != nullptr)
2013-06-07 10:52:32 +08:00
{
std::string str = _easing;
2021-12-25 10:04:45 +08:00
if (strcmp(_easing, FL_NAN) != 0)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
int tweenEasing = atoi(_easing);
2019-11-24 23:15:56 +08:00
movementData->tweenEasing = tweenEasing == 2 ? cocos2d::tweenfunc::Sine_EaseInOut : (TweenType)tweenEasing;
2013-06-07 10:52:32 +08:00
}
else
{
2021-12-25 10:04:45 +08:00
movementData->tweenEasing = cocos2d::tweenfunc::Linear;
2013-06-07 10:52:32 +08:00
}
}
2019-11-24 23:15:56 +08:00
pugi::xml_node movBoneXml = movementXML.child(BONE);
2021-12-25 10:04:45 +08:00
while (movBoneXml)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
const char* boneName = movBoneXml.attribute(A_NAME).as_string();
2013-06-07 10:52:32 +08:00
if (movementData->getMovementBoneData(boneName))
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
movBoneXml = movBoneXml.next_sibling();
2013-06-07 10:52:32 +08:00
continue;
}
2021-12-25 10:04:45 +08:00
BoneData* boneData = (BoneData*)armatureData->getBoneData(boneName);
2013-06-07 10:52:32 +08:00
std::string parentName = boneData->parentName;
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugi::xml_node parentXml;
if (!parentName.empty())
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
parentXml = movementXML.child(BONE);
2013-06-07 10:52:32 +08:00
while (parentXml)
{
2019-11-24 23:15:56 +08:00
if (parentName == parentXml.attribute(A_NAME).as_string())
2013-06-07 10:52:32 +08:00
{
break;
}
2019-11-24 23:15:56 +08:00
parentXml = parentXml.next_sibling(BONE);
2013-06-07 10:52:32 +08:00
}
}
2021-12-25 10:04:45 +08:00
MovementBoneData* moveBoneData = decodeMovementBone(movBoneXml, parentXml, boneData, dataInfo);
2013-09-13 18:07:37 +08:00
movementData->addMovementBoneData(moveBoneData);
moveBoneData->release();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
movBoneXml = movBoneXml.next_sibling(BONE);
2013-06-07 10:52:32 +08:00
}
return movementData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
MovementBoneData* DataReaderHelper::decodeMovementBone(pugi::xml_node& movBoneXml,
pugi::xml_node& parentXml,
BoneData* boneData,
DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
MovementBoneData* movBoneData = new MovementBoneData();
2013-09-13 18:07:37 +08:00
movBoneData->init();
2021-12-25 10:04:45 +08:00
if (movBoneXml)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(movBoneXml, A_MOVEMENT_SCALE, &movBoneData->scale);
float delay;
2021-12-25 10:04:45 +08:00
if (pugiext::query_attribute(movBoneXml, A_MOVEMENT_DELAY, &delay))
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
if (delay > 0)
2013-06-07 10:52:32 +08:00
{
delay -= 1;
}
movBoneData->delay = delay;
}
}
2021-12-25 10:04:45 +08:00
unsigned long length = 0;
unsigned long index = 0;
2013-06-07 10:52:32 +08:00
int parentTotalDuration = 0;
2021-12-25 10:04:45 +08:00
int currentDuration = 0;
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugi::xml_node parentFrameXML;
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
std::vector<pugi::xml_node> parentXmlList;
2013-06-07 10:52:32 +08:00
/*
2021-12-25 10:04:45 +08:00
* get the parent frame xml list, we need get the origin data
*/
if (parentXml != nullptr)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
parentFrameXML = parentXml.child(FRAME);
2013-06-07 10:52:32 +08:00
while (parentFrameXML)
{
parentXmlList.push_back(parentFrameXML);
2019-11-24 23:15:56 +08:00
parentFrameXML = parentFrameXML.next_sibling(FRAME);
2013-06-07 10:52:32 +08:00
}
length = parentXmlList.size();
}
int totalDuration = 0;
2019-11-24 23:15:56 +08:00
movBoneData->name = movBoneXml.attribute(A_NAME).as_string();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugi::xml_node frameXML = movBoneXml.child(FRAME);
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
while (frameXML)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
if (parentXml)
2013-06-07 10:52:32 +08:00
{
/*
2021-12-25 10:04:45 +08:00
* in this loop we get the corresponding parent frame xml
*/
while (index < length && (parentFrameXML ? (totalDuration < parentTotalDuration ||
totalDuration >= parentTotalDuration + currentDuration)
: true))
2013-06-07 10:52:32 +08:00
{
parentFrameXML = parentXmlList[index];
2013-06-07 10:52:32 +08:00
parentTotalDuration += currentDuration;
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(parentFrameXML, A_DURATION, &currentDuration);
index++;
2013-06-07 10:52:32 +08:00
}
}
2021-12-25 10:04:45 +08:00
FrameData* frameData = decodeFrame(frameXML, parentFrameXML, boneData, dataInfo);
2013-06-07 10:52:32 +08:00
movBoneData->addFrameData(frameData);
2013-09-13 18:07:37 +08:00
frameData->release();
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
frameData->frameID = totalDuration;
2013-06-07 10:52:32 +08:00
totalDuration += frameData->duration;
2013-09-13 18:07:37 +08:00
movBoneData->duration = totalDuration;
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
frameXML = frameXML.next_sibling(FRAME);
2013-06-07 10:52:32 +08:00
}
2021-12-25 10:04:45 +08:00
//! Change rotation range from (-180 -- 180) to (-infinity -- infinity)
auto frames = movBoneData->frameList;
for (long j = movBoneData->frameList.size() - 1; j >= 0; j--)
{
if (j > 0)
{
float difSkewX = frames.at(j)->skewX - frames.at(j - 1)->skewX;
float difSkewY = frames.at(j)->skewY - frames.at(j - 1)->skewY;
2021-12-25 10:04:45 +08:00
if (difSkewX < -M_PI || difSkewX > M_PI)
{
frames.at(j - 1)->skewX =
difSkewX < 0 ? frames.at(j - 1)->skewX - 2 * M_PI : frames.at(j - 1)->skewX + 2 * M_PI;
}
2021-12-25 10:04:45 +08:00
if (difSkewY < -M_PI || difSkewY > M_PI)
{
frames.at(j - 1)->skewY =
difSkewY < 0 ? frames.at(j - 1)->skewY - 2 * M_PI : frames.at(j - 1)->skewY + 2 * M_PI;
}
}
}
2013-09-13 18:07:37 +08:00
//
2021-12-25 10:04:45 +08:00
FrameData* frameData = new FrameData();
frameData->copy((FrameData*)movBoneData->frameList.back());
2013-09-13 18:07:37 +08:00
frameData->frameID = movBoneData->duration;
movBoneData->addFrameData(frameData);
frameData->release();
2013-06-07 10:52:32 +08:00
return movBoneData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
FrameData* DataReaderHelper::decodeFrame(pugi::xml_node& frameXML,
pugi::xml_node& parentFrameXml,
BoneData* /*boneData*/,
DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2013-12-19 21:12:25 +08:00
float x = 0, y = 0, scale_x = 0, scale_y = 0, skew_x = 0, skew_y = 0, tweenRotate = 0;
int duration = 0, displayIndex = 0, zOrder = 0, tweenEasing = 0, blendType = 0;
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
FrameData* frameData = new FrameData();
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(frameXML, A_MOVEMENT, &frameData->strMovement);
pugiext::query_attribute(frameXML, A_SOUND, &frameData->strSound);
pugiext::query_attribute(frameXML, A_SOUND_EFFECT, &frameData->strSoundEffect);
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
pugiext::query_attribute(frameXML, A_SOUND_EFFECT, &frameData->isTween);
2013-06-07 10:52:32 +08:00
if (dataInfo->flashToolVersion >= VERSION_2_0)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
if (pugiext::query_attribute(frameXML, A_COCOS2DX_X, &frameData->x))
2013-06-07 10:52:32 +08:00
{
frameData->x *= s_PositionReadScale;
}
2021-12-25 10:04:45 +08:00
if (pugiext::query_attribute(frameXML, A_COCOS2DX_Y, &frameData->y))
2013-06-07 10:52:32 +08:00
{
frameData->y *= s_PositionReadScale;
}
}
else
{
2021-12-25 10:04:45 +08:00
if (pugiext::query_attribute(frameXML, A_X, &frameData->x))
2013-06-07 10:52:32 +08:00
{
frameData->x *= s_PositionReadScale;
}
2021-12-25 10:04:45 +08:00
if (pugiext::query_attribute(frameXML, A_Y, &frameData->y))
2013-06-07 10:52:32 +08:00
{
frameData->y *= s_PositionReadScale;
}
}
2021-12-25 10:04:45 +08:00
auto degrees2radius = [](float v) { return CC_DEGREES_TO_RADIANS(v); };
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(frameXML, A_SCALE_X, &frameData->scaleX);
pugiext::query_attribute(frameXML, A_SCALE_Y, &frameData->scaleY);
pugiext::query_attribute(frameXML, A_SKEW_X, &frameData->skewX, degrees2radius);
pugiext::query_attribute(frameXML, A_SKEW_Y, &frameData->skewY, degrees2radius);
pugiext::query_attribute(frameXML, A_DURATION, &frameData->duration);
pugiext::query_attribute(frameXML, A_DISPLAY_INDEX, &frameData->displayIndex);
pugiext::query_attribute(frameXML, A_Z, &frameData->zOrder);
pugiext::query_attribute(frameXML, A_TWEEN_ROTATE, &frameData->tweenRotate);
if (pugiext::query_attribute(frameXML, A_BLEND_TYPE, &blendType))
2013-09-13 18:07:37 +08:00
{
switch (blendType)
{
case BLEND_NORMAL:
2021-12-25 10:04:45 +08:00
{
frameData->blendFunc = BlendFunc::ALPHA_PREMULTIPLIED;
}
break;
case BLEND_ADD:
2021-12-25 10:04:45 +08:00
{
frameData->blendFunc.src = backend::BlendFactor::SRC_ALPHA;
frameData->blendFunc.dst = backend::BlendFactor::ONE;
}
break;
case BLEND_MULTIPLY:
2021-12-25 10:04:45 +08:00
{
frameData->blendFunc.src = backend::BlendFactor::DST_COLOR;
frameData->blendFunc.dst = backend::BlendFactor::ONE_MINUS_SRC_ALPHA;
}
break;
case BLEND_SCREEN:
2021-12-25 10:04:45 +08:00
{
frameData->blendFunc.src = backend::BlendFactor::ONE;
frameData->blendFunc.dst = backend::BlendFactor::ONE_MINUS_SRC_COLOR;
}
break;
default:
2021-12-25 10:04:45 +08:00
{
frameData->blendFunc.src = CC_BLEND_SRC;
frameData->blendFunc.dst = CC_BLEND_DST;
}
break;
}
2013-06-07 10:52:32 +08:00
}
2019-11-24 23:15:56 +08:00
pugi::xml_node colorTransformXML = frameXML.child(A_COLOR_TRANSFORM);
2013-06-07 10:52:32 +08:00
if (colorTransformXML)
{
2021-12-25 10:04:45 +08:00
int alpha, red, green, blue = 100;
2013-06-07 10:52:32 +08:00
int alphaOffset, redOffset, greenOffset, blueOffset = 0;
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(colorTransformXML, A_ALPHA, &alpha);
pugiext::query_attribute(colorTransformXML, A_RED, &red);
pugiext::query_attribute(colorTransformXML, A_GREEN, &green);
2021-12-25 10:04:45 +08:00
pugiext::query_attribute(colorTransformXML, A_BLUE, &blue);
2013-06-07 10:52:32 +08:00
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(colorTransformXML, A_ALPHA_OFFSET, &alphaOffset);
pugiext::query_attribute(colorTransformXML, A_RED_OFFSET, &redOffset);
pugiext::query_attribute(colorTransformXML, A_GREEN_OFFSET, &greenOffset);
2021-12-25 10:04:45 +08:00
pugiext::query_attribute(colorTransformXML, A_BLUE_OFFSET, &blueOffset);
2013-06-07 10:52:32 +08:00
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;
}
2019-11-24 23:15:56 +08:00
const char* _easing = nullptr;
2021-12-25 10:04:45 +08:00
if (pugiext::query_attribute(frameXML, A_TWEEN_EASING, &_easing))
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
if (strcmp(_easing, FL_NAN) != 0)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
tweenEasing = atoi(_easing);
2021-12-25 10:04:45 +08:00
frameData->tweenEasing =
tweenEasing == 2 ? cocos2d::tweenfunc::Sine_EaseInOut : (cocos2d::tweenfunc::TweenType)tweenEasing;
2013-06-07 10:52:32 +08:00
}
else
{
2021-12-25 10:04:45 +08:00
frameData->tweenEasing = cocos2d::tweenfunc::Linear;
2013-06-07 10:52:32 +08:00
}
}
2021-12-25 10:04:45 +08:00
if (parentFrameXml)
2013-06-07 10:52:32 +08:00
{
/*
2021-12-25 10:04:45 +08:00
* recalculate frame data from parent frame data, use for translate matrix
*/
BaseData helpNode;
if (dataInfo->flashToolVersion >= VERSION_2_0)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(parentFrameXml, A_COCOS2DX_X, &helpNode.x);
pugiext::query_attribute(parentFrameXml, A_COCOS2DX_Y, &helpNode.y);
2013-06-07 10:52:32 +08:00
}
else
{
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(parentFrameXml, A_X, &helpNode.x);
pugiext::query_attribute(parentFrameXml, A_Y, &helpNode.y);
2013-06-07 10:52:32 +08:00
}
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(parentFrameXml, A_SKEW_X, &helpNode.skewX);
pugiext::query_attribute(parentFrameXml, A_SKEW_Y, &helpNode.skewY);
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
helpNode.y = -helpNode.y;
2013-06-07 10:52:32 +08:00
helpNode.skewX = CC_DEGREES_TO_RADIANS(helpNode.skewX);
helpNode.skewY = CC_DEGREES_TO_RADIANS(-helpNode.skewY);
TransformHelp::transformFromParent(*frameData, helpNode);
2013-06-07 10:52:32 +08:00
}
return frameData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
TextureData* DataReaderHelper::decodeTexture(pugi::xml_node& textureXML, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
TextureData* textureData = new TextureData();
2013-09-13 18:07:37 +08:00
textureData->init();
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(textureXML, A_NAME, &textureData->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
2021-12-25 10:04:45 +08:00
if (dataInfo->flashToolVersion >= VERSION_2_0)
2013-06-07 10:52:32 +08:00
{
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(textureXML, A_COCOS2D_PIVOT_X, &px);
pugiext::query_attribute(textureXML, A_COCOS2D_PIVOT_Y, &py);
2013-06-07 10:52:32 +08:00
}
else
{
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(textureXML, A_PIVOT_X, &px);
pugiext::query_attribute(textureXML, A_PIVOT_Y, &py);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(textureXML, A_WIDTH, &width);
pugiext::query_attribute(textureXML, 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
2019-11-24 23:15:56 +08:00
pugi::xml_node contourXML = textureXML.child(CONTOUR);
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
while (contourXML)
{
2021-12-25 10:04:45 +08:00
ContourData* contourData = decodeContour(contourXML, dataInfo);
2013-06-07 10:52:32 +08:00
textureData->addContourData(contourData);
2013-09-13 18:07:37 +08:00
contourData->release();
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
contourXML = contourXML.next_sibling(CONTOUR);
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 textureData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
ContourData* DataReaderHelper::decodeContour(pugi::xml_node& contourXML, DataInfo* /*dataInfo*/)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
ContourData* contourData = new ContourData();
2013-09-13 18:07:37 +08:00
contourData->init();
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
pugi::xml_node vertexDataXML = contourXML.child(CONTOUR_VERTEX);
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
while (vertexDataXML)
{
Squashed commit of the following: commit a9572b8913f3a38b59adbd7b4017ab9848a6b2b5 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed May 14 10:03:44 2014 -0700 math renames `Vector2` -> `Vec2` `Vector3` -> `Vec3` `Vector4` -> `Vec4` `Matrix` -> `Mat4` commit 4e107f4bd854c26bfceb52b063d6bd9cea02d6a3 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:24:28 2014 -0700 raw version of rename Vector3 commit 1d115573ebe96a5fc815fa44fbe6417ea7dba841 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:07:14 2014 -0700 rename Vector2 after merge commit ab2ed58c129dbc30a4c0970ed94568c5d271657b Merge: 1978d2d 86fb75a Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:05:30 2014 -0700 Merge branch 'v3' into v3_renameMathClassName Conflicts: tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UIButtonTest/UIButtonTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UICheckBoxTest/UICheckBoxTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UISliderTest/UISliderTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest_Editor.cpp commit 1978d2d174877172ccddc083020a1bbf43ad3b39 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 08:51:45 2014 -0700 rename vector2 in tests/cpp-empty-test folder commit d4e0ff13dcce62724d2fece656543f26aa28e467 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:58:23 2014 -0700 rename vector2 in tests/cpp-tests cpp files commit be50ca2ec75e0fd32a6fcdaa15fe1ebb4cafe79f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:52:57 2014 -0700 rename vector2 in tests/cpp-tests head files commit 6daef564400d4e28c4ce20859a68e0f583fed125 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:49:48 2014 -0700 rename vector2 in extension folder commit 8f3f0f65ceea92c9e7a0d87ab54e62220c5572e2 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:47:22 2014 -0700 rename vector2 in cocos/2d cpp files commit e1f3105aae06d595661a3030f519f7cc13aefbed Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:44:39 2014 -0700 rename vector2 in cocos/2d head files commit 6708d890bfe486109120c3cd4b9fe5c078b7108f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:59 2014 -0700 rename vector2 in cocos/base folder commit d3978fa5447c31ea2f3ece5469b7e746dfba4248 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:43 2014 -0700 rename vector2 in cocos/deprecated folder commit 4bff45139363d6b9706edbbcf9f322d48b4fd019 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:26 2014 -0700 rename vector2 in cocos/editor-support folder commit 353d244c995f8b5d14f635c52aed8bc5e5fc1a6f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:36:48 2014 -0700 rename vector2 in cocos/ui folder commit 758b8f4d513084b9922d7242e9b8f2c7f316de6c Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:39 2014 -0700 rename vector2 in cocos/renderer folder commit 0bd2710dd8714cecb993880bc37affd9ecb05c27 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:15 2014 -0700 rename vector2 in cocos/physics folder commit b7f0581c4587348bdbc1478d5374c2325735f21d Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:25:01 2014 -0700 rename vector2 in cocos/math folder commit a8631a8e1a4e2740807ccd9be9d70de6ecaad7dd Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:16:55 2014 -0700 rename Vector2 to Vec2 deprecate typedef Vector2
2014-05-15 01:07:09 +08:00
Vec2 vertex;
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
pugiext::query_attribute(vertexDataXML, A_X, &vertex.x);
pugiext::query_attribute(vertexDataXML, A_Y, &vertex.y);
2013-06-06 12:02:54 +08:00
2013-12-13 19:40:38 +08:00
vertex.y = -vertex.y;
contourData->vertexList.push_back(vertex);
2013-06-06 12:02:54 +08:00
2019-11-24 23:15:56 +08:00
vertexDataXML = vertexDataXML.next_sibling(CONTOUR_VERTEX);
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 contourData;
2013-06-06 12:02:54 +08:00
}
2021-12-26 23:26:34 +08:00
void DataReaderHelper::addDataFromJsonCache(std::string_view fileContent, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
rapidjson::Document json;
2021-12-27 13:52:08 +08:00
rapidjson::StringStream stream(fileContent.data());
2021-12-25 10:04:45 +08:00
if (fileContent.size() >= 3)
{
// Skip BOM if exists
2021-12-27 13:52:08 +08:00
const unsigned char* c = (const unsigned char*)fileContent.data();
2021-12-25 10:04:45 +08:00
unsigned bom = c[0] | (c[1] << 8) | (c[2] << 16);
if (bom == 0xBFBBEF) // UTF8 BOM
{
stream.Take();
stream.Take();
stream.Take();
}
}
json.ParseStream<0>(stream);
2021-12-25 10:04:45 +08:00
if (json.HasParseError())
{
CCLOG("GetParseError %d\n", json.GetParseError());
}
2021-12-25 10:04:45 +08:00
dataInfo->contentScale = DICTOOL->getFloatValue_json(json, CONTENT_SCALE, 1.0f);
2013-06-07 10:52:32 +08:00
// Decode armatures
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, ARMATURE_DATA);
for (int i = 0; i < length; i++)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& armatureDic = DICTOOL->getSubDictionary_json(json, ARMATURE_DATA, i);
ArmatureData* armatureData = decodeArmature(armatureDic, dataInfo);
2013-06-07 10:52:32 +08:00
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.lock();
2013-09-13 18:07:37 +08:00
}
ArmatureDataManager::getInstance()->addArmatureData(armatureData->name, armatureData, dataInfo->filename);
2013-09-13 18:07:37 +08:00
armatureData->release();
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
}
// Decode animations
2021-12-25 10:04:45 +08:00
length = DICTOOL->getArrayCount_json(
json, ANIMATION_DATA); // json[ANIMATION_DATA].IsNull() ? 0 : json[ANIMATION_DATA].Size();
2013-06-07 10:52:32 +08:00
for (int i = 0; i < length; i++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& animationDic = DICTOOL->getSubDictionary_json(json, ANIMATION_DATA, i);
AnimationData* animationData = decodeAnimation(animationDic, dataInfo);
2013-06-07 10:52:32 +08:00
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.lock();
2013-09-13 18:07:37 +08:00
}
ArmatureDataManager::getInstance()->addAnimationData(animationData->name, animationData, dataInfo->filename);
2013-09-13 18:07:37 +08:00
animationData->release();
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
}
// Decode textures
length = DICTOOL->getArrayCount_json(json, TEXTURE_DATA);
2013-06-07 10:52:32 +08:00
for (int i = 0; i < length; i++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& textureDic = DICTOOL->getSubDictionary_json(json, TEXTURE_DATA, i);
TextureData* textureData = decodeTexture(textureDic);
2013-06-07 10:52:32 +08:00
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.lock();
2013-09-13 18:07:37 +08:00
}
ArmatureDataManager::getInstance()->addTextureData(textureData->name, textureData, dataInfo->filename);
2013-09-13 18:07:37 +08:00
textureData->release();
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
}
2013-09-13 18:07:37 +08:00
// Auto load sprite file
2021-12-25 10:04:45 +08:00
bool autoLoad = dataInfo->asyncStruct == nullptr ? ArmatureDataManager::getInstance()->isAutoLoadSpriteFile()
: dataInfo->asyncStruct->autoLoadSpriteFile;
2013-09-13 18:07:37 +08:00
if (autoLoad)
{
2021-12-25 10:04:45 +08:00
length = DICTOOL->getArrayCount_json(
json, CONFIG_FILE_PATH); // json[CONFIG_FILE_PATH].IsNull() ? 0 : json[CONFIG_FILE_PATH].Size();
2013-09-13 18:07:37 +08:00
for (int i = 0; i < length; i++)
{
2021-12-25 10:04:45 +08:00
const char* path = DICTOOL->getStringValueFromArray_json(
json, CONFIG_FILE_PATH,
i); // json[CONFIG_FILE_PATH][i].IsNull() ? nullptr : json[CONFIG_FILE_PATH][i].GetString();
if (path == nullptr)
2013-09-13 18:07:37 +08:00
{
CCLOG("load CONFIG_FILE_PATH error.");
return;
}
std::string filePath = path;
2021-12-25 10:04:45 +08:00
filePath = filePath.erase(filePath.find_last_of('.'));
2013-09-13 18:07:37 +08:00
if (dataInfo->asyncStruct)
2013-09-13 18:07:37 +08:00
{
dataInfo->configFileQueue.push(filePath);
}
else
{
std::string plistPath = filePath + ".plist";
2021-12-25 10:04:45 +08:00
std::string pngPath = filePath + ".png";
if (FileUtils::getInstance()->isFileExist(dataInfo->baseFilePath + plistPath) &&
FileUtils::getInstance()->isFileExist(dataInfo->baseFilePath + pngPath))
{
ValueMap dict = FileUtils::getInstance()->getValueMapFromFile(dataInfo->baseFilePath + plistPath);
2021-12-25 10:04:45 +08:00
if (dict.find("particleLifespan") != dict.end())
continue;
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
ArmatureDataManager::getInstance()->addSpriteFrameFromFile(
(dataInfo->baseFilePath + plistPath), (dataInfo->baseFilePath + pngPath), dataInfo->filename);
}
2013-09-13 18:07:37 +08:00
}
}
}
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
ArmatureData* DataReaderHelper::decodeArmature(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
ArmatureData* armatureData = new ArmatureData();
2013-09-13 18:07:37 +08:00
armatureData->init();
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
armatureData->name = name;
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
dataInfo->cocoStudioVersion = armatureData->dataVersion = DICTOOL->getFloatValue_json(json, VERSION, 0.1f);
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, BONE_DATA, 0);
2013-06-07 10:52:32 +08:00
for (int i = 0; i < length; i++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, BONE_DATA, i); // json[BONE_DATA][i];
BoneData* boneData = decodeBone(dic, dataInfo);
2013-09-13 18:07:37 +08:00
armatureData->addBoneData(boneData);
boneData->release();
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 armatureData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
BoneData* DataReaderHelper::decodeBone(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
BoneData* boneData = new BoneData();
2013-09-13 18:07:37 +08:00
boneData->init();
2013-06-06 12:02:54 +08:00
2013-10-30 09:41:40 +08:00
decodeNode(boneData, json, dataInfo);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* str = DICTOOL->getStringValue_json(json, A_NAME);
if (str != nullptr)
2013-06-07 10:52:32 +08:00
{
boneData->name = str;
}
2013-06-06 12:02:54 +08:00
str = DICTOOL->getStringValue_json(json, A_PARENT);
2021-12-25 10:04:45 +08:00
if (str != nullptr)
2013-06-07 10:52:32 +08:00
{
boneData->parentName = str;
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, 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++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, DISPLAY_DATA, i);
DisplayData* displayData = decodeBoneDisplay(dic, dataInfo);
2013-09-13 18:07:37 +08:00
boneData->addDisplayData(displayData);
displayData->release();
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 boneData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
DisplayData* DataReaderHelper::decodeBoneDisplay(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
DisplayType displayType = (DisplayType)(DICTOOL->getIntValue_json(json, A_DISPLAY_TYPE, CS_DISPLAY_SPRITE));
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
DisplayData* displayData = nullptr;
2013-06-07 10:52:32 +08:00
switch (displayType)
{
case CS_DISPLAY_SPRITE:
{
2021-12-08 00:11:53 +08:00
displayData = new SpriteDisplayData();
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
((SpriteDisplayData*)displayData)->displayName = name;
2013-09-13 18:07:37 +08:00
}
2021-12-25 10:04:45 +08:00
if (json.HasMember(SKIN_DATA))
2015-06-23 13:54:11 +08:00
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dicArray = DICTOOL->getSubDictionary_json(json, SKIN_DATA);
if (!dicArray.IsNull())
2015-06-23 13:54:11 +08:00
{
2021-12-25 10:04:45 +08:00
rapidjson::SizeType index = 0;
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(dicArray, index);
2015-06-23 13:54:11 +08:00
if (!dic.IsNull())
{
2021-12-25 10:04:45 +08:00
SpriteDisplayData* sdd = (SpriteDisplayData*)displayData;
sdd->skinData.x = DICTOOL->getFloatValue_json(dic, A_X) * s_PositionReadScale;
sdd->skinData.y = DICTOOL->getFloatValue_json(dic, A_Y) * s_PositionReadScale;
sdd->skinData.scaleX = DICTOOL->getFloatValue_json(dic, A_SCALE_X, 1.0f);
sdd->skinData.scaleY = DICTOOL->getFloatValue_json(dic, A_SCALE_Y, 1.0f);
sdd->skinData.skewX = DICTOOL->getFloatValue_json(dic, A_SKEW_X, 1.0f);
sdd->skinData.skewY = DICTOOL->getFloatValue_json(dic, A_SKEW_Y, 1.0f);
2015-06-23 13:54:11 +08:00
sdd->skinData.x *= dataInfo->contentScale;
sdd->skinData.y *= dataInfo->contentScale;
}
}
2013-06-07 10:52:32 +08:00
}
}
break;
case CS_DISPLAY_ARMATURE:
{
2021-12-08 00:11:53 +08:00
displayData = new ArmatureDisplayData();
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
((ArmatureDisplayData*)displayData)->displayName = name;
2013-06-07 10:52:32 +08:00
}
}
break;
case CS_DISPLAY_PARTICLE:
{
2021-12-08 00:11:53 +08:00
displayData = new ParticleDisplayData();
2013-09-13 18:07:37 +08:00
2021-12-25 10:04:45 +08:00
const char* plist = DICTOOL->getStringValue_json(json, A_PLIST);
if (plist != nullptr)
2013-06-07 10:52:32 +08:00
{
if (dataInfo->asyncStruct)
2013-10-30 09:41:40 +08:00
{
2021-12-25 10:04:45 +08:00
static_cast<ParticleDisplayData*>(displayData)->displayName =
dataInfo->asyncStruct->baseFilePath + plist;
2013-10-30 09:41:40 +08:00
}
else
{
2021-12-25 10:04:45 +08:00
static_cast<ParticleDisplayData*>(displayData)->displayName = dataInfo->baseFilePath + plist;
2013-10-30 09:41:40 +08:00
}
2013-06-07 10:52:32 +08:00
}
}
break;
default:
2021-12-08 00:11:53 +08:00
displayData = new SpriteDisplayData();
2013-09-13 18:07:37 +08:00
2013-06-07 10:52:32 +08:00
break;
}
displayData->displayType = displayType;
return displayData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
AnimationData* DataReaderHelper::decodeAnimation(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
AnimationData* aniData = new AnimationData();
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
aniData->name = name;
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, 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++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, MOVEMENT_DATA, i);
MovementData* movementData = decodeMovement(dic, dataInfo);
2013-09-13 18:07:37 +08:00
aniData->addMovement(movementData);
movementData->release();
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
}
2021-12-25 10:04:45 +08:00
MovementData* DataReaderHelper::decodeMovement(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
MovementData* movementData = new MovementData();
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
movementData->loop = DICTOOL->getBooleanValue_json(json, A_LOOP, true);
movementData->durationTween = DICTOOL->getIntValue_json(json, A_DURATION_TWEEN, 0);
movementData->durationTo = DICTOOL->getIntValue_json(json, A_DURATION_TO, 0);
movementData->duration = DICTOOL->getIntValue_json(json, A_DURATION, 0);
if (!DICTOOL->checkObjectExist_json(json, A_DURATION))
{
movementData->scale = 1.0f;
}
else
{
movementData->scale = DICTOOL->getFloatValue_json(json, A_MOVEMENT_SCALE, 1.0f);
}
2021-12-25 10:04:45 +08:00
movementData->tweenEasing =
(TweenType)(DICTOOL->getIntValue_json(json, A_TWEEN_EASING, cocos2d::tweenfunc::Linear));
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
movementData->name = name;
}
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, MOVEMENT_BONE_DATA);
2013-06-07 10:52:32 +08:00
for (int i = 0; i < length; i++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, MOVEMENT_BONE_DATA, i);
MovementBoneData* movementBoneData = decodeMovementBone(dic, dataInfo);
2013-09-13 18:07:37 +08:00
movementData->addMovementBoneData(movementBoneData);
movementBoneData->release();
2013-06-07 10:52:32 +08:00
}
return movementData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
MovementBoneData* DataReaderHelper::decodeMovementBone(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
MovementBoneData* movementBoneData = new MovementBoneData();
2013-09-13 18:07:37 +08:00
movementBoneData->init();
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
movementBoneData->delay = DICTOOL->getFloatValue_json(json, A_MOVEMENT_DELAY);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
movementBoneData->name = name;
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
rapidjson::SizeType length = DICTOOL->getArrayCount_json(json, FRAME_DATA);
for (rapidjson::SizeType i = 0; i < length; i++)
2013-06-07 10:52:32 +08:00
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, FRAME_DATA, i);
FrameData* frameData = decodeFrame(dic, dataInfo);
2013-09-13 18:07:37 +08:00
2013-06-07 10:52:32 +08:00
movementBoneData->addFrameData(frameData);
2013-09-13 18:07:37 +08:00
frameData->release();
if (dataInfo->cocoStudioVersion < VERSION_COMBINED)
2013-09-13 18:07:37 +08:00
{
frameData->frameID = movementBoneData->duration;
movementBoneData->duration += frameData->duration;
}
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
if (dataInfo->cocoStudioVersion < VERSION_CHANGE_ROTATION_RANGE)
{
//! Change rotation range from (-180 -- 180) to (-infinity -- infinity)
auto frames = movementBoneData->frameList;
for (long i = frames.size() - 1; i >= 0; i--)
{
if (i > 0)
{
float difSkewX = frames.at(i)->skewX - frames.at(i - 1)->skewX;
float difSkewY = frames.at(i)->skewY - frames.at(i - 1)->skewY;
2021-12-25 10:04:45 +08:00
if (difSkewX < -M_PI || difSkewX > M_PI)
{
frames.at(i - 1)->skewX =
difSkewX < 0 ? frames.at(i - 1)->skewX - 2 * M_PI : frames.at(i - 1)->skewX + 2 * M_PI;
}
2021-12-25 10:04:45 +08:00
if (difSkewY < -M_PI || difSkewY > M_PI)
{
frames.at(i - 1)->skewY =
difSkewY < 0 ? frames.at(i - 1)->skewY - 2 * M_PI : frames.at(i - 1)->skewY + 2 * M_PI;
}
}
}
}
if (dataInfo->cocoStudioVersion < VERSION_COMBINED)
2013-09-13 18:07:37 +08:00
{
2013-12-13 19:40:38 +08:00
if (movementBoneData->frameList.size() > 0)
2013-09-13 18:07:37 +08:00
{
2021-12-25 10:04:45 +08:00
FrameData* frameData = new FrameData();
frameData->copy((FrameData*)movementBoneData->frameList.back());
2013-09-13 18:07:37 +08:00
movementBoneData->addFrameData(frameData);
frameData->release();
frameData->frameID = movementBoneData->duration;
}
}
2013-06-07 10:52:32 +08:00
return movementBoneData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
FrameData* DataReaderHelper::decodeFrame(const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
FrameData* frameData = new FrameData();
2013-06-06 12:02:54 +08:00
2013-10-30 09:41:40 +08:00
decodeNode(frameData, json, dataInfo);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
frameData->tweenEasing = (TweenType)(DICTOOL->getIntValue_json(json, A_TWEEN_EASING, cocos2d::tweenfunc::Linear));
frameData->displayIndex = DICTOOL->getIntValue_json(json, A_DISPLAY_INDEX);
frameData->blendFunc.src = utils::toBackendBlendFactor(
DICTOOL->getIntValue_json(json, A_BLEND_SRC, utils::toGLBlendFactor(BlendFunc::ALPHA_PREMULTIPLIED.src)));
frameData->blendFunc.dst = utils::toBackendBlendFactor(
DICTOOL->getIntValue_json(json, A_BLEND_DST, utils::toGLBlendFactor(BlendFunc::ALPHA_PREMULTIPLIED.dst)));
frameData->isTween = DICTOOL->getBooleanValue_json(json, A_TWEEN_FRAME, true);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* event = DICTOOL->getStringValue_json(json, A_EVENT);
if (event != nullptr)
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
frameData->strEvent = event;
}
if (dataInfo->cocoStudioVersion < VERSION_COMBINED)
2013-09-13 18:07:37 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->duration = DICTOOL->getIntValue_json(json, A_DURATION, 1);
2013-09-13 18:07:37 +08:00
}
else
{
frameData->frameID = DICTOOL->getIntValue_json(json, A_FRAME_INDEX);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
int length = DICTOOL->getArrayCount_json(json, A_EASING_PARAM);
if (length != 0)
{
2021-12-25 10:04:45 +08:00
frameData->easingParams = new float[length];
frameData->easingParamNumber = length;
for (int i = 0; i < length; i++)
{
frameData->easingParams[i] = DICTOOL->getFloatValueFromArray_json(json, A_EASING_PARAM, i);
}
}
2013-06-07 10:52:32 +08:00
return frameData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
TextureData* DataReaderHelper::decodeTexture(const rapidjson::Value& json)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
TextureData* textureData = new TextureData();
2013-09-13 18:07:37 +08:00
textureData->init();
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
const char* name = DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2013-06-07 10:52:32 +08:00
{
textureData->name = name;
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
textureData->width = DICTOOL->getFloatValue_json(json, A_WIDTH);
textureData->height = DICTOOL->getFloatValue_json(json, A_HEIGHT);
textureData->pivotX = DICTOOL->getFloatValue_json(json, A_PIVOT_X);
textureData->pivotY = DICTOOL->getFloatValue_json(json, A_PIVOT_Y);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, CONTOUR_DATA);
2013-06-07 10:52:32 +08:00
for (int i = 0; i < length; i++)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, CONTOUR_DATA, i);
ContourData* contourData = decodeContour(dic);
2013-12-13 19:40:38 +08:00
textureData->contourDataList.pushBack(contourData);
2013-09-13 18:07:37 +08:00
contourData->release();
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 textureData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
ContourData* DataReaderHelper::decodeContour(const rapidjson::Value& json)
2013-06-06 12:02:54 +08:00
{
2021-12-25 10:04:45 +08:00
ContourData* contourData = new ContourData();
contourData->init();
2013-06-07 10:52:32 +08:00
2021-12-25 10:04:45 +08:00
int length = DICTOOL->getArrayCount_json(json, VERTEX_POINT);
2013-06-07 10:52:32 +08:00
for (int i = length - 1; i >= 0; i--)
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& dic = DICTOOL->getSubDictionary_json(json, VERTEX_POINT, i);
2013-06-06 12:02:54 +08:00
Squashed commit of the following: commit a9572b8913f3a38b59adbd7b4017ab9848a6b2b5 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed May 14 10:03:44 2014 -0700 math renames `Vector2` -> `Vec2` `Vector3` -> `Vec3` `Vector4` -> `Vec4` `Matrix` -> `Mat4` commit 4e107f4bd854c26bfceb52b063d6bd9cea02d6a3 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:24:28 2014 -0700 raw version of rename Vector3 commit 1d115573ebe96a5fc815fa44fbe6417ea7dba841 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:07:14 2014 -0700 rename Vector2 after merge commit ab2ed58c129dbc30a4c0970ed94568c5d271657b Merge: 1978d2d 86fb75a Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:05:30 2014 -0700 Merge branch 'v3' into v3_renameMathClassName Conflicts: tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UIButtonTest/UIButtonTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UICheckBoxTest/UICheckBoxTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UISliderTest/UISliderTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest_Editor.cpp commit 1978d2d174877172ccddc083020a1bbf43ad3b39 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 08:51:45 2014 -0700 rename vector2 in tests/cpp-empty-test folder commit d4e0ff13dcce62724d2fece656543f26aa28e467 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:58:23 2014 -0700 rename vector2 in tests/cpp-tests cpp files commit be50ca2ec75e0fd32a6fcdaa15fe1ebb4cafe79f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:52:57 2014 -0700 rename vector2 in tests/cpp-tests head files commit 6daef564400d4e28c4ce20859a68e0f583fed125 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:49:48 2014 -0700 rename vector2 in extension folder commit 8f3f0f65ceea92c9e7a0d87ab54e62220c5572e2 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:47:22 2014 -0700 rename vector2 in cocos/2d cpp files commit e1f3105aae06d595661a3030f519f7cc13aefbed Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:44:39 2014 -0700 rename vector2 in cocos/2d head files commit 6708d890bfe486109120c3cd4b9fe5c078b7108f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:59 2014 -0700 rename vector2 in cocos/base folder commit d3978fa5447c31ea2f3ece5469b7e746dfba4248 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:43 2014 -0700 rename vector2 in cocos/deprecated folder commit 4bff45139363d6b9706edbbcf9f322d48b4fd019 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:26 2014 -0700 rename vector2 in cocos/editor-support folder commit 353d244c995f8b5d14f635c52aed8bc5e5fc1a6f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:36:48 2014 -0700 rename vector2 in cocos/ui folder commit 758b8f4d513084b9922d7242e9b8f2c7f316de6c Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:39 2014 -0700 rename vector2 in cocos/renderer folder commit 0bd2710dd8714cecb993880bc37affd9ecb05c27 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:15 2014 -0700 rename vector2 in cocos/physics folder commit b7f0581c4587348bdbc1478d5374c2325735f21d Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:25:01 2014 -0700 rename vector2 in cocos/math folder commit a8631a8e1a4e2740807ccd9be9d70de6ecaad7dd Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:16:55 2014 -0700 rename Vector2 to Vec2 deprecate typedef Vector2
2014-05-15 01:07:09 +08:00
Vec2 vertex;
2013-06-06 12:02:54 +08:00
vertex.x = DICTOOL->getFloatValue_json(dic, A_X);
vertex.y = DICTOOL->getFloatValue_json(dic, A_Y);
2013-06-06 12:02:54 +08:00
2013-12-13 19:40:38 +08:00
contourData->vertexList.push_back(vertex);
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 contourData;
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
void DataReaderHelper::decodeNode(BaseData* node, const rapidjson::Value& json, DataInfo* dataInfo)
2013-06-06 12:02:54 +08:00
{
node->x = DICTOOL->getFloatValue_json(json, A_X) * s_PositionReadScale;
node->y = DICTOOL->getFloatValue_json(json, A_Y) * s_PositionReadScale;
2013-10-30 09:41:40 +08:00
node->x *= dataInfo->contentScale;
node->y *= dataInfo->contentScale;
2013-10-30 09:41:40 +08:00
2021-12-25 10:04:45 +08:00
node->zOrder = DICTOOL->getIntValue_json(json, A_Z);
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
node->skewX = DICTOOL->getFloatValue_json(json, A_SKEW_X);
node->skewY = DICTOOL->getFloatValue_json(json, A_SKEW_Y);
node->scaleX = DICTOOL->getFloatValue_json(json, A_SCALE_X, 1.0f);
node->scaleY = DICTOOL->getFloatValue_json(json, A_SCALE_Y, 1.0f);
2013-06-06 12:02:54 +08:00
if (dataInfo->cocoStudioVersion < VERSION_COLOR_READING)
{
if (DICTOOL->checkObjectExist_json(json, 0))
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& colorDic = DICTOOL->getSubDictionary_json(json, 0);
node->a = DICTOOL->getIntValue_json(colorDic, A_ALPHA, 255);
node->r = DICTOOL->getIntValue_json(colorDic, A_RED, 255);
node->g = DICTOOL->getIntValue_json(colorDic, A_GREEN, 255);
node->b = DICTOOL->getIntValue_json(colorDic, A_BLUE, 255);
node->isUseColorInfo = true;
}
}
else
{
if (DICTOOL->checkObjectExist_json(json, COLOR_INFO))
{
2021-12-25 10:04:45 +08:00
const rapidjson::Value& colorDic =
DICTOOL->getSubDictionary_json(json, COLOR_INFO); // json.getSubDictionary(COLOR_INFO);
node->a = DICTOOL->getIntValue_json(colorDic, A_ALPHA, 255);
node->r = DICTOOL->getIntValue_json(colorDic, A_RED, 255);
node->g = DICTOOL->getIntValue_json(colorDic, A_GREEN, 255);
node->b = DICTOOL->getIntValue_json(colorDic, A_BLUE, 255);
2013-06-06 12:02:54 +08:00
node->isUseColorInfo = true;
}
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
2021-12-25 10:04:45 +08:00
void DataReaderHelper::addDataFromBinaryCache(const char* fileContent, DataInfo* dataInfo)
{
CocoLoader tCocoLoader;
if (tCocoLoader.ReadCocoBinBuff((char*)fileContent))
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
stExpCocoNode* tpRootCocoNode = tCocoLoader.GetRootCocoNode();
rapidjson::Type tType = tpRootCocoNode->GetType(&tCocoLoader);
if (rapidjson::kObjectType == tType)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
stExpCocoNode* tpChildArray = tpRootCocoNode->GetChildArray(&tCocoLoader);
int nCount = tpRootCocoNode->GetChildNum();
2021-12-25 10:04:45 +08:00
dataInfo->contentScale = 1.0f;
int length = 0;
std::string key;
stExpCocoNode* pDataArray;
for (int i = 0; i < nCount; ++i)
{
key = tpChildArray[i].GetName(&tCocoLoader);
if (key.compare(CONTENT_SCALE) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
std::string value = tpChildArray[i].GetValue(&tCocoLoader);
dataInfo->contentScale = utils::atof(value.c_str());
}
else if (0 == key.compare(ARMATURE_DATA))
{
pDataArray = tpChildArray[i].GetChildArray(&tCocoLoader);
length = tpChildArray[i].GetChildNum();
ArmatureData* armatureData;
for (int ii = 0; ii < length; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
armatureData = decodeArmature(&tCocoLoader, &pDataArray[ii], dataInfo);
if (dataInfo->asyncStruct)
{
_dataReaderHelper->_addDataMutex.lock();
}
ArmatureDataManager::getInstance()->addArmatureData(armatureData->name, armatureData,
dataInfo->filename);
armatureData->release();
if (dataInfo->asyncStruct)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
else if (0 == key.compare(ANIMATION_DATA))
{
pDataArray = tpChildArray[i].GetChildArray(&tCocoLoader);
length = tpChildArray[i].GetChildNum();
AnimationData* animationData;
for (int ii = 0; ii < length; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
animationData = decodeAnimation(&tCocoLoader, &pDataArray[ii], dataInfo);
if (dataInfo->asyncStruct)
{
_dataReaderHelper->_addDataMutex.lock();
}
ArmatureDataManager::getInstance()->addAnimationData(animationData->name, animationData,
dataInfo->filename);
animationData->release();
if (dataInfo->asyncStruct)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(TEXTURE_DATA) == 0)
{
pDataArray = tpChildArray[i].GetChildArray(&tCocoLoader);
length = tpChildArray[i].GetChildNum();
for (int ii = 0; ii < length; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
TextureData* textureData = decodeTexture(&tCocoLoader, &pDataArray[ii]);
if (dataInfo->asyncStruct)
{
_dataReaderHelper->_addDataMutex.lock();
}
ArmatureDataManager::getInstance()->addTextureData(textureData->name, textureData,
dataInfo->filename);
textureData->release();
if (dataInfo->asyncStruct)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
_dataReaderHelper->_addDataMutex.unlock();
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
}
// Auto losprite file
bool autoLoad = dataInfo->asyncStruct == nullptr
? ArmatureDataManager::getInstance()->isAutoLoadSpriteFile()
: dataInfo->asyncStruct->autoLoadSpriteFile;
if (autoLoad)
{
for (int i = 0; i < nCount; ++i)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
key = tpChildArray[i].GetName(&tCocoLoader);
if (0 != key.compare(CONFIG_FILE_PATH))
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
continue;
}
length = tpChildArray[i].GetChildNum();
stExpCocoNode* pConfigFilePath = tpChildArray[i].GetChildArray(&tCocoLoader);
for (int ii = 0; ii < length; ii++)
{
const char* path = pConfigFilePath[ii].GetValue(&tCocoLoader);
if (path == nullptr)
{
CCLOG("load CONFIG_FILE_PATH error.");
return;
}
std::string filePath = path;
filePath = filePath.erase(filePath.find_last_of('.'));
if (dataInfo->asyncStruct)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
dataInfo->configFileQueue.push(filePath);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
else
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
std::string plistPath = filePath + ".plist";
std::string pngPath = filePath + ".png";
ArmatureDataManager::getInstance()->addSpriteFrameFromFile(
(dataInfo->baseFilePath + plistPath), (dataInfo->baseFilePath + pngPath),
dataInfo->filename);
2014-06-18 17:43:13 +08:00
}
}
}
}
}
}
2021-12-25 10:04:45 +08:00
}
2021-12-25 10:04:45 +08:00
ArmatureData* DataReaderHelper::decodeArmature(CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
ArmatureData* armatureData = new ArmatureData();
armatureData->init();
stExpCocoNode* pAramtureDataArray = cocoNode->GetChildArray(cocoLoader);
const char* name = pAramtureDataArray[2].GetValue(cocoLoader); // DICTOOL->getStringValue_json(json, A_NAME);
if (name != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
armatureData->name = name;
}
2021-12-25 10:04:45 +08:00
float version = utils::atof(pAramtureDataArray[1].GetValue(cocoLoader));
dataInfo->cocoStudioVersion = armatureData->dataVersion =
version; // DICTOOL->getFloatValue_json(json, VERSION, 0.1f);
2021-12-25 10:04:45 +08:00
int length = pAramtureDataArray[3].GetChildNum(); // DICTOOL->getArrayCount_json(json, BONE_DATA, 0);
stExpCocoNode* pBoneChildren = pAramtureDataArray[3].GetChildArray(cocoLoader);
stExpCocoNode* child;
for (int i = 0; i < length; i++)
{
// const rapidjson::Value &dic = DICTOOL->getSubDictionary_json(json, BONE_DATA, i); //json[BONE_DATA][i];
child = &pBoneChildren[i];
BoneData* boneData = decodeBone(cocoLoader, child, dataInfo);
armatureData->addBoneData(boneData);
boneData->release();
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
return armatureData;
}
2021-12-25 10:04:45 +08:00
BoneData* DataReaderHelper::decodeBone(CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
BoneData* boneData = new BoneData();
boneData->init();
decodeNode(boneData, cocoLoader, cocoNode, dataInfo);
2021-12-25 10:04:45 +08:00
int length = cocoNode->GetChildNum();
stExpCocoNode* pBoneChildren = cocoNode->GetChildArray(cocoLoader);
stExpCocoNode* child;
const char* str = nullptr;
std::string key;
for (int i = 0; i < length; ++i)
{
child = &pBoneChildren[i];
key = child->GetName(cocoLoader);
str = child->GetValue(cocoLoader);
if (key.compare(A_NAME) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
// DICTOOL->getStringValue_json(json, A_NAME);
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
boneData->name = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_PARENT) == 0)
{
// DICTOOL->getStringValue_json(json, A_PARENT);
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
boneData->parentName = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(DISPLAY_DATA) == 0)
{
int count = child->GetChildNum();
stExpCocoNode* pDisplayData = child->GetChildArray(cocoLoader);
for (int ii = 0; ii < count; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
DisplayData* displayData = decodeBoneDisplay(cocoLoader, &pDisplayData[ii], dataInfo);
if (displayData == nullptr)
continue;
boneData->addDisplayData(displayData);
displayData->release();
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
return boneData;
}
DisplayData* DataReaderHelper::decodeBoneDisplay(CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
stExpCocoNode* children = cocoNode->GetChildArray(cocoLoader);
stExpCocoNode* child = &children[1];
std::string key = child->GetName(cocoLoader);
const char* str = child->GetValue(cocoLoader);
DisplayData* displayData = nullptr;
if (key.compare(A_DISPLAY_TYPE) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
str = child->GetValue(cocoLoader);
DisplayType displayType = (DisplayType)(atoi(str));
2021-12-25 10:04:45 +08:00
int length = 0;
switch (displayType)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
case CS_DISPLAY_SPRITE:
{
displayData = new SpriteDisplayData();
2021-12-25 10:04:45 +08:00
const char* name = children[0].GetValue(cocoLoader);
if (name != nullptr)
{
((SpriteDisplayData*)displayData)->displayName = name;
}
stExpCocoNode* pSkinDataArray = children[2].GetChildArray(cocoLoader);
if (pSkinDataArray != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
stExpCocoNode* pSkinData = &pSkinDataArray[0];
if (pSkinData != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
SpriteDisplayData* sdd = (SpriteDisplayData*)displayData;
length = pSkinData->GetChildNum();
stExpCocoNode* SkinDataValue = pSkinData->GetChildArray(cocoLoader);
for (int i = 0; i < length; ++i)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
key = SkinDataValue[i].GetName(cocoLoader);
str = SkinDataValue[i].GetValue(cocoLoader);
if (key.compare(A_X) == 0)
{
sdd->skinData.x = utils::atof(str) * s_PositionReadScale;
}
else if (key.compare(A_Y) == 0)
{
sdd->skinData.y = utils::atof(str) * s_PositionReadScale;
}
else if (key.compare(A_SCALE_X) == 0)
{
sdd->skinData.scaleX = utils::atof(str);
}
else if (key.compare(A_SCALE_Y) == 0)
{
sdd->skinData.scaleY = utils::atof(str);
}
else if (key.compare(A_SKEW_X) == 0)
{
sdd->skinData.skewX = utils::atof(str);
}
else if (key.compare(A_SKEW_Y) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
sdd->skinData.skewY = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
sdd->skinData.x *= dataInfo->contentScale;
sdd->skinData.y *= dataInfo->contentScale;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
}
2021-12-25 10:04:45 +08:00
break;
case CS_DISPLAY_ARMATURE:
{
displayData = new ArmatureDisplayData();
2021-12-25 10:04:45 +08:00
const char* name = cocoNode[0].GetValue(cocoLoader);
if (name != nullptr)
{
((ArmatureDisplayData*)displayData)->displayName = name;
}
}
break;
case CS_DISPLAY_PARTICLE:
{
displayData = new ParticleDisplayData();
length = cocoNode->GetChildNum();
stExpCocoNode* pDisplayData = cocoNode->GetChildArray(cocoLoader);
for (int i = 0; i < length; ++i)
{
key = pDisplayData[i].GetName(cocoLoader);
str = pDisplayData[i].GetValue(cocoLoader);
if (key.compare(A_PLIST) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
const char* plist = str;
if (plist != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (dataInfo->asyncStruct)
{
((ParticleDisplayData*)displayData)->displayName =
dataInfo->asyncStruct->baseFilePath + plist;
}
else
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
((ParticleDisplayData*)displayData)->displayName = dataInfo->baseFilePath + plist;
2014-06-18 17:43:13 +08:00
}
}
}
}
}
2021-12-25 10:04:45 +08:00
break;
default:
displayData = new SpriteDisplayData();
2021-12-25 10:04:45 +08:00
break;
}
displayData->displayType = displayType;
}
return displayData;
}
2021-12-25 10:04:45 +08:00
AnimationData* DataReaderHelper::decodeAnimation(CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
AnimationData* aniData = new AnimationData();
int length = cocoNode->GetChildNum();
stExpCocoNode* pAnimationData = cocoNode->GetChildArray(cocoLoader);
const char* str = nullptr;
std::string key;
stExpCocoNode* child;
MovementData* movementData;
for (int i = 0; i < length; ++i)
{
child = &pAnimationData[i];
key = child->GetName(cocoLoader);
str = child->GetValue(cocoLoader);
if (key.compare(A_NAME) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
aniData->name = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(MOVEMENT_DATA) == 0)
{
int movcount = child->GetChildNum();
stExpCocoNode* movArray = child->GetChildArray(cocoLoader);
for (int movnum = 0; movnum < movcount; movnum++)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData = decodeMovement(cocoLoader, &movArray[movnum], dataInfo);
aniData->addMovement(movementData);
movementData->release();
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
return aniData;
}
2014-06-18 17:43:13 +08:00
2021-12-25 10:04:45 +08:00
MovementData* DataReaderHelper::decodeMovement(CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
MovementData* movementData = new MovementData();
movementData->scale = 1.0f;
2021-12-25 10:04:45 +08:00
int length = cocoNode->GetChildNum();
stExpCocoNode* pMoveDataArray = cocoNode->GetChildArray(cocoLoader);
2021-12-25 10:04:45 +08:00
const char* str = nullptr;
std::string key;
stExpCocoNode* child;
for (int i = 0; i < length; ++i)
{
child = &pMoveDataArray[i];
key = child->GetName(cocoLoader);
str = child->GetValue(cocoLoader);
if (key.compare(A_NAME) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->name = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_LOOP) == 0)
{
movementData->loop = true;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (strcmp("1", str) != 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->loop = false;
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_DURATION_TWEEN) == 0)
{
movementData->durationTween = 0;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->durationTween = atoi(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_DURATION_TO) == 0)
{
movementData->durationTo = 0;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->durationTo = atoi(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_DURATION) == 0)
{
movementData->duration = 0;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->duration = atoi(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_MOVEMENT_SCALE) == 0)
{
movementData->scale = 1.0;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->scale = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_TWEEN_EASING) == 0)
{
movementData->tweenEasing = cocos2d::tweenfunc::Linear;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementData->tweenEasing = (TweenType)(atoi(str));
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(MOVEMENT_BONE_DATA) == 0)
{
int count = child->GetChildNum();
stExpCocoNode* pMoveBoneData = child->GetChildArray(cocoLoader);
MovementBoneData* movementBoneData;
for (int ii = 0; ii < count; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementBoneData = decodeMovementBone(cocoLoader, &pMoveBoneData[ii], dataInfo);
movementData->addMovementBoneData(movementBoneData);
movementBoneData->release();
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
return movementData;
}
2021-12-25 10:04:45 +08:00
MovementBoneData* DataReaderHelper::decodeMovementBone(CocoLoader* cocoLoader,
stExpCocoNode* cocoNode,
DataInfo* dataInfo)
{
MovementBoneData* movementBoneData = new MovementBoneData();
movementBoneData->init();
2021-12-25 10:04:45 +08:00
int length = cocoNode->GetChildNum();
stExpCocoNode* pMovementBoneDataArray = cocoNode->GetChildArray(cocoLoader);
stExpCocoNode* movebonechild;
const char* str = nullptr;
for (int i = 0; i < length; ++i)
{
movebonechild = &pMovementBoneDataArray[i];
std::string key = movebonechild->GetName(cocoLoader);
str = movebonechild->GetValue(cocoLoader);
if (key.compare(A_NAME) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementBoneData->name = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_MOVEMENT_DELAY) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
movementBoneData->delay = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(FRAME_DATA) == 0)
{
int count = movebonechild->GetChildNum();
stExpCocoNode* pFrameDataArray = movebonechild->GetChildArray(cocoLoader);
for (int ii = 0; ii < count; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
FrameData* frameData = decodeFrame(cocoLoader, &pFrameDataArray[ii], dataInfo);
movementBoneData->addFrameData(frameData);
frameData->release();
2021-12-25 10:04:45 +08:00
if (dataInfo->cocoStudioVersion < VERSION_COMBINED)
{
frameData->frameID = movementBoneData->duration;
movementBoneData->duration += frameData->duration;
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
}
2021-12-25 10:04:45 +08:00
const ssize_t framesizemusone = movementBoneData->frameList.size() - 1;
if (dataInfo->cocoStudioVersion < VERSION_CHANGE_ROTATION_RANGE)
{
//! Change rotation range from (-180 -- 180) to (-infinity -- infinity)
cocos2d::Vector<FrameData*> frames = movementBoneData->frameList;
2021-12-25 10:04:45 +08:00
ssize_t imusone = 0;
ssize_t i = 0;
for (i = framesizemusone; i >= 0; i--)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (i > 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
imusone = i - 1;
float difSkewX = frames.at(i)->skewX - frames.at(imusone)->skewX;
float difSkewY = frames.at(i)->skewY - frames.at(imusone)->skewY;
2021-12-25 10:04:45 +08:00
if (difSkewX < -M_PI || difSkewX > M_PI)
{
frames.at(imusone)->skewX =
difSkewX < 0 ? frames.at(imusone)->skewX - 2 * M_PI : frames.at(imusone)->skewX + 2 * M_PI;
}
2021-12-25 10:04:45 +08:00
if (difSkewY < -M_PI || difSkewY > M_PI)
{
frames.at(imusone)->skewY =
difSkewY < 0 ? frames.at(imusone)->skewY - 2 * M_PI : frames.at(imusone)->skewY + 2 * M_PI;
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
}
2021-12-25 10:04:45 +08:00
if (dataInfo->cocoStudioVersion < VERSION_COMBINED)
{
if (movementBoneData->frameList.size() > 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
auto frameData = movementBoneData->frameList.at(framesizemusone);
movementBoneData->addFrameData(frameData);
frameData->release();
frameData->frameID = movementBoneData->duration;
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
return movementBoneData;
}
2021-12-25 10:04:45 +08:00
FrameData* DataReaderHelper::decodeFrame(CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
FrameData* frameData = new FrameData();
decodeNode(frameData, cocoLoader, cocoNode, dataInfo);
2021-12-25 10:04:45 +08:00
int length = cocoNode->GetChildNum();
stExpCocoNode* pFrameDataArray = cocoNode->GetChildArray(cocoLoader);
const char* str = nullptr;
for (int i = 0; i < length; ++i)
{
std::string key = pFrameDataArray[i].GetName(cocoLoader);
str = pFrameDataArray[i].GetValue(cocoLoader);
if (key.compare(A_TWEEN_EASING) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->tweenEasing = cocos2d::tweenfunc::Linear;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->tweenEasing = (TweenType)(atoi(str));
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_DISPLAY_INDEX) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->displayIndex = atoi(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_BLEND_SRC) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->blendFunc.src = utils::toBackendBlendFactor(atoi(str));
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_BLEND_DST) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->blendFunc.dst = utils::toBackendBlendFactor(atoi(str));
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_TWEEN_FRAME) == 0)
{
frameData->isTween = true;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (strcmp("1", str) != 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->isTween = false;
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_EVENT) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->strEvent = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_DURATION) == 0)
{
if (dataInfo->cocoStudioVersion < VERSION_COMBINED)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->duration = 1;
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->duration = atoi(str);
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_FRAME_INDEX) == 0)
{
if (dataInfo->cocoStudioVersion >= VERSION_COMBINED)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->frameID = atoi(str);
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_EASING_PARAM) == 0)
{
int count = pFrameDataArray[i].GetChildNum();
if (count != 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->easingParams = new float[count];
stExpCocoNode* pFrameData = pFrameDataArray[i].GetChildArray(cocoLoader);
for (int ii = 0; ii < count; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
str = pFrameData[ii].GetValue(cocoLoader);
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
frameData->easingParams[ii] = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
}
}
}
}
2021-12-25 10:04:45 +08:00
return frameData;
}
2021-12-25 10:04:45 +08:00
TextureData* DataReaderHelper::decodeTexture(CocoLoader* cocoLoader, stExpCocoNode* cocoNode)
{
TextureData* textureData = new TextureData();
textureData->init();
2021-12-25 10:04:45 +08:00
if (cocoNode == nullptr)
{
return textureData;
}
int length = cocoNode->GetChildNum();
stExpCocoNode* pTextureDataArray = cocoNode->GetChildArray(cocoLoader);
const char* str = nullptr;
for (int i = 0; i < length; ++i)
{
std::string key = pTextureDataArray[i].GetName(cocoLoader);
str = pTextureDataArray[i].GetValue(cocoLoader);
if (key.compare(A_NAME) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
textureData->name = str;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_WIDTH) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
textureData->width = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_HEIGHT) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
textureData->height = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_PIVOT_X) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
textureData->pivotX = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(A_PIVOT_Y) == 0)
{
if (str != nullptr)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
textureData->pivotY = utils::atof(str);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (key.compare(CONTOUR_DATA) == 0)
{
int count = pTextureDataArray[i].GetChildNum();
stExpCocoNode* pContourArray = pTextureDataArray[i].GetChildArray(cocoLoader);
for (int ii = 0; ii < count; ++ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
ContourData* contourData = decodeContour(cocoLoader, &pContourArray[ii]);
textureData->contourDataList.pushBack(contourData);
contourData->release();
2014-06-18 17:43:13 +08:00
}
}
}
2021-12-25 10:04:45 +08:00
return textureData;
}
2021-12-25 10:04:45 +08:00
ContourData* DataReaderHelper::decodeContour(CocoLoader* cocoLoader, stExpCocoNode* cocoNode)
{
ContourData* contourData = new ContourData();
contourData->init();
2021-12-25 10:04:45 +08:00
int length = cocoNode->GetChildNum();
stExpCocoNode* verTexPointArray = cocoNode->GetChildArray(cocoLoader);
const char* str = nullptr;
for (int i = 0; i < length; ++i)
{
std::string key = verTexPointArray[i].GetName(cocoLoader);
str = verTexPointArray[i].GetValue(cocoLoader);
if (key.compare(VERTEX_POINT) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
int count = verTexPointArray[i].GetChildNum();
stExpCocoNode* pVerTexPointArray = verTexPointArray[i].GetChildArray(cocoLoader);
stExpCocoNode* pVerTexPoint;
for (int ii = count - 1; ii >= 0; --ii)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
pVerTexPoint = pVerTexPointArray[ii].GetChildArray(cocoLoader);
Vec2 vertex;
vertex.x = utils::atof(pVerTexPoint[0].GetValue(cocoLoader));
vertex.y = utils::atof(pVerTexPoint[1].GetValue(cocoLoader));
contourData->vertexList.push_back(vertex);
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
break;
2014-06-18 17:43:13 +08:00
}
}
2021-12-25 10:04:45 +08:00
return contourData;
}
2021-12-25 10:04:45 +08:00
void DataReaderHelper::decodeNode(BaseData* node, CocoLoader* cocoLoader, stExpCocoNode* cocoNode, DataInfo* dataInfo)
{
int length = cocoNode->GetChildNum();
stExpCocoNode* NodeArray = cocoNode->GetChildArray(cocoLoader);
const char* str = nullptr;
2021-12-25 10:04:45 +08:00
bool isVersionL = dataInfo->cocoStudioVersion < VERSION_COLOR_READING;
stExpCocoNode* child;
for (int i = 0; i < length; ++i)
{
child = &NodeArray[i];
std::string key = child->GetName(cocoLoader);
str = child->GetValue(cocoLoader);
if (key.compare(A_X) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
node->x = utils::atof(str) * dataInfo->contentScale;
2014-06-18 17:43:13 +08:00
}
2021-12-25 10:04:45 +08:00
else if (key.compare(A_Y) == 0)
{
node->y = utils::atof(str) * dataInfo->contentScale;
}
else if (key.compare(A_Z) == 0)
{
node->zOrder = atoi(str);
}
else if (key.compare(A_SKEW_X) == 0)
{
node->skewX = utils::atof(str);
}
else if (key.compare(A_SKEW_Y) == 0)
{
node->skewY = utils::atof(str);
}
else if (key.compare(A_SCALE_X) == 0)
{
node->scaleX = utils::atof(str);
}
else if (key.compare(A_SCALE_Y) == 0)
{
node->scaleY = utils::atof(str);
}
else if (key.compare(COLOR_INFO) == 0)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (!isVersionL)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (child->GetType(cocoLoader) == rapidjson::kObjectType)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
if (child->GetChildNum() == 4)
2014-06-18 17:43:13 +08:00
{
2021-12-25 10:04:45 +08:00
stExpCocoNode* ChildArray = child->GetChildArray(cocoLoader);
2014-07-01 16:31:17 +08:00
node->a = atoi(ChildArray[0].GetValue(cocoLoader));
node->r = atoi(ChildArray[1].GetValue(cocoLoader));
node->g = atoi(ChildArray[2].GetValue(cocoLoader));
node->b = atoi(ChildArray[3].GetValue(cocoLoader));
2014-06-18 17:43:13 +08:00
}
}
2014-06-18 17:43:13 +08:00
node->isUseColorInfo = true;
}
}
}
2013-06-06 12:02:54 +08:00
2021-12-25 10:04:45 +08:00
if (isVersionL)
{
int colorcoount = NodeArray[0].GetChildNum();
if (colorcoount > 0)
{
if (NodeArray[0].GetType(cocoLoader) == rapidjson::kObjectType)
{
if (NodeArray[0].GetChildNum() == 4)
{
stExpCocoNode* ChildArray = NodeArray[0].GetChildArray(cocoLoader);
node->a = atoi(ChildArray[0].GetValue(cocoLoader));
node->r = atoi(ChildArray[1].GetValue(cocoLoader));
node->g = atoi(ChildArray[2].GetValue(cocoLoader));
node->b = atoi(ChildArray[3].GetValue(cocoLoader));
}
}
node->isUseColorInfo = true;
}
}
}
2021-12-25 10:04:45 +08:00
} // namespace cocostudio