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

515 lines
18 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "PageViewReader.h"
2014-11-21 15:15:38 +08:00
2014-03-11 17:13:54 +08:00
#include "ui/UIPageView.h"
2014-06-18 14:35:43 +08:00
#include "ui/UILayout.h"
#include "cocostudio/CocoLoader.h"
#include "cocostudio/CSParseBinary.pb.h"
2014-11-21 15:15:38 +08:00
#include "cocostudio/CSParseBinary_generated.h"
#include "cocostudio/FlatBuffersSerialize.h"
#include "tinyxml2/tinyxml2.h"
#include "flatbuffers/flatbuffers.h"
2014-03-04 16:51:35 +08:00
2014-03-06 16:15:03 +08:00
USING_NS_CC;
using namespace ui;
2014-11-21 15:15:38 +08:00
using namespace flatbuffers;
2014-03-06 16:15:03 +08:00
2014-03-04 16:51:35 +08:00
namespace cocostudio
{
2014-06-23 10:12:54 +08:00
static PageViewReader* instancePageViewReader = nullptr;
2014-03-04 16:51:35 +08:00
2014-11-21 15:15:38 +08:00
IMPLEMENT_CLASS_NODE_READER_INFO(PageViewReader)
2014-03-04 16:51:35 +08:00
PageViewReader::PageViewReader()
{
}
PageViewReader::~PageViewReader()
{
}
PageViewReader* PageViewReader::getInstance()
{
if (!instancePageViewReader)
{
instancePageViewReader = new (std::nothrow) PageViewReader();
2014-03-04 16:51:35 +08:00
}
return instancePageViewReader;
}
2014-06-23 10:02:09 +08:00
void PageViewReader::setPropsFromBinary(cocos2d::ui::Widget *widget, CocoLoader *cocoLoader, stExpCocoNode *cocoNode)
2014-06-18 14:35:43 +08:00
{
2014-06-23 10:02:09 +08:00
LayoutReader::setPropsFromBinary(widget, cocoLoader, cocoNode);
}
2014-03-06 16:15:03 +08:00
void PageViewReader::setPropsFromJsonDictionary(Widget *widget, const rapidjson::Value &options)
2014-03-04 16:51:35 +08:00
{
LayoutReader::setPropsFromJsonDictionary(widget, options);
}
2014-10-09 18:28:09 +08:00
void PageViewReader::setPropsFromProtocolBuffers(ui::Widget *widget, const protocolbuffers::NodeTree &nodeTree)
{
WidgetReader::setPropsFromProtocolBuffers(widget, nodeTree);
PageView* pageView = static_cast<PageView*>(widget);
const protocolbuffers::PageViewOptions& options = nodeTree.pageviewoptions();
std::string protocolBuffersPath = GUIReader::getInstance()->getFilePath();
CCLOG("options.clipable() = %d", options.clipable());
pageView->setClippingEnabled(options.clipable());
bool backGroundScale9Enable = options.backgroundscale9enable();
pageView->setBackGroundImageScale9Enabled(backGroundScale9Enable);
int cr;
int cg;
int cb;
int scr;
int scg;
int scb;
int ecr;
int ecg;
int ecb;
cr = options.has_bgcolorr() ? options.bgcolorr() : 150;
cg = options.has_bgcolorg() ? options.bgcolorg() : 150;
cb = options.has_bgcolorb() ? options.bgcolorb() : 150;
scr = options.has_bgstartcolorr() ? options.bgstartcolorr() : 255;
scg = options.has_bgstartcolorg() ? options.bgstartcolorg() : 255;
scb = options.has_bgstartcolorb() ? options.bgstartcolorb() : 255;
ecr = options.has_bgendcolorr() ? options.bgendcolorr() : 255;
ecg = options.has_bgendcolorg() ? options.bgendcolorg() : 150;
ecb = options.has_bgendcolorb() ? options.bgendcolorb() : 100;
float bgcv1 = 0.0f;
float bgcv2 = -0.5f;
if(options.has_vectorx())
{
bgcv1 = options.vectorx();
}
if(options.has_vectory())
{
bgcv2 = options.vectory();
}
pageView->setBackGroundColorVector(Vec2(bgcv1, bgcv2));
int co = options.has_bgcoloropacity() ? options.bgcoloropacity() : 100;
int colorType = options.has_colortype() ? options.colortype() : 1;
pageView->setBackGroundColorType(Layout::BackGroundColorType(colorType));
pageView->setBackGroundColor(Color3B(scr, scg, scb),Color3B(ecr, ecg, ecb));
pageView->setBackGroundColor(Color3B(cr, cg, cb));
pageView->setBackGroundColorOpacity(co);
const protocolbuffers::ResourceData& imageFileNameDic = options.backgroundimagedata();
int imageFileNameType = imageFileNameDic.resourcetype();
std::string imageFileName = this->getResourcePath(imageFileNameDic.path(), (Widget::TextureResType)imageFileNameType);
pageView->setBackGroundImage(imageFileName, (Widget::TextureResType)imageFileNameType);
if (backGroundScale9Enable)
{
float cx = options.capinsetsx();
float cy = options.capinsetsy();
float cw = options.has_capinsetswidth() ? options.capinsetswidth() : 1;
float ch = options.has_capinsetsheight() ? options.capinsetsheight() : 1;
pageView->setBackGroundImageCapInsets(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();
pageView->setContentSize(Size(swf, shf));
}
}
const protocolbuffers::WidgetOptions& widgetOptions = nodeTree.widgetoptions();
int red = widgetOptions.has_colorr() ? widgetOptions.colorr() : 255;
int green = widgetOptions.has_colorg() ? widgetOptions.colorg() : 255;
int blue = widgetOptions.has_colorb() ? widgetOptions.colorb() : 255;
pageView->setColor(Color3B(red, green, blue));
int opacity = widgetOptions.has_alpha() ? widgetOptions.alpha() : 255;
pageView->setOpacity(opacity);
// other commonly protperties
setAnchorPointForWidget(widget, nodeTree);
bool flipX = widgetOptions.flipx();
bool flipY = widgetOptions.flipy();
if (flipX)
{
widget->setFlippedX(flipX);
}
if (flipY)
{
widget->setFlippedY(flipY);
}
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
Offset<Table> PageViewReader::createOptionsWithFlatBuffers(const tinyxml2::XMLElement *objectData,
flatbuffers::FlatBufferBuilder *builder)
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
auto temp = WidgetReader::getInstance()->createOptionsWithFlatBuffers(objectData, builder);
auto widgetOptions = *(Offset<WidgetOptions>*)(&temp);
2014-10-09 18:28:09 +08:00
2014-11-21 15:15:38 +08:00
std::string path = "";
std::string plistFile = "";
int resourceType = 0;
2014-10-09 18:28:09 +08:00
2014-11-21 15:15:38 +08:00
bool clipEnabled = false;
Color3B bgColor;
Color3B bgStartColor;
Color3B bgEndColor;
int colorType = 0;
GLubyte bgColorOpacity = 255;
Vec2 colorVector(0.0f, -0.5f);
Rect capInsets;
Size scale9Size;
bool backGroundScale9Enabled = false;
2014-10-09 18:28:09 +08:00
// attributes
const tinyxml2::XMLAttribute* attribute = objectData->FirstAttribute();
while (attribute)
{
std::string name = attribute->Name();
std::string value = attribute->Value();
if (name == "ClipAble")
{
2014-11-21 15:15:38 +08:00
clipEnabled = (value == "True") ? true : false;
2014-10-09 18:28:09 +08:00
}
else if (name == "ComboBoxIndex")
{
2014-11-21 15:15:38 +08:00
colorType = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "BackColorAlpha")
{
2014-11-21 15:15:38 +08:00
bgColorOpacity = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "Scale9Enable")
{
2014-11-21 15:15:38 +08:00
if (value == "True")
{
backGroundScale9Enabled = true;
}
2014-10-09 18:28:09 +08:00
}
else if (name == "Scale9OriginX")
{
2014-11-21 15:15:38 +08:00
capInsets.origin.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "Scale9OriginY")
{
2014-11-21 15:15:38 +08:00
capInsets.origin.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "Scale9Width")
{
2014-11-21 15:15:38 +08:00
capInsets.size.width = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "Scale9Height")
{
2014-11-21 15:15:38 +08:00
capInsets.size.height = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
// child elements
const tinyxml2::XMLElement* child = objectData->FirstChildElement();
while (child)
{
std::string name = child->Name();
2014-11-21 15:15:38 +08:00
if (name == "Size" && backGroundScale9Enabled)
2014-10-09 18:28:09 +08:00
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-10-15 17:20:54 +08:00
name = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
if (name == "X")
{
2014-11-21 15:15:38 +08:00
scale9Size.width = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "Y")
{
2014-11-21 15:15:38 +08:00
scale9Size.height = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
else if (name == "SingleColor")
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-11-21 15:15:38 +08:00
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-10-15 17:20:54 +08:00
name = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
if (name == "R")
{
2014-11-21 15:15:38 +08:00
bgColor.r = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "G")
{
2014-11-21 15:15:38 +08:00
bgColor.g = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "B")
{
2014-11-21 15:15:38 +08:00
bgColor.b = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
else if (name == "EndColor")
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-11-21 15:15:38 +08:00
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-10-15 17:20:54 +08:00
name = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
if (name == "R")
{
2014-11-21 15:15:38 +08:00
bgEndColor.r = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "G")
{
2014-11-21 15:15:38 +08:00
bgEndColor.g = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "B")
{
2014-11-21 15:15:38 +08:00
bgEndColor.b = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
else if (name == "FirstColor")
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-11-21 15:15:38 +08:00
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-10-15 17:20:54 +08:00
name = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
if (name == "R")
{
2014-11-21 15:15:38 +08:00
bgStartColor.r = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "G")
{
2014-11-21 15:15:38 +08:00
bgStartColor.g = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "B")
{
2014-11-21 15:15:38 +08:00
bgStartColor.b = atoi(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
else if (name == "ColorVector")
{
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-10-15 17:20:54 +08:00
name = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
if (name == "ScaleX")
{
2014-11-21 15:15:38 +08:00
colorVector.x = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
else if (name == "ScaleY")
{
2014-11-21 15:15:38 +08:00
colorVector.y = atof(value.c_str());
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
}
else if (name == "FileData")
{
2014-11-21 15:15:38 +08:00
std::string texture = "";
std::string texturePng = "";
2014-10-15 17:20:54 +08:00
attribute = child->FirstAttribute();
2014-10-09 18:28:09 +08:00
while (attribute)
{
2014-10-15 17:20:54 +08:00
name = attribute->Name();
2014-10-09 18:28:09 +08:00
std::string value = attribute->Value();
if (name == "Path")
{
path = value;
}
else if (name == "Type")
{
2014-11-21 15:15:38 +08:00
resourceType = getResourceType(value);
2014-10-09 18:28:09 +08:00
}
else if (name == "Plist")
{
plistFile = value;
2014-11-21 15:15:38 +08:00
texture = value;
2014-10-09 18:28:09 +08:00
}
attribute = attribute->Next();
}
2014-11-21 15:15:38 +08:00
if (resourceType == 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));
}
2014-10-09 18:28:09 +08:00
}
child = child->NextSiblingElement();
}
2014-11-21 15:15:38 +08:00
Color f_bgColor(255, bgColor.r, bgColor.g, bgColor.b);
Color f_bgStartColor(255, bgStartColor.r, bgStartColor.g, bgStartColor.b);
Color f_bgEndColor(255, bgEndColor.r, bgEndColor.g, bgEndColor.b);
ColorVector f_colorVector(colorVector.x, colorVector.y);
CapInsets f_capInsets(capInsets.origin.x, capInsets.origin.y, capInsets.size.width, capInsets.size.height);
FlatSize f_scale9Size(scale9Size.width, scale9Size.height);
auto options = CreatePageViewOptions(*builder,
widgetOptions,
CreateResourceData(*builder,
builder->CreateString(path),
builder->CreateString(plistFile),
resourceType),
clipEnabled,
&f_bgColor,
&f_bgStartColor,
&f_bgEndColor,
colorType,
bgColorOpacity,
&f_colorVector,
&f_capInsets,
&f_scale9Size,
backGroundScale9Enabled);
return *(Offset<Table>*)(&options);
}
void PageViewReader::setPropsWithFlatBuffers(cocos2d::Node *node, const flatbuffers::Table *pageViewOptions)
{
PageView* pageView = static_cast<PageView*>(node);
auto options = (PageViewOptions*)pageViewOptions;
bool clipEnabled = options->clipEnabled();
pageView->setClippingEnabled(clipEnabled);
bool backGroundScale9Enabled = options->backGroundScale9Enabled();
pageView->setBackGroundImageScale9Enabled(backGroundScale9Enabled);
auto f_bgColor = options->bgColor();
Color3B bgColor(f_bgColor->r(), f_bgColor->g(), f_bgColor->b());
auto f_bgStartColor = options->bgStartColor();
Color3B bgStartColor(f_bgStartColor->r(), f_bgStartColor->g(), f_bgStartColor->b());
auto f_bgEndColor = options->bgEndColor();
Color3B bgEndColor(f_bgEndColor->r(), f_bgEndColor->g(), f_bgEndColor->b());
auto f_colorVecor = options->colorVector();
Vec2 colorVector(f_colorVecor->vectorX(), f_colorVecor->vectorY());
pageView->setBackGroundColorVector(colorVector);
int bgColorOpacity = options->bgColorOpacity();
2014-10-09 18:28:09 +08:00
2014-11-21 15:15:38 +08:00
int colorType = options->colorType();
pageView->setBackGroundColorType(Layout::BackGroundColorType(colorType));
pageView->setBackGroundColor(bgStartColor, bgEndColor);
pageView->setBackGroundColor(bgColor);
pageView->setBackGroundColorOpacity(bgColorOpacity);
auto imageFileNameDic = options->backGroundImageData();
int imageFileNameType = imageFileNameDic->resourceType();
std::string imageFileName = this->getResourcePath(imageFileNameDic->path()->c_str(), (Widget::TextureResType)imageFileNameType);
pageView->setBackGroundImage(imageFileName, (Widget::TextureResType)imageFileNameType);
if (backGroundScale9Enabled)
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
auto f_capInsets = options->capInsets();
Rect capInsets(f_capInsets->x(), f_capInsets->y(), f_capInsets->width(), f_capInsets->height());
pageView->setBackGroundImageCapInsets(capInsets);
auto f_scale9Size = options->scale9Size();
Size scale9Size(f_scale9Size->width(), f_scale9Size->height());
pageView->setContentSize(scale9Size);
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
auto widgetOptions = options->widgetOptions();
auto f_color = widgetOptions->color();
Color3B color(f_color->r(), f_color->g(), f_color->b());
pageView->setColor(color);
2014-10-09 18:28:09 +08:00
2014-11-21 15:15:38 +08:00
int opacity = widgetOptions->alpha();
pageView->setOpacity(opacity);
auto widgetReader = WidgetReader::getInstance();
widgetReader->setPropsWithFlatBuffers(node, (Table*)options->widgetOptions());
}
PageView* PageViewReader::createNodeWithFlatBuffers(const flatbuffers::Table *pageViewOptions)
{
PageView* pageView = PageView::create();
setPropsWithFlatBuffers(pageView, (Table*)pageViewOptions);
return pageView;
}
int PageViewReader::getResourceType(std::string key)
{
if(key == "Normal" || key == "Default")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
return 0;
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
if(fbs->_isSimulator)
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
if(key == "MarkedSubImage")
2014-10-09 18:28:09 +08:00
{
2014-11-21 15:15:38 +08:00
return 0;
2014-10-09 18:28:09 +08:00
}
2014-11-21 15:15:38 +08:00
}
return 1;
2014-10-09 18:28:09 +08:00
}
2014-03-04 16:51:35 +08:00
}