axmol/cocos/2d/CCAtlasNode.cpp

257 lines
6.4 KiB
C++
Raw Normal View History

2011-03-19 10:34:26 +08:00
/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
CopyRight (c) 2013-2014 Chukong Technologies 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"
Squashed commit of the following: commit a794d107ad85667e3d754f0b6251fc864dfbf288 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 14:33:49 2014 -0700 Yeah... everything compiles on win32 and wp8 commit 4740be6e4a0d16f742c27996e7ab2c100adc76af Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:58:38 2014 -0700 CCIME moved to base and compiles on Android commit ff3e1bf1eb27a01019f4e1b56d1aebbe2d385f72 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:02:57 2014 -0700 compiles Ok for Windows Phone 8 commit 8160a4eb2ecdc61b5bd1cf56b90d2da6f11e3ebd Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 12:25:31 2014 -0700 fixes for Windows Phone 8 commit 418197649efc93032aee0adc205e502101cdb53d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 11:15:13 2014 -0700 Compiles on Win32 commit 08813ed7cf8ac1079ffadeb1ce78ea9e833e1a33 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 10:08:31 2014 -0700 Compiles on linux! commit 118896521e5b335a5257090b6863f1fb2a2002fe Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 09:30:42 2014 -0700 moves cocos/2d/platform -> cocos/platform commit 4fe9319d7717b0c1bccb2db0156eeb86255a89e0 Merge: bd68ec2 511295e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 08:24:41 2014 -0700 Merge remote-tracking branch 'cocos2d/v3' into files commit bd68ec2f0e3a826d8b2f4b60564ba65ce766bc56 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu May 15 19:36:23 2014 -0700 files in the correct directory
2014-05-17 05:36:00 +08:00
#include "renderer/CCTextureAtlas.h"
2014-04-30 08:37:36 +08:00
#include "base/CCDirector.h"
2014-05-10 09:39:25 +08:00
#include "base/CCDirector.h"
Squashed commit of the following: commit a794d107ad85667e3d754f0b6251fc864dfbf288 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 14:33:49 2014 -0700 Yeah... everything compiles on win32 and wp8 commit 4740be6e4a0d16f742c27996e7ab2c100adc76af Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:58:38 2014 -0700 CCIME moved to base and compiles on Android commit ff3e1bf1eb27a01019f4e1b56d1aebbe2d385f72 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:02:57 2014 -0700 compiles Ok for Windows Phone 8 commit 8160a4eb2ecdc61b5bd1cf56b90d2da6f11e3ebd Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 12:25:31 2014 -0700 fixes for Windows Phone 8 commit 418197649efc93032aee0adc205e502101cdb53d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 11:15:13 2014 -0700 Compiles on Win32 commit 08813ed7cf8ac1079ffadeb1ce78ea9e833e1a33 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 10:08:31 2014 -0700 Compiles on linux! commit 118896521e5b335a5257090b6863f1fb2a2002fe Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 09:30:42 2014 -0700 moves cocos/2d/platform -> cocos/platform commit 4fe9319d7717b0c1bccb2db0156eeb86255a89e0 Merge: bd68ec2 511295e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 08:24:41 2014 -0700 Merge remote-tracking branch 'cocos2d/v3' into files commit bd68ec2f0e3a826d8b2f4b60564ba65ce766bc56 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu May 15 19:36:23 2014 -0700 files in the correct directory
2014-05-17 05:36:00 +08:00
#include "renderer/CCTextureCache.h"
2014-05-10 09:39:25 +08:00
#include "renderer/CCRenderer.h"
#include "renderer/CCGLProgram.h"
2012-04-04 21:58:04 +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(nullptr)
, _isOpacityModifyRGB(false)
, _quadsToDraw(0)
, _uniformColor(0)
, _ignoreContentScaleFactor(false)
{
}
AtlasNode::~AtlasNode()
{
CC_SAFE_RELEASE(_textureAtlas);
}
2013-12-05 17:19:01 +08:00
AtlasNode * AtlasNode::create(const std::string& tile, int tileWidth, int tileHeight, int itemsToRender)
{
AtlasNode * ret = new (std::nothrow) AtlasNode();
if (ret->initWithTileFile(tile, tileWidth, tileHeight, itemsToRender))
{
ret->autorelease();
return ret;
}
CC_SAFE_DELETE(ret);
return nullptr;
}
2013-12-05 17:19:01 +08:00
bool AtlasNode::initWithTileFile(const std::string& tile, int tileWidth, int tileHeight, int itemsToRender)
{
CCASSERT(tile.size() > 0, "file size should not be empty");
Texture2D *texture = Director::getInstance()->getTextureCache()->addImage(tile);
2013-02-27 09:38:30 +08:00
return initWithTexture(texture, tileWidth, tileHeight, itemsToRender);
}
2013-12-05 17:19:01 +08:00
bool AtlasNode::initWithTexture(Texture2D* texture, int tileWidth, int tileHeight, int itemsToRender)
2013-02-27 09:38:30 +08:00
{
_itemWidth = tileWidth;
_itemHeight = tileHeight;
_colorUnmodified = Color3B::WHITE;
_isOpacityModifyRGB = true;
_blendFunc = BlendFunc::ALPHA_PREMULTIPLIED;
_textureAtlas = new (std::nothrow) 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
setGLProgramState(GLProgramState::getOrCreateWithGLProgramName(GLProgram::SHADER_NAME_POSITION_TEXTURE_COLOR_NO_MVP));
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(Renderer *renderer, const Mat4 &transform, uint32_t flags)
{
_quadCommand.init(
_globalZOrder,
_textureAtlas->getTexture()->getName(),
getGLProgramState(),
_blendFunc,
_textureAtlas->getQuads(),
_quadsToDraw,
transform);
renderer->addCommand(&_quadCommand);
2012-04-04 21:58:04 +08:00
}
// AtlasNode - RGBA protocol
2013-07-05 17:32:50 +08:00
const Color3B& AtlasNode::getColor() const
{
if(_isOpacityModifyRGB)
{
return _colorUnmodified;
}
return Node::getColor();
2010-07-08 10:26:58 +08:00
}
void AtlasNode::setColor(const Color3B& color3)
2010-07-08 10:26:58 +08:00
{
Color3B 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
}
Node::setColor(tmp);
}
2010-07-08 10:26:58 +08:00
void AtlasNode::setOpacity(GLubyte opacity)
2010-07-08 10:26:58 +08:00
{
Node::setOpacity(opacity);
2010-07-08 10:26:58 +08:00
// special opacity for premultiplied textures
if( _isOpacityModifyRGB )
this->setColor(_colorUnmodified);
}
void AtlasNode::setOpacityModifyRGB(bool value)
{
Color3B oldColor = this->getColor();
_isOpacityModifyRGB = value;
this->setColor(oldColor);
}
bool AtlasNode::isOpacityModifyRGB() const
{
return _isOpacityModifyRGB;
}
void AtlasNode::updateOpacityModifyRGB()
{
_isOpacityModifyRGB = _textureAtlas->getTexture()->hasPremultipliedAlpha();
}
void AtlasNode::setIgnoreContentScaleFactor(bool ignoreContentScaleFactor)
{
_ignoreContentScaleFactor = ignoreContentScaleFactor;
}
// AtlasNode - CocosNodeTexture protocol
const BlendFunc& AtlasNode::getBlendFunc() const
{
return _blendFunc;
}
void AtlasNode::setBlendFunc(const BlendFunc &blendFunc)
{
_blendFunc = blendFunc;
}
void AtlasNode::updateBlendFunc()
{
if( ! _textureAtlas->getTexture()->hasPremultipliedAlpha() )
_blendFunc = BlendFunc::ALPHA_NON_PREMULTIPLIED;
}
void AtlasNode::setTexture(Texture2D *texture)
{
_textureAtlas->setTexture(texture);
this->updateBlendFunc();
this->updateOpacityModifyRGB();
}
Texture2D * AtlasNode::getTexture() const
{
return _textureAtlas->getTexture();
2011-03-19 10:34:26 +08:00
}
void AtlasNode::setTextureAtlas(TextureAtlas* textureAtlas)
2011-03-19 10:34:26 +08:00
{
CC_SAFE_RETAIN(textureAtlas);
CC_SAFE_RELEASE(_textureAtlas);
_textureAtlas = textureAtlas;
2011-03-19 10:34:26 +08:00
}
2012-04-04 21:58:04 +08:00
TextureAtlas * AtlasNode::getTextureAtlas() const
2011-03-19 10:34:26 +08:00
{
return _textureAtlas;
2011-03-19 10:34:26 +08:00
}
2013-12-27 15:06:16 +08:00
ssize_t AtlasNode::getQuadsToDraw() const
2011-07-12 11:20:41 +08:00
{
return _quadsToDraw;
2011-07-12 11:20:41 +08:00
}
2013-12-27 15:06:16 +08:00
void AtlasNode::setQuadsToDraw(ssize_t quadsToDraw)
2011-07-12 11:20:41 +08:00
{
_quadsToDraw = quadsToDraw;
2011-07-12 11:20:41 +08:00
}
2012-04-18 18:43:45 +08:00
NS_CC_END