axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextBMFontTest/UITextBMFontTest.cpp

47 lines
1.7 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UITextBMFontTest.h"
2015-04-09 12:23:47 +08:00
USING_NS_CC;
using namespace cocos2d::ui;
UITextBMFontTests::UITextBMFontTests()
{
ADD_TEST_CASE(UITextBMFontTest);
}
2014-03-04 16:51:35 +08:00
// UITextBMFontTest
bool UITextBMFontTest::init()
{
if (UIScene::init())
{
2014-06-20 11:18:53 +08:00
Size widgetSize = _widget->getContentSize();
2014-03-04 16:51:35 +08:00
2014-04-03 15:45:06 +08:00
Text* alert = Text::create("TextBMFont","TextBMFont",30);
2014-03-04 16:51:35 +08:00
alert->setColor(Color3B(159, 168, 176));
2014-06-20 11:18:53 +08:00
alert->setPosition(Vec2(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getContentSize().height * 1.75f));
2014-03-04 16:51:35 +08:00
_uiLayer->addChild(alert);
// Create the TextBMFont
TextBMFont* textBMFont = TextBMFont::create("BMFont", "cocosui/bitmapFontTest2.fnt");
2014-06-20 11:18:53 +08:00
textBMFont->setPosition(Vec2(widgetSize.width / 2, widgetSize.height / 2.0f + textBMFont->getContentSize().height / 8.0f));
2014-03-04 16:51:35 +08:00
_uiLayer->addChild(textBMFont);
2015-11-30 16:17:13 +08:00
_textBMFont = textBMFont;
TTFConfig ttfConfig("fonts/arial.ttf", 15);
auto label1 = Label::createWithTTF(ttfConfig, "Print Resources");
2015-12-01 11:07:02 +08:00
auto item1 = MenuItemLabel::create(label1, CC_CALLBACK_1(UITextBMFontTest::printWidgetResources, this));
2015-11-30 16:17:13 +08:00
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);
2014-03-04 16:51:35 +08:00
return true;
}
return false;
2014-03-11 17:13:54 +08:00
}
2015-12-01 11:07:02 +08:00
void UITextBMFontTest::printWidgetResources(cocos2d::Ref* sender)
2015-11-30 16:17:13 +08:00
{
cocos2d::ResourceData textureFile = _textBMFont->getRenderFile();
2015-11-30 16:17:13 +08:00
CCLOG("textureFile Name : %s, Type: %d", textureFile.file.c_str(), textureFile.type);
}