axmol/extensions/cocostudio/WidgetReader/ListViewReader/ListViewReader.cpp

586 lines
18 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
#include "WidgetReader/ListViewReader/ListViewReader.h"
2019-11-23 20:27:39 +08:00
#include "ui/UIListView.h"
#include "platform/CCFileUtils.h"
#include "2d/CCSpriteFrameCache.h"
#include "CocoLoader.h"
#include "CSParseBinary_generated.h"
#include "FlatBuffersSerialize.h"
2019-11-23 20:27:39 +08:00
#include "flatbuffers/flatbuffers.h"
USING_NS_AX;
2019-11-23 20:27:39 +08:00
using namespace ui;
using namespace flatbuffers;
namespace cocostudio
{
2021-12-25 10:04:45 +08:00
static const char* P_Direction = "direction";
static const char* P_ItemMargin = "itemMargin";
static ListViewReader* instanceListViewReader = nullptr;
IMPLEMENT_CLASS_NODE_READER_INFO(ListViewReader)
ListViewReader::ListViewReader() {}
ListViewReader::~ListViewReader() {}
ListViewReader* ListViewReader::getInstance()
{
if (!instanceListViewReader)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
instanceListViewReader = new ListViewReader();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
return instanceListViewReader;
}
void ListViewReader::destroyInstance()
{
2022-07-16 10:43:05 +08:00
AX_SAFE_DELETE(instanceListViewReader);
2021-12-25 10:04:45 +08:00
}
2022-08-08 18:02:17 +08:00
void ListViewReader::setPropsFromBinary(ax::ui::Widget* widget, CocoLoader* cocoLoader, stExpCocoNode* cocoNode)
2021-12-25 10:04:45 +08:00
{
ScrollViewReader::setPropsFromBinary(widget, cocoLoader, cocoNode);
ListView* listView = static_cast<ListView*>(widget);
stExpCocoNode* stChildArray = cocoNode->GetChildArray(cocoLoader);
for (int i = 0; i < cocoNode->GetChildNum(); ++i)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
std::string key = stChildArray[i].GetName(cocoLoader);
std::string value = stChildArray[i].GetValue(cocoLoader);
if (key == P_Direction)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
listView->setDirection((ScrollView::Direction)valueToInt(value));
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (key == P_Gravity)
{
listView->setGravity((ListView::Gravity)valueToInt(value));
}
else if (key == P_ItemMargin)
{
listView->setItemsMargin(valueToFloat(value));
}
} // end of for loop
}
void ListViewReader::setPropsFromJsonDictionary(Widget* widget, const rapidjson::Value& options)
{
ScrollViewReader::setPropsFromJsonDictionary(widget, options);
ListView* listView = static_cast<ListView*>(widget);
int direction = DICTOOL->getFloatValue_json(options, P_Direction, 2);
listView->setDirection((ScrollView::Direction)direction);
ListView::Gravity gravity = (ListView::Gravity)DICTOOL->getIntValue_json(options, P_Gravity, 3);
listView->setGravity(gravity);
float itemMargin = DICTOOL->getFloatValue_json(options, P_ItemMargin);
listView->setItemsMargin(itemMargin);
}
Offset<Table> ListViewReader::createOptionsWithFlatBuffers(pugi::xml_node objectData,
flatbuffers::FlatBufferBuilder* builder)
{
auto temp = WidgetReader::getInstance()->createOptionsWithFlatBuffers(objectData, builder);
auto widgetOptions = *(Offset<WidgetOptions>*)(&temp);
std::string path;
std::string plistFile;
int resourceType = 0;
bool clipEnabled = false;
Color3B bgColor;
Color3B bgStartColor;
Color3B bgEndColor;
int colorType = 0;
uint8_t bgColorOpacity = 255;
Vec2 colorVector(0.0f, -0.5f);
Rect capInsets;
Size scale9Size;
bool backGroundScale9Enabled = false;
Size innerSize(200, 300);
int direction = 0;
bool bounceEnabled = false;
int itemMargin = 0;
std::string directionType;
std::string horizontalType;
std::string verticalType;
// attributes
auto attribute = objectData.first_attribute();
while (attribute)
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
std::string_view name = attribute.name();
std::string_view value = attribute.value();
2021-12-25 10:04:45 +08:00
if (name == "ClipAble")
{
clipEnabled = (value == "True") ? true : false;
}
else if (name == "ComboBoxIndex")
{
2021-12-31 15:49:45 +08:00
colorType = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "BackColorAlpha")
{
2021-12-31 15:49:45 +08:00
bgColorOpacity = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "Scale9Enable")
{
if (value == "True")
{
backGroundScale9Enabled = true;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (name == "Scale9OriginX")
{
2021-12-31 15:49:45 +08:00
capInsets.origin.x = atof(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "Scale9OriginY")
{
2021-12-31 15:49:45 +08:00
capInsets.origin.y = atof(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "Scale9Width")
{
2021-12-31 15:49:45 +08:00
capInsets.size.width = atof(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "Scale9Height")
{
2021-12-31 15:49:45 +08:00
capInsets.size.height = atof(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "DirectionType")
{
directionType = value;
}
else if (name == "HorizontalType")
{
horizontalType = value;
}
else if (name == "VerticalType")
{
verticalType = value;
}
else if (name == "IsBounceEnabled")
{
bounceEnabled = (value == "True") ? true : false;
}
else if (name == "ItemMargin")
{
2021-12-31 15:49:45 +08:00
itemMargin = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
attribute = attribute.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
// child elements
auto child = objectData.first_child();
while (child)
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
std::string_view name = child.name();
2021-12-25 10:04:45 +08:00
if (name == "InnerNodeSize")
{
auto attributeInnerNodeSize = child.first_attribute();
while (attributeInnerNodeSize)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeInnerNodeSize.name();
2021-12-31 15:49:45 +08:00
auto value = attributeInnerNodeSize.value();
2021-12-25 10:04:45 +08:00
if (name == "Width")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
innerSize.width = atof(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "Height")
{
2021-12-31 15:49:45 +08:00
innerSize.height = atof(value.data());
2021-12-25 10:04:45 +08:00
}
attributeInnerNodeSize = attributeInnerNodeSize.next_attribute();
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
else if (name == "Size" && backGroundScale9Enabled)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto attributeSize = child.first_attribute();
while (attributeSize)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeSize.name();
2021-12-31 15:49:45 +08:00
auto value = attributeSize.value();
2021-12-25 10:04:45 +08:00
if (name == "X")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
scale9Size.width = atof(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "Y")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
scale9Size.height = atof(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
attributeSize = attributeSize.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (name == "SingleColor")
{
auto attributeSingleColor = child.first_attribute();
while (attributeSingleColor)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeSingleColor.name();
2021-12-31 15:49:45 +08:00
auto value = attributeSingleColor.value();
2021-12-25 10:04:45 +08:00
if (name == "R")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
bgColor.r = atoi(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "G")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
bgColor.g = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "B")
{
2021-12-31 15:49:45 +08:00
bgColor.b = atoi(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
attributeSingleColor = attributeSingleColor.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (name == "EndColor")
{
auto attributeEndColor = child.first_attribute();
while (attributeEndColor)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeEndColor.name();
2021-12-31 15:49:45 +08:00
auto value = attributeEndColor.value();
2021-12-25 10:04:45 +08:00
if (name == "R")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
bgEndColor.r = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "G")
{
2021-12-31 15:49:45 +08:00
bgEndColor.g = atoi(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "B")
{
2021-12-31 15:49:45 +08:00
bgEndColor.b = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
attributeEndColor = attributeEndColor.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (name == "FirstColor")
{
auto attributeFirstColor = child.first_attribute();
while (attributeFirstColor)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeFirstColor.name();
2021-12-31 15:49:45 +08:00
auto value = attributeFirstColor.value();
2021-12-25 10:04:45 +08:00
if (name == "R")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
bgStartColor.r = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
else if (name == "G")
{
2021-12-31 15:49:45 +08:00
bgStartColor.g = atoi(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "B")
{
2021-12-31 15:49:45 +08:00
bgStartColor.b = atoi(value.data());
2021-12-25 10:04:45 +08:00
}
attributeFirstColor = attributeFirstColor.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (name == "ColorVector")
{
auto attributeColorVector = child.first_attribute();
while (attributeColorVector)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeColorVector.name();
2021-12-31 15:49:45 +08:00
auto value = attributeColorVector.value();
2021-12-25 10:04:45 +08:00
if (name == "ScaleX")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
colorVector.x = atof(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "ScaleY")
2019-11-23 20:27:39 +08:00
{
2021-12-31 15:49:45 +08:00
colorVector.y = atof(value.data());
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
attributeColorVector = attributeColorVector.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else if (name == "FileData")
{
std::string texture;
std::string texturePng;
auto attributeFileData = child.first_attribute();
while (attributeFileData)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
name = attributeFileData.name();
2021-12-31 15:49:45 +08:00
auto value = attributeFileData.value();
2021-12-25 10:04:45 +08:00
if (name == "Path")
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
path = value;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else if (name == "Type")
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
resourceType = getResourceType(value);
}
else if (name == "Plist")
{
plistFile = value;
texture = value;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
attributeFileData = attributeFileData.next_attribute();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
if (resourceType == 1)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
fbs->_textures.emplace_back(builder->CreateString(texture));
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
child = child.next_sibling();
}
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);
FlatSize f_innerSize(innerSize.width, innerSize.height);
auto options = CreateListViewOptions(
*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, &f_innerSize, direction, bounceEnabled, itemMargin,
builder->CreateString(directionType), builder->CreateString(horizontalType),
builder->CreateString(verticalType));
return *(Offset<Table>*)(&options);
}
2022-08-08 18:02:17 +08:00
void ListViewReader::setPropsWithFlatBuffers(ax::Node* node, const flatbuffers::Table* listViewOptions)
2021-12-25 10:04:45 +08:00
{
ListView* listView = static_cast<ListView*>(node);
auto options = (ListViewOptions*)listViewOptions;
bool clipEnabled = options->clipEnabled() != 0;
listView->setClippingEnabled(clipEnabled);
bool backGroundScale9Enabled = options->backGroundScale9Enabled() != 0;
listView->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());
listView->setBackGroundColorVector(colorVector);
int bgColorOpacity = options->bgColorOpacity();
int colorType = options->colorType();
listView->setBackGroundColorType(Layout::BackGroundColorType(colorType));
listView->setBackGroundColor(bgStartColor, bgEndColor);
listView->setBackGroundColor(bgColor);
listView->setBackGroundColorOpacity(bgColorOpacity);
bool fileExist = false;
std::string errorFilePath;
auto imageFileNameDic = (options->backGroundImageData());
int imageFileNameType = imageFileNameDic->resourceType();
std::string imageFileName = imageFileNameDic->path()->c_str();
if (imageFileName != "")
{
switch (imageFileNameType)
{
case 0:
{
if (FileUtils::getInstance()->isFileExist(imageFileName))
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
fileExist = true;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
errorFilePath = imageFileName;
fileExist = false;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
break;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
case 1:
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
std::string plist = imageFileNameDic->plistFile()->c_str();
SpriteFrame* spriteFrame = SpriteFrameCache::getInstance()->findFrame(imageFileName);
2021-12-25 10:04:45 +08:00
if (spriteFrame)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
fileExist = true;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
else
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (FileUtils::getInstance()->isFileExist(plist))
{
ValueMap value = FileUtils::getInstance()->getValueMapFromFile(plist);
ValueMap metadata = value["metadata"].asValueMap();
std::string textureFileName = metadata["textureFileName"].asString();
if (!FileUtils::getInstance()->isFileExist(textureFileName))
{
errorFilePath = textureFileName;
}
}
else
{
errorFilePath = plist;
}
fileExist = false;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
break;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
default:
break;
}
if (fileExist)
{
listView->setBackGroundImage(imageFileName, (Widget::TextureResType)imageFileNameType);
}
}
auto widgetOptions = options->widgetOptions();
auto f_color = widgetOptions->color();
Color3B color(f_color->r(), f_color->g(), f_color->b());
listView->setColor(color);
int opacity = widgetOptions->alpha();
listView->setOpacity(opacity);
// auto f_innerSize = options->innerSize();
// Size innerSize(f_innerSize->width(), f_innerSize->height());
// listView->setInnerContainerSize(innerSize);
// int direction = options->direction();
// listView->setDirection((ScrollView::Direction)direction);
bool bounceEnabled = options->bounceEnabled() != 0;
listView->setBounceEnabled(bounceEnabled);
// int gravityValue = options->gravity();
// ListView::Gravity gravity = (ListView::Gravity)gravityValue;
// listView->setGravity(gravity);
std::string directionType = options->directionType()->c_str();
if (directionType == "")
{
listView->setDirection(ListView::Direction::HORIZONTAL);
std::string verticalType = options->verticalType()->c_str();
if (verticalType == "")
{
listView->setGravity(ListView::Gravity::TOP);
}
else if (verticalType == "Align_Bottom")
{
listView->setGravity(ListView::Gravity::BOTTOM);
}
else if (verticalType == "Align_VerticalCenter")
{
listView->setGravity(ListView::Gravity::CENTER_VERTICAL);
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
else if (directionType == "Vertical")
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
listView->setDirection(ListView::Direction::VERTICAL);
std::string horizontalType = options->horizontalType()->c_str();
if (horizontalType == "")
{
listView->setGravity(ListView::Gravity::LEFT);
}
else if (horizontalType == "Align_Right")
{
listView->setGravity(ListView::Gravity::RIGHT);
}
else if (horizontalType == "Align_HorizontalCenter")
{
listView->setGravity(ListView::Gravity::CENTER_HORIZONTAL);
}
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
float itemMargin = options->itemMargin();
listView->setItemsMargin(itemMargin);
auto widgetReader = WidgetReader::getInstance();
widgetReader->setPropsWithFlatBuffers(node, (Table*)options->widgetOptions());
if (backGroundScale9Enabled)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto f_capInsets = options->capInsets();
Rect capInsets(f_capInsets->x(), f_capInsets->y(), f_capInsets->width(), f_capInsets->height());
listView->setBackGroundImageCapInsets(capInsets);
auto f_scale9Size = options->scale9Size();
Size scale9Size(f_scale9Size->width(), f_scale9Size->height());
listView->setContentSize(scale9Size);
}
else
{
if (!listView->isIgnoreContentAdaptWithSize())
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
Size contentSize(widgetOptions->size()->width(), widgetOptions->size()->height());
listView->setContentSize(contentSize);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
}
Node* ListViewReader::createNodeWithFlatBuffers(const flatbuffers::Table* listViewOptions)
{
ListView* listView = ListView::create();
setPropsWithFlatBuffers(listView, (Table*)listViewOptions);
return listView;
}
2021-12-31 15:49:45 +08:00
int ListViewReader::getResourceType(std::string_view key)
2021-12-25 10:04:45 +08:00
{
if (key == "Normal" || key == "Default")
{
return 0;
}
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
if (fbs->_isSimulator)
{
if (key == "MarkedSubImage")
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
return 0;
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
return 1;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
} // namespace cocostudio