axmol/cocos/editor-support/cocostudio/WidgetReader/WidgetReader.cpp

727 lines
26 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "WidgetReader.h"
2014-11-21 15:15:38 +08:00
#include "cocostudio/CocoLoader.h"
2014-06-15 16:12:24 +08:00
#include "ui/UIButton.h"
2014-10-09 18:28:09 +08:00
#include "../ActionTimeline/CCActionTimeline.h"
2014-11-21 15:15:38 +08:00
#include "cocostudio/CSParseBinary_generated.h"
#include "tinyxml2/tinyxml2.h"
#include "flatbuffers/flatbuffers.h"
2014-03-04 16:51:35 +08:00
2014-03-06 16:15:03 +08:00
USING_NS_CC;
using namespace ui;
2014-11-21 15:15:38 +08:00
using namespace flatbuffers;
/**/
2014-03-06 16:15:03 +08:00
2014-03-04 16:51:35 +08:00
namespace cocostudio
{
const char* P_IgnoreSize = "ignoreSize";
const char* P_SizeType = "sizeType";
const char* P_PositionType = "positionType";
const char* P_SizePercentX = "sizePercentX";
const char* P_SizePercentY = "sizePercentY";
const char* P_PositionPercentX = "positionPercentX";
const char* P_PositionPercentY = "positionPercentY";
const char* P_AdaptScreen = "adaptScreen";
const char* P_Width = "width";
const char* P_Height = "height";
const char* P_Tag = "tag";
const char* P_ActionTag = "actiontag";
const char* P_TouchAble = "touchAble";
const char* P_Name = "name";
const char* P_X = "x";
const char* P_Y = "y";
const char* P_ScaleX = "scaleX";
const char* P_ScaleY = "scaleY";
const char* P_Rotation = "rotation";
const char* P_Visbile = "visible";
const char* P_ZOrder = "ZOrder";
const char* P_LayoutParameter = "layoutParameter";
const char* P_Type = "type";
const char* P_Gravity = "gravity";
const char* P_RelativeName = "relativeName";
const char* P_RelativeToName = "relativeToName";
const char* P_Align = "align";
const char* P_MarginLeft = "marginLeft";
const char* P_MarginRight = "marginRight";
const char* P_MarginTop = "marginTop";
const char* P_MarginDown = "marginDown";
const char* P_Opacity = "opacity";
const char* P_ColorR = "colorR";
const char* P_ColorG = "colorG";
const char* P_ColorB = "colorB";
const char* P_FlipX = "flipX";
const char* P_FlipY = "flipY";
const char* P_AnchorPointX = "anchorPointX";
const char* P_AnchorPointY = "anchorPointY";
const char* P_ResourceType = "resourceType";
const char* P_Path = "path";
static WidgetReader* instanceWidgetReader = nullptr;
2014-03-04 16:51:35 +08:00
2014-11-21 15:15:38 +08:00
IMPLEMENT_CLASS_NODE_READER_INFO(WidgetReader)
2014-03-04 16:51:35 +08:00
WidgetReader::WidgetReader()
2014-06-18 14:44:00 +08:00
:_sizePercentX(0.0f),
_sizePercentY(0.0f),
_positionPercentX(0.0f),
_positionPercentY(0.0f),
_width(0.0f),
_height(0.0f),
_opacity(255),
_isAdaptScreen(false)
2014-03-04 16:51:35 +08:00
{
2014-06-23 10:12:54 +08:00
valueToInt = [=](const std::string& str) -> int{
return atoi(str.c_str());
};
2014-03-04 16:51:35 +08:00
2014-06-23 10:12:54 +08:00
valueToBool = [=](const std::string& str) -> bool{
int intValue = valueToInt(str);
if (1 == intValue) {
return true;
}else{
return false;
}
};
2014-06-23 10:12:54 +08:00
valueToFloat = [=](const std::string& str) -> float{
2014-07-14 20:45:24 +08:00
return utils::atof(str.c_str());
};
2014-03-04 16:51:35 +08:00
}
WidgetReader::~WidgetReader()
2014-06-18 11:54:25 +08:00
2014-03-04 16:51:35 +08:00
{
}
WidgetReader* WidgetReader::getInstance()
{
if (!instanceWidgetReader)
{
instanceWidgetReader = new (std::nothrow) WidgetReader();
2014-03-04 16:51:35 +08:00
}
return instanceWidgetReader;
}
void WidgetReader::purge()
{
CC_SAFE_DELETE(instanceWidgetReader);
}
2014-03-06 16:15:03 +08:00
void WidgetReader::setPropsFromJsonDictionary(Widget *widget, const rapidjson::Value &options)
2014-03-04 16:51:35 +08:00
{
2014-07-01 14:01:27 +08:00
2014-07-07 15:21:14 +08:00
bool ignoreSizeExsit = DICTOOL->checkObjectExist_json(options, P_IgnoreSize);
if (ignoreSizeExsit) {
widget->ignoreContentAdaptWithSize(DICTOOL->getBooleanValue_json(options, P_IgnoreSize));
}
2014-03-04 16:51:35 +08:00
widget->setSizeType((Widget::SizeType)DICTOOL->getIntValue_json(options, P_SizeType));
widget->setPositionType((Widget::PositionType)DICTOOL->getIntValue_json(options, P_PositionType));
2014-03-04 16:51:35 +08:00
widget->setSizePercent(Vec2(DICTOOL->getFloatValue_json(options, P_SizePercentX), DICTOOL->getFloatValue_json(options, P_SizePercentY)));
widget->setPositionPercent(Vec2(DICTOOL->getFloatValue_json(options, P_PositionPercentX), DICTOOL->getFloatValue_json(options, P_PositionPercentY)));
2014-03-04 16:51:35 +08:00
/* adapt screen */
float w = 0, h = 0;
bool adaptScrenn = DICTOOL->getBooleanValue_json(options, P_AdaptScreen);
2014-03-04 16:51:35 +08:00
if (adaptScrenn)
{
Size screenSize = CCDirector::getInstance()->getWinSize();
w = screenSize.width;
h = screenSize.height;
}
else
{
w = DICTOOL->getFloatValue_json(options, P_Width);
h = DICTOOL->getFloatValue_json(options, P_Height);
2014-03-04 16:51:35 +08:00
}
widget->setContentSize(Size(w, h));
2014-03-04 16:51:35 +08:00
widget->setTag(DICTOOL->getIntValue_json(options, P_Tag));
widget->setActionTag(DICTOOL->getIntValue_json(options, P_ActionTag));
widget->setTouchEnabled(DICTOOL->getBooleanValue_json(options, P_TouchAble));
const char* name = DICTOOL->getStringValue_json(options, P_Name);
2014-03-04 16:51:35 +08:00
const char* widgetName = name?name:"default";
widget->setName(widgetName);
float x = DICTOOL->getFloatValue_json(options, P_X);
float y = DICTOOL->getFloatValue_json(options, P_Y);
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
widget->setPosition(Vec2(x,y));
2014-07-01 14:01:27 +08:00
widget->setScaleX(DICTOOL->getFloatValue_json(options, P_ScaleX,1.0));
widget->setScaleY(DICTOOL->getFloatValue_json(options, P_ScaleY,1.0));
widget->setRotation(DICTOOL->getFloatValue_json(options, P_Rotation,0));
bool vb = DICTOOL->checkObjectExist_json(options, P_Visbile);
2014-03-04 16:51:35 +08:00
if (vb)
{
widget->setVisible(DICTOOL->getBooleanValue_json(options, P_Visbile));
2014-03-04 16:51:35 +08:00
}
int z = DICTOOL->getIntValue_json(options, P_ZOrder);
2014-03-04 16:51:35 +08:00
widget->setLocalZOrder(z);
bool layout = DICTOOL->checkObjectExist_json(options, P_LayoutParameter);
2014-03-04 16:51:35 +08:00
if (layout)
{
const rapidjson::Value& layoutParameterDic = DICTOOL->getSubDictionary_json(options, P_LayoutParameter);
int paramType = DICTOOL->getIntValue_json(layoutParameterDic, P_Type);
2014-03-04 16:51:35 +08:00
LayoutParameter* parameter = nullptr;
switch (paramType)
{
case 0:
break;
case 1:
{
parameter = LinearLayoutParameter::create();
int gravity = DICTOOL->getIntValue_json(layoutParameterDic, P_Gravity);
2014-05-09 17:54:25 +08:00
((LinearLayoutParameter*)parameter)->setGravity((cocos2d::ui::LinearLayoutParameter::LinearGravity)gravity);
2014-03-04 16:51:35 +08:00
break;
}
case 2:
{
parameter = RelativeLayoutParameter::create();
RelativeLayoutParameter* rParameter = (RelativeLayoutParameter*)parameter;
const char* relativeName = DICTOOL->getStringValue_json(layoutParameterDic, P_RelativeName);
2014-03-04 16:51:35 +08:00
rParameter->setRelativeName(relativeName);
const char* relativeToName = DICTOOL->getStringValue_json(layoutParameterDic, P_RelativeToName);
2014-03-04 16:51:35 +08:00
rParameter->setRelativeToWidgetName(relativeToName);
int align = DICTOOL->getIntValue_json(layoutParameterDic, P_Align);
rParameter->setAlign((cocos2d::ui::RelativeLayoutParameter::RelativeAlign)align);
2014-03-04 16:51:35 +08:00
break;
}
default:
break;
}
if (parameter)
{
float mgl = DICTOOL->getFloatValue_json(layoutParameterDic, P_MarginLeft);
float mgt = DICTOOL->getFloatValue_json(layoutParameterDic, P_MarginTop);
float mgr = DICTOOL->getFloatValue_json(layoutParameterDic, P_MarginRight);
float mgb = DICTOOL->getFloatValue_json(layoutParameterDic, P_MarginDown);
2014-03-04 16:51:35 +08:00
parameter->setMargin(Margin(mgl, mgt, mgr, mgb));
widget->setLayoutParameter(parameter);
}
}
}
2014-03-06 16:15:03 +08:00
void WidgetReader::setColorPropsFromJsonDictionary(Widget *widget, const rapidjson::Value &options)
2014-03-04 16:51:35 +08:00
{
bool op = DICTOOL->checkObjectExist_json(options, P_Opacity);
2014-03-04 16:51:35 +08:00
if (op)
{
widget->setOpacity(DICTOOL->getIntValue_json(options, P_Opacity));
2014-03-04 16:51:35 +08:00
}
bool cr = DICTOOL->checkObjectExist_json(options, P_ColorR);
bool cg = DICTOOL->checkObjectExist_json(options, P_ColorG);
bool cb = DICTOOL->checkObjectExist_json(options, P_ColorB);
int colorR = cr ? DICTOOL->getIntValue_json(options, P_ColorR) : 255;
int colorG = cg ? DICTOOL->getIntValue_json(options, P_ColorG) : 255;
int colorB = cb ? DICTOOL->getIntValue_json(options, P_ColorB) : 255;
2014-03-04 16:51:35 +08:00
widget->setColor(Color3B(colorR, colorG, colorB));
this->setAnchorPointForWidget(widget, options);
bool flipX = DICTOOL->getBooleanValue_json(options, P_FlipX);
bool flipY = DICTOOL->getBooleanValue_json(options, P_FlipY);
2014-03-06 16:15:03 +08:00
widget->setFlippedX(flipX);
widget->setFlippedY(flipY);
2014-03-04 16:51:35 +08:00
}
2014-04-04 16:51:07 +08:00
2014-06-11 09:35:24 +08:00
void WidgetReader::beginSetBasicProperties(cocos2d::ui::Widget *widget)
{
2014-06-18 14:44:00 +08:00
_position = widget->getPosition();
2014-06-11 09:35:24 +08:00
//set default color
2014-06-18 14:44:00 +08:00
_color = Color3B(255,255,255);
widget->setColor(_color);
_opacity = widget->getOpacity();
_originalAnchorPoint = widget->getAnchorPoint();
2014-06-11 09:35:24 +08:00
}
void WidgetReader::endSetBasicProperties(Widget *widget)
{
Size screenSize = Director::getInstance()->getWinSize();
2014-06-18 14:44:00 +08:00
widget->setPositionPercent(Vec2(_positionPercentX, _positionPercentY));
widget->setSizePercent(Vec2(_sizePercentX, _sizePercentY));
if (_isAdaptScreen) {
_width = screenSize.width;
_height = screenSize.height;
2014-06-11 09:35:24 +08:00
}
2014-06-18 14:44:00 +08:00
widget->setColor(_color);
widget->setOpacity(_opacity);
//the setSize method will be conflict with scale9Width & scale9Height
2014-07-01 21:02:37 +08:00
if (!widget->isIgnoreContentAdaptWithSize()) {
widget->setContentSize(Size(_width, _height));
2014-07-01 21:02:37 +08:00
}
2014-06-18 14:44:00 +08:00
widget->setPosition(_position);
widget->setAnchorPoint(_originalAnchorPoint);
2014-06-11 09:35:24 +08:00
}
2014-04-04 16:51:07 +08:00
std::string WidgetReader::getResourcePath(const rapidjson::Value &dict,
const std::string &key,
cocos2d::ui::Widget::TextureResType texType)
2014-04-04 16:51:07 +08:00
{
std::string jsonPath = GUIReader::getInstance()->getFilePath();
const char* imageFileName = DICTOOL->getStringValue_json(dict, key.c_str());
std::string imageFileName_tp;
if (nullptr != imageFileName)
{
if (texType == ui::Widget::TextureResType::LOCAL) {
2014-04-04 16:51:07 +08:00
imageFileName_tp = jsonPath + imageFileName;
}
else if(texType == ui::Widget::TextureResType::PLIST){
2014-04-04 17:38:58 +08:00
imageFileName_tp = imageFileName;
2014-04-04 16:51:07 +08:00
}
else{
CCASSERT(0, "invalid TextureResType!!!");
}
}
return imageFileName_tp;
}
2014-06-23 10:02:09 +08:00
std::string WidgetReader::getResourcePath(CocoLoader *cocoLoader, stExpCocoNode *cocoNode, cocos2d::ui::Widget::TextureResType texType)
{
2014-07-01 16:31:17 +08:00
stExpCocoNode *backGroundChildren = cocoNode->GetChildArray(cocoLoader);
std::string backgroundValue = backGroundChildren[0].GetValue(cocoLoader);
2014-06-11 09:35:24 +08:00
if (backgroundValue.size() < 3) {
return "";
}
std::string binaryPath = GUIReader::getInstance()->getFilePath();
std::string imageFileName_tp;
if (!backgroundValue.empty())
{
if (texType == ui::Widget::TextureResType::LOCAL) {
imageFileName_tp = binaryPath + backgroundValue;
}
else if(texType == ui::Widget::TextureResType::PLIST){
imageFileName_tp = backgroundValue;
}
else{
CCASSERT(0, "invalid TextureResType!!!");
}
}
2014-04-04 16:51:07 +08:00
return imageFileName_tp;
}
void WidgetReader::setAnchorPointForWidget(cocos2d::ui::Widget *widget, const rapidjson::Value &options)
{
bool isAnchorPointXExists = DICTOOL->checkObjectExist_json(options, P_AnchorPointX);
float anchorPointXInFile;
if (isAnchorPointXExists) {
anchorPointXInFile = DICTOOL->getFloatValue_json(options, P_AnchorPointX);
}else{
anchorPointXInFile = widget->getAnchorPoint().x;
}
bool isAnchorPointYExists = DICTOOL->checkObjectExist_json(options, P_AnchorPointY);
float anchorPointYInFile;
if (isAnchorPointYExists) {
anchorPointYInFile = DICTOOL->getFloatValue_json(options, P_AnchorPointY);
}
else{
anchorPointYInFile = widget->getAnchorPoint().y;
}
if (isAnchorPointXExists || isAnchorPointYExists) {
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
widget->setAnchorPoint(Vec2(anchorPointXInFile, anchorPointYInFile));
}
}
2014-06-11 09:35:24 +08:00
2014-06-23 10:02:09 +08:00
void WidgetReader::setPropsFromBinary(cocos2d::ui::Widget *widget, cocostudio::CocoLoader *cocoLoader, cocostudio::stExpCocoNode *cocoNode)
{
2014-07-01 16:31:17 +08:00
stExpCocoNode *stChildArray = cocoNode->GetChildArray(cocoLoader);
2014-06-19 15:16:56 +08:00
this->beginSetBasicProperties(widget);
2014-06-23 10:02:09 +08:00
for (int i = 0; i < cocoNode->GetChildNum(); ++i) {
std::string key = stChildArray[i].GetName(cocoLoader);
2014-07-01 16:31:17 +08:00
std::string value = stChildArray[i].GetValue(cocoLoader);
2014-06-19 15:16:56 +08:00
CC_BASIC_PROPERTY_BINARY_READER
}
2014-06-19 15:16:56 +08:00
this->endSetBasicProperties(widget);
2014-12-01 12:46:29 +08:00
}
2014-10-09 18:28:09 +08:00
2014-11-21 15:15:38 +08:00
Offset<Table> WidgetReader::createOptionsWithFlatBuffers(const tinyxml2::XMLElement *objectData, flatbuffers::FlatBufferBuilder *builder)
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
std::string name = "";
long actionTag = 0;
Vec2 rotationSkew = Vec2::ZERO;
int zOrder = 0;
bool visible = true;
GLubyte alpha = 255;
int tag = 0;
Vec2 position = Vec2::ZERO;
Vec2 scale = Vec2(1.0f, 1.0f);
Vec2 anchorPoint = Vec2::ZERO;
Color4B color(255, 255, 255, 255);
2014-11-21 15:15:38 +08:00
Vec2 size = Vec2::ZERO;
bool flipX = false;
bool flipY = false;
bool ignoreSize = false;
bool touchEnabled = false;
std::string frameEvent = "";
std::string customProperty = "";
std::string callbackType = "";
std::string callbackName = "";
2014-10-09 18:28:09 +08:00
// attributes
const tinyxml2::XMLAttribute* attribute = objectData->FirstAttribute();
while (attribute)
{
2014-11-21 15:15:38 +08:00
std::string attriname = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
2014-11-21 15:15:38 +08:00
if (attriname == "Name")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
name = value;
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "ActionTag")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
actionTag = atol(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "RotationSkewX")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
rotationSkew.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "RotationSkewY")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
rotationSkew.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Rotation")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
// rotation = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (attriname == "FlipX")
{
flipX = (value == "True") ? true : false;
}
else if (attriname == "FlipY")
{
flipY = (value == "True") ? true : false;
}
2014-11-21 15:15:38 +08:00
else if (attriname == "ZOrder")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
zOrder = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Visible")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
// visible = (value == "True") ? true : false;
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "VisibleForFrame")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
visible = (value == "True") ? true : false;
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Alpha")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
alpha = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Tag")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
tag = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "TouchEnable")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
touchEnabled = (value == "True") ? true : false;
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "FrameEvent")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
frameEvent = value;
2014-10-09 18:28:09 +08:00
}
else if (attriname == "CallBackType")
{
callbackType = value;
}
else if (attriname == "CallBackName")
{
callbackName = value;
}
2014-10-09 18:28:09 +08:00
attribute = attribute->Next();
}
const tinyxml2::XMLElement* child = objectData->FirstChildElement();
while (child)
{
2014-11-21 15:15:38 +08:00
std::string attriname = child->Name();
if (attriname == "Children")
2014-10-09 18:28:09 +08:00
{
break;
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Position")
2014-10-09 18:28:09 +08:00
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-11-21 15:15:38 +08:00
attriname = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
2014-11-21 15:15:38 +08:00
if (attriname == "X")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
position.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Y")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
position.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Scale")
2014-10-09 18:28:09 +08:00
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-11-21 15:15:38 +08:00
attriname = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
2014-11-21 15:15:38 +08:00
if (attriname == "ScaleX")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
scale.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "ScaleY")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
scale.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
2014-11-21 15:15:38 +08:00
else if (attriname == "AnchorPoint")
2014-10-09 18:28:09 +08:00
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-11-21 15:15:38 +08:00
attriname = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
2014-11-21 15:15:38 +08:00
if (attriname == "ScaleX")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
anchorPoint.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "ScaleY")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
anchorPoint.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
2014-11-21 15:15:38 +08:00
else if (attriname == "CColor")
2014-10-09 18:28:09 +08:00
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-11-21 15:15:38 +08:00
attriname = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
2014-11-21 15:15:38 +08:00
if (attriname == "A")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
color.a = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "R")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
color.r = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "G")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
color.g = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "B")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
color.b = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Size")
2014-10-09 18:28:09 +08:00
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-11-21 15:15:38 +08:00
attriname = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
2014-11-21 15:15:38 +08:00
if (attriname == "X")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
size.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
else if (attriname == "Y")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
size.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
child = child->NextSiblingElement();
}
2014-11-21 15:15:38 +08:00
RotationSkew f_rotationskew(rotationSkew.x, rotationSkew.y);
Position f_position(position.x, position.y);
Scale f_scale(scale.x, scale.y);
AnchorPoint f_anchortpoint(anchorPoint.x, anchorPoint.y);
Color f_color(color.a, color.r, color.g, color.b);
FlatSize f_size(size.x, size.y);
auto options = CreateWidgetOptions(*builder,
builder->CreateString(name),
(int32_t)actionTag,
2014-11-21 15:15:38 +08:00
&f_rotationskew,
zOrder,
visible,
alpha,
tag,
&f_position,
&f_scale,
&f_anchortpoint,
&f_color,
&f_size,
flipX,
flipY,
ignoreSize,
touchEnabled,
builder->CreateString(frameEvent),
builder->CreateString(customProperty),
builder->CreateString(callbackType),
builder->CreateString(callbackName)
2014-11-21 15:15:38 +08:00
);
return *(Offset<Table>*)(&options);
}
void WidgetReader::setPropsWithFlatBuffers(cocos2d::Node *node, const flatbuffers::Table *widgetOptions)
{
Widget* widget = static_cast<Widget*>(node);
auto options = (WidgetOptions*)widgetOptions;
widget->setCascadeColorEnabled(true);
widget->setCascadeOpacityEnabled(true);
widget->setAnchorPoint(Vec2::ZERO);
widget->setUnifySizeEnabled(true);
bool ignoreSize = options->ignoreSize();
widget->ignoreContentAdaptWithSize(ignoreSize);
Size contentSize(options->size()->width(), options->size()->height());
widget->setContentSize(contentSize);
int tag = options->tag();
widget->setTag(tag);
int actionTag = options->actionTag();
widget->setActionTag(actionTag);
widget->setUserObject(timeline::ActionTimelineData::create(actionTag));
2014-11-21 15:15:38 +08:00
bool touchEnabled = options->touchEnabled();
widget->setTouchEnabled(touchEnabled);
std::string name = options->name()->c_str();
widget->setName(name);
Vec2 position(options->position()->x(), options->position()->y());
widget->setPosition(position);
float scaleX = options->scale()->scaleX();
widget->setScaleX(scaleX);
float scaleY = options->scale()->scaleY();
widget->setScaleY(scaleY);
float rotationSkewX = options->rotationSkew()->rotationSkewX();
widget->setRotationSkewX(rotationSkewX);
float rotationSkewY = options->rotationSkew()->rotationSkewY();
widget->setRotationSkewY(rotationSkewY);
bool visible = options->visible();
widget->setVisible(visible);
int zOrder = options->zOrder();
widget->setLocalZOrder(zOrder);
auto f_color = options->color();
Color3B color(f_color->r(), f_color->g(), f_color->b());
widget->setColor(color);
int alpha = options->alpha();
widget->setOpacity(alpha);
auto f_anchorPoint = options->anchorPoint();
Vec2 anchorPoint(f_anchorPoint->scaleX(), f_anchorPoint->scaleY());
widget->setAnchorPoint(anchorPoint);
bool flippedX = options->flipX();
widget->setFlippedX(flippedX);
bool flippedY = options->flipY();
widget->setFlippedY(flippedY);
std::string callbackType = options->callBackType()->c_str();
widget->setCallbackType(callbackType);
std::string callbackName = options->callBackName()->c_str();
widget->setCallbackName(callbackName);
2014-11-21 15:15:38 +08:00
}
Node* WidgetReader::createNodeWithFlatBuffers(const flatbuffers::Table *widgetOptions)
2014-11-21 15:15:38 +08:00
{
Widget* widget = Widget::create();
setPropsWithFlatBuffers(widget, (Table*)widgetOptions);
return widget;
2014-10-09 18:28:09 +08:00
}
std::string WidgetReader::getResourcePath(const std::string &path, cocos2d::ui::Widget::TextureResType texType)
{
std::string filePath = GUIReader::getInstance()->getFilePath();
const char* imageFileName = path.c_str();
std::string imageFileName_tp;
if (nullptr != imageFileName && 0 != strcmp("", imageFileName))
{
if (texType == ui::Widget::TextureResType::LOCAL) {
imageFileName_tp = filePath + imageFileName;
}
else if(texType == ui::Widget::TextureResType::PLIST){
imageFileName_tp = imageFileName;
}
else{
CCASSERT(0, "invalid TextureResType!!!");
}
}
return imageFileName_tp;
}
2014-03-04 16:51:35 +08:00
}