2013-06-06 12:02:54 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCDATAREADERHELPER_H__
|
|
|
|
#define __CCDATAREADERHELPER_H__
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCArmatureDefine.h"
|
|
|
|
#include "cocostudio/CCDatas.h"
|
|
|
|
#include "cocostudio/CCArmature.h"
|
2013-12-24 20:33:55 +08:00
|
|
|
#include "cocostudio/DictionaryHelper.h"
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
#include <string>
|
|
|
|
#include <queue>
|
|
|
|
#include <list>
|
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
namespace tinyxml2
|
|
|
|
{
|
|
|
|
class XMLElement;
|
|
|
|
}
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocostudio {
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-20 12:04:47 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-10-15 18:00:03 +08:00
|
|
|
class DataReaderHelper : cocos2d::Object
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-09-13 18:07:37 +08:00
|
|
|
protected:
|
|
|
|
|
|
|
|
enum ConfigType
|
|
|
|
{
|
|
|
|
DragonBone_XML,
|
|
|
|
CocoStudio_JSON
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AsyncStruct
|
|
|
|
{
|
|
|
|
std::string filename;
|
|
|
|
std::string fileContent;
|
|
|
|
ConfigType configType;
|
|
|
|
std::string baseFilePath;
|
2013-10-15 18:00:03 +08:00
|
|
|
cocos2d::Object *target;
|
|
|
|
cocos2d::SEL_SCHEDULE selector;
|
2013-09-13 18:07:37 +08:00
|
|
|
bool autoLoadSpriteFile;
|
2013-10-30 09:41:40 +08:00
|
|
|
|
|
|
|
std::string imagePath;
|
|
|
|
std::string plistPath;
|
2013-09-13 18:07:37 +08:00
|
|
|
} AsyncStruct;
|
|
|
|
|
|
|
|
typedef struct _DataInfo
|
|
|
|
{
|
|
|
|
AsyncStruct *asyncStruct;
|
|
|
|
std::queue<std::string> configFileQueue;
|
2013-10-30 09:41:40 +08:00
|
|
|
float contentScale;
|
2013-10-31 17:28:14 +08:00
|
|
|
std::string filename;
|
2013-11-05 11:57:20 +08:00
|
|
|
std::string baseFilePath;
|
|
|
|
float flashToolVersion;
|
|
|
|
float cocoStudioVersion;
|
2013-09-13 18:07:37 +08:00
|
|
|
} DataInfo;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-16 15:16:05 +08:00
|
|
|
/** @deprecated Use getInstance() instead */
|
|
|
|
CC_DEPRECATED_ATTRIBUTE static DataReaderHelper *sharedDataReaderHelper() { return DataReaderHelper::getInstance(); }
|
|
|
|
|
|
|
|
static DataReaderHelper *getInstance();
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-06-07 10:52:32 +08:00
|
|
|
* Scale the position data, used for multiresolution adapter
|
|
|
|
* It won't effect the data already read.
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
|
|
|
static void setPositionReadScale(float scale);
|
|
|
|
static float getPositionReadScale();
|
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
static void purge();
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2013-09-16 14:13:55 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
DataReaderHelper();
|
2013-09-16 14:13:55 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
~DataReaderHelper();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-12-23 14:05:46 +08:00
|
|
|
void addDataFromFile(const std::string& filePath);
|
|
|
|
void addDataFromFileAsync(const std::string& imagePath, const std::string& plistPath, const std::string& filePath, cocos2d::Object *target, cocos2d::SEL_SCHEDULE selector);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
void addDataAsyncCallBack(float dt);
|
|
|
|
|
2013-12-23 14:05:46 +08:00
|
|
|
void removeConfigFile(const std::string& configFile);
|
2013-09-13 18:07:37 +08:00
|
|
|
public:
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-09-15 19:08:45 +08:00
|
|
|
* Translate XML export from Dragon Bone flash tool to datas, and save them.
|
2013-06-07 10:52:32 +08:00
|
|
|
* When you add a new xml, the data already saved will be keeped.
|
2013-06-06 12:02:54 +08:00
|
|
|
*
|
2013-09-13 18:07:37 +08:00
|
|
|
* @param xmlPath The cache of the xml
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-12-24 13:35:46 +08:00
|
|
|
static void addDataFromCache(const std::string& pFileContent, DataInfo *dataInfo = nullptr);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-09-15 19:08:45 +08:00
|
|
|
* Decode Armature Datas from xml export from Dragon Bone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-11-05 11:57:20 +08:00
|
|
|
static ArmatureData *decodeArmature(tinyxml2::XMLElement *armatureXML, DataInfo *dataInfo);
|
|
|
|
static BoneData *decodeBone(tinyxml2::XMLElement *boneXML, tinyxml2::XMLElement *parentXML, DataInfo *dataInfo);
|
|
|
|
static DisplayData *decodeBoneDisplay(tinyxml2::XMLElement *displayXML, DataInfo *dataInfo);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-09-15 19:08:45 +08:00
|
|
|
* Decode ArmatureAnimation Datas from xml export from Dragon Bone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-11-05 11:57:20 +08:00
|
|
|
static AnimationData *decodeAnimation(tinyxml2::XMLElement *animationXML, DataInfo *dataInfo);
|
|
|
|
static MovementData *decodeMovement(tinyxml2::XMLElement *movementXML, ArmatureData *armatureData, DataInfo *dataInfo);
|
|
|
|
static MovementBoneData *decodeMovementBone(tinyxml2::XMLElement *movBoneXml, tinyxml2::XMLElement *parentXml, BoneData *boneData, DataInfo *dataInfo);
|
|
|
|
static FrameData *decodeFrame(tinyxml2::XMLElement *frameXML, tinyxml2::XMLElement *parentFrameXml, BoneData *boneData, DataInfo *dataInfo);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-09-15 19:08:45 +08:00
|
|
|
* Decode Texture Datas from xml export from Dragon Bone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-11-05 11:57:20 +08:00
|
|
|
static TextureData *decodeTexture(tinyxml2::XMLElement *textureXML, DataInfo *dataInfo);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
/**
|
2013-09-15 19:08:45 +08:00
|
|
|
* Decode Contour Datas from xml export from Dragon Bone flash tool
|
2013-06-06 12:02:54 +08:00
|
|
|
*/
|
2013-11-05 11:57:20 +08:00
|
|
|
static ContourData *decodeContour(tinyxml2::XMLElement *contourXML, DataInfo *dataInfo);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
public:
|
2013-12-24 13:35:46 +08:00
|
|
|
static void addDataFromJsonCache(const std::string& fileContent, DataInfo *dataInfo = nullptr);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
static ArmatureData *decodeArmature(const rapidjson::Value& json, DataInfo *dataInfo);
|
|
|
|
static BoneData *decodeBone(const rapidjson::Value& json, DataInfo *dataInfo);
|
|
|
|
static DisplayData *decodeBoneDisplay(const rapidjson::Value& json, DataInfo *dataInfo);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
static AnimationData *decodeAnimation(const rapidjson::Value& json, DataInfo *dataInfo);
|
|
|
|
static MovementData *decodeMovement(const rapidjson::Value& json, DataInfo *dataInfo);
|
|
|
|
static MovementBoneData *decodeMovementBone(const rapidjson::Value& json, DataInfo *dataInfo);
|
|
|
|
static FrameData *decodeFrame(const rapidjson::Value& json, DataInfo *dataInfo);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
static TextureData *decodeTexture(const rapidjson::Value& json);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
static ContourData *decodeContour(const rapidjson::Value& json);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
static void decodeNode(BaseData *node, const rapidjson::Value& json, DataInfo *dataInfo);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void loadData();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
std::condition_variable _sleepCondition;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
std::thread *_loadingThread;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
std::mutex _sleepMutex;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
std::mutex _asyncStructQueueMutex;
|
|
|
|
std::mutex _dataInfoMutex;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
std::mutex _addDataMutex;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
std::mutex _getFileMutex;
|
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
|
|
|
|
unsigned long _asyncRefCount;
|
|
|
|
unsigned long _asyncRefTotalCount;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
bool need_quit;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
std::queue<AsyncStruct *> *_asyncStructQueue;
|
|
|
|
std::queue<DataInfo *> *_dataQueue;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-10-31 17:28:14 +08:00
|
|
|
static std::vector<std::string> _configFileList;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
static DataReaderHelper *_dataReaderHelper;
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
#endif /*__CCDATAREADERHELPER_H__*/
|