2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include "LayoutReader.h"
|
2014-03-11 17:13:54 +08:00
|
|
|
#include "ui/UILayout.h"
|
2014-06-05 10:25:08 +08:00
|
|
|
#include "cocostudio/CocoLoader.h"
|
2014-03-04 16:51:35 +08:00
|
|
|
|
2014-03-06 16:15:03 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
using namespace ui;
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
namespace cocostudio
|
|
|
|
{
|
|
|
|
static LayoutReader* instanceLayoutReader = NULL;
|
|
|
|
|
|
|
|
IMPLEMENT_CLASS_WIDGET_READER_INFO(LayoutReader)
|
|
|
|
|
|
|
|
LayoutReader::LayoutReader()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutReader::~LayoutReader()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutReader* LayoutReader::getInstance()
|
|
|
|
{
|
|
|
|
if (!instanceLayoutReader)
|
|
|
|
{
|
|
|
|
instanceLayoutReader = new LayoutReader();
|
|
|
|
}
|
|
|
|
return instanceLayoutReader;
|
|
|
|
}
|
|
|
|
|
2014-06-05 10:25:08 +08:00
|
|
|
void LayoutReader::setPropsFromBinary(cocos2d::ui::Widget *widget, CocoLoader *pCocoLoader, stExpCocoNode *pCocoNode)
|
|
|
|
{
|
|
|
|
WidgetReader::setPropsFromBinary(widget, pCocoLoader, pCocoNode);
|
|
|
|
|
|
|
|
Layout* panel = static_cast<Layout*>(widget);
|
|
|
|
|
|
|
|
float w = 0, h= 0;
|
|
|
|
|
|
|
|
stExpCocoNode *stChildArray = pCocoNode->GetChildArray();
|
2014-06-11 09:35:24 +08:00
|
|
|
this->beginSetBasicProperties(widget);
|
2014-06-05 10:25:08 +08:00
|
|
|
|
|
|
|
int cr=0, cg = 0, cb = 0;
|
|
|
|
int scr=0, scg=0, scb=0;
|
|
|
|
int ecr=0, ecg=0, ecb= 0;
|
|
|
|
float bgcv1 = 0.0f, bgcv2= 0.0f;
|
|
|
|
float capsx = 0.0f, capsy = 0.0, capsWidth = 0.0, capsHeight = 0.0f;
|
2014-06-05 11:43:43 +08:00
|
|
|
bool isAdaptScreen = false;
|
2014-06-05 10:25:08 +08:00
|
|
|
Layout::Type layoutType;
|
|
|
|
|
|
|
|
for (int i = 0; i < pCocoNode->GetChildNum(); ++i) {
|
|
|
|
std::string key = stChildArray[i].GetName(pCocoLoader);
|
|
|
|
std::string value = stChildArray[i].GetValue();
|
2014-06-11 15:16:08 +08:00
|
|
|
// CCLOG("Layout: key = %s, value = %s", key.c_str(), value.c_str());
|
2014-06-11 09:35:24 +08:00
|
|
|
if (key == "ignoreSize") {
|
|
|
|
widget->ignoreContentAdaptWithSize(valueToBool(value));
|
|
|
|
}else if(key == "sizeType"){
|
|
|
|
widget->setSizeType((Widget::SizeType)valueToInt(value));
|
|
|
|
}else if(key == "positionType"){
|
|
|
|
widget->setPositionType((Widget::PositionType)valueToInt(value));
|
|
|
|
}else if(key == "sizePercentX"){
|
|
|
|
sizePercentX = valueToFloat(value);
|
|
|
|
}else if(key == "sizePercentY"){
|
|
|
|
sizePercentY = valueToFloat(value);
|
|
|
|
}else if(key == "positionPercentX"){
|
|
|
|
positionPercentX = valueToFloat(value);
|
|
|
|
}else if(key == "positionPercentY"){
|
|
|
|
positionPercentY = valueToFloat(value);
|
|
|
|
}
|
|
|
|
else if(key == "adaptScreen"){
|
|
|
|
isAdaptScreen = valueToBool(value);
|
|
|
|
}
|
|
|
|
else if (key == "width"){
|
|
|
|
width = valueToFloat(value);
|
|
|
|
}else if(key == "height"){
|
|
|
|
height = valueToFloat(value);
|
|
|
|
}else if(key == "tag"){
|
|
|
|
widget->setTag(valueToInt(value));
|
|
|
|
}else if(key == "actiontag"){
|
|
|
|
widget->setActionTag(valueToInt(value));
|
|
|
|
}else if(key == "touchAble"){
|
|
|
|
widget->setTouchEnabled(valueToBool(value));
|
|
|
|
}else if(key == "name"){
|
|
|
|
std::string widgetName = value.empty() ? "default" : value;
|
|
|
|
widget->setName(widgetName);
|
|
|
|
}else if(key == "x"){
|
|
|
|
position.x = valueToFloat(value);
|
|
|
|
}else if(key == "y"){
|
|
|
|
position.y = valueToFloat(value);
|
|
|
|
}else if(key == "scaleX"){
|
|
|
|
widget->setScaleX(valueToFloat(value));
|
|
|
|
}else if(key == "scaleY"){
|
|
|
|
widget->setScaleY(valueToFloat(value));
|
|
|
|
}else if(key == "rotation"){
|
|
|
|
widget->setRotation(valueToFloat(value));
|
|
|
|
}else if(key == "visible"){
|
|
|
|
widget->setVisible(valueToBool(value));
|
|
|
|
}else if(key == "ZOrder"){
|
|
|
|
widget->setZOrder(valueToInt(value));
|
|
|
|
}else if(key == "layoutParameter"){
|
|
|
|
stExpCocoNode *layoutCocosNode = stChildArray[i].GetChildArray();
|
|
|
|
|
|
|
|
LinearLayoutParameter *linearParameter = LinearLayoutParameter::create();
|
|
|
|
RelativeLayoutParameter *relativeParameter = RelativeLayoutParameter::create();
|
|
|
|
Margin mg;
|
|
|
|
|
|
|
|
int paramType = -1;
|
|
|
|
for (int j = 0; j < stChildArray[i].GetChildNum(); ++j) {
|
|
|
|
std::string innerKey = layoutCocosNode[j].GetName(pCocoLoader);
|
|
|
|
std::string innerValue = layoutCocosNode[j].GetValue();
|
|
|
|
|
|
|
|
if (innerKey == "type") {
|
|
|
|
paramType = valueToInt(innerValue);
|
|
|
|
}else if(innerKey == "gravity"){
|
|
|
|
linearParameter->setGravity((cocos2d::ui::LinearLayoutParameter::LinearGravity)valueToInt(innerValue));
|
|
|
|
}else if(innerKey == "relativeName"){
|
|
|
|
relativeParameter->setRelativeName(innerValue);
|
|
|
|
}else if(innerKey == "relativeToName"){
|
|
|
|
relativeParameter->setRelativeToWidgetName(innerValue);
|
|
|
|
}else if(innerKey == "align"){
|
|
|
|
relativeParameter->setAlign((cocos2d::ui::RelativeLayoutParameter::RelativeAlign)valueToInt(innerValue));
|
|
|
|
}else if(innerKey == "marginLeft"){
|
|
|
|
mg.left = valueToFloat(innerValue);
|
|
|
|
}else if(innerKey == "marginTop"){
|
|
|
|
mg.top = valueToFloat(innerValue);
|
|
|
|
}else if(innerKey == "marginRight"){
|
|
|
|
mg.right = valueToFloat(innerValue);
|
|
|
|
}else if(innerKey == "marginDown"){
|
|
|
|
mg.bottom = valueToFloat(innerValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
linearParameter->setMargin(mg);
|
|
|
|
relativeParameter->setMargin(mg);
|
|
|
|
|
|
|
|
switch (paramType) {
|
|
|
|
case 1:
|
|
|
|
widget->setLayoutParameter(linearParameter);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
widget->setLayoutParameter(relativeParameter);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-06-05 10:25:08 +08:00
|
|
|
|
2014-06-11 09:35:24 +08:00
|
|
|
else if (key == "opacity") {
|
|
|
|
widget->setOpacity(valueToInt(value));
|
|
|
|
}else if(key == "colorR"){
|
|
|
|
Color3B color = widget->getColor();
|
|
|
|
widget->setColor(Color3B(valueToInt(value), color.g, color.b));
|
|
|
|
}else if(key == "colorG"){
|
|
|
|
Color3B color = widget->getColor();
|
|
|
|
widget->setColor(Color3B( color.r, valueToInt(value), color.b));
|
|
|
|
}else if(key == "colorB")
|
|
|
|
{
|
|
|
|
Color3B color = widget->getColor();
|
|
|
|
widget->setColor(Color3B( color.r, color.g , valueToInt(value)));
|
|
|
|
}else if(key == "flipX"){
|
|
|
|
widget->setFlippedX(valueToBool(value));
|
|
|
|
}else if(key == "flipY"){
|
|
|
|
widget->setFlippedY(valueToBool(value));
|
|
|
|
}else if(key == "anchorPointX"){
|
|
|
|
originalAnchorPoint.x = valueToFloat(value);
|
|
|
|
}else if(key == "anchorPointY"){
|
|
|
|
originalAnchorPoint.y = valueToFloat(value);
|
|
|
|
}
|
|
|
|
else if (key == "adaptScreen") {
|
2014-06-05 11:43:43 +08:00
|
|
|
isAdaptScreen = valueToBool(value);
|
|
|
|
}
|
|
|
|
else if(key == "width"){
|
|
|
|
w = valueToFloat(value);
|
|
|
|
}
|
|
|
|
else if(key == "height"){
|
|
|
|
h = valueToFloat(value);
|
|
|
|
}
|
|
|
|
else if( key == "clipAble"){
|
2014-06-05 10:25:08 +08:00
|
|
|
panel->setClippingEnabled(valueToBool(value));
|
|
|
|
}else if(key == "backGroundScale9Enable"){
|
|
|
|
panel->setBackGroundImageScale9Enabled(valueToBool(value));
|
|
|
|
}else if(key == "bgColorR"){
|
|
|
|
cr = valueToInt(value);
|
|
|
|
}else if(key == "bgColorG"){
|
|
|
|
cg = valueToInt(value);
|
|
|
|
}else if(key == "bgColorB")
|
|
|
|
{
|
|
|
|
cb = valueToInt(value);
|
|
|
|
}else if(key == "bgStartColorR"){
|
|
|
|
scr = valueToInt(value);
|
|
|
|
}else if(key == "bgStartColorG"){
|
|
|
|
scg = valueToInt(value);
|
|
|
|
}else if(key == "bgStartColorB")
|
|
|
|
{
|
|
|
|
scb = valueToInt(value);
|
|
|
|
}
|
|
|
|
else if(key == "bgEndColorR"){
|
|
|
|
ecr = valueToInt(value);
|
|
|
|
}else if(key == "bgEndColorG"){
|
|
|
|
ecg = valueToInt(value);
|
|
|
|
}else if(key == "bgEndColorB")
|
|
|
|
{
|
|
|
|
ecb = valueToInt(value);
|
|
|
|
}else if (key == "vectorX"){
|
|
|
|
bgcv1 = valueToFloat(value);
|
|
|
|
}else if(key == "vectorY"){
|
|
|
|
bgcv2 = valueToFloat(value);
|
|
|
|
}else if(key == "bgColorOpacity"){
|
|
|
|
panel->setBackGroundColorOpacity(valueToInt(value));
|
|
|
|
}else if( key == "colorType"){
|
|
|
|
panel->setBackGroundColorType(Layout::BackGroundColorType(valueToInt(value)));
|
|
|
|
}else if (key == "backGroundImageData"){
|
|
|
|
|
|
|
|
stExpCocoNode *backGroundChildren = stChildArray[i].GetChildArray();
|
|
|
|
if (backGroundChildren) {
|
|
|
|
std::string resType = backGroundChildren[2].GetValue();;
|
|
|
|
|
|
|
|
Widget::TextureResType imageFileNameType = (Widget::TextureResType)valueToInt(resType);
|
|
|
|
|
|
|
|
std::string backgroundValue = this->getResourcePath(pCocoLoader, &stChildArray[i], imageFileNameType);
|
2014-06-11 15:16:08 +08:00
|
|
|
// CCLOG("Layout : image =%s", backgroundValue.c_str());
|
2014-06-05 10:25:08 +08:00
|
|
|
|
2014-06-11 09:35:24 +08:00
|
|
|
panel->setBackGroundImage(backgroundValue, imageFileNameType);
|
2014-06-05 10:25:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}else if(key == "capInsetsX"){
|
|
|
|
capsx = valueToFloat(value);
|
|
|
|
}else if(key == "capInsetsY"){
|
|
|
|
capsy = valueToFloat(value);
|
|
|
|
}else if(key == "capInsetsWidth"){
|
|
|
|
capsWidth = valueToFloat(value);
|
|
|
|
}else if(key == "capInsetsHeight"){
|
|
|
|
capsHeight = valueToFloat(value);
|
|
|
|
}else if (key == "layoutType"){
|
|
|
|
layoutType = (Layout::Type)valueToInt(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2014-06-11 09:35:24 +08:00
|
|
|
|
2014-06-05 11:43:43 +08:00
|
|
|
Size screenSize = Director::getInstance()->getWinSize();
|
|
|
|
if (isAdaptScreen) {
|
|
|
|
w = screenSize.width;
|
|
|
|
h = screenSize.height;
|
|
|
|
}
|
|
|
|
panel->setSize(Size(w,h));
|
|
|
|
|
2014-06-05 10:25:08 +08:00
|
|
|
panel->setBackGroundColor(Color3B(scr, scg, scb),Color3B(ecr, ecg, ecb));
|
|
|
|
panel->setBackGroundColor(Color3B(cr, cg, cb));
|
|
|
|
panel->setBackGroundColorVector(Vec2(bgcv1, bgcv2));
|
|
|
|
|
|
|
|
if (panel->isBackGroundImageScale9Enabled()) {
|
|
|
|
panel->setBackGroundImageCapInsets(Rect(capsx, capsy, capsWidth, capsHeight));
|
|
|
|
}
|
|
|
|
|
|
|
|
panel->setLayoutType(layoutType);
|
2014-06-11 09:35:24 +08:00
|
|
|
this->endSetBasicProperties(widget);
|
2014-06-05 10:25:08 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-03-06 16:15:03 +08:00
|
|
|
void LayoutReader::setPropsFromJsonDictionary(Widget *widget, const rapidjson::Value &options)
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
|
|
|
WidgetReader::setPropsFromJsonDictionary(widget, options);
|
|
|
|
|
|
|
|
Layout* panel = static_cast<Layout*>(widget);
|
|
|
|
|
|
|
|
/* adapt screen gui */
|
|
|
|
float w = 0, h = 0;
|
|
|
|
bool adaptScrenn = DICTOOL->getBooleanValue_json(options, "adaptScreen");
|
|
|
|
if (adaptScrenn)
|
|
|
|
{
|
|
|
|
Size screenSize = CCDirector::getInstance()->getWinSize();
|
|
|
|
w = screenSize.width;
|
|
|
|
h = screenSize.height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
w = DICTOOL->getFloatValue_json(options, "width");
|
|
|
|
h = DICTOOL->getFloatValue_json(options, "height");
|
|
|
|
}
|
|
|
|
panel->setSize(Size(w, h));
|
|
|
|
/**/
|
|
|
|
|
2014-04-28 10:06:11 +08:00
|
|
|
panel->setClippingEnabled(DICTOOL->getBooleanValue_json(options, "clipAble"));
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
bool backGroundScale9Enable = DICTOOL->getBooleanValue_json(options, "backGroundScale9Enable");
|
|
|
|
panel->setBackGroundImageScale9Enabled(backGroundScale9Enable);
|
|
|
|
int cr = DICTOOL->getIntValue_json(options, "bgColorR");
|
|
|
|
int cg = DICTOOL->getIntValue_json(options, "bgColorG");
|
|
|
|
int cb = DICTOOL->getIntValue_json(options, "bgColorB");
|
|
|
|
|
|
|
|
int scr = DICTOOL->getIntValue_json(options, "bgStartColorR");
|
|
|
|
int scg = DICTOOL->getIntValue_json(options, "bgStartColorG");
|
|
|
|
int scb = DICTOOL->getIntValue_json(options, "bgStartColorB");
|
|
|
|
|
|
|
|
int ecr = DICTOOL->getIntValue_json(options, "bgEndColorR");
|
|
|
|
int ecg = DICTOOL->getIntValue_json(options, "bgEndColorG");
|
|
|
|
int ecb = DICTOOL->getIntValue_json(options, "bgEndColorB");
|
|
|
|
|
|
|
|
float bgcv1 = DICTOOL->getFloatValue_json(options, "vectorX");
|
|
|
|
float bgcv2 = DICTOOL->getFloatValue_json(options, "vectorY");
|
2014-05-15 01:07:09 +08:00
|
|
|
panel->setBackGroundColorVector(Vec2(bgcv1, bgcv2));
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
int co = DICTOOL->getIntValue_json(options, "bgColorOpacity");
|
|
|
|
|
|
|
|
int colorType = DICTOOL->getIntValue_json(options, "colorType");
|
2014-05-09 17:05:36 +08:00
|
|
|
panel->setBackGroundColorType(Layout::BackGroundColorType(colorType));
|
2014-03-04 16:51:35 +08:00
|
|
|
panel->setBackGroundColor(Color3B(scr, scg, scb),Color3B(ecr, ecg, ecb));
|
|
|
|
panel->setBackGroundColor(Color3B(cr, cg, cb));
|
|
|
|
panel->setBackGroundColorOpacity(co);
|
|
|
|
|
|
|
|
|
|
|
|
const rapidjson::Value& imageFileNameDic = DICTOOL->getSubDictionary_json(options, "backGroundImageData");
|
|
|
|
int imageFileNameType = DICTOOL->getIntValue_json(imageFileNameDic, "resourceType");
|
2014-05-09 14:56:05 +08:00
|
|
|
std::string imageFileName = this->getResourcePath(imageFileNameDic, "path", (Widget::TextureResType)imageFileNameType);
|
|
|
|
panel->setBackGroundImage(imageFileName, (Widget::TextureResType)imageFileNameType);
|
2014-04-04 17:21:23 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
if (backGroundScale9Enable)
|
|
|
|
{
|
|
|
|
float cx = DICTOOL->getFloatValue_json(options, "capInsetsX");
|
|
|
|
float cy = DICTOOL->getFloatValue_json(options, "capInsetsY");
|
|
|
|
float cw = DICTOOL->getFloatValue_json(options, "capInsetsWidth");
|
|
|
|
float ch = DICTOOL->getFloatValue_json(options, "capInsetsHeight");
|
|
|
|
panel->setBackGroundImageCapInsets(Rect(cx, cy, cw, ch));
|
|
|
|
}
|
2014-05-12 18:00:54 +08:00
|
|
|
panel->setLayoutType((Layout::Type)DICTOOL->getIntValue_json(options, "layoutType"));
|
2014-03-04 16:51:35 +08:00
|
|
|
|
2014-03-28 18:54:06 +08:00
|
|
|
int bgimgcr = DICTOOL->getIntValue_json(options, "colorR");
|
|
|
|
int bgimgcg = DICTOOL->getIntValue_json(options, "colorG");
|
|
|
|
int bgimgcb = DICTOOL->getIntValue_json(options, "colorB");
|
|
|
|
panel->setBackGroundImageColor(Color3B(bgimgcr, bgimgcg, bgimgcb));
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
WidgetReader::setColorPropsFromJsonDictionary(widget, options);
|
|
|
|
}
|
|
|
|
}
|