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

305 lines
13 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "LayoutReader.h"
2014-03-11 17:13:54 +08:00
#include "ui/UILayout.h"
#include "cocostudio/CocoLoader.h"
2014-07-03 14:38:45 +08:00
#include "ui/UIScrollView.h"
#include "ui/UIPageView.h"
#include "ui/UIListView.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 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_ClipAble = "clipAble";
static const char* P_BackGroundScale9Enable = "backGroundScale9Enable";
static const char* P_BgColorR = "bgColorR";
static const char* P_BgColorG = "bgColorG";
static const char* P_BgColorB = "bgColorB";
static const char* P_BgStartColorR = "bgStartColorR";
static const char* P_BgStartColorG = "bgStartColorG";
static const char* P_BgStartColorB = "bgStartColorB";
static const char* P_BgEndColorR = "bgEndColorR";
static const char* P_BgEndColorG = "bgEndColorG";
static const char* P_BgEndColorB = "bgEndColorB";
static const char* P_VectorX = "vectorX";
static const char* P_VectorY = "vectorY";
static const char* P_BgColorOpacity = "bgColorOpacity";
static const char* P_ColorType = "colorType";
static const char* P_BackGroundImageData = "backGroundImageData";
static const char* P_LayoutType = "layoutType";
static LayoutReader* instanceLayoutReader = nullptr;
2014-03-04 16:51:35 +08:00
IMPLEMENT_CLASS_WIDGET_READER_INFO(LayoutReader)
LayoutReader::LayoutReader()
{
}
LayoutReader::~LayoutReader()
{
}
LayoutReader* LayoutReader::getInstance()
{
if (!instanceLayoutReader)
{
instanceLayoutReader = new (std::nothrow) LayoutReader();
2014-03-04 16:51:35 +08:00
}
return instanceLayoutReader;
}
2014-06-23 10:02:09 +08:00
void LayoutReader::setPropsFromBinary(cocos2d::ui::Widget *widget, CocoLoader *cocoLoader, stExpCocoNode *cocoNode)
{
2014-06-23 10:02:09 +08:00
WidgetReader::setPropsFromBinary(widget, cocoLoader, cocoNode);
Layout* panel = static_cast<Layout*>(widget);
2014-07-01 16:31:17 +08:00
stExpCocoNode *stChildArray = cocoNode->GetChildArray(cocoLoader);
2014-06-11 09:35:24 +08:00
this->beginSetBasicProperties(widget);
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-07-04 11:22:36 +08:00
Layout::Type layoutType = Layout::Type::ABSOLUTE;
2014-06-18 14:44:00 +08:00
int bgColorOpacity = panel->getBackGroundColorOpacity();
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
//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_AdaptScreen){
_isAdaptScreen = valueToBool(value);
2014-06-05 11:43:43 +08:00
}
else if( key == P_ClipAble){
panel->setClippingEnabled(valueToBool(value));
}else if(key == P_BackGroundScale9Enable){
panel->setBackGroundImageScale9Enabled(valueToBool(value));
}else if(key == P_BgColorR){
cr = valueToInt(value);
}else if(key == P_BgColorG){
cg = valueToInt(value);
}else if(key == P_BgColorB)
{
cb = valueToInt(value);
}else if(key == P_BgStartColorR){
scr = valueToInt(value);
}else if(key == P_BgStartColorG){
scg = valueToInt(value);
}else if(key == P_BgStartColorB)
{
scb = valueToInt(value);
}
else if(key == P_BgEndColorR){
ecr = valueToInt(value);
}else if(key == P_BgEndColorG){
ecg = valueToInt(value);
}else if(key == P_BgEndColorB)
{
ecb = valueToInt(value);
}else if (key == P_VectorX){
bgcv1 = valueToFloat(value);
}else if(key == P_VectorY){
bgcv2 = valueToFloat(value);
}else if(key == P_BgColorOpacity){
2014-06-18 14:44:00 +08:00
bgColorOpacity = valueToInt(value);
}else if( key == P_ColorType){
panel->setBackGroundColorType(Layout::BackGroundColorType(valueToInt(value)));
}else if (key == P_BackGroundImageData){
2014-07-01 16:31:17 +08:00
stExpCocoNode *backGroundChildren = stChildArray[i].GetChildArray(cocoLoader);
if (backGroundChildren) {
2014-07-01 16:31:17 +08:00
std::string resType = backGroundChildren[2].GetValue(cocoLoader);;
Widget::TextureResType imageFileNameType = (Widget::TextureResType)valueToInt(resType);
2014-06-23 10:02:09 +08:00
std::string backgroundValue = this->getResourcePath(cocoLoader, &stChildArray[i], imageFileNameType);
2014-06-11 09:35:24 +08:00
panel->setBackGroundImage(backgroundValue, imageFileNameType);
}
}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_LayoutType){
layoutType = (Layout::Type)valueToInt(value);
}
}
2014-06-11 09:35:24 +08:00
2014-06-05 11:43:43 +08:00
panel->setBackGroundColor(Color3B(scr, scg, scb),Color3B(ecr, ecg, ecb));
panel->setBackGroundColor(Color3B(cr, cg, cb));
panel->setBackGroundColorVector(Vec2(bgcv1, bgcv2));
2014-06-18 14:44:00 +08:00
panel->setBackGroundColorOpacity(bgColorOpacity);
panel->setBackGroundImageColor(Color3B(_color.r, _color.g, _color.b));
panel->setBackGroundImageOpacity(_opacity);
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-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, 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
}
panel->setContentSize(Size(w, h));
2014-03-04 16:51:35 +08:00
/**/
panel->setClippingEnabled(DICTOOL->getBooleanValue_json(options, P_ClipAble));
2014-04-28 10:06:11 +08:00
bool backGroundScale9Enable = DICTOOL->getBooleanValue_json(options, P_BackGroundScale9Enable);
2014-03-04 16:51:35 +08:00
panel->setBackGroundImageScale9Enabled(backGroundScale9Enable);
2014-07-03 14:38:45 +08:00
int cr;
int cg;
int cb;
int scr;
int scg;
int scb;
int ecr;
int ecg;
int ecb;
if (dynamic_cast<ui::PageView*>(widget)) {
cr = DICTOOL->getIntValue_json(options, P_BgColorR,150);
cg = DICTOOL->getIntValue_json(options, P_BgColorG,150);
cb = DICTOOL->getIntValue_json(options, P_BgColorB,100);
2014-07-03 14:38:45 +08:00
scr = DICTOOL->getIntValue_json(options, P_BgStartColorR,255);
scg = DICTOOL->getIntValue_json(options, P_BgStartColorG,255);
scb = DICTOOL->getIntValue_json(options, P_BgStartColorB,255);
2014-07-03 14:38:45 +08:00
ecr = DICTOOL->getIntValue_json(options, P_BgEndColorR,255);
ecg = DICTOOL->getIntValue_json(options, P_BgEndColorG,150);
ecb = DICTOOL->getIntValue_json(options, P_BgEndColorB,100);
2014-07-03 14:38:45 +08:00
}else if(dynamic_cast<ui::ListView*>(widget)){
cr = DICTOOL->getIntValue_json(options, P_BgColorR,150);
cg = DICTOOL->getIntValue_json(options, P_BgColorG,150);
cb = DICTOOL->getIntValue_json(options, P_BgColorB,255);
2014-07-03 14:38:45 +08:00
scr = DICTOOL->getIntValue_json(options, P_BgStartColorR,255);
scg = DICTOOL->getIntValue_json(options, P_BgStartColorG,255);
scb = DICTOOL->getIntValue_json(options, P_BgStartColorB,255);
2014-07-03 14:38:45 +08:00
ecr = DICTOOL->getIntValue_json(options, P_BgEndColorR,150);
ecg = DICTOOL->getIntValue_json(options, P_BgEndColorG,150);
ecb = DICTOOL->getIntValue_json(options, P_BgEndColorB,255);
2014-07-03 14:38:45 +08:00
}else if(dynamic_cast<ui::ScrollView*>(widget)){
cr = DICTOOL->getIntValue_json(options, P_BgColorR,255);
cg = DICTOOL->getIntValue_json(options, P_BgColorG,150);
cb = DICTOOL->getIntValue_json(options, P_BgColorB,100);
2014-07-03 14:38:45 +08:00
scr = DICTOOL->getIntValue_json(options, P_BgStartColorR,255);
scg = DICTOOL->getIntValue_json(options, P_BgStartColorG,255);
scb = DICTOOL->getIntValue_json(options, P_BgStartColorB,255);
2014-07-03 14:38:45 +08:00
ecr = DICTOOL->getIntValue_json(options, P_BgEndColorR,255);
ecg = DICTOOL->getIntValue_json(options, P_BgEndColorG,150);
ecb = DICTOOL->getIntValue_json(options, P_BgEndColorB,100);
2014-07-03 14:38:45 +08:00
}else{
cr = DICTOOL->getIntValue_json(options, P_BgColorR,150);
cg = DICTOOL->getIntValue_json(options, P_BgColorG,200);
cb = DICTOOL->getIntValue_json(options, P_BgColorB,255);
2014-07-03 14:38:45 +08:00
scr = DICTOOL->getIntValue_json(options, P_BgStartColorR,255);
scg = DICTOOL->getIntValue_json(options, P_BgStartColorG,255);
scb = DICTOOL->getIntValue_json(options, P_BgStartColorB,255);
2014-07-03 14:38:45 +08:00
ecr = DICTOOL->getIntValue_json(options, P_BgEndColorR,150);
ecg = DICTOOL->getIntValue_json(options, P_BgEndColorG,200);
ecb = DICTOOL->getIntValue_json(options, P_BgEndColorB,255);
2014-07-03 14:38:45 +08:00
}
2014-03-04 16:51:35 +08:00
float bgcv1 = DICTOOL->getFloatValue_json(options, P_VectorX);
2014-07-01 10:57:12 +08:00
float bgcv2 = DICTOOL->getFloatValue_json(options, P_VectorY,-0.5);
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
panel->setBackGroundColorVector(Vec2(bgcv1, bgcv2));
2014-03-04 16:51:35 +08:00
2014-07-01 10:57:12 +08:00
int co = DICTOOL->getIntValue_json(options, P_BgColorOpacity,100);
2014-03-04 16:51:35 +08:00
2014-07-01 10:57:12 +08:00
int colorType = DICTOOL->getIntValue_json(options, P_ColorType,1);
panel->setBackGroundColorType(Layout::BackGroundColorType(colorType));
2014-07-03 14:38:45 +08:00
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, P_BackGroundImageData);
int imageFileNameType = DICTOOL->getIntValue_json(imageFileNameDic, P_ResourceType);
std::string imageFileName = this->getResourcePath(imageFileNameDic, P_Path, (Widget::TextureResType)imageFileNameType);
panel->setBackGroundImage(imageFileName, (Widget::TextureResType)imageFileNameType);
2014-04-04 17:21:23 +08:00
2014-06-15 16:12:24 +08:00
2014-03-04 16:51:35 +08:00
if (backGroundScale9Enable)
{
float cx = DICTOOL->getFloatValue_json(options, P_CapInsetsX);
float cy = DICTOOL->getFloatValue_json(options, P_CapInsetsY);
2014-07-01 10:57:12 +08:00
float cw = DICTOOL->getFloatValue_json(options, P_CapInsetsWidth,1);
float ch = DICTOOL->getFloatValue_json(options, P_CapInsetsHeight,1);
2014-03-04 16:51:35 +08:00
panel->setBackGroundImageCapInsets(Rect(cx, cy, cw, ch));
}
2014-06-15 16:12:24 +08:00
panel->setLayoutType((Layout::Type)DICTOOL->getIntValue_json(options, P_LayoutType));
2014-03-04 16:51:35 +08:00
int bgimgcr = DICTOOL->getIntValue_json(options, P_ColorR,255);
int bgimgcg = DICTOOL->getIntValue_json(options, P_ColorG,255);
int bgimgcb = DICTOOL->getIntValue_json(options, P_ColorB,255);
2014-03-28 18:54:06 +08:00
panel->setBackGroundImageColor(Color3B(bgimgcr, bgimgcg, bgimgcb));
int bgimgopacity = DICTOOL->getIntValue_json(options, P_Opacity, 255);
panel->setBackGroundImageOpacity(bgimgopacity);
2014-03-04 16:51:35 +08:00
WidgetReader::setColorPropsFromJsonDictionary(widget, options);
}
}