2011-07-29 15:57:27 +08:00
|
|
|
#include "FontTest.h"
|
|
|
|
#include "../testResource.h"
|
|
|
|
|
|
|
|
enum {
|
2012-04-19 14:35:52 +08:00
|
|
|
kTagLabel1,
|
|
|
|
kTagLabel2,
|
|
|
|
kTagLabel3,
|
|
|
|
kTagLabel4,
|
2013-04-24 14:49:52 +08:00
|
|
|
|
|
|
|
kTagColor1,
|
|
|
|
kTagColor2,
|
|
|
|
kTagColor3,
|
2011-07-29 15:57:27 +08:00
|
|
|
};
|
|
|
|
|
2014-07-24 16:15:51 +08:00
|
|
|
//you don't need any ifdef anymore
|
2011-07-29 15:57:27 +08:00
|
|
|
static std::string fontList[] =
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
"fonts/A Damn Mess.ttf",
|
|
|
|
"fonts/Abberancy.ttf",
|
|
|
|
"fonts/Abduction.ttf",
|
|
|
|
"fonts/Paint Boy.ttf",
|
2014-07-24 16:15:51 +08:00
|
|
|
"fonts/Schwarzwald.ttf",
|
2012-04-19 14:35:52 +08:00
|
|
|
"fonts/Scissor Cuts.ttf",
|
2011-07-29 15:57:27 +08:00
|
|
|
};
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
FontTests::FontTests()
|
|
|
|
{
|
|
|
|
for (auto& fontFile : fontList)
|
|
|
|
{
|
|
|
|
addTestCase("FontTests", [&](){return FontTest::create(fontFile); });
|
|
|
|
}
|
|
|
|
}
|
2012-06-15 15:10:40 +08:00
|
|
|
|
|
|
|
static int vAlignIdx = 0;
|
2013-07-27 07:04:21 +08:00
|
|
|
static TextVAlignment verticalAlignment[] =
|
2012-06-15 15:10:40 +08:00
|
|
|
{
|
2013-07-27 07:04:21 +08:00
|
|
|
TextVAlignment::TOP,
|
|
|
|
TextVAlignment::CENTER,
|
|
|
|
TextVAlignment::BOTTOM,
|
2012-06-15 15:10:40 +08:00
|
|
|
};
|
2011-07-29 15:57:27 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
void FontTest::showFont(const std::string& fontFile)
|
2011-07-29 15:57:27 +08:00
|
|
|
{
|
2013-08-16 16:05:27 +08:00
|
|
|
auto s = Director::getInstance()->getWinSize();
|
2012-06-15 15:10:40 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto blockSize = Size(s.width/3, 200);
|
2012-08-01 15:30:12 +08:00
|
|
|
float fontSize = 26;
|
2012-06-12 11:16:31 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
removeChildByTag(kTagLabel1, true);
|
|
|
|
removeChildByTag(kTagLabel2, true);
|
|
|
|
removeChildByTag(kTagLabel3, true);
|
|
|
|
removeChildByTag(kTagLabel4, true);
|
2013-04-24 14:49:52 +08:00
|
|
|
removeChildByTag(kTagColor1, true);
|
|
|
|
removeChildByTag(kTagColor2, true);
|
|
|
|
removeChildByTag(kTagColor3, true);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
auto top = Label::createWithSystemFont(fontFile, fontFile, 24);
|
|
|
|
auto left = Label::createWithSystemFont("alignment left", fontFile, fontSize,
|
2013-07-27 07:04:21 +08:00
|
|
|
blockSize, TextHAlignment::LEFT, verticalAlignment[vAlignIdx]);
|
2015-04-03 14:31:03 +08:00
|
|
|
auto center = Label::createWithSystemFont("alignment center", fontFile, fontSize,
|
2013-07-27 07:04:21 +08:00
|
|
|
blockSize, TextHAlignment::CENTER, verticalAlignment[vAlignIdx]);
|
2015-04-03 14:31:03 +08:00
|
|
|
auto right = Label::createWithSystemFont("alignment right", fontFile, fontSize,
|
2013-07-27 07:04:21 +08:00
|
|
|
blockSize, TextHAlignment::RIGHT, verticalAlignment[vAlignIdx]);
|
2012-06-15 15:10:40 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto leftColor = LayerColor::create(Color4B(100, 100, 100, 255), blockSize.width, blockSize.height);
|
|
|
|
auto centerColor = LayerColor::create(Color4B(200, 100, 100, 255), blockSize.width, blockSize.height);
|
|
|
|
auto rightColor = LayerColor::create(Color4B(100, 100, 200, 255), blockSize.width, blockSize.height);
|
2012-06-15 15:10:40 +08:00
|
|
|
|
|
|
|
leftColor->ignoreAnchorPointForPosition(false);
|
|
|
|
centerColor->ignoreAnchorPointForPosition(false);
|
|
|
|
rightColor->ignoreAnchorPointForPosition(false);
|
|
|
|
|
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
top->setAnchorPoint(Vec2(0.5, 1));
|
|
|
|
left->setAnchorPoint(Vec2(0,0.5));
|
|
|
|
leftColor->setAnchorPoint(Vec2(0,0.5));
|
|
|
|
center->setAnchorPoint(Vec2(0,0.5));
|
|
|
|
centerColor->setAnchorPoint(Vec2(0,0.5));
|
|
|
|
right->setAnchorPoint(Vec2(0,0.5));
|
|
|
|
rightColor->setAnchorPoint(Vec2(0,0.5));
|
|
|
|
|
2014-08-28 11:41:18 +08:00
|
|
|
top->setPosition(s.width/2,s.height-20);
|
|
|
|
left->setPosition(0,s.height/2);
|
2012-06-15 15:10:40 +08:00
|
|
|
leftColor->setPosition(left->getPosition());
|
2014-08-28 11:41:18 +08:00
|
|
|
center->setPosition(blockSize.width, s.height/2);
|
2012-06-15 15:10:40 +08:00
|
|
|
centerColor->setPosition(center->getPosition());
|
2014-08-28 11:41:18 +08:00
|
|
|
right->setPosition(blockSize.width*2, s.height/2);
|
2012-06-15 15:10:40 +08:00
|
|
|
rightColor->setPosition(right->getPosition());
|
|
|
|
|
2013-04-24 14:49:52 +08:00
|
|
|
this->addChild(leftColor, -1, kTagColor1);
|
2012-06-15 15:10:40 +08:00
|
|
|
this->addChild(left, 0, kTagLabel1);
|
2013-04-24 14:49:52 +08:00
|
|
|
this->addChild(rightColor, -1, kTagColor2);
|
2012-06-15 15:10:40 +08:00
|
|
|
this->addChild(right, 0, kTagLabel2);
|
2013-04-24 14:49:52 +08:00
|
|
|
this->addChild(centerColor, -1, kTagColor3);
|
2012-06-15 15:10:40 +08:00
|
|
|
this->addChild(center, 0, kTagLabel3);
|
2012-06-12 11:16:31 +08:00
|
|
|
this->addChild(top, 0, kTagLabel4);
|
2011-07-29 15:57:27 +08:00
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string FontTest::title() const
|
2011-07-29 15:57:27 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "Font test";
|
2011-07-29 15:57:27 +08:00
|
|
|
}
|