2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
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;
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
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
|
2014-04-02 18:16:17 +08:00
|
|
|
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
|
|
|
{
|
2015-12-10 14:27:39 +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);
|
|
|
|
}
|