2011-03-19 10:59:01 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2011-07-04 10:59:35 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2015-03-24 14:12:58 +08:00
|
|
|
Copyright (c) 2013-2015 Chukong Technologies Inc.
|
2014-01-07 11:25:07 +08:00
|
|
|
|
2011-03-19 10:59:01 +08:00
|
|
|
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 __CCLABEL_ATLAS_H__
|
|
|
|
#define __CCLABEL_ATLAS_H__
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCAtlasNode.h"
|
2014-04-22 23:18:23 +08:00
|
|
|
#if CC_LABELATLAS_DEBUG_DRAW
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "renderer/CCCustomCommand.h"
|
2014-11-24 17:21:14 +08:00
|
|
|
#include "2d/CCDrawNode.h"
|
2014-04-22 23:18:23 +08:00
|
|
|
#endif
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
2015-03-24 14:12:58 +08:00
|
|
|
* @addtogroup _2d
|
2012-06-20 18:09:11 +08:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2015-03-19 10:38:12 +08:00
|
|
|
/**
|
|
|
|
* @class LabelAtlas
|
|
|
|
* @brief LabelAtlas is a subclass of AtlasNode.
|
|
|
|
*
|
|
|
|
* It can be as a replacement of Label since it is MUCH faster.
|
|
|
|
*
|
|
|
|
* LabelAtlas versus Label:
|
|
|
|
* - LabelAtlas is MUCH faster than Label.
|
|
|
|
* - LabelAtlas "characters" have a fixed height and width.
|
|
|
|
* - LabelAtlas "characters" can be anything you want since they are taken from an image file.
|
|
|
|
*
|
|
|
|
* A more flexible class is LabelBMFont. It supports variable width characters and it also has a nice editor.
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL LabelAtlas : public AtlasNode, public LabelProtocol
|
2012-04-18 18:43:45 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-03-19 10:38:12 +08:00
|
|
|
/**
|
|
|
|
* Creates an empty LabelAtlas.
|
|
|
|
* User need to call initWithString(...) later to make this object work properly.
|
|
|
|
*/
|
2014-01-09 12:40:51 +08:00
|
|
|
static LabelAtlas* create();
|
|
|
|
|
2015-03-19 10:38:12 +08:00
|
|
|
/** Creates the LabelAtlas with a string, a char map file(the atlas), the width and height of each element and the starting char of the atlas. */
|
2014-01-09 12:40:51 +08:00
|
|
|
static LabelAtlas* create(const std::string& string, const std::string& charMapFile, int itemWidth, int itemHeight, int startCharMap);
|
2012-06-08 15:29:47 +08:00
|
|
|
|
2015-03-19 10:38:12 +08:00
|
|
|
/**
|
|
|
|
* Creates the LabelAtlas with a string and a configuration file.
|
|
|
|
* @since v2.0
|
2012-06-08 15:29:47 +08:00
|
|
|
*/
|
2013-11-07 09:05:13 +08:00
|
|
|
static LabelAtlas* create(const std::string& string, const std::string& fntFile);
|
2010-12-24 17:07:31 +08:00
|
|
|
|
2015-03-19 10:38:12 +08:00
|
|
|
/** Initializes the LabelAtlas with a string, a char map file(the atlas), the width and height of each element and the starting char of the atlas. */
|
2013-12-05 17:19:01 +08:00
|
|
|
bool initWithString(const std::string& string, const std::string& charMapFile, int itemWidth, int itemHeight, int startCharMap);
|
2012-06-08 15:29:47 +08:00
|
|
|
|
2015-03-19 10:38:12 +08:00
|
|
|
/**
|
|
|
|
* Initializes the LabelAtlas with a string and a configuration file.
|
|
|
|
* @since v2.0
|
2012-06-08 15:29:47 +08:00
|
|
|
*/
|
2013-11-07 09:05:13 +08:00
|
|
|
bool initWithString(const std::string& string, const std::string& fntFile);
|
2013-02-27 09:38:30 +08:00
|
|
|
|
2015-03-19 10:38:12 +08:00
|
|
|
/** Initializes the LabelAtlas with a string, a texture, the width and height in points of each element and the starting char of the atlas */
|
2013-12-05 17:19:01 +08:00
|
|
|
bool initWithString(const std::string& string, Texture2D* texture, int itemWidth, int itemHeight, int startCharMap);
|
2013-02-27 09:38:30 +08:00
|
|
|
|
2013-11-08 04:42:16 +08:00
|
|
|
virtual void setString(const std::string &label) override;
|
|
|
|
virtual const std::string& getString(void) const override;
|
2015-03-19 10:38:12 +08:00
|
|
|
|
|
|
|
virtual void updateAtlasValues() override;
|
2013-12-13 06:30:22 +08:00
|
|
|
virtual std::string getDescription() const override;
|
2014-04-23 15:05:02 +08:00
|
|
|
|
|
|
|
#if CC_LABELATLAS_DEBUG_DRAW
|
2014-05-31 07:42:05 +08:00
|
|
|
virtual void draw(Renderer *renderer, const Mat4 &transform, uint32_t flags) override;
|
2014-04-23 15:05:02 +08:00
|
|
|
#endif
|
2010-08-31 11:20:37 +08:00
|
|
|
|
2014-08-21 15:11:33 +08:00
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
2014-01-09 14:16:26 +08:00
|
|
|
LabelAtlas()
|
|
|
|
:_string("")
|
2014-09-11 15:39:56 +08:00
|
|
|
{
|
|
|
|
#if CC_LABELATLAS_DEBUG_DRAW
|
|
|
|
_debugDrawNode = DrawNode::create();
|
|
|
|
addChild(_debugDrawNode);
|
|
|
|
#endif
|
|
|
|
}
|
2014-01-09 14:21:43 +08:00
|
|
|
|
2014-01-09 14:16:26 +08:00
|
|
|
virtual ~LabelAtlas()
|
|
|
|
{
|
|
|
|
_string.clear();
|
|
|
|
}
|
2014-08-21 15:11:33 +08:00
|
|
|
|
|
|
|
protected:
|
2014-03-14 17:36:05 +08:00
|
|
|
virtual void updateColor() override;
|
|
|
|
|
2014-04-22 23:18:23 +08:00
|
|
|
#if CC_LABELATLAS_DEBUG_DRAW
|
2014-09-11 15:39:56 +08:00
|
|
|
DrawNode *_debugDrawNode;
|
2014-04-23 15:05:02 +08:00
|
|
|
#endif
|
2014-04-22 23:18:23 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// string to render
|
2013-06-15 14:03:30 +08:00
|
|
|
std::string _string;
|
2015-03-19 10:38:12 +08:00
|
|
|
// the first char in the char map
|
2013-12-05 17:19:01 +08:00
|
|
|
int _mapStartChar;
|
2012-04-18 18:43:45 +08:00
|
|
|
};
|
|
|
|
|
2015-03-24 14:12:58 +08:00
|
|
|
// end group
|
2012-06-20 18:09:11 +08:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_END
|
2011-03-19 10:59:01 +08:00
|
|
|
|
|
|
|
#endif //__CCLABEL_ATLAS_H__
|