2013-09-08 11:26:38 +08:00
# include "LabelTestNew.h"
2013-08-13 04:29:54 +08:00
# include "../testResource.h"
2013-12-26 16:11:06 +08:00
# include "renderer/CCRenderer.h"
2013-08-13 04:29:54 +08:00
enum {
kTagTileMap = 1 ,
kTagSpriteManager = 1 ,
kTagAnimation1 = 1 ,
kTagBitmapAtlas1 = 1 ,
kTagBitmapAtlas2 = 2 ,
kTagBitmapAtlas3 = 3 ,
} ;
enum {
kTagSprite1 ,
kTagSprite2 ,
kTagSprite3 ,
kTagSprite4 ,
kTagSprite5 ,
kTagSprite6 ,
kTagSprite7 ,
kTagSprite8 ,
} ;
//------------------------------------------------------------------
//
// AtlasDemoNew
//
//------------------------------------------------------------------
enum
{
IDC_NEXT = 100 ,
IDC_BACK ,
IDC_RESTART
} ;
Layer * nextAtlasActionNew ( ) ;
Layer * backAtlasActionNew ( ) ;
Layer * restartAtlasActionNew ( ) ;
static int sceneIdx = - 1 ;
static std : : function < Layer * ( ) > createFunctions [ ] =
{
CL ( LabelFNTColorAndOpacity ) ,
CL ( LabelFNTSpriteActions ) ,
CL ( LabelFNTPadding ) ,
CL ( LabelFNTOffset ) ,
CL ( LabelFNTColor ) ,
CL ( LabelFNTHundredLabels ) ,
CL ( LabelFNTMultiLine ) ,
CL ( LabelFNTandTTFEmpty ) ,
CL ( LabelFNTRetina ) ,
CL ( LabelFNTGlyphDesigner ) ,
CL ( LabelTTFUnicodeChinese ) ,
CL ( LabelFNTUnicodeChinese ) ,
CL ( LabelFNTMultiLineAlignment ) ,
CL ( LabelFNTUNICODELanguages ) ,
CL ( LabelTTFAlignmentNew ) ,
CL ( LabelFNTBounds ) ,
CL ( LabelTTFLongLineWrapping ) ,
2014-02-18 14:30:51 +08:00
CL ( LabelTTFLargeText ) ,
2013-08-13 04:29:54 +08:00
CL ( LabelTTFColor ) ,
CL ( LabelTTFFontsTestNew ) ,
CL ( LabelTTFDynamicAlignment ) ,
2014-02-08 17:15:57 +08:00
CL ( LabelTTFCJKWrappingTest ) ,
2013-08-13 04:29:54 +08:00
CL ( LabelTTFUnicodeNew ) ,
2013-12-13 12:42:15 +08:00
CL ( LabelBMFontTestNew ) ,
CL ( LabelTTFDistanceField ) ,
2014-01-16 14:37:07 +08:00
CL ( LabelTTFDistanceFieldEffect ) ,
2014-01-16 16:37:29 +08:00
CL ( LabelCharMapTest ) ,
2014-01-24 15:02:42 +08:00
CL ( LabelCharMapColorTest ) ,
2014-01-23 16:16:30 +08:00
CL ( LabelCrashTest ) ,
CL ( LabelTTFOldNew )
2013-08-13 04:29:54 +08:00
} ;
# define MAX_LAYER (sizeof(createFunctions) / sizeof(createFunctions[0]))
Layer * nextAtlasActionNew ( )
{
sceneIdx + + ;
sceneIdx = sceneIdx % MAX_LAYER ;
2013-08-16 16:05:27 +08:00
auto layer = ( createFunctions [ sceneIdx ] ) ( ) ;
2013-08-13 04:29:54 +08:00
return layer ;
}
Layer * backAtlasActionNew ( )
{
sceneIdx - - ;
int total = MAX_LAYER ;
if ( sceneIdx < 0 )
sceneIdx + = total ;
2013-08-16 16:05:27 +08:00
auto layer = ( createFunctions [ sceneIdx ] ) ( ) ;
2013-08-13 04:29:54 +08:00
return layer ;
}
Layer * restartAtlasActionNew ( )
{
2013-08-16 16:05:27 +08:00
auto layer = ( createFunctions [ sceneIdx ] ) ( ) ;
2013-08-13 04:29:54 +08:00
return layer ;
}
void AtlasTestSceneNew : : runThisTest ( )
{
sceneIdx = - 1 ;
2013-08-16 16:05:27 +08:00
auto layer = nextAtlasActionNew ( ) ;
2013-08-13 04:29:54 +08:00
addChild ( layer ) ;
Director : : getInstance ( ) - > replaceScene ( this ) ;
}
AtlasDemoNew : : AtlasDemoNew ( void )
{
}
AtlasDemoNew : : ~ AtlasDemoNew ( void )
{
}
2013-12-19 05:52:10 +08:00
std : : string AtlasDemoNew : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " No title " ;
}
2013-12-19 05:52:10 +08:00
std : : string AtlasDemoNew : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " " ;
}
void AtlasDemoNew : : onEnter ( )
{
BaseTest : : onEnter ( ) ;
}
void AtlasDemoNew : : restartCallback ( Object * sender )
{
2013-08-16 16:05:27 +08:00
auto s = new AtlasTestSceneNew ( ) ;
2013-08-13 04:29:54 +08:00
s - > addChild ( restartAtlasActionNew ( ) ) ;
Director : : getInstance ( ) - > replaceScene ( s ) ;
s - > release ( ) ;
}
void AtlasDemoNew : : nextCallback ( Object * sender )
{
2013-08-16 16:05:27 +08:00
auto s = new AtlasTestSceneNew ( ) ;
2013-08-13 04:29:54 +08:00
s - > addChild ( nextAtlasActionNew ( ) ) ;
Director : : getInstance ( ) - > replaceScene ( s ) ;
s - > release ( ) ;
}
void AtlasDemoNew : : backCallback ( Object * sender )
{
2013-08-16 16:05:27 +08:00
auto s = new AtlasTestSceneNew ( ) ;
2013-08-13 04:29:54 +08:00
s - > addChild ( backAtlasActionNew ( ) ) ;
Director : : getInstance ( ) - > replaceScene ( s ) ;
s - > release ( ) ;
}
LabelTTFAlignmentNew : : LabelTTFAlignmentNew ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
TTFConfig config ( " fonts/tahoma.ttf " , 32 ) ;
auto ttf0 = Label : : createWithTTF ( config , " Alignment 0 \n new line " , TextHAlignment : : LEFT ) ;
2013-08-13 04:29:54 +08:00
ttf0 - > setPosition ( Point ( s . width / 2 , ( s . height / 6 ) * 2 - 30 ) ) ;
2014-01-24 15:02:42 +08:00
ttf0 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
this - > addChild ( ttf0 ) ;
2014-01-11 22:33:07 +08:00
auto ttf1 = Label : : createWithTTF ( config , " Alignment 1 \n new line " , TextHAlignment : : CENTER ) ;
2013-08-13 04:29:54 +08:00
ttf1 - > setPosition ( Point ( s . width / 2 , ( s . height / 6 ) * 3 - 30 ) ) ;
2014-01-24 15:02:42 +08:00
ttf1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
this - > addChild ( ttf1 ) ;
2014-01-11 22:33:07 +08:00
auto ttf2 = Label : : createWithTTF ( config , " Alignment 2 \n new line " , TextHAlignment : : RIGHT ) ;
2013-08-13 04:29:54 +08:00
ttf2 - > setPosition ( Point ( s . width / 2 , ( s . height / 6 ) * 4 - 30 ) ) ;
2014-01-24 15:02:42 +08:00
ttf2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
this - > addChild ( ttf2 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFAlignmentNew : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFAlignmentNew : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Tests alignment values " ;
}
LabelFNTColorAndOpacity : : LabelFNTColorAndOpacity ( )
{
_time = 0 ;
2013-08-16 16:05:27 +08:00
auto col = LayerColor : : create ( Color4B ( 128 , 128 , 128 , 255 ) ) ;
2013-08-13 04:29:54 +08:00
addChild ( col , - 10 ) ;
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/bitmapFontTest2.fnt " , " Test " ) ;
2013-08-13 04:29:54 +08:00
label1 - > setAnchorPoint ( Point ( 0 , 0 ) ) ;
addChild ( label1 , 0 , kTagBitmapAtlas1 ) ;
2013-08-16 16:05:27 +08:00
auto fade = FadeOut : : create ( 1.0f ) ;
auto fade_in = fade - > reverse ( ) ;
auto seq = Sequence : : create ( fade , fade_in , NULL ) ;
auto repeat = RepeatForever : : create ( seq ) ;
2013-08-13 04:29:54 +08:00
label1 - > runAction ( repeat ) ;
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithBMFont ( " fonts/bitmapFontTest2.fnt " , " Test " ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label2 - > setColor ( Color3B : : RED ) ;
addChild ( label2 , 0 , kTagBitmapAtlas2 ) ;
2014-01-24 15:02:42 +08:00
auto tint = Sequence : : create ( TintTo : : create ( 1 , 255 , 0 , 0 ) ,
TintTo : : create ( 1 , 0 , 255 , 0 ) ,
TintTo : : create ( 1 , 0 , 0 , 255 ) ,
NULL ) ;
label2 - > runAction ( RepeatForever : : create ( tint ) ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
auto label3 = Label : : createWithBMFont ( " fonts/bitmapFontTest2.fnt " , " Test " ) ;
2013-08-13 04:29:54 +08:00
label3 - > setAnchorPoint ( Point ( 1 , 1 ) ) ;
addChild ( label3 , 0 , kTagBitmapAtlas3 ) ;
label1 - > setPosition ( VisibleRect : : leftBottom ( ) ) ;
label2 - > setPosition ( VisibleRect : : center ( ) ) ;
label3 - > setPosition ( VisibleRect : : rightTop ( ) ) ;
2013-08-14 01:12:02 +08:00
2013-08-13 04:29:54 +08:00
schedule ( schedule_selector ( LabelFNTColorAndOpacity : : step ) ) ; //:@selector(step:)];
}
void LabelFNTColorAndOpacity : : step ( float dt )
{
_time + = dt ;
char string [ 15 ] = { 0 } ;
sprintf ( string , " %2.2f Test j " , _time ) ;
2013-08-16 16:05:27 +08:00
auto label1 = ( Label * ) getChildByTag ( kTagBitmapAtlas1 ) ;
2013-08-13 04:29:54 +08:00
label1 - > setString ( string ) ;
2013-08-16 16:05:27 +08:00
auto label2 = ( Label * ) getChildByTag ( kTagBitmapAtlas2 ) ;
2013-08-13 04:29:54 +08:00
label2 - > setString ( string ) ;
2013-08-16 16:05:27 +08:00
auto label3 = ( Label * ) getChildByTag ( kTagBitmapAtlas3 ) ;
2013-08-13 04:29:54 +08:00
label3 - > setString ( string ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTColorAndOpacity : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTColorAndOpacity : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Testing opacity + tint " ;
}
LabelFNTSpriteActions : : LabelFNTSpriteActions ( )
{
_time = 0 ;
// Upper Label
2014-01-11 22:33:07 +08:00
auto label = Label : : createWithBMFont ( " fonts/bitmapFontTest.fnt " , " Bitmap Font Atlas " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
label - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
2013-10-31 20:17:30 +08:00
auto BChar = ( Sprite * ) label - > getLetter ( 0 ) ;
auto FChar = ( Sprite * ) label - > getLetter ( 7 ) ;
auto AChar = ( Sprite * ) label - > getLetter ( 12 ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto rotate = RotateBy : : create ( 2 , 360 ) ;
auto rot_4ever = RepeatForever : : create ( rotate ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto scale = ScaleBy : : create ( 2 , 1.5f ) ;
auto scale_back = scale - > reverse ( ) ;
auto scale_seq = Sequence : : create ( scale , scale_back , NULL ) ;
auto scale_4ever = RepeatForever : : create ( scale_seq ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto jump = JumpBy : : create ( 0.5f , Point : : ZERO , 60 , 1 ) ;
auto jump_4ever = RepeatForever : : create ( jump ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto fade_out = FadeOut : : create ( 1 ) ;
auto fade_in = FadeIn : : create ( 1 ) ;
auto seq = Sequence : : create ( fade_out , fade_in , NULL ) ;
auto fade_4ever = RepeatForever : : create ( seq ) ;
2013-08-13 04:29:54 +08:00
BChar - > runAction ( rot_4ever ) ;
BChar - > runAction ( scale_4ever ) ;
FChar - > runAction ( jump_4ever ) ;
AChar - > runAction ( fade_4ever ) ;
// Bottom Label
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithBMFont ( " fonts/bitmapFontTest.fnt " , " 00.0 " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label2 , 0 , kTagBitmapAtlas2 ) ;
label2 - > setPosition ( Point ( s . width / 2.0f , 80 ) ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
2013-10-31 20:17:30 +08:00
auto lastChar = ( Sprite * ) label2 - > getLetter ( 3 ) ;
2013-08-13 04:29:54 +08:00
lastChar - > runAction ( rot_4ever - > clone ( ) ) ;
schedule ( schedule_selector ( LabelFNTSpriteActions : : step ) , 0.1f ) ;
}
void LabelFNTSpriteActions : : draw ( )
{
2014-01-19 03:35:27 +08:00
_renderCmd . init ( _globalZOrder ) ;
2013-12-27 14:42:45 +08:00
_renderCmd . func = CC_CALLBACK_0 ( LabelFNTSpriteActions : : onDraw , this ) ;
Director : : getInstance ( ) - > getRenderer ( ) - > addCommand ( & _renderCmd ) ;
2013-12-26 16:11:06 +08:00
}
void LabelFNTSpriteActions : : onDraw ( )
{
kmMat4 oldMat ;
kmGLGetMatrix ( KM_GL_MODELVIEW , & oldMat ) ;
kmGLLoadMatrix ( & _modelViewTransform ) ;
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
DrawPrimitives : : drawLine ( Point ( 0 , s . height / 2 ) , Point ( s . width , s . height / 2 ) ) ;
DrawPrimitives : : drawLine ( Point ( s . width / 2 , 0 ) , Point ( s . width / 2 , s . height ) ) ;
2013-12-26 16:11:06 +08:00
kmGLLoadMatrix ( & oldMat ) ;
2013-08-13 04:29:54 +08:00
}
void LabelFNTSpriteActions : : step ( float dt )
{
_time + = dt ;
char string [ 10 ] = { 0 } ;
sprintf ( string , " %04.1f " , _time ) ;
2013-08-16 16:05:27 +08:00
auto label1 = ( Label * ) getChildByTag ( kTagBitmapAtlas2 ) ;
2013-08-13 04:29:54 +08:00
label1 - > setString ( string ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTSpriteActions : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTSpriteActions : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Using fonts as Sprite objects. Some characters should rotate. " ;
}
LabelFNTPadding : : LabelFNTPadding ( )
{
2014-01-11 22:33:07 +08:00
auto label = Label : : createWithBMFont ( " fonts/bitmapFontTest4.fnt " , " abcdefg " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
label - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTPadding : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTPadding : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Testing padding " ;
}
LabelFNTOffset : : LabelFNTOffset ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
Label * label = NULL ;
2014-01-11 22:33:07 +08:00
label = Label : : createWithBMFont ( " fonts/bitmapFontTest5.fnt " , " FaFeFiFoFu " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
label - > setPosition ( Point ( s . width / 2 , s . height / 2 + 50 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
label = Label : : createWithBMFont ( " fonts/bitmapFontTest5.fnt " , " fafefifofu " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
label - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
label = Label : : createWithBMFont ( " fonts/bitmapFontTest5.fnt " , " aeiou " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
label - > setPosition ( Point ( s . width / 2 , s . height / 2 - 50 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTOffset : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTOffset : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Rendering should be OK. Testing offset " ;
}
LabelFNTColor : : LabelFNTColor ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
Label * label = NULL ;
2014-01-11 22:33:07 +08:00
label = Label : : createWithBMFont ( " fonts/bitmapFontTest5.fnt " , " Blue " ) ;
2013-08-13 04:29:54 +08:00
label - > setColor ( Color3B : : BLUE ) ;
addChild ( label ) ;
label - > setPosition ( Point ( s . width / 2 , s . height / 4 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
label = Label : : createWithBMFont ( " fonts/bitmapFontTest5.fnt " , " Red " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
label - > setPosition ( Point ( s . width / 2 , 2 * s . height / 4 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label - > setColor ( Color3B : : RED ) ;
2014-01-11 22:33:07 +08:00
label = Label : : createWithBMFont ( " fonts/bitmapFontTest5.fnt " , " Green " ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
label - > setPosition ( Point ( s . width / 2 , 3 * s . height / 4 ) ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label - > setColor ( Color3B : : GREEN ) ;
label - > setString ( " Green " ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTColor : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTColor : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Testing color " ;
}
LabelFNTHundredLabels : : LabelFNTHundredLabels ( )
{
// Upper Label
for ( int i = 0 ; i < 100 ; i + + )
{
char str [ 6 ] = { 0 } ;
sprintf ( str , " -%d- " , i ) ;
2014-01-11 22:33:07 +08:00
auto label = Label : : createWithBMFont ( " fonts/bitmapFontTest.fnt " , str ) ;
2013-08-13 04:29:54 +08:00
addChild ( label ) ;
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto p = Point ( CCRANDOM_0_1 ( ) * s . width , CCRANDOM_0_1 ( ) * s . height ) ;
2013-08-13 04:29:54 +08:00
label - > setPosition ( p ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
}
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTHundredLabels : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTHundredLabels : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Creating several Labels using the same FNT file; should be fast " ;
}
LabelFNTMultiLine : : LabelFNTMultiLine ( )
{
Size s ;
// Left
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/bitmapFontTest3.fnt " , " Multi line \n Left " ) ;
2013-08-13 04:29:54 +08:00
label1 - > setAnchorPoint ( Point ( 0 , 0 ) ) ;
addChild ( label1 , 0 , kTagBitmapAtlas1 ) ;
s = label1 - > getContentSize ( ) ;
CCLOG ( " content size: %.2fx%.2f " , s . width , s . height ) ;
// Center
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithBMFont ( " fonts/bitmapFontTest3.fnt " , " Multi line \n Center " ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label2 , 0 , kTagBitmapAtlas2 ) ;
s = label2 - > getContentSize ( ) ;
CCLOG ( " content size: %.2fx%.2f " , s . width , s . height ) ;
// right
2014-01-11 22:33:07 +08:00
auto label3 = Label : : createWithBMFont ( " fonts/bitmapFontTest3.fnt " , " Multi line \n Right \n Three lines Three " ) ;
2013-08-13 04:29:54 +08:00
label3 - > setAnchorPoint ( Point ( 1 , 1 ) ) ;
addChild ( label3 , 0 , kTagBitmapAtlas3 ) ;
s = label3 - > getContentSize ( ) ;
CCLOG ( " content size: %.2fx%.2f " , s . width , s . height ) ;
label1 - > setPosition ( VisibleRect : : leftBottom ( ) ) ;
label2 - > setPosition ( VisibleRect : : center ( ) ) ;
label3 - > setPosition ( VisibleRect : : rightTop ( ) ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTMultiLine : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTMultiLine : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Multiline + anchor point " ;
}
LabelFNTandTTFEmpty : : LabelFNTandTTFEmpty ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
// LabelBMFont
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/bitmapFontTest3.fnt " , " " , TextHAlignment : : CENTER , s . width ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 , 0 , kTagBitmapAtlas1 ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
label1 - > setPosition ( Point ( s . width / 2 , s . height - 100 ) ) ;
2013-08-13 04:29:54 +08:00
// LabelTTF
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 48 ) ;
auto label2 = Label : : createWithTTF ( ttfConfig , " " , TextHAlignment : : CENTER , s . width ) ;
2013-08-13 04:29:54 +08:00
addChild ( label2 , 0 , kTagBitmapAtlas2 ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
label2 - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
auto label3 = Label : : createWithCharMap ( " fonts/tuffy_bold_italic-charmap.png " , 48 , 64 , ' ' ) ;
label3 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
addChild ( label3 , 0 , kTagBitmapAtlas3 ) ;
label3 - > setPosition ( Point ( s . width / 2 , 100 ) ) ;
2013-08-13 04:29:54 +08:00
schedule ( schedule_selector ( LabelFNTandTTFEmpty : : updateStrings ) , 1.0f ) ;
setEmpty = false ;
}
void LabelFNTandTTFEmpty : : updateStrings ( float dt )
{
auto label1 = static_cast < Label * > ( getChildByTag ( kTagBitmapAtlas1 ) ) ;
auto label2 = static_cast < Label * > ( getChildByTag ( kTagBitmapAtlas2 ) ) ;
2014-01-24 15:02:42 +08:00
auto label3 = static_cast < Label * > ( getChildByTag ( kTagBitmapAtlas3 ) ) ;
2013-08-13 04:29:54 +08:00
if ( ! setEmpty )
{
label1 - > setString ( " not empty " ) ;
label2 - > setString ( " not empty " ) ;
2014-01-24 15:02:42 +08:00
label3 - > setString ( " hi " ) ;
2013-08-13 04:29:54 +08:00
setEmpty = true ;
}
else
{
label1 - > setString ( " " ) ;
label2 - > setString ( " " ) ;
2014-01-24 15:02:42 +08:00
label3 - > setString ( " " ) ;
2013-08-13 04:29:54 +08:00
setEmpty = false ;
}
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTandTTFEmpty : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label : .FNT file & .TTF file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTandTTFEmpty : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
2014-01-24 15:02:42 +08:00
return " 3 empty labels: new Label + FNT/TTF/CharMap " ;
2013-08-13 04:29:54 +08:00
}
LabelFNTRetina : : LabelFNTRetina ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
// LabelBMFont
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/konqa32.fnt " , " TESTING RETINA DISPLAY " ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
label1 - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTRetina : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTRetina : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " loading arista16 or arista16-hd " ;
}
LabelFNTGlyphDesigner : : LabelFNTGlyphDesigner ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
auto layer = LayerColor : : create ( Color4B ( 128 , 128 , 128 , 255 ) ) ;
addChild ( layer , - 10 ) ;
// LabelBMFont
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/futura-48.fnt " , " Testing Glyph Designer " ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
label1 - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTGlyphDesigner : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTGlyphDesigner : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Testing Glyph Designer: you should see a font with shawdows and outline " ;
}
LabelTTFUnicodeChinese : : LabelTTFUnicodeChinese ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-15 21:39:47 +08:00
// Adding "啊" letter at the end of string to make VS2012 happy, otherwise VS will generate errors
// like "Error 3 error C2146: syntax error : missing ')' before identifier 'label'";
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/wt021.ttf " , 55 , GlyphCollection : : CUSTOM , " 美好的一天啊 " ) ;
auto label = Label : : createWithTTF ( ttfConfig , " 美好的一天啊 " , TextHAlignment : : CENTER , size . width ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
this - > addChild ( label ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFUnicodeChinese : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .TTF file Chinese " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFUnicodeChinese : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Testing new Label + TTF with Chinese character " ;
}
LabelFNTUnicodeChinese : : LabelFNTUnicodeChinese ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2014-01-11 22:33:07 +08:00
auto label = Label : : createWithBMFont ( " fonts/bitmapFontChinese.fnt " , " 中国 " ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
this - > addChild ( label ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTUnicodeChinese : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT file Chinese " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTUnicodeChinese : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Testing new Label + FNT with Chinese character " ;
}
/// BitmapFontMultiLineAlignmentNew
# define LongSentencesExample "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
# define LineBreaksExample "Lorem ipsum dolor\nsit amet\nconsectetur adipisicing elit\nblah\nblah"
# define MixedExample "ABC\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt\nDEF"
# define ArrowsMax 0.95
# define ArrowsMin 0.7
# define LeftAlign 0
# define CenterAlign 1
# define RightAlign 2
# define LongSentences 0
# define LineBreaks 1
# define Mixed 2
static float alignmentItemPadding = 50 ;
static float menuItemPaddingCenter = 50 ;
LabelFNTMultiLineAlignment : : LabelFNTMultiLineAlignment ( )
{
2013-10-23 16:14:03 +08:00
auto listener = EventListenerTouchAllAtOnce : : create ( ) ;
listener - > onTouchesBegan = CC_CALLBACK_2 ( LabelFNTMultiLineAlignment : : onTouchesBegan , this ) ;
listener - > onTouchesMoved = CC_CALLBACK_2 ( LabelFNTMultiLineAlignment : : onTouchesMoved , this ) ;
listener - > onTouchesEnded = CC_CALLBACK_2 ( LabelFNTMultiLineAlignment : : onTouchesEnded , this ) ;
2013-10-26 15:04:01 +08:00
_eventDispatcher - > addEventListenerWithSceneGraphPriority ( listener , this ) ;
2013-08-13 04:29:54 +08:00
// ask director the the window size
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
// create and initialize a Label
2014-01-11 22:33:07 +08:00
this - > _labelShouldRetain = Label : : createWithBMFont ( " fonts/markerFelt.fnt " , LongSentencesExample , TextHAlignment : : CENTER , size . width / 1.5 ) ;
2014-01-24 15:02:42 +08:00
this - > _labelShouldRetain - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
this - > _labelShouldRetain - > retain ( ) ;
this - > _arrowsBarShouldRetain = Sprite : : create ( " Images/arrowsBar.png " ) ;
this - > _arrowsBarShouldRetain - > retain ( ) ;
this - > _arrowsShouldRetain = Sprite : : create ( " Images/arrows.png " ) ;
this - > _arrowsShouldRetain - > retain ( ) ;
MenuItemFont : : setFontSize ( 20 ) ;
auto longSentences = MenuItemFont : : create ( " Long Flowing Sentences " , CC_CALLBACK_1 ( LabelFNTMultiLineAlignment : : stringChanged , this ) ) ;
auto lineBreaks = MenuItemFont : : create ( " Short Sentences With Intentional Line Breaks " , CC_CALLBACK_1 ( LabelFNTMultiLineAlignment : : stringChanged , this ) ) ;
auto mixed = MenuItemFont : : create ( " Long Sentences Mixed With Intentional Line Breaks " , CC_CALLBACK_1 ( LabelFNTMultiLineAlignment : : stringChanged , this ) ) ;
auto stringMenu = Menu : : create ( longSentences , lineBreaks , mixed , NULL ) ;
stringMenu - > alignItemsVertically ( ) ;
longSentences - > setColor ( Color3B : : RED ) ;
_lastSentenceItem = longSentences ;
longSentences - > setTag ( LongSentences ) ;
lineBreaks - > setTag ( LineBreaks ) ;
mixed - > setTag ( Mixed ) ;
MenuItemFont : : setFontSize ( 30 ) ;
auto left = MenuItemFont : : create ( " Left " , CC_CALLBACK_1 ( LabelFNTMultiLineAlignment : : alignmentChanged , this ) ) ;
auto center = MenuItemFont : : create ( " Center " , CC_CALLBACK_1 ( LabelFNTMultiLineAlignment : : alignmentChanged , this ) ) ;
auto right = MenuItemFont : : create ( " Right " , CC_CALLBACK_1 ( LabelFNTMultiLineAlignment : : alignmentChanged , this ) ) ;
auto alignmentMenu = Menu : : create ( left , center , right , NULL ) ;
alignmentMenu - > alignItemsHorizontallyWithPadding ( alignmentItemPadding ) ;
center - > setColor ( Color3B : : RED ) ;
_lastAlignmentItem = center ;
left - > setTag ( LeftAlign ) ;
center - > setTag ( CenterAlign ) ;
right - > setTag ( RightAlign ) ;
// position the label on the center of the screen
this - > _labelShouldRetain - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
this - > _arrowsBarShouldRetain - > setVisible ( false ) ;
float arrowsWidth = ( ArrowsMax - ArrowsMin ) * size . width ;
this - > _arrowsBarShouldRetain - > setScaleX ( arrowsWidth / this - > _arrowsBarShouldRetain - > getContentSize ( ) . width ) ;
this - > _arrowsBarShouldRetain - > setPosition ( Point ( ( ( ArrowsMax + ArrowsMin ) / 2 ) * size . width , this - > _labelShouldRetain - > getPosition ( ) . y ) ) ;
this - > snapArrowsToEdge ( ) ;
stringMenu - > setPosition ( Point ( size . width / 2 , size . height - menuItemPaddingCenter ) ) ;
alignmentMenu - > setPosition ( Point ( size . width / 2 , menuItemPaddingCenter + 15 ) ) ;
this - > addChild ( this - > _labelShouldRetain ) ;
this - > addChild ( this - > _arrowsBarShouldRetain ) ;
this - > addChild ( this - > _arrowsShouldRetain ) ;
this - > addChild ( stringMenu ) ;
this - > addChild ( alignmentMenu ) ;
}
LabelFNTMultiLineAlignment : : ~ LabelFNTMultiLineAlignment ( )
{
this - > _labelShouldRetain - > release ( ) ;
this - > _arrowsBarShouldRetain - > release ( ) ;
this - > _arrowsShouldRetain - > release ( ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTMultiLineAlignment : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTMultiLineAlignment : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " " ;
}
void LabelFNTMultiLineAlignment : : stringChanged ( cocos2d : : Object * sender )
{
2013-08-16 16:05:27 +08:00
auto item = ( MenuItemFont * ) sender ;
2013-08-13 04:29:54 +08:00
item - > setColor ( Color3B : : RED ) ;
this - > _lastAlignmentItem - > setColor ( Color3B : : WHITE ) ;
this - > _lastAlignmentItem = item ;
switch ( item - > getTag ( ) )
{
case LongSentences :
this - > _labelShouldRetain - > setString ( LongSentencesExample ) ;
break ;
case LineBreaks :
this - > _labelShouldRetain - > setString ( LineBreaksExample ) ;
break ;
case Mixed :
this - > _labelShouldRetain - > setString ( MixedExample ) ;
break ;
default :
break ;
}
this - > snapArrowsToEdge ( ) ;
}
void LabelFNTMultiLineAlignment : : alignmentChanged ( cocos2d : : Object * sender )
{
2013-08-16 16:05:27 +08:00
auto item = static_cast < MenuItemFont * > ( sender ) ;
2013-08-13 04:29:54 +08:00
item - > setColor ( Color3B : : RED ) ;
this - > _lastAlignmentItem - > setColor ( Color3B : : WHITE ) ;
this - > _lastAlignmentItem = item ;
switch ( item - > getTag ( ) )
{
case LeftAlign :
this - > _labelShouldRetain - > setAlignment ( TextHAlignment : : LEFT ) ;
break ;
case CenterAlign :
this - > _labelShouldRetain - > setAlignment ( TextHAlignment : : CENTER ) ;
break ;
case RightAlign :
this - > _labelShouldRetain - > setAlignment ( TextHAlignment : : RIGHT ) ;
break ;
default :
break ;
}
this - > snapArrowsToEdge ( ) ;
}
2013-09-03 18:22:03 +08:00
void LabelFNTMultiLineAlignment : : onTouchesBegan ( const std : : vector < Touch * > & touches , cocos2d : : Event * event )
2013-08-13 04:29:54 +08:00
{
2013-09-03 18:22:03 +08:00
auto touch = touches [ 0 ] ;
2013-08-16 16:05:27 +08:00
auto location = touch - > getLocationInView ( ) ;
2013-08-13 04:29:54 +08:00
if ( this - > _arrowsShouldRetain - > getBoundingBox ( ) . containsPoint ( location ) )
{
_drag = true ;
this - > _arrowsBarShouldRetain - > setVisible ( true ) ;
}
}
2013-09-03 18:22:03 +08:00
void LabelFNTMultiLineAlignment : : onTouchesEnded ( const std : : vector < Touch * > & touches , cocos2d : : Event * event )
2013-08-13 04:29:54 +08:00
{
_drag = false ;
this - > snapArrowsToEdge ( ) ;
this - > _arrowsBarShouldRetain - > setVisible ( false ) ;
}
2013-09-03 18:22:03 +08:00
void LabelFNTMultiLineAlignment : : onTouchesMoved ( const std : : vector < Touch * > & touches , cocos2d : : Event * event )
2013-08-13 04:29:54 +08:00
{
if ( ! _drag )
{
return ;
}
2013-09-03 18:22:03 +08:00
auto touch = touches [ 0 ] ;
2013-08-16 16:05:27 +08:00
auto location = touch - > getLocationInView ( ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto winSize = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
this - > _arrowsShouldRetain - > setPosition ( Point ( MAX ( MIN ( location . x , ArrowsMax * winSize . width ) , ArrowsMin * winSize . width ) ,
this - > _arrowsShouldRetain - > getPosition ( ) . y ) ) ;
float labelWidth = fabs ( this - > _arrowsShouldRetain - > getPosition ( ) . x - this - > _labelShouldRetain - > getPosition ( ) . x ) * 2 ;
this - > _labelShouldRetain - > setWidth ( labelWidth ) ;
}
void LabelFNTMultiLineAlignment : : snapArrowsToEdge ( )
{
this - > _arrowsShouldRetain - > setPosition ( Point ( this - > _labelShouldRetain - > getPosition ( ) . x + this - > _labelShouldRetain - > getContentSize ( ) . width / 2 ,
this - > _labelShouldRetain - > getPosition ( ) . y ) ) ;
}
/// BMFontUnicodeNew
LabelFNTUNICODELanguages : : LabelFNTUNICODELanguages ( )
{
2013-12-18 16:03:07 +08:00
auto strings = FileUtils : : getInstance ( ) - > getValueMapFromFile ( " fonts/strings.xml " ) ;
std : : string chinese = strings [ " chinese1 " ] . asString ( ) ;
std : : string russian = strings [ " russian " ] . asString ( ) ;
std : : string spanish = strings [ " spanish " ] . asString ( ) ;
std : : string japanese = strings [ " japanese " ] . asString ( ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/arial-unicode-26.fnt " , spanish , TextHAlignment : : CENTER , 200 ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label1 - > setPosition ( Point ( s . width / 2 , s . height / 5 * 3 ) ) ;
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithBMFont ( " fonts/arial-unicode-26.fnt " , chinese ) ;
2013-08-13 04:29:54 +08:00
addChild ( label2 ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label2 - > setPosition ( Point ( s . width / 2 , s . height / 5 * 2.5 ) ) ;
2014-01-11 22:33:07 +08:00
auto label3 = Label : : createWithBMFont ( " fonts/arial-26-en-ru.fnt " , russian ) ;
2013-08-13 04:29:54 +08:00
addChild ( label3 ) ;
2014-01-24 15:02:42 +08:00
label3 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label3 - > setPosition ( Point ( s . width / 2 , s . height / 5 * 2 ) ) ;
2014-01-11 22:33:07 +08:00
auto label4 = Label : : createWithBMFont ( " fonts/arial-unicode-26.fnt " , japanese ) ;
2013-08-13 04:29:54 +08:00
addChild ( label4 ) ;
2014-01-24 15:02:42 +08:00
label4 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
label4 - > setPosition ( Point ( s . width / 2 , s . height / 5 * 1.5 ) ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTUNICODELanguages : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT + UNICODE " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTUNICODELanguages : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " You should see 4 differnt labels: \n In Spanish, Chinese, Russian and Korean " ;
}
LabelFNTBounds : : LabelFNTBounds ( )
{
2013-08-16 16:05:27 +08:00
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto layer = LayerColor : : create ( Color4B ( 128 , 128 , 128 , 255 ) ) ;
2013-08-13 04:29:54 +08:00
addChild ( layer , - 10 ) ;
// LabelBMFont
2014-01-11 22:33:07 +08:00
label1 = Label : : createWithBMFont ( " fonts/boundsTestFont.fnt " , " Testing Glyph Designer " , TextHAlignment : : CENTER , s . width ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
label1 - > setPosition ( Point ( s . width / 2 , s . height / 2 ) ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTBounds : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .FNT + Bounds " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelFNTBounds : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " You should see string enclosed by a box " ;
}
void LabelFNTBounds : : draw ( )
{
2014-01-19 03:35:27 +08:00
_renderCmd . init ( _globalZOrder ) ;
2013-12-27 14:42:45 +08:00
_renderCmd . func = CC_CALLBACK_0 ( LabelFNTBounds : : onDraw , this ) ;
Director : : getInstance ( ) - > getRenderer ( ) - > addCommand ( & _renderCmd ) ;
2013-12-26 16:11:06 +08:00
}
void LabelFNTBounds : : onDraw ( )
{
kmMat4 oldMat ;
kmGLGetMatrix ( KM_GL_MODELVIEW , & oldMat ) ;
kmGLLoadMatrix ( & _modelViewTransform ) ;
2013-08-16 16:05:27 +08:00
auto labelSize = label1 - > getContentSize ( ) ;
auto origin = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
origin . width = origin . width / 2 - ( labelSize . width / 2 ) ;
origin . height = origin . height / 2 - ( labelSize . height / 2 ) ;
Point vertices [ 4 ] =
{
Point ( origin . width , origin . height ) ,
Point ( labelSize . width + origin . width , origin . height ) ,
Point ( labelSize . width + origin . width , labelSize . height + origin . height ) ,
Point ( origin . width , labelSize . height + origin . height )
} ;
DrawPrimitives : : drawPoly ( vertices , 4 , true ) ;
2013-12-26 16:11:06 +08:00
kmGLLoadMatrix ( & oldMat ) ;
2013-08-13 04:29:54 +08:00
}
LabelTTFLongLineWrapping : : LabelTTFLongLineWrapping ( )
{
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
// Long sentence
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 28 ) ;
auto label1 = Label : : createWithTTF ( ttfConfig , LongSentencesExample , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label1 - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
label1 - > setAnchorPoint ( Point ( 0.5 , 1.0 ) ) ;
addChild ( label1 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFLongLineWrapping : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFLongLineWrapping : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Uses the new Label with TTF. Testing auto-wrapping " ;
}
2014-02-18 14:30:51 +08:00
LabelTTFLargeText : : LabelTTFLargeText ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
// Long sentence
TTFConfig ttfConfig ( " fonts/wt021.ttf " , 36 , GlyphCollection : : DYNAMIC ) ;
std : : string text = FileUtils : : getInstance ( ) - > getStringFromFile ( " commonly_used_words.txt " ) ;
auto label = Label : : createWithTTF ( ttfConfig , text , TextHAlignment : : CENTER , size . width ) ;
label - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
addChild ( label ) ;
}
std : : string LabelTTFLargeText : : title ( ) const
{
return " New Label + .TTF " ;
}
std : : string LabelTTFLargeText : : subtitle ( ) const
{
return " Uses the new Label with TTF. Testing large text " ;
}
2013-08-13 04:29:54 +08:00
LabelTTFColor : : LabelTTFColor ( )
{
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 35 ) ;
2013-08-13 04:29:54 +08:00
// Green
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithTTF ( ttfConfig , " Green " , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label1 - > setPosition ( Point ( size . width / 2 , size . height / 5 * 1.5 ) ) ;
label1 - > setColor ( Color3B : : GREEN ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
// Red
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithTTF ( ttfConfig , " Red " , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label2 - > setPosition ( Point ( size . width / 2 , size . height / 5 * 2.0 ) ) ;
label2 - > setColor ( Color3B : : RED ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label2 ) ;
// Blue
2014-01-11 22:33:07 +08:00
auto label3 = Label : : createWithTTF ( ttfConfig , " Blue " , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label3 - > setPosition ( Point ( size . width / 2 , size . height / 5 * 2.5 ) ) ;
label3 - > setColor ( Color3B : : BLUE ) ;
2014-01-24 15:02:42 +08:00
label3 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label3 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFColor : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFColor : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Uses the new Label with TTF. Testing Color " ;
}
LabelTTFDynamicAlignment : : LabelTTFDynamicAlignment ( )
{
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 45 ) ;
_label = Label : : createWithTTF ( ttfConfig , LongSentencesExample , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
_label - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
2014-01-24 15:02:42 +08:00
_label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto menu = Menu : : create (
2013-08-13 04:29:54 +08:00
MenuItemFont : : create ( " Left " , CC_CALLBACK_1 ( LabelTTFDynamicAlignment : : setAlignmentLeft , this ) ) ,
MenuItemFont : : create ( " Center " , CC_CALLBACK_1 ( LabelTTFDynamicAlignment : : setAlignmentCenter , this ) ) ,
MenuItemFont : : create ( " Right " , CC_CALLBACK_1 ( LabelTTFDynamicAlignment : : setAlignmentRight , this ) ) ,
NULL ) ;
menu - > alignItemsVerticallyWithPadding ( 4 ) ;
menu - > setPosition ( Point ( 50 , size . height / 4 ) ) ;
addChild ( _label ) ;
this - > addChild ( menu ) ;
}
void LabelTTFDynamicAlignment : : updateAlignment ( )
{
if ( _label )
{
_label - > setAlignment ( _horizAlign ) ;
}
}
void LabelTTFDynamicAlignment : : setAlignmentLeft ( Object * sender )
{
_horizAlign = TextHAlignment : : LEFT ;
this - > updateAlignment ( ) ;
}
void LabelTTFDynamicAlignment : : setAlignmentCenter ( Object * sender )
{
_horizAlign = TextHAlignment : : CENTER ;
this - > updateAlignment ( ) ;
}
void LabelTTFDynamicAlignment : : setAlignmentRight ( Object * sender )
{
_horizAlign = TextHAlignment : : RIGHT ;
this - > updateAlignment ( ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFDynamicAlignment : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + .TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFDynamicAlignment : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Uses the new Label with TTF. Testing alignment " ;
}
2014-02-08 17:15:57 +08:00
//
// NewLabelTTF Chinese/Japanese/Korean wrapping test
//
LabelTTFCJKWrappingTest : : LabelTTFCJKWrappingTest ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
auto drawNode = DrawNode : : create ( ) ;
drawNode - > setAnchorPoint ( Point ( 0 , 0 ) ) ;
this - > addChild ( drawNode ) ;
drawNode - > drawSegment (
Point ( size . width * 0.1 , size . height * 0.8 ) ,
Point ( size . width * 0.1 , 0 ) , 1 , Color4F ( 1 , 0 , 0 , 1 ) ) ;
drawNode - > drawSegment (
Point ( size . width * 0.85 , size . height * 0.8 ) ,
Point ( size . width * 0.85 , 0 ) , 1 , Color4F ( 1 , 0 , 0 , 1 ) ) ;
TTFConfig ttfConfig ( " fonts/wt021.ttf " , 50 , GlyphCollection : : DYNAMIC ) ;
auto label1 = Label : : createWithTTF ( ttfConfig ,
2014-02-10 11:21:54 +08:00
" 你好, Cocos2d-x v3的New Label. " , TextHAlignment : : LEFT , size . width * 0.75 ) ;
2014-02-08 17:15:57 +08:00
label1 - > setColor ( Color3B ( 128 , 255 , 255 ) ) ;
label1 - > setPosition ( Point ( size . width * 0.1 , size . height * 0.6 ) ) ;
label1 - > setAnchorPoint ( Point ( 0 , 0.5 ) ) ;
this - > addChild ( label1 ) ;
auto label2 = Label : : createWithTTF ( ttfConfig ,
2014-02-10 11:21:54 +08:00
" 早上好, Cocos2d-x v3的New Label. " , TextHAlignment : : LEFT , size . width * 0.75 ) ;
2014-02-08 17:15:57 +08:00
label2 - > setColor ( Color3B ( 255 , 128 , 255 ) ) ;
label2 - > setPosition ( Point ( size . width * 0.1 , size . height * 0.4 ) ) ;
label2 - > setAnchorPoint ( Point ( 0 , 0.5 ) ) ;
this - > addChild ( label2 ) ;
auto label3 = Label : : createWithTTF ( ttfConfig ,
" 美好的一天啊美好的一天啊美好的一天啊 " , TextHAlignment : : LEFT , size . width * 0.75 ) ;
label3 - > setColor ( Color3B ( 255 , 255 , 128 ) ) ;
label3 - > setPosition ( Point ( size . width * 0.1 , size . height * 0.2 ) ) ;
label3 - > setAnchorPoint ( Point ( 0 , 0.5 ) ) ;
this - > addChild ( label3 ) ;
}
std : : string LabelTTFCJKWrappingTest : : title ( ) const
{
return " New Label + .TTF " ;
}
std : : string LabelTTFCJKWrappingTest : : subtitle ( ) const
{
return " New Label with CJK + ASCII characters \n "
" Characters should stay in the correct position " ;
}
2013-08-13 04:29:54 +08:00
//
// NewLabelTTF unicode test
//
LabelTTFUnicodeNew : : LabelTTFUnicodeNew ( )
{
2013-12-18 16:03:07 +08:00
auto strings = FileUtils : : getInstance ( ) - > getValueMapFromFile ( " fonts/strings.xml " ) ;
std : : string chinese = strings [ " chinese1 " ] . asString ( ) ;
2013-08-13 04:29:54 +08:00
2013-12-18 16:03:07 +08:00
// std::string russian = strings["russian"].asString();
// std::string spanish = strings["spanish"].asString();
// std::string japanese = strings["japanese"].asString();
2013-08-13 04:29:54 +08:00
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
float vStep = size . height / 9 ;
float vSize = size . height ;
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 45 , GlyphCollection : : ASCII ) ;
2013-08-13 04:29:54 +08:00
// Spanish
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithTTF ( ttfConfig , " Buen día, ¿cómo te llamas? " , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label1 - > setPosition ( Point ( size . width / 2 , vSize - ( vStep * 4.5 ) ) ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
// German
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithTTF ( ttfConfig , " In welcher Straße haben Sie gelebt? " , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label2 - > setPosition ( Point ( size . width / 2 , vSize - ( vStep * 5.5 ) ) ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label2 ) ;
// chinese
2014-01-11 22:33:07 +08:00
ttfConfig . fontFilePath = " fonts/wt021.ttf " ;
ttfConfig . glyphs = GlyphCollection : : CUSTOM ;
ttfConfig . customGlyphs = chinese . c_str ( ) ;
auto label3 = Label : : createWithTTF ( ttfConfig , chinese , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label3 - > setPosition ( Point ( size . width / 2 , vSize - ( vStep * 6.5 ) ) ) ;
2014-01-24 15:02:42 +08:00
label3 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label3 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFUnicodeNew : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + TTF unicode " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFUnicodeNew : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Uses the new Label with TTF. Testing unicode " ;
}
LabelTTFFontsTestNew : : LabelTTFFontsTestNew ( )
{
const char * ttfpaths [ ] = {
" fonts/A Damn Mess.ttf " ,
" fonts/Abberancy.ttf " ,
" fonts/Abduction.ttf " ,
" fonts/American Typewriter.ttf " ,
" fonts/Paint Boy.ttf " ,
" fonts/Schwarzwald Regular.ttf " ,
" fonts/Scissor Cuts.ttf " ,
} ;
# define arraysize(ar) (sizeof(ar) / sizeof(ar[0]))
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( ttfpaths [ 0 ] , 40 , GlyphCollection : : NEHE ) ;
2013-11-13 11:22:34 +08:00
for ( size_t i = 0 ; i < arraysize ( ttfpaths ) ; + + i ) {
2014-01-11 22:33:07 +08:00
ttfConfig . fontFilePath = ttfpaths [ i ] ;
auto label = Label : : createWithTTF ( ttfConfig , ttfpaths [ i ] , TextHAlignment : : CENTER , 0 ) ;
2013-08-13 04:29:54 +08:00
if ( label ) {
label - > setPosition ( Point ( size . width / 2 , ( ( size . height * 0.6 ) / arraysize ( ttfpaths ) * i ) + ( size . height / 5 ) ) ) ;
addChild ( label ) ;
2014-01-24 15:02:42 +08:00
label - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
} else {
log ( " ERROR: Cannot load: %s " , ttfpaths [ i ] ) ;
}
}
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFFontsTestNew : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFFontsTestNew : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " " ;
}
LabelBMFontTestNew : : LabelBMFontTestNew ( )
{
2013-08-16 16:05:27 +08:00
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2013-08-13 04:29:54 +08:00
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithBMFont ( " fonts/bitmapFontTest2.fnt " , " Hello World, this is testing the new Label using fnt file " , TextHAlignment : : CENTER , size . width ) ;
2013-08-13 04:29:54 +08:00
label1 - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-08-13 04:29:54 +08:00
addChild ( label1 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelBMFontTestNew : : title ( ) const
2013-08-13 04:29:54 +08:00
{
return " New Label + FNT " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelBMFontTestNew : : subtitle ( ) const
2013-08-13 04:29:54 +08:00
{
return " Uses the new Label with .FNT file " ;
}
2013-12-13 12:42:15 +08:00
LabelTTFDistanceField : : LabelTTFDistanceField ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 80 , GlyphCollection : : DYNAMIC , nullptr , true ) ;
2013-12-13 12:42:15 +08:00
2014-01-11 22:33:07 +08:00
auto label1 = Label : : createWithTTF ( ttfConfig , " Distance Field " , TextHAlignment : : CENTER , size . width ) ;
2014-01-24 15:02:42 +08:00
label1 - > setPosition ( Point ( size . width / 2 , size . height * 0.6f ) ) ;
2013-12-13 12:42:15 +08:00
label1 - > setColor ( Color3B : : GREEN ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-12-13 12:42:15 +08:00
addChild ( label1 ) ;
auto action = Sequence : : create (
DelayTime : : create ( 1.0f ) ,
ScaleTo : : create ( 6.0f , 5.0f , 5.0f ) ,
ScaleTo : : create ( 6.0f , 1.0f , 1.0f ) ,
nullptr ) ;
label1 - > runAction ( RepeatForever : : create ( action ) ) ;
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithTTF ( ttfConfig , " Distance Field " , TextHAlignment : : CENTER , size . width ) ;
2014-01-24 15:02:42 +08:00
label2 - > setPosition ( Point ( size . width / 2 , size . height * 0.3f ) ) ;
2013-12-13 12:42:15 +08:00
label2 - > setColor ( Color3B : : RED ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-12-13 12:42:15 +08:00
addChild ( label2 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFDistanceField : : title ( ) const
2013-12-13 12:42:15 +08:00
{
return " New Label + .TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFDistanceField : : subtitle ( ) const
2013-12-13 12:42:15 +08:00
{
return " Testing rendering base on DistanceField " ;
}
LabelTTFDistanceFieldEffect : : LabelTTFDistanceFieldEffect ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
auto bg = LayerColor : : create ( Color4B ( 200 , 191 , 231 , 255 ) ) ;
this - > addChild ( bg ) ;
2014-01-11 22:33:07 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 80 , GlyphCollection : : DYNAMIC , nullptr , true ) ;
auto label1 = Label : : createWithTTF ( ttfConfig , " Glow " , TextHAlignment : : CENTER , size . width ) ;
2014-01-24 15:02:42 +08:00
label1 - > setPosition ( Point ( size . width / 2 , size . height * 0.65 ) ) ;
2013-12-13 12:42:15 +08:00
label1 - > setColor ( Color3B : : GREEN ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-12-13 12:42:15 +08:00
label1 - > setLabelEffect ( LabelEffect : : GLOW , Color3B : : YELLOW ) ;
addChild ( label1 ) ;
2014-01-11 22:33:07 +08:00
auto label2 = Label : : createWithTTF ( ttfConfig , " Outline " , TextHAlignment : : CENTER , size . width ) ;
2014-01-24 15:02:42 +08:00
label2 - > setPosition ( Point ( size . width / 2 , size . height * 0.5 ) ) ;
2013-12-13 12:42:15 +08:00
label2 - > setColor ( Color3B : : RED ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-12-13 12:42:15 +08:00
label2 - > setLabelEffect ( LabelEffect : : OUTLINE , Color3B : : BLUE ) ;
addChild ( label2 ) ;
2014-01-11 22:33:07 +08:00
auto label3 = Label : : createWithTTF ( ttfConfig , " Shadow " , TextHAlignment : : CENTER , size . width ) ;
2014-01-24 15:02:42 +08:00
label3 - > setPosition ( Point ( size . width / 2 , size . height * 0.35f ) ) ;
2013-12-13 12:42:15 +08:00
label3 - > setColor ( Color3B : : RED ) ;
2014-01-24 15:02:42 +08:00
label3 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2013-12-13 12:42:15 +08:00
label3 - > setLabelEffect ( LabelEffect : : SHADOW , Color3B : : BLACK ) ;
addChild ( label3 ) ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFDistanceFieldEffect : : title ( ) const
2013-12-13 12:42:15 +08:00
{
return " New Label + .TTF " ;
}
2013-12-19 05:52:10 +08:00
std : : string LabelTTFDistanceFieldEffect : : subtitle ( ) const
2013-12-13 12:42:15 +08:00
{
return " Testing effect base on DistanceField " ;
}
2014-01-16 14:37:07 +08:00
2014-01-16 16:37:29 +08:00
LabelCharMapTest : : LabelCharMapTest ( )
{
_time = 0.0f ;
auto label1 = Label : : createWithCharMap ( " fonts/tuffy_bold_italic-charmap.plist " ) ;
addChild ( label1 , 0 , kTagSprite1 ) ;
label1 - > setPosition ( Point ( 10 , 100 ) ) ;
label1 - > setOpacity ( 200 ) ;
auto label2 = Label : : createWithCharMap ( " fonts/tuffy_bold_italic-charmap.plist " ) ;
addChild ( label2 , 0 , kTagSprite2 ) ;
2014-01-24 15:02:42 +08:00
label2 - > setPosition ( Point ( 10 , 200 ) ) ;
2014-01-16 16:37:29 +08:00
label2 - > setOpacity ( 32 ) ;
schedule ( schedule_selector ( LabelCharMapTest : : step ) ) ;
}
void LabelCharMapTest : : step ( float dt )
{
_time + = dt ;
char string [ 12 ] = { 0 } ;
sprintf ( string , " %2.2f Test " , _time ) ;
auto label1 = ( Label * ) getChildByTag ( kTagSprite1 ) ;
label1 - > setString ( string ) ;
auto label2 = ( Label * ) getChildByTag ( kTagSprite2 ) ;
sprintf ( string , " %d " , ( int ) _time ) ;
label2 - > setString ( string ) ;
}
std : : string LabelCharMapTest : : title ( ) const
{
return " New Label + char map file " ;
}
std : : string LabelCharMapTest : : subtitle ( ) const
{
return " Updating label should be fast. " ;
}
2014-01-24 15:02:42 +08:00
//------------------------------------------------------------------
//
// LabelCharMapColorTest
//
//------------------------------------------------------------------
LabelCharMapColorTest : : LabelCharMapColorTest ( )
{
auto label1 = Label : : createWithCharMap ( " fonts/tuffy_bold_italic-charmap.png " , 48 , 64 , ' ' ) ;
addChild ( label1 , 0 , kTagSprite1 ) ;
label1 - > setPosition ( Point ( 10 , 100 ) ) ;
label1 - > setOpacity ( 200 ) ;
auto label2 = Label : : createWithCharMap ( " fonts/tuffy_bold_italic-charmap.png " , 48 , 64 , ' ' ) ;
addChild ( label2 , 0 , kTagSprite2 ) ;
label2 - > setPosition ( Point ( 10 , 200 ) ) ;
label2 - > setColor ( Color3B : : RED ) ;
auto fade = FadeOut : : create ( 1.0f ) ;
auto fade_in = fade - > reverse ( ) ;
auto cb = CallFunc : : create ( CC_CALLBACK_0 ( LabelCharMapColorTest : : actionFinishCallback , this ) ) ;
auto seq = Sequence : : create ( fade , fade_in , cb , NULL ) ;
auto repeat = RepeatForever : : create ( seq ) ;
label2 - > runAction ( repeat ) ;
_time = 0 ;
schedule ( schedule_selector ( LabelCharMapColorTest : : step ) ) ; //:@selector(step:)];
}
void LabelCharMapColorTest : : actionFinishCallback ( )
{
CCLOG ( " Action finished " ) ;
}
void LabelCharMapColorTest : : step ( float dt )
{
_time + = dt ;
char string [ 12 ] = { 0 } ;
sprintf ( string , " %2.2f Test " , _time ) ;
auto label1 = ( Label * ) getChildByTag ( kTagSprite1 ) ;
label1 - > setString ( string ) ;
auto label2 = ( Label * ) getChildByTag ( kTagSprite2 ) ;
sprintf ( string , " %d " , ( int ) _time ) ;
label2 - > setString ( string ) ;
}
std : : string LabelCharMapColorTest : : title ( ) const
{
return " New Label + CharMap " ;
}
std : : string LabelCharMapColorTest : : subtitle ( ) const
{
return " Opacity + Color should work at the same time " ;
}
2014-01-16 14:37:07 +08:00
LabelCrashTest : : LabelCrashTest ( )
{
auto size = Director : : getInstance ( ) - > getWinSize ( ) ;
TTFConfig ttfConfig ( " fonts/arial.ttf " , 80 , GlyphCollection : : DYNAMIC , nullptr , true ) ;
2014-01-16 15:07:20 +08:00
auto label1 = Label : : createWithTTF ( ttfConfig , " Test崩溃123 " , TextHAlignment : : CENTER , size . width ) ;
2014-01-16 14:37:07 +08:00
label1 - > setPosition ( Point ( size . width / 2 , size . height / 2 ) ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2014-01-16 14:37:07 +08:00
addChild ( label1 ) ;
}
std : : string LabelCrashTest : : title ( ) const
{
return " New Label Crash Test " ;
}
std : : string LabelCrashTest : : subtitle ( ) const
{
2014-01-16 15:07:20 +08:00
return " Not crash and show [Test123] when using unknown character. " ;
2014-01-16 14:37:07 +08:00
}
2014-01-23 16:16:30 +08:00
LabelTTFOldNew : : LabelTTFOldNew ( )
{
auto s = Director : : getInstance ( ) - > getWinSize ( ) ;
2014-01-23 17:11:40 +08:00
float delta = s . height / 4 ;
2014-01-23 16:16:30 +08:00
2014-01-23 17:55:51 +08:00
auto label1 = LabelTTF : : create ( " Cocos2d-x Label Test " , " arial " , 24 ) ;
2014-01-23 17:11:40 +08:00
addChild ( label1 , 0 , kTagBitmapAtlas1 ) ;
2014-01-24 15:02:42 +08:00
label1 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2014-01-23 17:55:51 +08:00
label1 - > setPosition ( Point ( s . width / 2 , delta * 2 ) ) ;
2014-01-23 17:11:40 +08:00
label1 - > setColor ( Color3B : : RED ) ;
2014-01-23 16:16:30 +08:00
TTFConfig ttfConfig ( " fonts/arial.ttf " , 48 ) ;
2014-01-23 17:11:40 +08:00
auto label2 = Label : : createWithTTF ( ttfConfig , " Cocos2d-x Label Test " ) ;
2014-01-23 16:16:30 +08:00
addChild ( label2 , 0 , kTagBitmapAtlas2 ) ;
2014-01-24 15:02:42 +08:00
label2 - > setAnchorPoint ( Point : : ANCHOR_MIDDLE ) ;
2014-01-23 17:55:51 +08:00
label2 - > setPosition ( Point ( s . width / 2 , delta * 2 ) ) ;
2014-01-23 16:16:30 +08:00
}
2014-01-23 16:27:50 +08:00
void LabelTTFOldNew : : onDraw ( )
{
kmMat4 oldMat ;
kmGLGetMatrix ( KM_GL_MODELVIEW , & oldMat ) ;
kmGLLoadMatrix ( & _modelViewTransform ) ;
2014-02-10 11:21:54 +08:00
auto label1 = ( Label * ) getChildByTag ( kTagBitmapAtlas1 ) ;
2014-01-23 16:27:50 +08:00
auto labelSize = label1 - > getContentSize ( ) ;
auto origin = Director : : getInstance ( ) - > getWinSize ( ) ;
origin . width = origin . width / 2 - ( labelSize . width / 2 ) ;
origin . height = origin . height / 2 - ( labelSize . height / 2 ) ;
Point vertices [ 4 ] =
{
Point ( origin . width , origin . height ) ,
Point ( labelSize . width + origin . width , origin . height ) ,
Point ( labelSize . width + origin . width , labelSize . height + origin . height ) ,
Point ( origin . width , labelSize . height + origin . height )
} ;
2014-02-10 11:21:54 +08:00
DrawPrimitives : : setDrawColor4B ( Color4B : : RED . r , Color4B : : RED . g , Color4B : : RED . b , Color4B : : RED . a ) ;
2014-01-23 16:27:50 +08:00
DrawPrimitives : : drawPoly ( vertices , 4 , true ) ;
2014-02-10 11:21:54 +08:00
auto label2 = ( Label * ) getChildByTag ( kTagBitmapAtlas2 ) ;
labelSize = label2 - > getContentSize ( ) ;
origin = Director : : getInstance ( ) - > getWinSize ( ) ;
origin . width = origin . width / 2 - ( labelSize . width / 2 ) ;
origin . height = origin . height / 2 - ( labelSize . height / 2 ) ;
Point vertices2 [ 4 ] =
{
Point ( origin . width , origin . height ) ,
Point ( labelSize . width + origin . width , origin . height ) ,
Point ( labelSize . width + origin . width , labelSize . height + origin . height ) ,
Point ( origin . width , labelSize . height + origin . height )
} ;
DrawPrimitives : : setDrawColor4B ( Color4B : : WHITE . r , Color4B : : WHITE . g , Color4B : : WHITE . b , Color4B : : WHITE . a ) ;
DrawPrimitives : : drawPoly ( vertices2 , 4 , true ) ;
2014-01-23 16:27:50 +08:00
kmGLLoadMatrix ( & oldMat ) ;
}
void LabelTTFOldNew : : draw ( )
{
_renderCmd . init ( _globalZOrder ) ;
_renderCmd . func = CC_CALLBACK_0 ( LabelTTFOldNew : : onDraw , this ) ;
Director : : getInstance ( ) - > getRenderer ( ) - > addCommand ( & _renderCmd ) ;
}
2014-01-23 16:16:30 +08:00
std : : string LabelTTFOldNew : : title ( ) const
{
return " New / Old TTF " ;
}
std : : string LabelTTFOldNew : : subtitle ( ) const
{
return " Comparison between old(red) and new(white) TTF label " ;
}