#include "ButtonReader.h" #include "ui/UIButton.h" #include "cocostudio/CocoLoader.h" #include "cocostudio/CSParseBinary.pb.h" #include "cocostudio/CSParseBinary_generated.h" #include "cocostudio/FlatBuffersSerialize.h" #include "tinyxml2/tinyxml2.h" #include "flatbuffers/flatbuffers.h" USING_NS_CC; using namespace ui; using namespace flatbuffers; namespace cocostudio { static const char* P_Scale9Enable = "scale9Enable"; static const char* P_NormalData = "normalData"; static const char* P_PressedData = "pressedData"; static const char* P_DisabledData = "disabledData"; static const char* P_Text = "text"; static const char* P_CapInsetsX = "capInsetsX"; static const char* P_CapInsetsY = "capInsetsY"; static const char* P_CapInsetsWidth = "capInsetsWidth"; static const char* P_CapInsetsHeight = "capInsetsHeight"; static const char* P_Scale9Width = "scale9Width"; static const char* P_Scale9Height = "scale9Height"; static const char* P_TextColorR = "textColorR"; static const char* P_TextColorG = "textColorG"; static const char* P_TextColorB = "textColorB"; static const char* P_FontSize = "fontSize"; static const char* P_FontName = "fontName"; static ButtonReader* instanceButtonReader = nullptr; IMPLEMENT_CLASS_NODE_READER_INFO(ButtonReader) ButtonReader::ButtonReader() { } ButtonReader::~ButtonReader() { } ButtonReader* ButtonReader::getInstance() { if (!instanceButtonReader) { instanceButtonReader = new (std::nothrow) ButtonReader(); } return instanceButtonReader; } void ButtonReader::purge() { CC_SAFE_DELETE(instanceButtonReader); } void ButtonReader::setPropsFromBinary(cocos2d::ui::Widget *widget, CocoLoader *cocoLoader, stExpCocoNode *cocoNode) { WidgetReader::setPropsFromBinary(widget, cocoLoader, cocoNode); Button *button = static_cast(widget); stExpCocoNode *stChildArray = cocoNode->GetChildArray(cocoLoader); this->beginSetBasicProperties(widget); float capsx = 0.0f, capsy = 0.0, capsWidth = 0.0, capsHeight = 0.0f; int cri = 255, cgi = 255, cbi = 255; float scale9Width = 0.0f, scale9Height = 0.0f; for (int i = 0; i < cocoNode->GetChildNum(); ++i) { std::string key = stChildArray[i].GetName(cocoLoader); std::string value = stChildArray[i].GetValue(cocoLoader); //read all basic properties of widget CC_BASIC_PROPERTY_BINARY_READER //read all color related properties of widget CC_COLOR_PROPERTY_BINARY_READER else if (key == P_Scale9Enable) { button->setScale9Enabled(valueToBool(value)); } else if (key == P_NormalData){ stExpCocoNode *backGroundChildren = stChildArray[i].GetChildArray(cocoLoader); std::string resType = backGroundChildren[2].GetValue(cocoLoader);; Widget::TextureResType imageFileNameType = (Widget::TextureResType)valueToInt(resType); std::string backgroundValue = this->getResourcePath(cocoLoader, &stChildArray[i], imageFileNameType); button->loadTextureNormal(backgroundValue, imageFileNameType); } else if (key == P_PressedData){ stExpCocoNode *backGroundChildren = stChildArray[i].GetChildArray(cocoLoader); std::string resType = backGroundChildren[2].GetValue(cocoLoader);; Widget::TextureResType imageFileNameType = (Widget::TextureResType)valueToInt(resType); std::string backgroundValue = this->getResourcePath(cocoLoader, &stChildArray[i], imageFileNameType); button->loadTexturePressed(backgroundValue, imageFileNameType); } else if (key == P_DisabledData){ stExpCocoNode *backGroundChildren = stChildArray[i].GetChildArray(cocoLoader); std::string resType = backGroundChildren[2].GetValue(cocoLoader);; Widget::TextureResType imageFileNameType = (Widget::TextureResType)valueToInt(resType); std::string backgroundValue = this->getResourcePath(cocoLoader, &stChildArray[i], imageFileNameType); button->loadTextureDisabled(backgroundValue, imageFileNameType); }else if (key == P_Text){ button->setTitleText(value); } else if(key == P_CapInsetsX){ capsx = valueToFloat(value); }else if(key == P_CapInsetsY){ capsy = valueToFloat(value); }else if(key == P_CapInsetsWidth){ capsWidth = valueToFloat(value); }else if(key == P_CapInsetsHeight){ capsHeight = valueToFloat(value); }else if(key == P_Scale9Width){ scale9Width = valueToFloat(value); }else if(key == P_Scale9Height){ scale9Height = valueToFloat(value); }else if(key == P_TextColorR){ cri = valueToInt(value); }else if(key == P_TextColorG){ cgi = valueToInt(value); }else if(key == P_TextColorB){ cbi = valueToInt(value); }else if(key == P_FontSize){ button->setTitleFontSize(valueToFloat(value)); }else if(key == P_FontName){ button->setTitleFontName(value); } } //end of for loop this->endSetBasicProperties(widget); if (button->isScale9Enabled()) { button->setCapInsets(Rect(capsx, capsy, capsWidth, capsHeight)); button->setContentSize(Size(scale9Width, scale9Height)); } button->setTitleColor(Color3B(cri, cgi, cbi)); } void ButtonReader::setPropsFromJsonDictionary(Widget *widget, const rapidjson::Value &options) { WidgetReader::setPropsFromJsonDictionary(widget, options); Button* button = static_cast(widget); bool scale9Enable = DICTOOL->getBooleanValue_json(options, P_Scale9Enable); button->setScale9Enabled(scale9Enable); const rapidjson::Value& normalDic = DICTOOL->getSubDictionary_json(options, P_NormalData); int normalType = DICTOOL->getIntValue_json(normalDic, P_ResourceType); std::string normalTexturePath = this->getResourcePath(normalDic, P_Path, (Widget::TextureResType)normalType); button->loadTextureNormal(normalTexturePath, (Widget::TextureResType)normalType); const rapidjson::Value& pressedDic = DICTOOL->getSubDictionary_json(options, P_PressedData); int pressedType = DICTOOL->getIntValue_json(pressedDic, P_ResourceType); std::string pressedTexturePath = this->getResourcePath(pressedDic, P_Path, (Widget::TextureResType)pressedType); button->loadTexturePressed(pressedTexturePath, (Widget::TextureResType)pressedType); const rapidjson::Value& disabledDic = DICTOOL->getSubDictionary_json(options, P_DisabledData); int disabledType = DICTOOL->getIntValue_json(disabledDic, P_ResourceType); std::string disabledTexturePath = this->getResourcePath(disabledDic, P_Path, (Widget::TextureResType)disabledType); button->loadTextureDisabled(disabledTexturePath, (Widget::TextureResType)disabledType); if (scale9Enable) { float cx = DICTOOL->getFloatValue_json(options, P_CapInsetsX); float cy = DICTOOL->getFloatValue_json(options, P_CapInsetsY); float cw = DICTOOL->getFloatValue_json(options, P_CapInsetsWidth); float ch = DICTOOL->getFloatValue_json(options, P_CapInsetsHeight); button->setCapInsets(Rect(cx, cy, cw, ch)); bool sw = DICTOOL->checkObjectExist_json(options, P_Scale9Width); bool sh = DICTOOL->checkObjectExist_json(options, P_Scale9Height); if (sw && sh) { float swf = DICTOOL->getFloatValue_json(options, P_Scale9Width); float shf = DICTOOL->getFloatValue_json(options, P_Scale9Height); button->setContentSize(Size(swf, shf)); } } bool tt = DICTOOL->checkObjectExist_json(options, P_Text); if (tt) { const char* text = DICTOOL->getStringValue_json(options, P_Text); if (text) { button->setTitleText(text); } } int cri = DICTOOL->getIntValue_json(options, P_TextColorR,255); int cgi = DICTOOL->getIntValue_json(options, P_TextColorG,255); int cbi = DICTOOL->getIntValue_json(options, P_TextColorB,255); button->setTitleColor(Color3B(cri,cgi,cbi)); button->setTitleFontSize(DICTOOL->getIntValue_json(options, P_FontSize,14)); button->setTitleFontName(DICTOOL->getStringValue_json(options, P_FontName,"微软雅黑")); WidgetReader::setColorPropsFromJsonDictionary(widget, options); } void ButtonReader::setPropsFromProtocolBuffers(ui::Widget *widget, const protocolbuffers::NodeTree &nodeTree) { WidgetReader::setPropsFromProtocolBuffers(widget, nodeTree); Button* button = static_cast(widget); const protocolbuffers::ButtonOptions& options = nodeTree.buttonoptions(); std::string protocolBuffersPath = GUIReader::getInstance()->getFilePath();; bool scale9Enable = options.scale9enable(); button->setScale9Enabled(scale9Enable); const protocolbuffers::ResourceData& normalDic = options.normaldata(); int normalType = normalDic.resourcetype(); std::string normalTexturePath = this->getResourcePath(normalDic.path(), (Widget::TextureResType)normalType); button->loadTextureNormal(normalTexturePath, (Widget::TextureResType)normalType); const protocolbuffers::ResourceData& pressedDic = options.presseddata(); int pressedType = pressedDic.resourcetype(); std::string pressedTexturePath = this->getResourcePath(pressedDic.path(), (Widget::TextureResType)pressedType); button->loadTexturePressed(pressedTexturePath, (Widget::TextureResType)pressedType); const protocolbuffers::ResourceData& disabledDic = options.disableddata(); int disabledType = disabledDic.resourcetype(); std::string disabledTexturePath = this->getResourcePath(disabledDic.path(), (Widget::TextureResType)disabledType); button->loadTextureDisabled(disabledTexturePath, (Widget::TextureResType)disabledType); if (scale9Enable) { button->setUnifySizeEnabled(false); button->ignoreContentAdaptWithSize(false); float cx = options.capinsetsx(); float cy = options.capinsetsy(); float cw = options.capinsetswidth(); float ch = options.capinsetsheight(); button->setCapInsets(Rect(cx, cy, cw, ch)); bool sw = options.has_scale9width(); bool sh = options.has_scale9height(); if (sw && sh) { float swf = options.scale9width(); float shf = options.scale9height(); button->setContentSize(Size(swf, shf)); } } bool tt = options.has_text(); if (tt) { const char* text = options.text().c_str(); if (text) { button->setTitleText(text); } } int cri = options.has_textcolorr() ? options.textcolorr() : 255; int cgi = options.has_textcolorg() ? options.textcolorg() : 255; int cbi = options.has_textcolorb() ? options.textcolorb() : 255; button->setTitleColor(Color3B(cri,cgi,cbi)); int fontSize = options.has_fontsize() ? options.fontsize() : 14; button->setTitleFontSize(fontSize); bool displaystate = true; if(options.has_displaystate()) { displaystate = options.displaystate(); } button->setBright(displaystate); const char* fontName = options.has_fontname() ? options.fontname().c_str() : "微软雅黑"; button->setTitleFontName(fontName); if (options.has_fontresource()) { const protocolbuffers::ResourceData& resourceData = options.fontresource(); button->setTitleFontName(protocolBuffersPath + resourceData.path()); } const protocolbuffers::WidgetOptions& widgetOption = nodeTree.widgetoptions(); button->setColor(Color3B(widgetOption.colorr(), widgetOption.colorg(), widgetOption.colorb())); button->setOpacity(widgetOption.has_alpha() ? widgetOption.alpha() : 255); // other commonly protperties WidgetReader::setColorPropsFromProtocolBuffers(widget, nodeTree); } Offset ButtonReader::createOptionsWithFlatBuffers(const tinyxml2::XMLElement *objectData, flatbuffers::FlatBufferBuilder *builder) { auto temp = WidgetReader::getInstance()->createOptionsWithFlatBuffers(objectData, builder); auto widgetOptions = *(Offset*)(&temp); bool displaystate = true; bool scale9Enabled = false; Rect capInsets; std::string text = ""; int fontSize = 14; std::string fontName = ""; cocos2d::Size scale9Size; Color4B textColor(255, 255, 255, 255); std::string normalPath = ""; std::string normalPlistFile = ""; int normalResourceType = 0; std::string pressedPath = ""; std::string pressedPlistFile = ""; int pressedResourceType = 0; std::string disabledPath = ""; std::string disabledPlistFile = ""; int disabledResourceType = 0; std::string fontResourcePath = ""; std::string fontResourcePlistFile = ""; int fontResourceResourceType = 0; // attributes const tinyxml2::XMLAttribute* attribute = objectData->FirstAttribute(); while (attribute) { std::string name = attribute->Name(); std::string value = attribute->Value(); if (name == "Scale9Enable") { if (value == "True") { scale9Enabled = true; } } else if (name == "Scale9OriginX") { capInsets.origin.x = atof(value.c_str()); } else if (name == "Scale9OriginY") { capInsets.origin.y = atof(value.c_str()); } else if (name == "Scale9Width") { capInsets.size.width = atof(value.c_str()); } else if (name == "Scale9Height") { capInsets.size.height = atof(value.c_str()); } else if (name == "ButtonText") { text = value; } else if (name == "FontSize") { fontSize = atoi(value.c_str()); } else if (name == "FontName") { fontName = value; } else if (name == "DisplayState") { displaystate = (value == "True") ? true : false; } attribute = attribute->Next(); } // child elements const tinyxml2::XMLElement* child = objectData->FirstChildElement(); while (child) { std::string name = child->Name(); if (name == "Size" && scale9Enabled) { attribute = child->FirstAttribute(); while (attribute) { name = attribute->Name(); std::string value = attribute->Value(); if (name == "X") { scale9Size.width = atof(value.c_str()); } else if (name == "Y") { scale9Size.height = atof(value.c_str()); } attribute = attribute->Next(); } } else if (name == "TextColor") { attribute = child->FirstAttribute(); while (attribute) { name = attribute->Name(); std::string value = attribute->Value(); if (name == "R") { textColor.r = atoi(value.c_str()); } else if (name == "G") { textColor.g = atoi(value.c_str()); } else if (name == "B") { textColor.b = atoi(value.c_str()); } attribute = attribute->Next(); } } else if (name == "DisabledFileData") { std::string texture = ""; std::string texturePng = ""; attribute = child->FirstAttribute(); while (attribute) { name = attribute->Name(); std::string value = attribute->Value(); if (name == "Path") { disabledPath = value; } else if (name == "Type") { disabledResourceType = getResourceType(value);; } else if (name == "Plist") { disabledPlistFile = value; texture = value; } attribute = attribute->Next(); } if (disabledResourceType == 1) { FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance(); fbs->_textures.push_back(builder->CreateString(texture)); texturePng = texture.substr(0, texture.find_last_of('.')).append(".png"); fbs->_texturePngs.push_back(builder->CreateString(texturePng)); } } else if (name == "PressedFileData") { std::string texture = ""; std::string texturePng = ""; attribute = child->FirstAttribute(); while (attribute) { name = attribute->Name(); std::string value = attribute->Value(); if (name == "Path") { pressedPath = value; } else if (name == "Type") { pressedResourceType = getResourceType(value); } else if (name == "Plist") { pressedPlistFile = value; texture = value; } attribute = attribute->Next(); } if (pressedResourceType == 1) { FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance(); fbs->_textures.push_back(builder->CreateString(texture)); texturePng = texture.substr(0, texture.find_last_of('.')).append(".png"); fbs->_texturePngs.push_back(builder->CreateString(texturePng)); } } else if (name == "NormalFileData") { std::string texture = ""; std::string texturePng = ""; attribute = child->FirstAttribute(); while (attribute) { name = attribute->Name(); std::string value = attribute->Value(); if (name == "Path") { normalPath = value; } else if (name == "Type") { normalResourceType = getResourceType(value); } else if (name == "Plist") { normalPlistFile = value; texture = value; } attribute = attribute->Next(); } if (normalResourceType == 1) { FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance(); fbs->_textures.push_back(builder->CreateString(texture)); texturePng = texture.substr(0, texture.find_last_of('.')).append(".png"); fbs->_texturePngs.push_back(builder->CreateString(texturePng)); } } else if (name == "FontResource") { attribute = child->FirstAttribute(); while (attribute) { name = attribute->Name(); std::string value = attribute->Value(); if (name == "Path") { fontResourcePath = value; } else if (name == "Type") { fontResourceResourceType = getResourceType(value); } else if (name == "Plist") { fontResourcePlistFile = value; } attribute = attribute->Next(); } } child = child->NextSiblingElement(); } Color f_textColor(255, textColor.r, textColor.g, textColor.b); CapInsets f_capInsets(capInsets.origin.x, capInsets.origin.y, capInsets.size.width, capInsets.size.height); FlatSize f_scale9Size(scale9Size.width, scale9Size.height); auto options = CreateButtonOptions(*builder, widgetOptions, CreateResourceData(*builder, builder->CreateString(normalPath), builder->CreateString(normalPlistFile), normalResourceType), CreateResourceData(*builder, builder->CreateString(pressedPath), builder->CreateString(pressedPlistFile), pressedResourceType), CreateResourceData(*builder, builder->CreateString(disabledPath), builder->CreateString(disabledPlistFile), disabledResourceType), CreateResourceData(*builder, builder->CreateString(fontResourcePath), builder->CreateString(fontResourcePlistFile), fontResourceResourceType), builder->CreateString(text), builder->CreateString(fontName), fontSize, &f_textColor, &f_capInsets, &f_scale9Size, scale9Enabled, displaystate ); return *(Offset
*)(&options); } void ButtonReader::setPropsWithFlatBuffers(cocos2d::Node *node, const flatbuffers::Table *buttonOptions) { Button* button = static_cast(node); auto options = (ButtonOptions*)buttonOptions; bool scale9Enabled = options->scale9Enabled(); button->setScale9Enabled(scale9Enabled); auto normalDic = options->normalData(); int normalType = normalDic->resourceType(); std::string normalTexturePath = this->getResourcePath(normalDic->path()->c_str(), (Widget::TextureResType)normalType); button->loadTextureNormal(normalTexturePath, (Widget::TextureResType)normalType); auto pressedDic = options->pressedData(); int pressedType = pressedDic->resourceType(); std::string pressedTexturePath = this->getResourcePath(pressedDic->path()->c_str(), (Widget::TextureResType)pressedType); button->loadTexturePressed(pressedTexturePath, (Widget::TextureResType)pressedType); auto disabledDic = options->disabledData(); int disabledType = disabledDic->resourceType(); std::string disabledTexturePath = this->getResourcePath(disabledDic->path()->c_str(), (Widget::TextureResType)disabledType); button->loadTextureDisabled(disabledTexturePath, (Widget::TextureResType)disabledType); if (scale9Enabled) { button->setUnifySizeEnabled(false); button->ignoreContentAdaptWithSize(false); auto f_capInsets = options->capInsets(); Rect capInsets(f_capInsets->x(), f_capInsets->y(), f_capInsets->width(), f_capInsets->height()); button->setCapInsets(capInsets); Size scale9Size(options->scale9Size()->width(), options->scale9Size()->height()); button->setContentSize(scale9Size); } std::string titleText = options->text()->c_str(); button->setTitleText(titleText); auto textColor = options->textColor(); Color3B titleColor(textColor->r(), textColor->g(), textColor->b()); button->setTitleColor(titleColor); int titleFontSize = options->fontSize(); button->setTitleFontSize(titleFontSize); std::string titleFontName = options->fontName()->c_str(); button->setTitleFontName(titleFontName); auto resourceData = options->fontResource(); std::string path = resourceData->path()->c_str(); if (path != "") { button->setTitleFontName(path); } bool displaystate = options->displaystate(); button->setBright(displaystate); button->setEnabled(displaystate); auto widgetReader = WidgetReader::getInstance(); widgetReader->setPropsWithFlatBuffers(node, (Table*)options->widgetOptions()); } Node* ButtonReader::createNodeWithFlatBuffers(const flatbuffers::Table *buttonOptions) { Button* button = Button::create(); setPropsWithFlatBuffers(button, (Table*)buttonOptions); return button; } int ButtonReader::getResourceType(std::string key) { if(key == "Normal" || key == "Default") { return 0; } FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance(); if(fbs->_isSimulator) { if(key == "MarkedSubImage") { return 0; } } return 1; } }