axmol/cocos2dx/layers_scenes_transitions_n.../CCLayer.cpp

726 lines
17 KiB
C++
Raw Normal View History

/****************************************************************************
Copyright (c) 2010-2011 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
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 <stdarg.h>
#include "CCLayer.h"
2010-08-25 10:19:20 +08:00
#include "CCTouchDispatcher.h"
2010-12-13 14:10:39 +08:00
#include "CCKeypadDispatcher.h"
#include "CCAccelerometer.h"
#include "CCDirector.h"
#include "CCPointExtension.h"
2010-10-01 23:04:12 +08:00
namespace cocos2d {
// CCLayer
CCLayer::CCLayer()
2010-08-03 14:50:41 +08:00
:m_bIsTouchEnabled(false)
,m_bIsAccelerometerEnabled(false)
2010-12-13 14:10:39 +08:00
,m_bIsKeypadEnabled(false)
{
m_eTouchDelegateType = ccTouchDelegateAllBit;
setAnchorPoint(ccp(0.5f, 0.5f));
m_bIsRelativeAnchorPoint = false;
}
CCLayer::~CCLayer()
{
}
2010-10-01 23:04:12 +08:00
bool CCLayer::init()
{
bool bRet = false;
do
{
CCDirector * pDirector;
2011-06-10 17:51:37 +08:00
CC_BREAK_IF(!(pDirector = CCDirector::sharedDirector()));
2010-10-01 23:04:12 +08:00
this->setContentSize(pDirector->getWinSize());
m_bIsTouchEnabled = false;
m_bIsAccelerometerEnabled = false;
2010-10-01 23:04:12 +08:00
// success
bRet = true;
2011-06-10 17:51:37 +08:00
} while(0);
2010-10-01 23:04:12 +08:00
return bRet;
}
CCLayer *CCLayer::node()
{
CCLayer *pRet = new CCLayer();
if (pRet && pRet->init())
{
pRet->autorelease();
return pRet;
}
else
{
CC_SAFE_DELETE(pRet)
2010-10-01 23:04:12 +08:00
return NULL;
}
2010-08-03 14:50:41 +08:00
}
/// Touch and Accelerometer related
void CCLayer::registerWithTouchDispatcher()
{
2010-11-16 15:12:09 +08:00
CCTouchDispatcher::sharedDispatcher()->addStandardDelegate(this,0);
}
void CCLayer::destroy(void)
{
this->release();
}
void CCLayer::keep(void)
{
this->retain();
}
void CCLayer::KeypadDestroy()
{
this->release();
}
2010-12-13 14:10:39 +08:00
void CCLayer::KeypadKeep()
{
this->retain();
}
/// isTouchEnabled getter
bool CCLayer::getIsTouchEnabled()
{
return m_bIsTouchEnabled;
}
/// isTouchEnabled setter
void CCLayer::setIsTouchEnabled(bool enabled)
{
if (m_bIsTouchEnabled != enabled)
{
m_bIsTouchEnabled = enabled;
if (m_bIsRunning)
{
if (enabled)
{
this->registerWithTouchDispatcher();
}
else
{
// have problems?
2010-11-16 15:12:09 +08:00
CCTouchDispatcher::sharedDispatcher()->removeDelegate(this);
}
}
}
}
/// isAccelerometerEnabled getter
bool CCLayer::getIsAccelerometerEnabled()
{
return m_bIsAccelerometerEnabled;
}
/// isAccelerometerEnabled setter
void CCLayer::setIsAccelerometerEnabled(bool enabled)
{
if (enabled != m_bIsAccelerometerEnabled)
{
m_bIsAccelerometerEnabled = enabled;
if (m_bIsRunning)
{
if (enabled)
{
2011-08-31 17:14:29 +08:00
CCAccelerometer::sharedAccelerometer()->setDelegate(this);
}
else
{
2011-08-31 17:14:29 +08:00
CCAccelerometer::sharedAccelerometer()->setDelegate(NULL);
}
}
}
}
2010-12-13 14:10:39 +08:00
/// isKeypadEnabled getter
bool CCLayer::getIsKeypadEnabled()
{
return m_bIsKeypadEnabled;
}
/// isKeypadEnabled setter
void CCLayer::setIsKeypadEnabled(bool enabled)
{
if (enabled != m_bIsKeypadEnabled)
{
m_bIsKeypadEnabled = enabled;
if (m_bIsRunning)
{
if (enabled)
{
CCKeypadDispatcher::sharedDispatcher()->addDelegate(this);
}
else
{
CCKeypadDispatcher::sharedDispatcher()->removeDelegate(this);
}
}
}
}
/// Callbacks
void CCLayer::onEnter()
{
// register 'parent' nodes first
// since events are propagated in reverse order
if (m_bIsTouchEnabled)
{
this->registerWithTouchDispatcher();
}
// then iterate over all the children
2010-09-02 14:54:42 +08:00
CCNode::onEnter();
// add this layer to concern the Accelerometer Sensor
if (m_bIsAccelerometerEnabled)
{
2011-08-31 17:14:29 +08:00
CCAccelerometer::sharedAccelerometer()->setDelegate(this);
}
2010-12-13 14:10:39 +08:00
// add this layer to concern the kaypad msg
if (m_bIsKeypadEnabled)
{
CCKeypadDispatcher::sharedDispatcher()->addDelegate(this);
}
}
void CCLayer::onExit()
{
if( m_bIsTouchEnabled )
{
2010-11-16 15:12:09 +08:00
CCTouchDispatcher::sharedDispatcher()->removeDelegate(this);
}
// remove this layer from the delegates who concern Accelerometer Sensor
if (m_bIsAccelerometerEnabled)
{
2011-08-31 17:14:29 +08:00
CCAccelerometer::sharedAccelerometer()->setDelegate(NULL);
}
2010-12-13 14:10:39 +08:00
// remove this layer from the delegates who concern the kaypad msg
if (m_bIsKeypadEnabled)
{
CCKeypadDispatcher::sharedDispatcher()->removeDelegate(this);
}
2010-09-02 14:54:42 +08:00
CCNode::onExit();
}
void CCLayer::onEnterTransitionDidFinish()
{
if (m_bIsAccelerometerEnabled)
{
2011-08-31 17:14:29 +08:00
CCAccelerometer::sharedAccelerometer()->setDelegate(this);
}
CCNode::onEnterTransitionDidFinish();
}
2011-03-18 09:39:34 +08:00
bool CCLayer::ccTouchBegan(CCTouch *pTouch, CCEvent *pEvent)
{
2011-06-10 17:51:37 +08:00
CC_UNUSED_PARAM(pTouch);
CC_UNUSED_PARAM(pEvent);
CCAssert(false, "Layer#ccTouchBegan override me");
2010-07-30 17:18:20 +08:00
return true;
}
void CCLayer::ccTouchesBegan(CCSet *pTouches, CCEvent *pEvent)
2011-06-20 17:31:38 +08:00
{
if (isScriptHandlerExist(CCTOUCHBEGAN))
{
excuteScriptTouchesHandler(CCTOUCHBEGAN, pTouches);
}
}
void CCLayer::ccTouchesEnded(CCSet *pTouches, CCEvent *pEvent)
{
if (isScriptHandlerExist(CCTOUCHENDED))
{
excuteScriptTouchesHandler(CCTOUCHENDED, pTouches);
}
}
void CCLayer::ccTouchesMoved(CCSet *pTouches, CCEvent *pEvent)
{
if (isScriptHandlerExist(CCTOUCHMOVED))
{
excuteScriptTouchesHandler(CCTOUCHMOVED, pTouches);
}
}
void CCLayer::ccTouchesCancelled(CCSet *pTouches, CCEvent *pEvent)
{
if (isScriptHandlerExist(CCTOUCHCANCELLED))
{
excuteScriptTouchesHandler(CCTOUCHCANCELLED, pTouches);
}
}
/// ColorLayer
CCLayerColor::CCLayerColor()
: m_cOpacity(0)
, m_tColor( ccc3(0,0,0) )
{
// default blend function
m_tBlendFunc.src = CC_BLEND_SRC;
m_tBlendFunc.dst = CC_BLEND_DST;
}
CCLayerColor::~CCLayerColor()
{
}
// Opacity and RGB color protocol
/// opacity getter
GLubyte CCLayerColor::getOpacity()
{
return m_cOpacity;
}
/// opacity setter
void CCLayerColor::setOpacity(GLubyte var)
{
m_cOpacity = var;
updateColor();
}
/// color getter
const ccColor3B& CCLayerColor::getColor()
{
return m_tColor;
}
/// color setter
void CCLayerColor::setColor(const ccColor3B& var)
{
m_tColor = var;
updateColor();
}
/// blendFunc getter
ccBlendFunc CCLayerColor::getBlendFunc()
{
return m_tBlendFunc;
}
/// blendFunc setter
void CCLayerColor::setBlendFunc(ccBlendFunc var)
{
m_tBlendFunc = var;
}
CCLayerColor * CCLayerColor::layerWithColorWidthHeight(const ccColor4B& color, GLfloat width, GLfloat height)
{
CCLayerColor * pLayer = new CCLayerColor();
if( pLayer && pLayer->initWithColorWidthHeight(color,width,height))
{
pLayer->autorelease();
return pLayer;
}
CC_SAFE_DELETE(pLayer);
return NULL;
}
CCLayerColor * CCLayerColor::layerWithColor(const ccColor4B& color)
{
CCLayerColor * pLayer = new CCLayerColor();
if(pLayer && pLayer->initWithColor(color))
{
pLayer->autorelease();
return pLayer;
}
CC_SAFE_DELETE(pLayer);
return NULL;
}
bool CCLayerColor::initWithColorWidthHeight(const ccColor4B& color, GLfloat width, GLfloat height)
{
2010-07-21 11:13:32 +08:00
// default blend function
m_tBlendFunc.src = CC_BLEND_SRC;
m_tBlendFunc.dst = CC_BLEND_DST;
2010-07-21 11:13:32 +08:00
m_tColor.r = color.r;
m_tColor.g = color.g;
m_tColor.b = color.b;
m_cOpacity = color.a;
for (unsigned int i=0; i<sizeof(m_pSquareVertices) / sizeof(m_pSquareVertices[0]); i++ )
{
m_pSquareVertices[i].x = 0.0f;
m_pSquareVertices[i].y = 0.0f;
}
2010-07-21 11:13:32 +08:00
this->updateColor();
this->setContentSize(CCSizeMake(width,height));
return true;
}
bool CCLayerColor::initWithColor(const ccColor4B& color)
{
CCSize s = CCDirector::sharedDirector()->getWinSize();
this->initWithColorWidthHeight(color, s.width, s.height);
return true;
}
/// override contentSize
void CCLayerColor::setContentSize(const CCSize& size)
{
m_pSquareVertices[1].x = size.width * CC_CONTENT_SCALE_FACTOR();
m_pSquareVertices[2].y = size.height * CC_CONTENT_SCALE_FACTOR();
m_pSquareVertices[3].x = size.width * CC_CONTENT_SCALE_FACTOR();
m_pSquareVertices[3].y = size.height * CC_CONTENT_SCALE_FACTOR();
2010-09-02 14:54:42 +08:00
CCLayer::setContentSize(size);
}
void CCLayerColor::changeWidthAndHeight(GLfloat w ,GLfloat h)
{
this->setContentSize(CCSizeMake(w, h));
}
void CCLayerColor::changeWidth(GLfloat w)
{
this->setContentSize(CCSizeMake(w, m_tContentSize.height));
}
void CCLayerColor::changeHeight(GLfloat h)
{
this->setContentSize(CCSizeMake(m_tContentSize.width, h));
}
void CCLayerColor::updateColor()
{
for( unsigned int i=0; i < 4; i++ )
{
m_pSquareColors[i].r = m_tColor.r;
m_pSquareColors[i].g = m_tColor.g;
m_pSquareColors[i].b = m_tColor.b;
m_pSquareColors[i].a = m_cOpacity;
2010-07-21 11:13:32 +08:00
}
}
void CCLayerColor::draw()
2011-07-12 11:20:41 +08:00
{
CCLayer::draw();
// Default GL states: GL_TEXTURE_2D, GL_VERTEX_ARRAY, GL_COLOR_ARRAY, GL_TEXTURE_COORD_ARRAY
// Needed states: GL_VERTEX_ARRAY, GL_COLOR_ARRAY
// Unneeded states: GL_TEXTURE_2D, GL_TEXTURE_COORD_ARRAY
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
glDisable(GL_TEXTURE_2D);
2010-07-21 11:13:32 +08:00
glVertexPointer(2, GL_FLOAT, 0, m_pSquareVertices);
glColorPointer(4, GL_UNSIGNED_BYTE, 0, m_pSquareColors);
2010-07-21 11:13:32 +08:00
bool newBlend = false;
if( m_tBlendFunc.src != CC_BLEND_SRC || m_tBlendFunc.dst != CC_BLEND_DST ) {
newBlend = true;
glBlendFunc(m_tBlendFunc.src, m_tBlendFunc.dst);
}
2010-07-21 11:13:32 +08:00
else if( m_cOpacity != 255 ) {
newBlend = true;
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
}
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
if( newBlend )
glBlendFunc(CC_BLEND_SRC, CC_BLEND_DST);
// restore default GL state
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
2010-07-21 11:13:32 +08:00
glEnable(GL_TEXTURE_2D);
}
//
// CCLayerGradient
//
CCLayerGradient* CCLayerGradient::layerWithColor(const ccColor4B& start, const ccColor4B& end)
{
CCLayerGradient * pLayer = new CCLayerGradient();
if( pLayer && pLayer->initWithColor(start, end))
{
pLayer->autorelease();
return pLayer;
}
CC_SAFE_DELETE(pLayer);
return NULL;
}
CCLayerGradient* CCLayerGradient::layerWithColor(const ccColor4B& start, const ccColor4B& end, const CCPoint& v)
{
CCLayerGradient * pLayer = new CCLayerGradient();
if( pLayer && pLayer->initWithColor(start, end, v))
{
pLayer->autorelease();
return pLayer;
}
CC_SAFE_DELETE(pLayer);
return NULL;
}
bool CCLayerGradient::initWithColor(const ccColor4B& start, const ccColor4B& end)
{
return initWithColor(start, end, ccp(0, -1));
}
bool CCLayerGradient::initWithColor(const ccColor4B& start, const ccColor4B& end, const CCPoint& v)
{
m_endColor.r = end.r;
m_endColor.g = end.g;
m_endColor.b = end.b;
m_cEndOpacity = end.a;
m_cStartOpacity = start.a;
m_AlongVector = v;
m_bCompressedInterpolation = true;
return CCLayerColor::initWithColor(ccc4(start.r, start.g, start.b, 255));
}
void CCLayerGradient::updateColor()
{
CCLayerColor::updateColor();
float h = ccpLength(m_AlongVector);
if (h == 0)
return;
double c = sqrt(2.0);
CCPoint u = ccp(m_AlongVector.x / h, m_AlongVector.y / h);
// Compressed Interpolation mode
if (m_bCompressedInterpolation)
{
float h2 = 1 / ( fabsf(u.x) + fabsf(u.y) );
u = ccpMult(u, h2 * (float)c);
}
float opacityf = (float)m_cOpacity / 255.0f;
ccColor4B S = {
(unsigned char) m_tColor.r,
(unsigned char) m_tColor.g,
(unsigned char) m_tColor.b,
(unsigned char) (m_cStartOpacity * opacityf)
};
ccColor4B E = {
(unsigned char) m_endColor.r,
(unsigned char) m_endColor.g,
(unsigned char) m_endColor.b,
(unsigned char) (m_cEndOpacity * opacityf)
};
// (-1, -1)
m_pSquareColors[0].r = (GLubyte) (E.r + (S.r - E.r) * ((c + u.x + u.y) / (2.0f * c)));
m_pSquareColors[0].g = (GLubyte) (E.g + (S.g - E.g) * ((c + u.x + u.y) / (2.0f * c)));
m_pSquareColors[0].b = (GLubyte) (E.b + (S.b - E.b) * ((c + u.x + u.y) / (2.0f * c)));
m_pSquareColors[0].a = (GLubyte) (E.a + (S.a - E.a) * ((c + u.x + u.y) / (2.0f * c)));
// (1, -1)
m_pSquareColors[1].r = (GLubyte) (E.r + (S.r - E.r) * ((c - u.x + u.y) / (2.0f * c)));
m_pSquareColors[1].g = (GLubyte) (E.g + (S.g - E.g) * ((c - u.x + u.y) / (2.0f * c)));
m_pSquareColors[1].b = (GLubyte) (E.b + (S.b - E.b) * ((c - u.x + u.y) / (2.0f * c)));
m_pSquareColors[1].a = (GLubyte) (E.a + (S.a - E.a) * ((c - u.x + u.y) / (2.0f * c)));
// (-1, 1)
m_pSquareColors[2].r = (GLubyte) (E.r + (S.r - E.r) * ((c + u.x - u.y) / (2.0f * c)));
m_pSquareColors[2].g = (GLubyte) (E.g + (S.g - E.g) * ((c + u.x - u.y) / (2.0f * c)));
m_pSquareColors[2].b = (GLubyte) (E.b + (S.b - E.b) * ((c + u.x - u.y) / (2.0f * c)));
m_pSquareColors[2].a = (GLubyte) (E.a + (S.a - E.a) * ((c + u.x - u.y) / (2.0f * c)));
// (1, 1)
m_pSquareColors[3].r = (GLubyte) (E.r + (S.r - E.r) * ((c - u.x - u.y) / (2.0f * c)));
m_pSquareColors[3].g = (GLubyte) (E.g + (S.g - E.g) * ((c - u.x - u.y) / (2.0f * c)));
m_pSquareColors[3].b = (GLubyte) (E.b + (S.b - E.b) * ((c - u.x - u.y) / (2.0f * c)));
m_pSquareColors[3].a = (GLubyte) (E.a + (S.a - E.a) * ((c - u.x - u.y) / (2.0f * c)));
}
const ccColor3B& CCLayerGradient::getStartColor()
{
return m_tColor;
}
void CCLayerGradient::setStartColor(const ccColor3B& color)
{
setColor(color);
}
void CCLayerGradient::setEndColor(const ccColor3B& color)
{
m_endColor = color;
updateColor();
}
const ccColor3B& CCLayerGradient::getEndColor()
{
return m_endColor;
}
void CCLayerGradient::setStartOpacity(GLubyte o)
{
m_cStartOpacity = o;
updateColor();
}
GLubyte CCLayerGradient::getStartOpacity()
{
return m_cStartOpacity;
}
void CCLayerGradient::setEndOpacity(GLubyte o)
{
m_cEndOpacity = o;
updateColor();
}
GLubyte CCLayerGradient::getEndOpacity()
{
return m_cEndOpacity;
}
void CCLayerGradient::setVector(const CCPoint& var)
{
m_AlongVector = var;
updateColor();
}
const CCPoint& CCLayerGradient::getVector()
{
return m_AlongVector;
}
bool CCLayerGradient::getIsCompressedInterpolation()
{
return m_bCompressedInterpolation;
}
void CCLayerGradient::setIsCompressedInterpolation(bool compress)
{
m_bCompressedInterpolation = compress;
updateColor();
}
/// MultiplexLayer
CCLayerMultiplex::CCLayerMultiplex()
: m_nEnabledLayer(0)
, m_pLayers(NULL)
{
}
CCLayerMultiplex::~CCLayerMultiplex()
{
CC_SAFE_RELEASE(m_pLayers);
}
CCLayerMultiplex * CCLayerMultiplex::layerWithLayers(CCLayer * layer, ...)
{
2010-07-21 11:13:32 +08:00
va_list args;
va_start(args,layer);
CCLayerMultiplex * pMultiplexLayer = new CCLayerMultiplex();
if(pMultiplexLayer && pMultiplexLayer->initWithLayers(layer, args))
{
pMultiplexLayer->autorelease();
va_end(args);
return pMultiplexLayer;
}
va_end(args);
CC_SAFE_DELETE(pMultiplexLayer);
return NULL;
}
CCLayerMultiplex * CCLayerMultiplex::layerWithLayer(CCLayer* layer)
2011-05-31 14:04:14 +08:00
{
CCLayerMultiplex * pMultiplexLayer = new CCLayerMultiplex();
2011-05-31 14:04:14 +08:00
pMultiplexLayer->initWithLayer(layer);
pMultiplexLayer->autorelease();
return pMultiplexLayer;
}
void CCLayerMultiplex::addLayer(CCLayer* layer)
2011-05-31 14:04:14 +08:00
{
assert(m_pLayers);
m_pLayers->addObject(layer);
}
bool CCLayerMultiplex::initWithLayer(CCLayer* layer)
2011-05-31 14:04:14 +08:00
{
m_pLayers = new CCMutableArray<CCLayer*>(1);
m_pLayers->addObject(layer);
m_nEnabledLayer = 0;
this->addChild(layer);
return true;
}
2011-06-20 17:31:38 +08:00
bool CCLayerMultiplex::initWithLayers(CCLayer *layer, va_list params)
{
m_pLayers = new CCMutableArray<CCLayer*>(5);
//m_pLayers->retain();
2010-07-21 11:13:32 +08:00
m_pLayers->addObject(layer);
2010-07-21 11:13:32 +08:00
CCLayer *l = va_arg(params,CCLayer*);
while( l ) {
m_pLayers->addObject(l);
l = va_arg(params,CCLayer*);
}
2010-07-21 11:13:32 +08:00
m_nEnabledLayer = 0;
this->addChild(m_pLayers->getObjectAtIndex(m_nEnabledLayer));
return true;
}
void CCLayerMultiplex::switchTo(unsigned int n)
{
CCAssert( n < m_pLayers->count(), "Invalid index in MultiplexLayer switchTo message" );
2010-07-21 11:13:32 +08:00
this->removeChild(m_pLayers->getObjectAtIndex(m_nEnabledLayer), true);
2010-07-21 11:13:32 +08:00
m_nEnabledLayer = n;
2010-07-21 11:13:32 +08:00
this->addChild(m_pLayers->getObjectAtIndex(n));
}
void CCLayerMultiplex::switchToAndReleaseMe(unsigned int n)
{
CCAssert( n < m_pLayers->count(), "Invalid index in MultiplexLayer switchTo message" );
2010-07-21 11:13:32 +08:00
this->removeChild(m_pLayers->getObjectAtIndex(m_nEnabledLayer), true);
2010-07-21 11:13:32 +08:00
//[layers replaceObjectAtIndex:enabledLayer withObject:[NSNull null]];
m_pLayers->replaceObjectAtIndex(m_nEnabledLayer, NULL);
2010-07-21 11:13:32 +08:00
m_nEnabledLayer = n;
2010-07-21 11:13:32 +08:00
this->addChild(m_pLayers->getObjectAtIndex(n));
}
2010-10-01 23:04:12 +08:00
}//namespace cocos2d