背景和头像缺失

This commit is contained in:
2026-03-01 13:51:43 +08:00
parent eaaf7f8c9b
commit 7d2f6399af
5947 changed files with 1441367 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
#include "UITextAtlasTest.h"
USING_NS_CC;
using namespace cocos2d::ui;
UITextAtlasTests::UITextAtlasTests()
{
ADD_TEST_CASE(UITextAtlasTest);
}
// UITextAtlasTest
bool UITextAtlasTest::init()
{
if (UIScene::init())
{
Size widgetSize = _widget->getContentSize();
// Add the alert
Text* alert = Text::create("TextAtlas","fonts/Marker Felt.ttf",30);
alert->setColor(Color3B(159, 168, 176));
alert->setPosition(Vec2(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getContentSize().height * 1.75f));
_uiLayer->addChild(alert);
// Create the text atlas
TextAtlas* textAtlas = nullptr;
if (Director::getInstance()->getWinSizeInPixels().height > 320.f)
{
textAtlas = TextAtlas::create("1234567890", "cocosui/labelatlas.png", 34, 44, "0");
}
else
{
textAtlas = TextAtlas::create("1234567890", "cocosui/labelatlas.png", 17, 22, "0");
}
textAtlas->setPosition(Vec2((widgetSize.width) / 2, widgetSize.height / 2.0f));
_uiLayer->addChild(textAtlas);
_textAtlas = textAtlas;
TTFConfig ttfConfig("fonts/arial.ttf", 15);
auto label1 = Label::createWithTTF(ttfConfig, "Print Resources");
auto item1 = MenuItemLabel::create(label1, CC_CALLBACK_1(UITextAtlasTest::printWidgetResources, this));
item1->setPosition(Vec2(VisibleRect::left().x + 60, VisibleRect::bottom().y + item1->getContentSize().height * 3));
auto pMenu1 = Menu::create(item1, nullptr);
pMenu1->setPosition(Vec2(0, 0));
this->addChild(pMenu1, 10);
return true;
}
return false;
}
void UITextAtlasTest::printWidgetResources(cocos2d::Ref* sender)
{
cocos2d::ResourceData textureFile = _textAtlas->getRenderFile();
CCLOG("textureFile Name : %s, Type: %d", textureFile.file.c_str(), textureFile.type);
}

View File

@@ -0,0 +1,21 @@
#ifndef __TestCpp__UITextAtlasTest__
#define __TestCpp__UITextAtlasTest__
#include "../UIScene.h"
DEFINE_TEST_SUITE(UITextAtlasTests);
class UITextAtlasTest : public UIScene
{
public:
CREATE_FUNC(UITextAtlasTest);
virtual bool init() override;
void printWidgetResources(cocos2d::Ref* sender);
protected:
cocos2d::ui::TextAtlas* _textAtlas;
};
#endif /* defined(__TestCpp__UITextAtlasTest__) */

View File

@@ -0,0 +1,27 @@
#include "UITextAtlasTest_Editor.h"
USING_NS_CC;
using namespace cocos2d::ui;
UITextAtlasEditorTests::UITextAtlasEditorTests()
{
ADD_TEST_CASE(UITextAtlasTest_Editor);
}
bool UITextAtlasTest_Editor::init()
{
if (UIScene_Editor::init())
{
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UILabelAtlas/res.csb");
Node* child = node->getChildByTag(5);
child->removeFromParent();
_layout = static_cast<Layout*>(child);
_touchGroup->addChild(_layout);
this->configureGUIScene();
return true;
}
return false;
}

View File

@@ -0,0 +1,40 @@
/****************************************************************************
Copyright (c) 2014 cocos2d-x.org
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __TestCpp__UITextAtlasTest_Editor__
#define __TestCpp__UITextAtlasTest_Editor__
#include "../UIScene_Editor.h"
DEFINE_TEST_SUITE(UITextAtlasEditorTests);
class UITextAtlasTest_Editor : public UIScene_Editor
{
public:
CREATE_FUNC(UITextAtlasTest_Editor);
virtual bool init() override;
};
#endif /* defined(__TestCpp__UITextAtlasTest_Editor__) */