123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607 |
- /****************************************************************************
- Copyright (c) 2014 cocos2d-x.org
-
- http://www.cocos2d-x.org
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- ****************************************************************************/
- #include "editor-support/cocostudio/WidgetReader/NodeReader/NodeReader.h"
- #include "editor-support/cocostudio/CSParseBinary_generated.h"
- #include "editor-support/cocostudio/ActionTimeline/CCActionTimeline.h"
- #include "editor-support/cocostudio/CCComExtensionData.h"
- #include "tinyxml2.h"
- #include "flatbuffers/flatbuffers.h"
- #include "ui/UILayoutComponent.h"
- USING_NS_CC;
- using namespace flatbuffers;
- namespace cocostudio
- {
- const char* Layout_PositionPercentXEnabled = "PositionPercentXEnabled";
- const char* Layout_PositionPercentYEnabled = "PositionPercentYEnabled";
- const char* Layout_PercentWidthEnable = "PercentWidthEnabled";
- const char* Layout_PercentHeightEnable = "PercentHeightEnabled";
- const char* Layout_StretchWidthEnable = "StretchWidthEnable";
- const char* Layout_StretchHeightEnable = "StretchHeightEnable";
- const char* Layout_HorizontalEdge = "HorizontalEdge";
- const char* Layout_VerticalEdge = "VerticalEdge";
- const char* Layout_LeftMargin = "LeftMargin";
- const char* Layout_RightMargin = "RightMargin";
- const char* Layout_TopMargin = "TopMargin";
- const char* Layout_BottomMargin = "BottomMargin";
- const char* Layout_BothEdge = "BothEdge";
- const char* Layout_LeftEdge = "LeftEdge";
- const char* Layout_RightEdge = "RightEdge";
- const char* Layout_TopEdge = "TopEdge";
- const char* Layout_BottomEdge = "BottomEdge";
- IMPLEMENT_CLASS_NODE_READER_INFO(NodeReader)
-
- NodeReader::NodeReader()
- {
-
- }
-
- NodeReader::~NodeReader()
- {
-
- }
-
- static NodeReader* _instanceNodeReader = nullptr;
-
- NodeReader* NodeReader::getInstance()
- {
- if (!_instanceNodeReader)
- {
- _instanceNodeReader = new (std::nothrow) NodeReader();
- }
-
- return _instanceNodeReader;
- }
-
- void NodeReader::destroyInstance()
- {
- CC_SAFE_DELETE(_instanceNodeReader);
- }
-
- Offset<Table> NodeReader::createOptionsWithFlatBuffers(const tinyxml2::XMLElement *objectData,
- flatbuffers::FlatBufferBuilder *builder)
- {
- std::string name = "";
- long actionTag = 0;
- Vec2 rotationSkew;
- int zOrder = 0;
- bool visible = true;
- GLubyte alpha = 255;
- int tag = 0;
- Vec2 position;
- Vec2 scale(1.0f, 1.0f);
- Vec2 anchorPoint;
- Color4B color(255, 255, 255, 255);
- Vec2 size;
- bool flipX = false;
- bool flipY = false;
- bool ignoreSize = false;
- bool touchEnabled = false;
- std::string frameEvent = "";
- std::string customProperty = "";
- bool positionXPercentEnabled = false;
- bool positionYPercentEnabled = false;
- float positionXPercent = 0;
- float positionYPercent = 0;
- bool sizeXPercentEnable = false;
- bool sizeYPercentEnable = false;
- float sizeXPercent = 0;
- float sizeYPercent = 0;
- bool stretchHorizontalEnabled = false;
- bool stretchVerticalEnabled = false;
- std::string horizontalEdge;
- std::string verticalEdge;
- float leftMargin = 0;
- float rightMargin = 0;
- float topMargin = 0;
- float bottomMargin = 0;
-
- // attributes
- const tinyxml2::XMLAttribute* attribute = objectData->FirstAttribute();
- while (attribute)
- {
- std::string attriname = attribute->Name();
- std::string value = attribute->Value();
-
- if (attriname == "Name")
- {
- name = value;
- }
- else if (attriname == "ActionTag")
- {
- actionTag = atol(value.c_str());
- }
- else if (attriname == "RotationSkewX")
- {
- rotationSkew.x = atof(value.c_str());
- }
- else if (attriname == "RotationSkewY")
- {
- rotationSkew.y = atof(value.c_str());
- }
- else if (attriname == "Rotation")
- {
- // rotation = atoi(value.c_str());
- }
- else if (attriname == "FlipX")
- {
- flipX = (value == "True") ? true : false;
- }
- else if (attriname == "FlipY")
- {
- flipY = (value == "True") ? true : false;
- }
- else if (attriname == "ZOrder")
- {
- zOrder = atoi(value.c_str());
- }
- else if (attriname == "Visible")
- {
- // visible = (value == "True") ? true : false;
- }
- else if (attriname == "VisibleForFrame")
- {
- visible = (value == "True") ? true : false;
- }
- else if (attriname == "Alpha")
- {
- alpha = atoi(value.c_str());
- }
- else if (attriname == "Tag")
- {
- tag = atoi(value.c_str());
- }
- else if (attriname == "TouchEnable")
- {
- touchEnabled = (value == "True") ? true : false;
- }
- else if (attriname == "UserData")
- {
- customProperty = value;
- }
- else if (attriname == "FrameEvent")
- {
- frameEvent = value;
- }
- else if (attriname == Layout_PositionPercentXEnabled)
- {
- positionXPercentEnabled = value == "True";
- }
- else if (attriname == Layout_PositionPercentYEnabled)
- {
- positionYPercentEnabled = value == "True";
- }
- else if (attriname == Layout_PercentWidthEnable)
- {
- sizeXPercentEnable = value == "True";
- }
- else if (attriname == Layout_PercentHeightEnable)
- {
- sizeYPercentEnable = value == "True";
- }
- else if (attriname == Layout_StretchWidthEnable)
- {
- stretchHorizontalEnabled = value == "True";
- }
- else if (attriname == Layout_StretchHeightEnable)
- {
- stretchVerticalEnabled = value == "True";
- }
- else if (attriname == Layout_HorizontalEdge)
- {
- horizontalEdge = value;
- }
- else if (attriname == Layout_VerticalEdge)
- {
- verticalEdge = value;
- }
- else if (attriname == Layout_LeftMargin)
- {
- leftMargin = atof(value.c_str());
- }
- else if (attriname == Layout_RightMargin)
- {
- rightMargin = atof(value.c_str());
- }
- else if (attriname == Layout_TopMargin)
- {
- topMargin = atof(value.c_str());
- }
- else if (attriname == Layout_BottomMargin)
- {
- bottomMargin = atof(value.c_str());
- }
-
- attribute = attribute->Next();
- }
-
- const tinyxml2::XMLElement* child = objectData->FirstChildElement();
- while (child)
- {
- std::string attriname = child->Name();
- if (attriname == "Position")
- {
- attribute = child->FirstAttribute();
-
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
-
- if (attriname == "X")
- {
- position.x = atof(value.c_str());
- }
- else if (attriname == "Y")
- {
- position.y = atof(value.c_str());
- }
-
- attribute = attribute->Next();
- }
- }
- else if (attriname == "Scale")
- {
- attribute = child->FirstAttribute();
-
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
-
- if (attriname == "ScaleX")
- {
- scale.x = atof(value.c_str());
- }
- else if (attriname == "ScaleY")
- {
- scale.y = atof(value.c_str());
- }
-
- attribute = attribute->Next();
- }
- }
- else if (attriname == "AnchorPoint")
- {
- attribute = child->FirstAttribute();
-
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
-
- if (attriname == "ScaleX")
- {
- anchorPoint.x = atof(value.c_str());
- }
- else if (attriname == "ScaleY")
- {
- anchorPoint.y = atof(value.c_str());
- }
-
- attribute = attribute->Next();
- }
- }
- else if (attriname == "CColor")
- {
- attribute = child->FirstAttribute();
-
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
-
- if (attriname == "A")
- {
- color.a = atoi(value.c_str());
- }
- else if (attriname == "R")
- {
- color.r = atoi(value.c_str());
- }
- else if (attriname == "G")
- {
- color.g = atoi(value.c_str());
- }
- else if (attriname == "B")
- {
- color.b = atoi(value.c_str());
- }
-
- attribute = attribute->Next();
- }
- }
- else if (attriname == "Size")
- {
- attribute = child->FirstAttribute();
-
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
-
- if (attriname == "X")
- {
- size.x = atof(value.c_str());
- }
- else if (attriname == "Y")
- {
- size.y = atof(value.c_str());
- }
-
- attribute = attribute->Next();
- }
- }
- else if (attriname == "PrePosition")
- {
- attribute = child->FirstAttribute();
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
- if (attriname == "X")
- {
- positionXPercent = atof(value.c_str());
- }
- else if (attriname == "Y")
- {
- positionYPercent = atof(value.c_str());
- }
- attribute = attribute->Next();
- }
- }
- else if (attriname == "PreSize")
- {
- attribute = child->FirstAttribute();
- while (attribute)
- {
- attriname = attribute->Name();
- std::string value = attribute->Value();
- if (attriname == "X")
- {
- sizeXPercent = atof(value.c_str());
- }
- else if (attriname == "Y")
- {
- sizeYPercent = atof(value.c_str());
- }
- attribute = attribute->Next();
- }
- }
- child = child->NextSiblingElement();
- }
-
- 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 f_layoutComponent = CreateLayoutComponentTable(*builder,
- positionXPercentEnabled,
- positionYPercentEnabled,
- positionXPercent,
- positionYPercent,
- sizeXPercentEnable,
- sizeYPercentEnable,
- sizeXPercent,
- sizeYPercent,
- stretchHorizontalEnabled,
- stretchVerticalEnabled,
- builder->CreateString(horizontalEdge),
- builder->CreateString(verticalEdge),
- leftMargin,
- rightMargin,
- topMargin,
- bottomMargin);
-
- auto options = CreateWidgetOptions(*builder,
- builder->CreateString(name),
- (int)actionTag,
- &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),
- 0,
- 0,
- f_layoutComponent);
-
- return *(Offset<Table>*)(&options);
- }
-
- void NodeReader::setPropsWithFlatBuffers(cocos2d::Node *node,
- const flatbuffers::Table* nodeOptions)
- {
- auto options = (WidgetOptions*)(nodeOptions);
-
- std::string name = options->name()->c_str();
- float x = options->position()->x();
- float y = options->position()->y();
- float scalex = options->scale()->scaleX();
- float scaley = options->scale()->scaleY();
- // float rotation = options.rotation();
- float rotationSkewX = options->rotationSkew()->rotationSkewX();
- float rotationSkewY = options->rotationSkew()->rotationSkewY();
- float anchorx = options->anchorPoint()->scaleX();
- float anchory = options->anchorPoint()->scaleY();
- int zorder = options->zOrder();
- int tag = options->tag();
- int actionTag = options->actionTag();
- bool visible = options->visible() != 0;
- float w = options->size()->width();
- float h = options->size()->height();
- int alpha = options->alpha();
- Color3B color(options->color()->r(), options->color()->g(), options->color()->b());
- std::string customProperty = options->customProperty()->c_str();
-
- node->setName(name);
-
- // if(x != 0 || y != 0)
- node->setPosition(Point(x, y));
- if(scalex != 1)
- node->setScaleX(scalex);
- if(scaley != 1)
- node->setScaleY(scaley);
- // if (rotation != 0)
- // node->setRotation(rotation);
- if (rotationSkewX != 0)
- node->setRotationSkewX(rotationSkewX);
- if (rotationSkewY != 0)
- node->setRotationSkewY(rotationSkewY);
- if(anchorx != 0.5f || anchory != 0.5f)
- node->setAnchorPoint(Point(anchorx, anchory));
- if(zorder != 0)
- node->setLocalZOrder(zorder);
- if(visible != true)
- node->setVisible(visible);
- // if (w != 0 || h != 0)
- node->setContentSize(Size(w, h));
- if (alpha != 255)
- node->setOpacity(alpha);
-
- node->setColor(color);
-
- node->setTag(tag);
-
- ComExtensionData* extensionData = ComExtensionData::create();
- extensionData->setCustomProperty(customProperty);
- extensionData->setActionTag(actionTag);
- if (node->getComponent(ComExtensionData::COMPONENT_NAME))
- {
- node->removeComponent(ComExtensionData::COMPONENT_NAME);
- }
- node->addComponent(extensionData);
-
-
- node->setCascadeColorEnabled(true);
- node->setCascadeOpacityEnabled(true);
- setLayoutComponentPropsWithFlatBuffers(node, nodeOptions);
- }
- void NodeReader::setLayoutComponentPropsWithFlatBuffers(cocos2d::Node* node, const flatbuffers::Table* nodeOptions)
- {
- auto layoutComponentTable = ((WidgetOptions*)nodeOptions)->layoutComponent();
- if (!layoutComponentTable) return;
- auto layoutComponent = ui::LayoutComponent::bindLayoutComponent(node);
- bool positionXPercentEnabled = layoutComponentTable->positionXPercentEnabled() != 0;
- bool positionYPercentEnabled = layoutComponentTable->positionYPercentEnabled() != 0;
- float positionXPercent = layoutComponentTable->positionXPercent();
- float positionYPercent = layoutComponentTable->positionYPercent();
- bool sizeXPercentEnable = layoutComponentTable->sizeXPercentEnable() != 0;
- bool sizeYPercentEnable = layoutComponentTable->sizeYPercentEnable() != 0;
- float sizeXPercent = layoutComponentTable->sizeXPercent();
- float sizeYPercent = layoutComponentTable->sizeYPercent();
- bool stretchHorizontalEnabled = layoutComponentTable->stretchHorizontalEnabled() != 0;
- bool stretchVerticalEnabled = layoutComponentTable->stretchVerticalEnabled() != 0;
- std::string horizontalEdge = layoutComponentTable->horizontalEdge()->c_str();
- std::string verticalEdge = layoutComponentTable->verticalEdge()->c_str();
- float leftMargin = layoutComponentTable->leftMargin();
- float rightMargin = layoutComponentTable->rightMargin();
- float topMargin = layoutComponentTable->topMargin();
- float bottomMargin = layoutComponentTable->bottomMargin();
- layoutComponent->setPositionPercentXEnabled(positionXPercentEnabled);
- layoutComponent->setPositionPercentYEnabled(positionYPercentEnabled);
- layoutComponent->setPositionPercentX(positionXPercent);
- layoutComponent->setPositionPercentY(positionYPercent);
- layoutComponent->setPercentWidthEnabled(sizeXPercentEnable);
- layoutComponent->setPercentHeightEnabled(sizeYPercentEnable);
- layoutComponent->setPercentWidth(sizeXPercent);
- layoutComponent->setPercentHeight(sizeYPercent);
- layoutComponent->setStretchWidthEnabled(stretchHorizontalEnabled);
- layoutComponent->setStretchHeightEnabled(stretchVerticalEnabled);
- ui::LayoutComponent::HorizontalEdge horizontalEdgeType = ui::LayoutComponent::HorizontalEdge::None;
- if (horizontalEdge == Layout_LeftEdge)
- {
- horizontalEdgeType = ui::LayoutComponent::HorizontalEdge::Left;
- }
- else if (horizontalEdge == Layout_RightEdge)
- {
- horizontalEdgeType = ui::LayoutComponent::HorizontalEdge::Right;
- }
- else if (horizontalEdge == Layout_BothEdge)
- {
- horizontalEdgeType = ui::LayoutComponent::HorizontalEdge::Center;
- }
- layoutComponent->setHorizontalEdge(horizontalEdgeType);
- ui::LayoutComponent::VerticalEdge verticalEdgeType = ui::LayoutComponent::VerticalEdge::None;
- if (verticalEdge == Layout_TopEdge)
- {
- verticalEdgeType = ui::LayoutComponent::VerticalEdge::Top;
- }
- else if (verticalEdge == Layout_BottomEdge)
- {
- verticalEdgeType = ui::LayoutComponent::VerticalEdge::Bottom;
- }
- else if (verticalEdge == Layout_BothEdge)
- {
- verticalEdgeType = ui::LayoutComponent::VerticalEdge::Center;
- }
- layoutComponent->setVerticalEdge(verticalEdgeType);
- layoutComponent->setTopMargin(topMargin);
- layoutComponent->setBottomMargin(bottomMargin);
- layoutComponent->setLeftMargin(leftMargin);
- layoutComponent->setRightMargin(rightMargin);
- }
- Node* NodeReader::createNodeWithFlatBuffers(const flatbuffers::Table *nodeOptions)
- {
- Node* node = Node::create();
-
- setPropsWithFlatBuffers(node, nodeOptions);
-
- return node;
- }
- }
|