axmol/cocos2dx/base_nodes/CCAtlasNode.cpp

264 lines
6.6 KiB
C++
Raw Normal View History

2011-03-19 10:34:26 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
2011-03-19 10:34:26 +08:00
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
2011-03-19 10:34:26 +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.
****************************************************************************/
#include "CCAtlasNode.h"
#include "textures/CCTextureAtlas.h"
2013-02-28 11:55:36 +08:00
#include "textures/CCTextureCache.h"
#include "CCDirector.h"
#include "shaders/CCGLProgram.h"
#include "shaders/CCShaderCache.h"
#include "shaders/ccGLStateCache.h"
2012-04-04 21:58:04 +08:00
#include "CCDirector.h"
#include "support/TransformUtils.h"
// external
#include "kazmath/GL/matrix.h"
2011-03-19 10:34:26 +08:00
2012-04-18 18:43:45 +08:00
NS_CC_BEGIN
2011-03-19 10:34:26 +08:00
// implementation AtlasNode
// AtlasNode - Creation & Init
AtlasNode::AtlasNode()
: _itemsPerRow(0)
, _itemsPerColumn(0)
, _itemWidth(0)
, _itemHeight(0)
, _textureAtlas(NULL)
, _isOpacityModifyRGB(false)
, _quadsToDraw(0)
, _uniformColor(0)
, _ignoreContentScaleFactor(false)
{
}
AtlasNode::~AtlasNode()
{
CC_SAFE_RELEASE(_textureAtlas);
}
AtlasNode * AtlasNode::create(const char *tile, unsigned int tileWidth, unsigned int tileHeight,
unsigned int itemsToRender)
{
AtlasNode * pRet = new AtlasNode();
if (pRet->initWithTileFile(tile, tileWidth, tileHeight, itemsToRender))
{
pRet->autorelease();
return pRet;
}
CC_SAFE_DELETE(pRet);
return NULL;
}
bool AtlasNode::initWithTileFile(const char *tile, unsigned int tileWidth, unsigned int tileHeight, unsigned int itemsToRender)
{
CCAssert(tile != NULL, "title should not be null");
Texture2D *texture = TextureCache::sharedTextureCache()->addImage(tile);
2013-02-27 09:38:30 +08:00
return initWithTexture(texture, tileWidth, tileHeight, itemsToRender);
}
bool AtlasNode::initWithTexture(Texture2D* texture, unsigned int tileWidth, unsigned int tileHeight,
2013-02-27 09:38:30 +08:00
unsigned int itemsToRender)
{
_itemWidth = tileWidth;
_itemHeight = tileHeight;
_colorUnmodified = ccWHITE;
_isOpacityModifyRGB = true;
_blendFunc.src = CC_BLEND_SRC;
_blendFunc.dst = CC_BLEND_DST;
_textureAtlas = new TextureAtlas();
_textureAtlas->initWithTexture(texture, itemsToRender);
2012-04-04 21:58:04 +08:00
if (! _textureAtlas)
{
CCLOG("cocos2d: Could not initialize AtlasNode. Invalid Texture.");
return false;
}
this->updateBlendFunc();
this->updateOpacityModifyRGB();
this->calculateMaxItems();
_quadsToDraw = itemsToRender;
2011-07-12 11:20:41 +08:00
// shader stuff
setShaderProgram(ShaderCache::sharedShaderCache()->programForKey(kShader_PositionTexture_uColor));
_uniformColor = glGetUniformLocation( getShaderProgram()->getProgram(), "u_color");
return true;
}
// AtlasNode - Atlas generation
void AtlasNode::calculateMaxItems()
{
Size s = _textureAtlas->getTexture()->getContentSize();
if (_ignoreContentScaleFactor)
{
s = _textureAtlas->getTexture()->getContentSizeInPixels();
}
_itemsPerColumn = (int)(s.height / _itemHeight);
_itemsPerRow = (int)(s.width / _itemWidth);
}
void AtlasNode::updateAtlasValues()
2010-07-08 10:26:58 +08:00
{
CCAssert(false, "CCAtlasNode:Abstract updateAtlasValue not overridden");
}
// AtlasNode - draw
void AtlasNode::draw(void)
{
CC_NODE_DRAW_SETUP();
2012-04-04 21:58:04 +08:00
ccGLBlendFunc( _blendFunc.src, _blendFunc.dst );
2012-04-04 21:58:04 +08:00
2013-02-28 11:55:36 +08:00
GLfloat colors[4] = {_displayedColor.r / 255.0f, _displayedColor.g / 255.0f, _displayedColor.b / 255.0f, _displayedOpacity / 255.0f};
getShaderProgram()->setUniformLocationWith4fv(_uniformColor, colors, 1);
2012-04-04 21:58:04 +08:00
_textureAtlas->drawNumberOfQuads(_quadsToDraw, 0);
}
// AtlasNode - RGBA protocol
const ccColor3B& AtlasNode::getColor()
{
if(_isOpacityModifyRGB)
{
return _colorUnmodified;
}
return NodeRGBA::getColor();
2010-07-08 10:26:58 +08:00
}
void AtlasNode::setColor(const ccColor3B& color3)
2010-07-08 10:26:58 +08:00
{
2013-02-27 09:38:30 +08:00
ccColor3B tmp = color3;
_colorUnmodified = color3;
if( _isOpacityModifyRGB )
{
2013-02-28 11:55:36 +08:00
tmp.r = tmp.r * _displayedOpacity/255;
tmp.g = tmp.g * _displayedOpacity/255;
tmp.b = tmp.b * _displayedOpacity/255;
2013-02-27 09:38:30 +08:00
}
NodeRGBA::setColor(tmp);
}
2010-07-08 10:26:58 +08:00
void AtlasNode::setOpacity(GLubyte opacity)
2010-07-08 10:26:58 +08:00
{
NodeRGBA::setOpacity(opacity);
2010-07-08 10:26:58 +08:00
// special opacity for premultiplied textures
if( _isOpacityModifyRGB )
this->setColor(_colorUnmodified);
}
void AtlasNode::setOpacityModifyRGB(bool bValue)
{
ccColor3B oldColor = this->getColor();
_isOpacityModifyRGB = bValue;
this->setColor(oldColor);
}
bool AtlasNode::isOpacityModifyRGB()
{
return _isOpacityModifyRGB;
}
void AtlasNode::updateOpacityModifyRGB()
{
_isOpacityModifyRGB = _textureAtlas->getTexture()->hasPremultipliedAlpha();
}
void AtlasNode::setIgnoreContentScaleFactor(bool bIgnoreContentScaleFactor)
{
_ignoreContentScaleFactor = bIgnoreContentScaleFactor;
}
// AtlasNode - CocosNodeTexture protocol
const ccBlendFunc& AtlasNode::getBlendFunc() const
{
return _blendFunc;
}
void AtlasNode::setBlendFunc(const ccBlendFunc &blendFunc)
{
_blendFunc = blendFunc;
}
void AtlasNode::updateBlendFunc()
{
if( ! _textureAtlas->getTexture()->hasPremultipliedAlpha() ) {
_blendFunc.src = GL_SRC_ALPHA;
_blendFunc.dst = GL_ONE_MINUS_SRC_ALPHA;
}
}
void AtlasNode::setTexture(Texture2D *texture)
{
_textureAtlas->setTexture(texture);
this->updateBlendFunc();
this->updateOpacityModifyRGB();
}
Texture2D * AtlasNode::getTexture()
{
return _textureAtlas->getTexture();
2011-03-19 10:34:26 +08:00
}
void AtlasNode::setTextureAtlas(TextureAtlas* var)
2011-03-19 10:34:26 +08:00
{
CC_SAFE_RETAIN(var);
CC_SAFE_RELEASE(_textureAtlas);
_textureAtlas = var;
2011-03-19 10:34:26 +08:00
}
2012-04-04 21:58:04 +08:00
TextureAtlas * AtlasNode::getTextureAtlas()
2011-03-19 10:34:26 +08:00
{
return _textureAtlas;
2011-03-19 10:34:26 +08:00
}
unsigned int AtlasNode::getQuadsToDraw()
2011-07-12 11:20:41 +08:00
{
return _quadsToDraw;
2011-07-12 11:20:41 +08:00
}
void AtlasNode::setQuadsToDraw(unsigned int uQuadsToDraw)
2011-07-12 11:20:41 +08:00
{
_quadsToDraw = uQuadsToDraw;
2011-07-12 11:20:41 +08:00
}
2012-04-18 18:43:45 +08:00
NS_CC_END