diff --git a/cocos/editor-support/cocostudio/CCActionNode.cpp b/cocos/editor-support/cocostudio/CCActionNode.cpp index 6074480b39..3b7da60ae4 100644 --- a/cocos/editor-support/cocostudio/CCActionNode.cpp +++ b/cocos/editor-support/cocostudio/CCActionNode.cpp @@ -151,10 +151,6 @@ void ActionNode::initActionNodeFromRoot(Object* root) { Node* rootNode = dynamic_cast(root); if (rootNode != NULL) - { - log("Need a definition of for gameObject"); - } - else { Widget* rootWidget = dynamic_cast(root); if (rootWidget != NULL) @@ -165,7 +161,7 @@ void ActionNode::initActionNodeFromRoot(Object* root) setObject(widget); } } - } + } } void ActionNode::setUnitTime(float fTime) diff --git a/cocos/editor-support/cocostudio/CCSGUIReader.cpp b/cocos/editor-support/cocostudio/CCSGUIReader.cpp index bec3ea845c..ef913c9c12 100644 --- a/cocos/editor-support/cocostudio/CCSGUIReader.cpp +++ b/cocos/editor-support/cocostudio/CCSGUIReader.cpp @@ -619,7 +619,7 @@ void WidgetPropertiesReader0250::setPropsForLabelAtlasFromJsonDictionary(Widget* const char* cmft = dicHelper->getStringValue_json(options, "charMapFile"); cmf_tp = tp_c.append(cmft).c_str(); - labelAtlas->setProperty(dicHelper->getStringValue_json(options, "stringValue"),cmf_tp,dicHelper->getIntValue_json(options, "itemWidth"),dicHelper->getIntValue_json(options,"itemHeight"),dicHelper->getStringValue_json(options, "startCharMap")); + labelAtlas->setProperty(dicHelper->getStringValue_json(options, "stringValue"),cmf_tp,dicHelper->getIntValue_json(options, "itemWidth") / CC_CONTENT_SCALE_FACTOR() ,dicHelper->getIntValue_json(options,"itemHeight") / CC_CONTENT_SCALE_FACTOR(), dicHelper->getStringValue_json(options, "startCharMap")); } setColorPropsForWidgetFromJsonDictionary(widget,options); } @@ -1025,7 +1025,23 @@ Widget* WidgetPropertiesReader0300::widgetFromJsonDictionary(JsonDictionary *dat Widget* child = widgetFromJsonDictionary(subData); if (child) { - widget->addChild(child); + PageView* pageView = dynamic_cast(widget); + if (pageView) + { + pageView->addPage(static_cast(child)); + } + else + { + ListView* listView = dynamic_cast(widget); + if (listView) + { + listView->pushBackCustomItem(child); + } + else + { + widget->addChild(child); + } + } } CC_SAFE_DELETE(subData); } @@ -1525,7 +1541,7 @@ void WidgetPropertiesReader0300::setPropsForLabelAtlasFromJsonDictionary(Widget* std::string tp_c = m_strFilePath; const char* cmfPath = dicHelper->getStringValue_json(cmftDic, "path"); const char* cmf_tp = tp_c.append(cmfPath).c_str(); - labelAtlas->setProperty(dicHelper->getStringValue_json(options, "stringValue"),cmf_tp,dicHelper->getIntValue_json(options, "itemWidth"),dicHelper->getIntValue_json(options,"itemHeight"),dicHelper->getStringValue_json(options, "startCharMap")); + labelAtlas->setProperty(dicHelper->getStringValue_json(options, "stringValue"),cmf_tp,dicHelper->getIntValue_json(options, "itemWidth") / CC_CONTENT_SCALE_FACTOR(),dicHelper->getIntValue_json(options,"itemHeight") / CC_CONTENT_SCALE_FACTOR(), dicHelper->getStringValue_json(options, "startCharMap")); break; } case 1: @@ -1931,11 +1947,26 @@ void WidgetPropertiesReader0300::setPropsForLabelBMFontFromJsonDictionary(Widget void WidgetPropertiesReader0300::setPropsForPageViewFromJsonDictionary(Widget*widget,JsonDictionary* options) { - + setPropsForLayoutFromJsonDictionary(widget, options); } void WidgetPropertiesReader0300::setPropsForListViewFromJsonDictionary(Widget* widget, JsonDictionary* options) { + setPropsForLayoutFromJsonDictionary(widget, options); + ListView* listView = static_cast(widget); + + float innerWidth = DICTOOL->getFloatValue_json(options, "innerWidth"); + float innerHeight = DICTOOL->getFloatValue_json(options, "innerHeight"); + listView->setInnerContainerSize(Size(innerWidth, innerHeight)); + int direction = DICTOOL->getFloatValue_json(options, "direction"); + listView->setDirection((SCROLLVIEW_DIR)direction); + + ListViewGravity gravity = (ListViewGravity)DICTOOL->getIntValue_json(options, "gravity"); + listView->setGravity(gravity); + + float itemMargin = DICTOOL->getFloatValue_json(options, "itemMargin"); + listView->setItemsMargin(itemMargin); } + } \ No newline at end of file