2013-09-13 22:20:20 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UILabelAtlas.h"
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace gui {
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
UICCLabelAtlas::UICCLabelAtlas()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
UICCLabelAtlas::~UICCLabelAtlas()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
UICCLabelAtlas* UICCLabelAtlas::create()
|
|
|
|
{
|
|
|
|
UICCLabelAtlas *pRet = new UICCLabelAtlas();
|
|
|
|
if(pRet)
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
|
2013-11-14 11:37:46 +08:00
|
|
|
return nullptr;
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
2013-11-08 04:42:16 +08:00
|
|
|
void UICCLabelAtlas::setProperty(const std::string& string, const std::string& charMapFile, unsigned int itemWidth, unsigned int itemHeight, unsigned int startCharMap)
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
|
|
|
initWithString(string, charMapFile, itemWidth, itemHeight, startCharMap);
|
|
|
|
}
|
|
|
|
|
2013-11-08 04:42:16 +08:00
|
|
|
void UICCLabelAtlas::setProperty(const std::string& string, cocos2d::Texture2D *texture, unsigned int itemWidth, unsigned int itemHeight, unsigned int startCharMap)
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
|
|
|
initWithString(string, texture, itemWidth, itemHeight, startCharMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCLabelAtlas::draw()
|
|
|
|
{
|
|
|
|
if (!_textureAtlas)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
cocos2d::AtlasNode::draw();
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void UICCLabelAtlas::updateDisplayedOpacity(GLubyte opacity)
|
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
cocos2d::AtlasNode::setOpacity(opacity);
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UILabelAtlas::UILabelAtlas():
|
2013-11-14 11:37:46 +08:00
|
|
|
_laberAtlasRenderer(nullptr),
|
2013-11-06 16:04:06 +08:00
|
|
|
_stringValue(""),
|
|
|
|
_charMapFileName(""),
|
|
|
|
_itemWidth(0),
|
|
|
|
_itemHeight(0),
|
|
|
|
_startCharMap("")
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
UILabelAtlas::~UILabelAtlas()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
UILabelAtlas* UILabelAtlas::create()
|
|
|
|
{
|
|
|
|
UILabelAtlas* widget = new UILabelAtlas();
|
|
|
|
if (widget && widget->init())
|
|
|
|
{
|
|
|
|
widget->autorelease();
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(widget);
|
2013-11-14 11:37:46 +08:00
|
|
|
return nullptr;
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void UILabelAtlas::initRenderer()
|
|
|
|
{
|
|
|
|
UIWidget::initRenderer();
|
2013-09-16 20:54:13 +08:00
|
|
|
_laberAtlasRenderer = UICCLabelAtlas::create();
|
|
|
|
_renderer->addChild(_laberAtlasRenderer);
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
2013-11-08 04:42:16 +08:00
|
|
|
void UILabelAtlas::setProperty(const std::string& stringValue, const std::string& charMapFile, int itemWidth, int itemHeight, const std::string& startCharMap)
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
_stringValue = stringValue;
|
|
|
|
_charMapFileName = charMapFile;
|
|
|
|
_itemWidth = itemWidth;
|
|
|
|
_itemHeight = itemHeight;
|
|
|
|
_startCharMap = startCharMap;
|
2013-09-16 20:54:13 +08:00
|
|
|
_laberAtlasRenderer->setProperty(stringValue, charMapFile, itemWidth, itemHeight, (int)(startCharMap[0]));
|
2013-09-13 22:20:20 +08:00
|
|
|
updateAnchorPoint();
|
|
|
|
labelAtlasScaleChangedWithSize();
|
|
|
|
}
|
|
|
|
|
2013-11-08 04:42:16 +08:00
|
|
|
void UILabelAtlas::setStringValue(const std::string& value)
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
_stringValue = value;
|
2013-09-16 20:54:13 +08:00
|
|
|
_laberAtlasRenderer->setString(value);
|
2013-09-13 22:20:20 +08:00
|
|
|
labelAtlasScaleChangedWithSize();
|
|
|
|
}
|
|
|
|
|
2013-11-08 04:42:16 +08:00
|
|
|
const std::string& UILabelAtlas::getStringValue() const
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-09-16 20:54:13 +08:00
|
|
|
return _laberAtlasRenderer->getString();
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
void UILabelAtlas::setAnchorPoint(const cocos2d::Point &pt)
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
|
|
|
UIWidget::setAnchorPoint(pt);
|
2013-11-06 16:04:06 +08:00
|
|
|
_laberAtlasRenderer->setAnchorPoint(cocos2d::Point(pt.x, pt.y));
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void UILabelAtlas::onSizeChanged()
|
|
|
|
{
|
|
|
|
labelAtlasScaleChangedWithSize();
|
|
|
|
}
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
const cocos2d::Size& UILabelAtlas::getContentSize() const
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-09-16 20:54:13 +08:00
|
|
|
return _laberAtlasRenderer->getContentSize();
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
cocos2d::Node* UILabelAtlas::getVirtualRenderer()
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-09-16 20:54:13 +08:00
|
|
|
return _laberAtlasRenderer;
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void UILabelAtlas::labelAtlasScaleChangedWithSize()
|
|
|
|
{
|
2013-09-16 15:32:52 +08:00
|
|
|
if (_ignoreSize)
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-09-16 20:54:13 +08:00
|
|
|
_laberAtlasRenderer->setScale(1.0f);
|
|
|
|
_size = _laberAtlasRenderer->getContentSize();
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
cocos2d::Size textureSize = _laberAtlasRenderer->getContentSize();
|
2013-09-13 22:20:20 +08:00
|
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
|
|
{
|
2013-09-16 20:54:13 +08:00
|
|
|
_laberAtlasRenderer->setScale(1.0f);
|
2013-09-13 22:20:20 +08:00
|
|
|
return;
|
|
|
|
}
|
2013-09-16 15:32:52 +08:00
|
|
|
float scaleX = _size.width / textureSize.width;
|
|
|
|
float scaleY = _size.height / textureSize.height;
|
2013-09-16 20:54:13 +08:00
|
|
|
_laberAtlasRenderer->setScaleX(scaleX);
|
|
|
|
_laberAtlasRenderer->setScaleY(scaleY);
|
2013-09-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-17 17:59:20 +08:00
|
|
|
const char* UILabelAtlas::getDescription() const
|
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
return "LabelAtlas";
|
|
|
|
}
|
|
|
|
|
|
|
|
UIWidget* UILabelAtlas::createCloneInstance()
|
|
|
|
{
|
|
|
|
return UILabelAtlas::create();
|
2013-09-17 17:59:20 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
void UILabelAtlas::copySpecialProperties(UIWidget *widget)
|
|
|
|
{
|
|
|
|
UILabelAtlas* labelAtlas = dynamic_cast<UILabelAtlas*>(widget);
|
|
|
|
if (labelAtlas)
|
|
|
|
{
|
2013-11-08 04:42:16 +08:00
|
|
|
setProperty(labelAtlas->_stringValue, labelAtlas->_charMapFileName, labelAtlas->_itemWidth, labelAtlas->_itemHeight, labelAtlas->_startCharMap);
|
2013-11-06 16:04:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|