2010-12-28 10:23:14 +08:00
|
|
|
/****************************************************************************
|
2012-06-08 14:11:48 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2011-03-19 10:07:16 +08:00
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
2011-07-04 19:20:16 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2010-12-28 10:23:14 +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.
|
|
|
|
****************************************************************************/
|
2011-03-19 10:07:16 +08:00
|
|
|
|
|
|
|
// ideas taken from:
|
2012-04-19 14:35:52 +08:00
|
|
|
// . The ocean spray in your face [Jeff Lander]
|
|
|
|
// http://www.double.co.nz/dust/col0798.pdf
|
|
|
|
// . Building an Advanced Particle System [John van der Burg]
|
|
|
|
// http://www.gamasutra.com/features/20000623/vanderburg_01.htm
|
2011-03-19 10:07:16 +08:00
|
|
|
// . LOVE game engine
|
2012-04-19 14:35:52 +08:00
|
|
|
// http://love2d.org/
|
2011-03-19 10:07:16 +08:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Radius mode support, from 71 squared
|
2012-04-19 14:35:52 +08:00
|
|
|
// http://particledesigner.71squared.com/
|
2011-03-19 10:07:16 +08:00
|
|
|
//
|
|
|
|
// IMPORTANT: Particle Designer is supported by cocos2d, but
|
|
|
|
// 'Radius Mode' in Particle Designer uses a fixed emit rate of 30 hz. Since that can't be guarateed in cocos2d,
|
|
|
|
// cocos2d uses a another approach, but the results are almost identical.
|
|
|
|
//
|
|
|
|
|
2010-12-28 10:23:14 +08:00
|
|
|
#include "CCParticleSystem.h"
|
2012-03-14 14:55:17 +08:00
|
|
|
#include "CCParticleBatchNode.h"
|
2010-12-28 10:23:14 +08:00
|
|
|
#include "ccTypes.h"
|
|
|
|
#include "CCTextureCache.h"
|
2012-03-14 14:55:17 +08:00
|
|
|
#include "CCTextureAtlas.h"
|
2010-12-28 10:23:14 +08:00
|
|
|
#include "support/base64.h"
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCPointExtension.h"
|
|
|
|
#include "CCFileUtils.h"
|
|
|
|
#include "CCImage.h"
|
2010-12-28 10:23:14 +08:00
|
|
|
#include "platform/platform.h"
|
2010-12-31 14:56:24 +08:00
|
|
|
#include "support/zip_support/ZipUtils.h"
|
2011-11-28 17:28:43 +08:00
|
|
|
#include "CCDirector.h"
|
2012-03-14 14:55:17 +08:00
|
|
|
#include "support/CCProfiling.h"
|
2011-03-19 10:07:16 +08:00
|
|
|
// opengl
|
2012-04-25 16:18:04 +08:00
|
|
|
#include "CCGL.h"
|
2011-03-19 10:07:16 +08:00
|
|
|
|
2010-12-28 10:23:14 +08:00
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_BEGIN
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
// ideas taken from:
|
2012-04-19 14:35:52 +08:00
|
|
|
// . The ocean spray in your face [Jeff Lander]
|
|
|
|
// http://www.double.co.nz/dust/col0798.pdf
|
|
|
|
// . Building an Advanced Particle System [John van der Burg]
|
|
|
|
// http://www.gamasutra.com/features/20000623/vanderburg_01.htm
|
2010-12-27 17:39:15 +08:00
|
|
|
// . LOVE game engine
|
2012-04-19 14:35:52 +08:00
|
|
|
// http://love2d.org/
|
2010-12-27 17:39:15 +08:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Radius mode support, from 71 squared
|
2012-04-19 14:35:52 +08:00
|
|
|
// http://particledesigner.71squared.com/
|
2010-12-27 17:39:15 +08:00
|
|
|
//
|
|
|
|
// IMPORTANT: Particle Designer is supported by cocos2d, but
|
|
|
|
// 'Radius Mode' in Particle Designer uses a fixed emit rate of 30 hz. Since that can't be guarateed in cocos2d,
|
|
|
|
// cocos2d uses a another approach, but the results are almost identical.
|
|
|
|
//
|
|
|
|
|
|
|
|
CCParticleSystem::CCParticleSystem()
|
2012-04-19 14:35:52 +08:00
|
|
|
:m_sPlistFile("")
|
|
|
|
,m_fElapsed(0)
|
|
|
|
,m_pParticles(NULL)
|
|
|
|
,m_fEmitCounter(0)
|
|
|
|
,m_uParticleIdx(0)
|
|
|
|
,m_bIsActive(true)
|
|
|
|
,m_uParticleCount(0)
|
|
|
|
,m_fDuration(0)
|
|
|
|
,m_tSourcePosition(CCPointZero)
|
|
|
|
,m_tPosVar(CCPointZero)
|
|
|
|
,m_fLife(0)
|
|
|
|
,m_fLifeVar(0)
|
|
|
|
,m_fAngle(0)
|
|
|
|
,m_fAngleVar(0)
|
|
|
|
,m_fStartSize(0)
|
|
|
|
,m_fStartSizeVar(0)
|
|
|
|
,m_fEndSize(0)
|
|
|
|
,m_fEndSizeVar(0)
|
|
|
|
,m_fStartSpin(0)
|
|
|
|
,m_fStartSpinVar(0)
|
|
|
|
,m_fEndSpin(0)
|
|
|
|
,m_fEndSpinVar(0)
|
|
|
|
,m_fEmissionRate(0)
|
|
|
|
,m_uTotalParticles(0)
|
|
|
|
,m_pTexture(NULL)
|
2012-06-08 14:11:48 +08:00
|
|
|
,m_bOpacityModifyRGB(false)
|
2012-04-19 14:35:52 +08:00
|
|
|
,m_bIsBlendAdditive(false)
|
|
|
|
,m_ePositionType(kCCPositionTypeFree)
|
|
|
|
,m_bIsAutoRemoveOnFinish(false)
|
|
|
|
,m_nEmitterMode(kCCParticleModeGravity)
|
|
|
|
,m_pBatchNode(NULL)
|
|
|
|
,m_uAtlasIndex(0)
|
|
|
|
,m_bTransformSystemDirty(false)
|
|
|
|
,m_uAllocatedParticles(0)
|
|
|
|
{
|
|
|
|
modeA.gravity = CCPointZero;
|
|
|
|
modeA.speed = 0;
|
|
|
|
modeA.speedVar = 0;
|
|
|
|
modeA.tangentialAccel = 0;
|
|
|
|
modeA.tangentialAccelVar = 0;
|
|
|
|
modeA.radialAccel = 0;
|
|
|
|
modeA.radialAccelVar = 0;
|
|
|
|
modeB.startRadius = 0;
|
|
|
|
modeB.startRadiusVar = 0;
|
|
|
|
modeB.endRadius = 0;
|
|
|
|
modeB.endRadiusVar = 0;
|
|
|
|
modeB.rotatePerSecond = 0;
|
|
|
|
modeB.rotatePerSecondVar = 0;
|
|
|
|
m_tBlendFunc.src = CC_BLEND_SRC;
|
|
|
|
m_tBlendFunc.dst = CC_BLEND_DST;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
// implementation CCParticleSystem
|
2012-06-14 17:18:05 +08:00
|
|
|
CCParticleSystem * CCParticleSystem::particleWithFile(const char *plistFile)
|
|
|
|
{
|
|
|
|
return CCParticleSystem::create(plistFile);
|
|
|
|
}
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
CCParticleSystem * CCParticleSystem::create(const char *plistFile)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCParticleSystem *pRet = new CCParticleSystem();
|
|
|
|
if (pRet && pRet->initWithFile(plistFile))
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
return pRet;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-03-16 13:42:53 +08:00
|
|
|
|
|
|
|
bool CCParticleSystem::init()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return initWithTotalParticles(150);
|
2012-03-16 13:42:53 +08:00
|
|
|
}
|
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
bool CCParticleSystem::initWithFile(const char *plistFile)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
bool bRet = false;
|
2012-06-08 16:22:57 +08:00
|
|
|
m_sPlistFile = CCFileUtils::sharedFileUtils()->fullPathFromRelativePath(plistFile);
|
2012-06-14 16:05:58 +08:00
|
|
|
CCDictionary *dict = CCDictionary::createWithContentsOfFileThreadSafe(m_sPlistFile.c_str());
|
2010-12-27 17:39:15 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( dict != NULL, "Particles: file not found");
|
|
|
|
bRet = this->initWithDictionary(dict);
|
|
|
|
dict->release();
|
2011-11-15 10:41:18 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return bRet;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
|
2012-03-20 15:04:53 +08:00
|
|
|
bool CCParticleSystem::initWithDictionary(CCDictionary *dictionary)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
bool bRet = false;
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
unsigned char *deflated = NULL;
|
|
|
|
CCImage *image = NULL;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
int maxParticles = dictionary->valueForKey("maxParticles")->intValue();
|
|
|
|
// self, not super
|
|
|
|
if(this->initWithTotalParticles(maxParticles))
|
|
|
|
{
|
|
|
|
// angle
|
|
|
|
m_fAngle = dictionary->valueForKey("angle")->floatValue();
|
|
|
|
m_fAngleVar = dictionary->valueForKey("angleVariance")->floatValue();
|
|
|
|
|
|
|
|
// duration
|
|
|
|
m_fDuration = dictionary->valueForKey("duration")->floatValue();
|
|
|
|
|
|
|
|
// blend function
|
|
|
|
m_tBlendFunc.src = dictionary->valueForKey("blendFuncSource")->intValue();
|
|
|
|
m_tBlendFunc.dst = dictionary->valueForKey("blendFuncDestination")->intValue();
|
|
|
|
|
|
|
|
// color
|
|
|
|
m_tStartColor.r = dictionary->valueForKey("startColorRed")->floatValue();
|
|
|
|
m_tStartColor.g = dictionary->valueForKey("startColorGreen")->floatValue();
|
|
|
|
m_tStartColor.b = dictionary->valueForKey("startColorBlue")->floatValue();
|
|
|
|
m_tStartColor.a = dictionary->valueForKey("startColorAlpha")->floatValue();
|
|
|
|
|
|
|
|
m_tStartColorVar.r = dictionary->valueForKey("startColorVarianceRed")->floatValue();
|
|
|
|
m_tStartColorVar.g = dictionary->valueForKey("startColorVarianceGreen")->floatValue();
|
|
|
|
m_tStartColorVar.b = dictionary->valueForKey("startColorVarianceBlue")->floatValue();
|
|
|
|
m_tStartColorVar.a = dictionary->valueForKey("startColorVarianceAlpha")->floatValue();
|
|
|
|
|
|
|
|
m_tEndColor.r = dictionary->valueForKey("finishColorRed")->floatValue();
|
|
|
|
m_tEndColor.g = dictionary->valueForKey("finishColorGreen")->floatValue();
|
|
|
|
m_tEndColor.b = dictionary->valueForKey("finishColorBlue")->floatValue();
|
|
|
|
m_tEndColor.a = dictionary->valueForKey("finishColorAlpha")->floatValue();
|
|
|
|
|
|
|
|
m_tEndColorVar.r = dictionary->valueForKey("finishColorVarianceRed")->floatValue();
|
|
|
|
m_tEndColorVar.g = dictionary->valueForKey("finishColorVarianceGreen")->floatValue();
|
|
|
|
m_tEndColorVar.b = dictionary->valueForKey("finishColorVarianceBlue")->floatValue();
|
|
|
|
m_tEndColorVar.a = dictionary->valueForKey("finishColorVarianceAlpha")->floatValue();
|
|
|
|
|
|
|
|
// particle size
|
|
|
|
m_fStartSize = dictionary->valueForKey("startParticleSize")->floatValue();
|
|
|
|
m_fStartSizeVar = dictionary->valueForKey("startParticleSizeVariance")->floatValue();
|
|
|
|
m_fEndSize = dictionary->valueForKey("finishParticleSize")->floatValue();
|
|
|
|
m_fEndSizeVar = dictionary->valueForKey("finishParticleSizeVariance")->floatValue();
|
|
|
|
|
|
|
|
// position
|
2012-04-14 19:11:57 +08:00
|
|
|
float x = dictionary->valueForKey("sourcePositionx")->floatValue();
|
|
|
|
float y = dictionary->valueForKey("sourcePositiony")->floatValue();
|
2012-04-19 14:35:52 +08:00
|
|
|
this->setPosition( ccp(x,y) );
|
2012-04-14 19:11:57 +08:00
|
|
|
m_tPosVar.x = dictionary->valueForKey("sourcePositionVariancex")->floatValue();
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tPosVar.y = dictionary->valueForKey("sourcePositionVariancey")->floatValue();
|
2010-12-27 17:39:15 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// Spinning
|
|
|
|
m_fStartSpin = dictionary->valueForKey("rotationStart")->floatValue();
|
|
|
|
m_fStartSpinVar = dictionary->valueForKey("rotationStartVariance")->floatValue();
|
|
|
|
m_fEndSpin= dictionary->valueForKey("rotationEnd")->floatValue();
|
|
|
|
m_fEndSpinVar= dictionary->valueForKey("rotationEndVariance")->floatValue();
|
2011-07-04 19:20:16 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
m_nEmitterMode = dictionary->valueForKey("emitterType")->intValue();
|
2010-12-27 17:39:15 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// Mode A: Gravity + tangential accel + radial accel
|
|
|
|
if( m_nEmitterMode == kCCParticleModeGravity )
|
|
|
|
{
|
|
|
|
// gravity
|
|
|
|
modeA.gravity.x = dictionary->valueForKey("gravityx")->floatValue();
|
|
|
|
modeA.gravity.y = dictionary->valueForKey("gravityy")->floatValue();
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// speed
|
|
|
|
modeA.speed = dictionary->valueForKey("speed")->floatValue();
|
|
|
|
modeA.speedVar = dictionary->valueForKey("speedVariance")->floatValue();
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// radial acceleration
|
2012-04-14 19:11:57 +08:00
|
|
|
modeA.radialAccel = dictionary->valueForKey("radialAcceleration")->floatValue();
|
2012-04-19 14:35:52 +08:00
|
|
|
modeA.radialAccelVar = dictionary->valueForKey("radialAccelVariance")->floatValue();
|
|
|
|
|
|
|
|
// tangential acceleration
|
|
|
|
modeA.tangentialAccel = dictionary->valueForKey("tangentialAcceleration")->floatValue();
|
|
|
|
modeA.tangentialAccelVar = dictionary->valueForKey("tangentialAccelVariance")->floatValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
// or Mode B: radius movement
|
|
|
|
else if( m_nEmitterMode == kCCParticleModeRadius )
|
|
|
|
{
|
|
|
|
modeB.startRadius = dictionary->valueForKey("maxRadius")->floatValue();
|
|
|
|
modeB.startRadiusVar = dictionary->valueForKey("maxRadiusVariance")->floatValue();
|
|
|
|
modeB.endRadius = dictionary->valueForKey("minRadius")->floatValue();
|
|
|
|
modeB.endRadiusVar = 0.0f;
|
|
|
|
modeB.rotatePerSecond = dictionary->valueForKey("rotatePerSecond")->floatValue();
|
|
|
|
modeB.rotatePerSecondVar = dictionary->valueForKey("rotatePerSecondVariance")->floatValue();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
CCAssert( false, "Invalid emitterType in config file");
|
|
|
|
CC_BREAK_IF(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// life span
|
|
|
|
m_fLife = dictionary->valueForKey("particleLifespan")->floatValue();
|
|
|
|
m_fLifeVar = dictionary->valueForKey("particleLifespanVariance")->floatValue();
|
|
|
|
|
|
|
|
// emission Rate
|
|
|
|
m_fEmissionRate = m_uTotalParticles / m_fLife;
|
|
|
|
|
|
|
|
//don't get the internal texture if a batchNode is used
|
|
|
|
if (!m_pBatchNode)
|
|
|
|
{
|
2012-06-12 01:43:07 +08:00
|
|
|
// Set a compatible default for the alpha transfer
|
2012-06-08 14:11:48 +08:00
|
|
|
m_bOpacityModifyRGB = false;
|
|
|
|
|
2012-04-24 15:02:18 +08:00
|
|
|
// texture
|
|
|
|
// Try to get the texture from the cache
|
|
|
|
const char* textureName = dictionary->valueForKey("textureFileName")->getCString();
|
2012-06-08 16:22:57 +08:00
|
|
|
std::string fullpath = CCFileUtils::sharedFileUtils()->fullPathFromRelativeFile(textureName, m_sPlistFile.c_str());
|
2012-04-24 15:02:18 +08:00
|
|
|
|
|
|
|
CCTexture2D *tex = NULL;
|
|
|
|
|
|
|
|
if (strlen(textureName) > 0)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-04-24 15:02:18 +08:00
|
|
|
// set not pop-up message box when load image failed
|
2012-06-15 16:47:30 +08:00
|
|
|
bool bNotify = CCFileUtils::sharedFileUtils()->isPopupNotify();
|
|
|
|
CCFileUtils::sharedFileUtils()->popupNotify(false);
|
2012-04-24 15:02:18 +08:00
|
|
|
tex = CCTextureCache::sharedTextureCache()->addImage(fullpath.c_str());
|
|
|
|
|
|
|
|
// reset the value of UIImage notify
|
2012-06-15 16:47:30 +08:00
|
|
|
CCFileUtils::sharedFileUtils()->popupNotify(bNotify);
|
2012-04-24 15:02:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tex)
|
|
|
|
{
|
|
|
|
setTexture(tex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char *textureData = dictionary->valueForKey("textureImageData")->getCString();
|
|
|
|
CCAssert(textureData, "");
|
|
|
|
|
|
|
|
int dataLen = strlen(textureData);
|
|
|
|
if(dataLen != 0)
|
|
|
|
{
|
|
|
|
// if it fails, try to get it from the base64-gzipped data
|
|
|
|
int decodeLen = base64Decode((unsigned char*)textureData, (unsigned int)dataLen, &buffer);
|
|
|
|
CCAssert( buffer != NULL, "CCParticleSystem: error decoding textureImageData");
|
|
|
|
CC_BREAK_IF(!buffer);
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
int deflatedLen = ZipUtils::ccInflateMemory(buffer, decodeLen, &deflated);
|
|
|
|
CCAssert( deflated != NULL, "CCParticleSystem: error ungzipping textureImageData");
|
|
|
|
CC_BREAK_IF(!deflated);
|
|
|
|
|
2012-05-23 11:26:21 +08:00
|
|
|
// For android, we should retain it in VolatileTexture::addCCImage which invoked in CCTextureCache::sharedTextureCache()->addUIImage()
|
2012-04-19 14:35:52 +08:00
|
|
|
image = new CCImage();
|
|
|
|
bool isOK = image->initWithImageData(deflated, deflatedLen);
|
|
|
|
CCAssert(isOK, "CCParticleSystem: error init image with Data");
|
|
|
|
CC_BREAK_IF(!isOK);
|
|
|
|
|
|
|
|
setTexture(CCTextureCache::sharedTextureCache()->addUIImage(image, fullpath.c_str()));
|
2012-05-23 11:18:04 +08:00
|
|
|
|
|
|
|
image->release();
|
2012-04-24 15:02:18 +08:00
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2012-04-24 15:02:18 +08:00
|
|
|
CCAssert( this->m_pTexture != NULL, "CCParticleSystem: error loading the texture");
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
bRet = true;
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
CC_SAFE_DELETE_ARRAY(buffer);
|
2011-03-19 10:07:16 +08:00
|
|
|
CC_SAFE_DELETE_ARRAY(deflated);
|
2012-04-19 14:35:52 +08:00
|
|
|
return bRet;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-07-04 19:20:16 +08:00
|
|
|
bool CCParticleSystem::initWithTotalParticles(unsigned int numberOfParticles)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_uTotalParticles = numberOfParticles;
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-03-16 13:42:53 +08:00
|
|
|
CC_SAFE_FREE(m_pParticles);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
m_pParticles = (tCCParticle*)calloc(m_uTotalParticles, sizeof(tCCParticle));
|
|
|
|
|
|
|
|
if( ! m_pParticles )
|
|
|
|
{
|
|
|
|
CCLOG("Particle system: not enough memory");
|
|
|
|
this->release();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_uAllocatedParticles = numberOfParticles;
|
|
|
|
|
|
|
|
if (m_pBatchNode)
|
|
|
|
{
|
2012-05-29 17:11:33 +08:00
|
|
|
for (unsigned int i = 0; i < m_uTotalParticles; i++)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
m_pParticles[i].atlasIndex=i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// default, active
|
|
|
|
m_bIsActive = true;
|
|
|
|
|
|
|
|
// default blend function
|
|
|
|
m_tBlendFunc.src = CC_BLEND_SRC;
|
|
|
|
m_tBlendFunc.dst = CC_BLEND_DST;
|
|
|
|
|
|
|
|
// default movement type;
|
|
|
|
m_ePositionType = kCCPositionTypeFree;
|
|
|
|
|
|
|
|
// by default be in mode A:
|
|
|
|
m_nEmitterMode = kCCParticleModeGravity;
|
|
|
|
|
|
|
|
// default: modulate
|
|
|
|
// XXX: not used
|
|
|
|
// colorModulate = YES;
|
|
|
|
|
|
|
|
m_bIsAutoRemoveOnFinish = false;
|
|
|
|
|
|
|
|
// Optimization: compile udpateParticle method
|
|
|
|
//updateParticleSel = @selector(updateQuadWithParticle:newPosition:);
|
|
|
|
//updateParticleImp = (CC_UPDATE_PARTICLE_IMP) [self methodForSelector:updateParticleSel];
|
|
|
|
//for batchNode
|
|
|
|
m_bTransformSystemDirty = false;
|
|
|
|
// udpate after action in run!
|
|
|
|
this->scheduleUpdateWithPriority(1);
|
|
|
|
|
|
|
|
return true;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
CCParticleSystem::~CCParticleSystem()
|
|
|
|
{
|
2012-06-08 14:11:48 +08:00
|
|
|
unscheduleUpdate();
|
2012-03-16 13:42:53 +08:00
|
|
|
CC_SAFE_FREE(m_pParticles);
|
2012-04-19 14:35:52 +08:00
|
|
|
CC_SAFE_RELEASE(m_pTexture);
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-03-14 14:55:17 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
bool CCParticleSystem::addParticle()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
if (this->isFull())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
tCCParticle * particle = &m_pParticles[ m_uParticleCount ];
|
|
|
|
this->initParticle(particle);
|
|
|
|
++m_uParticleCount;
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return true;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::initParticle(tCCParticle* particle)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// timeToLive
|
|
|
|
// no negative life. prevent division by 0
|
|
|
|
particle->timeToLive = m_fLife + m_fLifeVar * CCRANDOM_MINUS1_1();
|
|
|
|
particle->timeToLive = MAX(0, particle->timeToLive);
|
|
|
|
|
|
|
|
// position
|
|
|
|
particle->pos.x = m_tSourcePosition.x + m_tPosVar.x * CCRANDOM_MINUS1_1();
|
|
|
|
|
|
|
|
particle->pos.y = m_tSourcePosition.y + m_tPosVar.y * CCRANDOM_MINUS1_1();
|
|
|
|
|
|
|
|
|
|
|
|
// Color
|
|
|
|
ccColor4F start;
|
|
|
|
start.r = clampf(m_tStartColor.r + m_tStartColorVar.r * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
start.g = clampf(m_tStartColor.g + m_tStartColorVar.g * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
start.b = clampf(m_tStartColor.b + m_tStartColorVar.b * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
start.a = clampf(m_tStartColor.a + m_tStartColorVar.a * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
|
|
|
|
ccColor4F end;
|
|
|
|
end.r = clampf(m_tEndColor.r + m_tEndColorVar.r * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
end.g = clampf(m_tEndColor.g + m_tEndColorVar.g * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
end.b = clampf(m_tEndColor.b + m_tEndColorVar.b * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
end.a = clampf(m_tEndColor.a + m_tEndColorVar.a * CCRANDOM_MINUS1_1(), 0, 1);
|
|
|
|
|
|
|
|
particle->color = start;
|
|
|
|
particle->deltaColor.r = (end.r - start.r) / particle->timeToLive;
|
|
|
|
particle->deltaColor.g = (end.g - start.g) / particle->timeToLive;
|
|
|
|
particle->deltaColor.b = (end.b - start.b) / particle->timeToLive;
|
|
|
|
particle->deltaColor.a = (end.a - start.a) / particle->timeToLive;
|
|
|
|
|
|
|
|
// size
|
|
|
|
float startS = m_fStartSize + m_fStartSizeVar * CCRANDOM_MINUS1_1();
|
|
|
|
startS = MAX(0, startS); // No negative value
|
|
|
|
|
|
|
|
particle->size = startS;
|
|
|
|
|
|
|
|
if( m_fEndSize == kCCParticleStartSizeEqualToEndSize )
|
|
|
|
{
|
|
|
|
particle->deltaSize = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float endS = m_fEndSize + m_fEndSizeVar * CCRANDOM_MINUS1_1();
|
|
|
|
endS = MAX(0, endS); // No negative values
|
|
|
|
particle->deltaSize = (endS - startS) / particle->timeToLive;
|
|
|
|
}
|
|
|
|
|
|
|
|
// rotation
|
|
|
|
float startA = m_fStartSpin + m_fStartSpinVar * CCRANDOM_MINUS1_1();
|
|
|
|
float endA = m_fEndSpin + m_fEndSpinVar * CCRANDOM_MINUS1_1();
|
|
|
|
particle->rotation = startA;
|
|
|
|
particle->deltaRotation = (endA - startA) / particle->timeToLive;
|
|
|
|
|
|
|
|
// position
|
|
|
|
if( m_ePositionType == kCCPositionTypeFree )
|
|
|
|
{
|
|
|
|
particle->startPos = this->convertToWorldSpace(CCPointZero);
|
|
|
|
}
|
2010-12-27 17:39:15 +08:00
|
|
|
else if ( m_ePositionType == kCCPositionTypeRelative )
|
|
|
|
{
|
2012-03-14 14:55:17 +08:00
|
|
|
particle->startPos = m_tPosition;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// direction
|
|
|
|
float a = CC_DEGREES_TO_RADIANS( m_fAngle + m_fAngleVar * CCRANDOM_MINUS1_1() );
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// Mode Gravity: A
|
2012-04-24 15:02:18 +08:00
|
|
|
if (m_nEmitterMode == kCCParticleModeGravity)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
CCPoint v(cosf( a ), sinf( a ));
|
|
|
|
float s = modeA.speed + modeA.speedVar * CCRANDOM_MINUS1_1();
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// direction
|
|
|
|
particle->modeA.dir = ccpMult( v, s );
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// radial accel
|
|
|
|
particle->modeA.radialAccel = modeA.radialAccel + modeA.radialAccelVar * CCRANDOM_MINUS1_1();
|
2012-03-14 14:55:17 +08:00
|
|
|
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// tangential accel
|
|
|
|
particle->modeA.tangentialAccel = modeA.tangentialAccel + modeA.tangentialAccelVar * CCRANDOM_MINUS1_1();
|
2012-03-14 14:55:17 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// Mode Radius: B
|
2012-04-24 15:02:18 +08:00
|
|
|
else
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// Set the default diameter of the particle from the source position
|
|
|
|
float startRadius = modeB.startRadius + modeB.startRadiusVar * CCRANDOM_MINUS1_1();
|
|
|
|
float endRadius = modeB.endRadius + modeB.endRadiusVar * CCRANDOM_MINUS1_1();
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
particle->modeB.radius = startRadius;
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-24 15:02:18 +08:00
|
|
|
if(modeB.endRadius == kCCParticleStartRadiusEqualToEndRadius)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
particle->modeB.deltaRadius = 0;
|
2012-04-24 15:02:18 +08:00
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
else
|
2012-04-24 15:02:18 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
particle->modeB.deltaRadius = (endRadius - startRadius) / particle->timeToLive;
|
2012-04-24 15:02:18 +08:00
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
particle->modeB.angle = a;
|
|
|
|
particle->modeB.degreesPerSecond = CC_DEGREES_TO_RADIANS(modeB.rotatePerSecond + modeB.rotatePerSecondVar * CCRANDOM_MINUS1_1());
|
|
|
|
}
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::stopSystem()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_bIsActive = false;
|
|
|
|
m_fElapsed = m_fDuration;
|
|
|
|
m_fEmitCounter = 0;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::resetSystem()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_bIsActive = true;
|
|
|
|
m_fElapsed = 0;
|
|
|
|
for (m_uParticleIdx = 0; m_uParticleIdx < m_uParticleCount; ++m_uParticleIdx)
|
|
|
|
{
|
|
|
|
tCCParticle *p = &m_pParticles[m_uParticleIdx];
|
|
|
|
p->timeToLive = 0;
|
|
|
|
}
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
bool CCParticleSystem::isFull()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return (m_uParticleCount == m_uTotalParticles);
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParticleSystem - MainLoop
|
2012-06-08 13:55:28 +08:00
|
|
|
void CCParticleSystem::update(float dt)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CC_PROFILER_START_CATEGORY(kCCProfilerCategoryParticles , "CCParticleSystem - update");
|
|
|
|
|
2012-04-24 15:02:18 +08:00
|
|
|
if (m_bIsActive && m_fEmissionRate)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
float rate = 1.0f / m_fEmissionRate;
|
|
|
|
//issue #1201, prevent bursts of particles, due to too high emitCounter
|
|
|
|
if (m_uParticleCount < m_uTotalParticles)
|
|
|
|
{
|
|
|
|
m_fEmitCounter += dt;
|
|
|
|
}
|
|
|
|
|
2012-04-24 15:02:18 +08:00
|
|
|
while (m_uParticleCount < m_uTotalParticles && m_fEmitCounter > rate)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
this->addParticle();
|
|
|
|
m_fEmitCounter -= rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_fElapsed += dt;
|
2012-04-24 15:02:18 +08:00
|
|
|
if (m_fDuration != -1 && m_fDuration < m_fElapsed)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
this->stopSystem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_uParticleIdx = 0;
|
|
|
|
|
|
|
|
CCPoint currentPosition = CCPointZero;
|
2012-04-24 15:02:18 +08:00
|
|
|
if (m_ePositionType == kCCPositionTypeFree)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
currentPosition = this->convertToWorldSpace(CCPointZero);
|
|
|
|
}
|
2012-04-24 15:02:18 +08:00
|
|
|
else if (m_ePositionType == kCCPositionTypeRelative)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2011-03-19 10:07:16 +08:00
|
|
|
currentPosition = m_tPosition;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
if (m_bIsVisible)
|
|
|
|
{
|
2012-04-24 15:02:18 +08:00
|
|
|
while (m_uParticleIdx < m_uParticleCount)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
tCCParticle *p = &m_pParticles[m_uParticleIdx];
|
|
|
|
|
|
|
|
// life
|
|
|
|
p->timeToLive -= dt;
|
|
|
|
|
2012-04-24 15:02:18 +08:00
|
|
|
if (p->timeToLive > 0)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
// Mode A: gravity, direction, tangential accel & radial accel
|
2012-04-24 15:02:18 +08:00
|
|
|
if (m_nEmitterMode == kCCParticleModeGravity)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
CCPoint tmp, radial, tangential;
|
|
|
|
|
|
|
|
radial = CCPointZero;
|
|
|
|
// radial acceleration
|
2012-04-24 15:02:18 +08:00
|
|
|
if (p->pos.x || p->pos.y)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
radial = ccpNormalize(p->pos);
|
2012-04-24 15:02:18 +08:00
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
tangential = radial;
|
|
|
|
radial = ccpMult(radial, p->modeA.radialAccel);
|
|
|
|
|
|
|
|
// tangential acceleration
|
|
|
|
float newy = tangential.x;
|
|
|
|
tangential.x = -tangential.y;
|
|
|
|
tangential.y = newy;
|
|
|
|
tangential = ccpMult(tangential, p->modeA.tangentialAccel);
|
|
|
|
|
|
|
|
// (gravity + radial + tangential) * dt
|
|
|
|
tmp = ccpAdd( ccpAdd( radial, tangential), modeA.gravity);
|
|
|
|
tmp = ccpMult( tmp, dt);
|
|
|
|
p->modeA.dir = ccpAdd( p->modeA.dir, tmp);
|
|
|
|
tmp = ccpMult(p->modeA.dir, dt);
|
|
|
|
p->pos = ccpAdd( p->pos, tmp );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mode B: radius movement
|
2012-04-24 15:02:18 +08:00
|
|
|
else
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// Update the angle and radius of the particle.
|
|
|
|
p->modeB.angle += p->modeB.degreesPerSecond * dt;
|
|
|
|
p->modeB.radius += p->modeB.deltaRadius * dt;
|
|
|
|
|
|
|
|
p->pos.x = - cosf(p->modeB.angle) * p->modeB.radius;
|
|
|
|
p->pos.y = - sinf(p->modeB.angle) * p->modeB.radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
// color
|
|
|
|
p->color.r += (p->deltaColor.r * dt);
|
|
|
|
p->color.g += (p->deltaColor.g * dt);
|
|
|
|
p->color.b += (p->deltaColor.b * dt);
|
|
|
|
p->color.a += (p->deltaColor.a * dt);
|
|
|
|
|
|
|
|
// size
|
|
|
|
p->size += (p->deltaSize * dt);
|
|
|
|
p->size = MAX( 0, p->size );
|
|
|
|
|
|
|
|
// angle
|
|
|
|
p->rotation += (p->deltaRotation * dt);
|
|
|
|
|
|
|
|
//
|
|
|
|
// update values in quad
|
|
|
|
//
|
|
|
|
|
|
|
|
CCPoint newPos;
|
|
|
|
|
2012-04-24 15:02:18 +08:00
|
|
|
if (m_ePositionType == kCCPositionTypeFree || m_ePositionType == kCCPositionTypeRelative)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
CCPoint diff = ccpSub( currentPosition, p->startPos );
|
|
|
|
newPos = ccpSub(p->pos, diff);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
newPos = p->pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// translate newPos to correct position, since matrix transform isn't performed in batchnode
|
|
|
|
// don't update the particle with the new position information, it will interfere with the radius and tangential calculations
|
|
|
|
if (m_pBatchNode)
|
|
|
|
{
|
|
|
|
newPos.x+=m_tPosition.x;
|
|
|
|
newPos.y+=m_tPosition.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateQuadWithParticle(p, newPos);
|
|
|
|
//updateParticleImp(self, updateParticleSel, p, newPos);
|
|
|
|
|
|
|
|
// update particle counter
|
|
|
|
++m_uParticleIdx;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// life < 0
|
|
|
|
int currentIndex = p->atlasIndex;
|
|
|
|
if( m_uParticleIdx != m_uParticleCount-1 )
|
|
|
|
{
|
|
|
|
m_pParticles[m_uParticleIdx] = m_pParticles[m_uParticleCount-1];
|
|
|
|
}
|
|
|
|
if (m_pBatchNode)
|
|
|
|
{
|
|
|
|
//disable the switched particle
|
|
|
|
m_pBatchNode->disableParticle(m_uAtlasIndex+currentIndex);
|
|
|
|
|
|
|
|
//switch indexes
|
|
|
|
m_pParticles[m_uParticleCount-1].atlasIndex = currentIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
--m_uParticleCount;
|
|
|
|
|
|
|
|
if( m_uParticleCount == 0 && m_bIsAutoRemoveOnFinish )
|
|
|
|
{
|
|
|
|
this->unscheduleUpdate();
|
|
|
|
m_pParent->removeChild(this, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} //while
|
|
|
|
m_bTransformSystemDirty = false;
|
|
|
|
}
|
2012-04-24 15:02:18 +08:00
|
|
|
if (! m_pBatchNode)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
postStep();
|
2012-04-24 15:02:18 +08:00
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
CC_PROFILER_STOP_CATEGORY(kCCProfilerCategoryParticles , "CCParticleSystem - update");
|
2012-03-14 14:55:17 +08:00
|
|
|
}
|
2010-08-23 14:57:37 +08:00
|
|
|
|
2012-03-14 14:55:17 +08:00
|
|
|
void CCParticleSystem::updateWithNoTime(void)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
this->update(0.0f);
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-03-14 14:55:17 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::updateQuadWithParticle(tCCParticle* particle, const CCPoint& newPosition)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2011-06-10 17:51:37 +08:00
|
|
|
CC_UNUSED_PARAM(particle);
|
|
|
|
CC_UNUSED_PARAM(newPosition);
|
2012-04-19 14:35:52 +08:00
|
|
|
// should be overriden
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::postStep()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// should be overriden
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParticleSystem - CCTexture protocol
|
|
|
|
void CCParticleSystem::setTexture(CCTexture2D* var)
|
|
|
|
{
|
2012-06-08 14:11:48 +08:00
|
|
|
if (m_pTexture != var)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-06-08 14:11:48 +08:00
|
|
|
CC_SAFE_RETAIN(var);
|
|
|
|
CC_SAFE_RELEASE(m_pTexture);
|
|
|
|
m_pTexture = var;
|
|
|
|
updateBlendFunc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCParticleSystem::updateBlendFunc()
|
|
|
|
{
|
2012-06-12 01:43:07 +08:00
|
|
|
CCAssert(! m_pBatchNode, "Can't change blending functions when the particle is being batched");
|
2010-12-27 17:39:15 +08:00
|
|
|
|
2012-06-12 01:43:07 +08:00
|
|
|
if(m_pTexture)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-06-15 15:10:40 +08:00
|
|
|
bool premultiplied = m_pTexture->hasPremultipliedAlpha();
|
2012-06-12 01:43:07 +08:00
|
|
|
|
|
|
|
m_bOpacityModifyRGB = false;
|
|
|
|
|
|
|
|
if( m_pTexture && ( m_tBlendFunc.src == CC_BLEND_SRC && m_tBlendFunc.dst == CC_BLEND_DST ) )
|
|
|
|
{
|
|
|
|
if( premultiplied )
|
|
|
|
{
|
|
|
|
m_bOpacityModifyRGB = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_tBlendFunc.src = GL_SRC_ALPHA;
|
|
|
|
m_tBlendFunc.dst = GL_ONE_MINUS_SRC_ALPHA;
|
|
|
|
}
|
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
CCTexture2D * CCParticleSystem::getTexture()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_pTexture;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParticleSystem - Additive Blending
|
2012-06-15 15:10:40 +08:00
|
|
|
void CCParticleSystem::setBlendAdditive(bool additive)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
if( additive )
|
|
|
|
{
|
|
|
|
m_tBlendFunc.src = GL_SRC_ALPHA;
|
|
|
|
m_tBlendFunc.dst = GL_ONE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-06-15 15:10:40 +08:00
|
|
|
if( m_pTexture && ! m_pTexture->hasPremultipliedAlpha() )
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
m_tBlendFunc.src = GL_SRC_ALPHA;
|
|
|
|
m_tBlendFunc.dst = GL_ONE_MINUS_SRC_ALPHA;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_tBlendFunc.src = CC_BLEND_SRC;
|
|
|
|
m_tBlendFunc.dst = CC_BLEND_DST;
|
|
|
|
}
|
|
|
|
}
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
bool CCParticleSystem::isBlendAdditive()
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return( m_tBlendFunc.src == GL_SRC_ALPHA && m_tBlendFunc.dst == GL_ONE);
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParticleSystem - Properties of Gravity Mode
|
|
|
|
void CCParticleSystem::setTangentialAccel(float t)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.tangentialAccel = t;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getTangentialAccel()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.tangentialAccel;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setTangentialAccelVar(float t)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.tangentialAccelVar = t;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getTangentialAccelVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.tangentialAccelVar;
|
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setRadialAccel(float t)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.radialAccel = t;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getRadialAccel()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.radialAccel;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setRadialAccelVar(float t)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.radialAccelVar = t;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getRadialAccelVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.radialAccelVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setGravity(const CCPoint& g)
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.gravity = g;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const CCPoint& CCParticleSystem::getGravity()
|
2010-12-27 17:39:15 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.gravity;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setSpeed(float speed)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.speed = speed;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getSpeed()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.speed;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setSpeedVar(float speedVar)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
modeA.speedVar = speedVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getSpeedVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeGravity, "Particle Mode should be Gravity");
|
|
|
|
return modeA.speedVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParticleSystem - Properties of Radius Mode
|
|
|
|
void CCParticleSystem::setStartRadius(float startRadius)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
modeB.startRadius = startRadius;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getStartRadius()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
return modeB.startRadius;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setStartRadiusVar(float startRadiusVar)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
modeB.startRadiusVar = startRadiusVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getStartRadiusVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
return modeB.startRadiusVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setEndRadius(float endRadius)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
modeB.endRadius = endRadius;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getEndRadius()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
return modeB.endRadius;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setEndRadiusVar(float endRadiusVar)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
modeB.endRadiusVar = endRadiusVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getEndRadiusVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
return modeB.endRadiusVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setRotatePerSecond(float degrees)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
modeB.rotatePerSecond = degrees;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getRotatePerSecond()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
return modeB.rotatePerSecond;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
void CCParticleSystem::setRotatePerSecondVar(float degrees)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
modeB.rotatePerSecondVar = degrees;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 17:39:15 +08:00
|
|
|
float CCParticleSystem::getRotatePerSecondVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( m_nEmitterMode == kCCParticleModeRadius, "Particle Mode should be Radius");
|
|
|
|
return modeB.rotatePerSecondVar;
|
2010-12-27 17:39:15 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
bool CCParticleSystem::isActive()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_bIsActive;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-07-06 18:16:19 +08:00
|
|
|
unsigned int CCParticleSystem::getParticleCount()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_uParticleCount;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getDuration()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fDuration;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setDuration(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fDuration = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const CCPoint& CCParticleSystem::getSourcePosition()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tSourcePosition;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setSourcePosition(const CCPoint& var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tSourcePosition = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const CCPoint& CCParticleSystem::getPosVar()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tPosVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setPosVar(const CCPoint& var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tPosVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getLife()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fLife;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setLife(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fLife = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getLifeVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fLifeVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setLifeVar(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fLifeVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getAngle()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fAngle;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setAngle(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fAngle = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getAngleVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fAngleVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setAngleVar(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fAngleVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getStartSize()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fStartSize;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setStartSize(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fStartSize = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getStartSizeVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fStartSizeVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setStartSizeVar(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fStartSizeVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getEndSize()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fEndSize;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setEndSize(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fEndSize = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getEndSizeVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fEndSizeVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setEndSizeVar(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fEndSizeVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const ccColor4F& CCParticleSystem::getStartColor()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tStartColor;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setStartColor(const ccColor4F& var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tStartColor = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const ccColor4F& CCParticleSystem::getStartColorVar()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tStartColorVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setStartColorVar(const ccColor4F& var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tStartColorVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const ccColor4F& CCParticleSystem::getEndColor()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tEndColor;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setEndColor(const ccColor4F& var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tEndColor = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
const ccColor4F& CCParticleSystem::getEndColorVar()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tEndColorVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
void CCParticleSystem::setEndColorVar(const ccColor4F& var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tEndColorVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getStartSpin()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fStartSpin;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setStartSpin(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fStartSpin = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getStartSpinVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fStartSpinVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setStartSpinVar(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fStartSpinVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getEndSpin()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fEndSpin;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setEndSpin(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fEndSpin = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
|
|
|
float CCParticleSystem::getEndSpinVar()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fEndSpinVar;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setEndSpinVar(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fEndSpinVar = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
float CCParticleSystem::getEmissionRate()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_fEmissionRate;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setEmissionRate(float var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_fEmissionRate = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-07-06 18:16:19 +08:00
|
|
|
unsigned int CCParticleSystem::getTotalParticles()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_uTotalParticles;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-07-06 18:16:19 +08:00
|
|
|
void CCParticleSystem::setTotalParticles(unsigned int var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCAssert( var <= m_uAllocatedParticles, "Particle: resizing particle array only supported for quads");
|
|
|
|
m_uTotalParticles = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
ccBlendFunc CCParticleSystem::getBlendFunc()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_tBlendFunc;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-08 14:11:48 +08:00
|
|
|
void CCParticleSystem::setBlendFunc(ccBlendFunc blendFunc)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-06-12 01:43:07 +08:00
|
|
|
if( m_tBlendFunc.src != blendFunc.src || m_tBlendFunc.dst != blendFunc.dst ) {
|
|
|
|
m_tBlendFunc = blendFunc;
|
|
|
|
this->updateBlendFunc();
|
2012-06-08 14:11:48 +08:00
|
|
|
}
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-08 16:54:38 +08:00
|
|
|
bool CCParticleSystem::getOpacityModifyRGB()
|
|
|
|
{
|
|
|
|
return m_bOpacityModifyRGB;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCParticleSystem::setOpacityModifyRGB(bool bOpacityModifyRGB)
|
|
|
|
{
|
|
|
|
m_bOpacityModifyRGB = bOpacityModifyRGB;
|
|
|
|
}
|
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
tCCPositionType CCParticleSystem::getPositionType()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_ePositionType;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setPositionType(tCCPositionType var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_ePositionType = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-15 16:47:30 +08:00
|
|
|
bool CCParticleSystem::isAutoRemoveOnFinish()
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_bIsAutoRemoveOnFinish;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-15 16:47:30 +08:00
|
|
|
void CCParticleSystem::setAutoRemoveOnFinish(bool var)
|
2011-03-19 10:07:16 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_bIsAutoRemoveOnFinish = var;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
int CCParticleSystem::getEmitterMode()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return m_nEmitterMode;
|
2011-03-19 10:07:16 +08:00
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
void CCParticleSystem::setEmitterMode(int var)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_nEmitterMode = var;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ParticleSystem - methods for batchNode rendering
|
|
|
|
|
|
|
|
CCParticleBatchNode* CCParticleSystem::getBatchNode(void)
|
|
|
|
{
|
|
|
|
return m_pBatchNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCParticleSystem::setBatchNode(CCParticleBatchNode* batchNode)
|
|
|
|
{
|
|
|
|
if( m_pBatchNode != batchNode ) {
|
|
|
|
|
|
|
|
m_pBatchNode = batchNode; // weak reference
|
|
|
|
|
|
|
|
if( batchNode ) {
|
|
|
|
//each particle needs a unique index
|
2012-05-29 17:11:33 +08:00
|
|
|
for (unsigned int i = 0; i < m_uTotalParticles; i++)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
m_pParticles[i].atlasIndex=i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//don't use a transform matrix, this is faster
|
|
|
|
void CCParticleSystem::setScale(float s)
|
|
|
|
{
|
|
|
|
m_bTransformSystemDirty = true;
|
|
|
|
CCNode::setScale(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCParticleSystem::setRotation(float newRotation)
|
|
|
|
{
|
|
|
|
m_bTransformSystemDirty = true;
|
|
|
|
CCNode::setRotation(newRotation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCParticleSystem::setScaleX(float newScaleX)
|
|
|
|
{
|
|
|
|
m_bTransformSystemDirty = true;
|
|
|
|
CCNode::setScaleX(newScaleX);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCParticleSystem::setScaleY(float newScaleY)
|
|
|
|
{
|
|
|
|
m_bTransformSystemDirty = true;
|
|
|
|
CCNode::setScaleY(newScaleY);
|
|
|
|
}
|
2012-03-14 14:55:17 +08:00
|
|
|
|
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_END
|
2010-12-28 10:23:14 +08:00
|
|
|
|