2011-03-19 10:07:16 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
|
|
|
Copyright (c) 2009 Leonardo Kasperavičius
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2012-06-08 14:11:48 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2011-03-19 10:07:16 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __CC_PARTICLE_SYSTEM_QUAD_H__
|
|
|
|
#define __CC_PARTICLE_SYSTEM_QUAD_H__
|
|
|
|
|
2014-08-28 17:03:29 +08:00
|
|
|
#include "2d/CCParticleSystem.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "renderer/CCQuadCommand.h"
|
2011-03-19 10:07:16 +08:00
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_BEGIN
|
2010-12-28 11:55:34 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class SpriteFrame;
|
2013-12-31 10:54:37 +08:00
|
|
|
class EventCustom;
|
2010-12-28 11:55:34 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
2015-03-24 10:34:41 +08:00
|
|
|
* @addtogroup _2d
|
2012-06-20 18:09:11 +08:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2015-03-21 18:02:56 +08:00
|
|
|
/** @class ParticleSystemQuad
|
|
|
|
* @brief ParticleSystemQuad is a subclass of ParticleSystem.
|
2010-12-28 11:55:34 +08:00
|
|
|
|
|
|
|
It includes all the features of ParticleSystem.
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
Special features and Limitations:
|
2010-12-28 11:55:34 +08:00
|
|
|
- Particle size can be any float number.
|
2015-03-21 18:02:56 +08:00
|
|
|
- The system can be scaled.
|
|
|
|
- The particles can be rotated.
|
|
|
|
- It supports subrects.
|
|
|
|
- It supports batched rendering since 1.1.
|
2010-12-28 11:55:34 +08:00
|
|
|
@since v0.8
|
2015-03-23 20:27:13 +08:00
|
|
|
@js NA
|
2010-12-28 11:55:34 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL ParticleSystemQuad : public ParticleSystem
|
2010-12-28 11:55:34 +08:00
|
|
|
{
|
|
|
|
public:
|
2011-06-14 16:27:47 +08:00
|
|
|
|
2015-03-21 18:02:56 +08:00
|
|
|
/** Creates a Particle Emitter.
|
|
|
|
*
|
|
|
|
* @return An autoreleased ParticleSystemQuad object.
|
|
|
|
*/
|
2013-07-18 07:56:19 +08:00
|
|
|
static ParticleSystemQuad * create();
|
2015-03-21 18:02:56 +08:00
|
|
|
/** Creates a Particle Emitter with a number of particles.
|
|
|
|
*
|
|
|
|
* @param numberOfParticles A given number of particles.
|
|
|
|
* @return An autoreleased ParticleSystemQuad object.
|
|
|
|
*/
|
2013-11-15 08:21:49 +08:00
|
|
|
static ParticleSystemQuad * createWithTotalParticles(int numberOfParticles);
|
2015-03-21 18:02:56 +08:00
|
|
|
/** Creates an initializes a ParticleSystemQuad from a plist file.
|
|
|
|
This plist files can be created manually or with Particle Designer.
|
|
|
|
*
|
|
|
|
* @param filename Particle plist file name.
|
|
|
|
* @return An autoreleased ParticleSystemQuad object.
|
2013-07-18 07:56:19 +08:00
|
|
|
*/
|
2013-11-15 08:21:49 +08:00
|
|
|
static ParticleSystemQuad * create(const std::string& filename);
|
2015-03-21 18:02:56 +08:00
|
|
|
/** Creates a Particle Emitter with a dictionary.
|
|
|
|
*
|
|
|
|
* @param dictionary Particle dictionary.
|
|
|
|
* @return An autoreleased ParticleSystemQuad object.
|
|
|
|
*/
|
2014-05-06 06:50:08 +08:00
|
|
|
static ParticleSystemQuad * create(ValueMap &dictionary);
|
2010-12-28 11:55:34 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** Sets a new SpriteFrame as particle.
|
2013-08-01 16:39:42 +08:00
|
|
|
WARNING: this method is experimental. Use setTextureWithRect instead.
|
2015-03-21 18:02:56 +08:00
|
|
|
*
|
|
|
|
* @param spriteFrame A given sprite frame as particle texture.
|
2012-04-19 14:35:52 +08:00
|
|
|
@since v0.99.4
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
void setDisplayFrame(SpriteFrame *spriteFrame);
|
2010-12-28 11:55:34 +08:00
|
|
|
|
2011-03-19 10:07:16 +08:00
|
|
|
/** Sets a new texture with a rect. The rect is in Points.
|
2013-09-13 11:41:20 +08:00
|
|
|
@since v0.99.4
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2015-03-21 18:02:56 +08:00
|
|
|
*
|
|
|
|
* @param texture A given texture.
|
|
|
|
8 @param rect A given rect, in points.
|
2013-09-13 11:41:20 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
void setTextureWithRect(Texture2D *texture, const Rect& rect);
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2015-03-21 18:02:56 +08:00
|
|
|
/** Listen the event that renderer was recreated on Android/WP8.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2015-03-21 18:02:56 +08:00
|
|
|
*
|
|
|
|
* @param event the event that renderer was recreated on Android/WP8.
|
2012-04-24 15:02:18 +08:00
|
|
|
*/
|
2014-07-09 23:03:04 +08:00
|
|
|
void listenRendererRecreated(EventCustom* event);
|
2012-06-02 07:38:43 +08:00
|
|
|
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-18 07:56:19 +08:00
|
|
|
virtual void setTexture(Texture2D* texture) override;
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2015-08-31 17:25:34 +08:00
|
|
|
*/
|
|
|
|
virtual void updateParticleQuads() override;
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-18 07:56:19 +08:00
|
|
|
virtual void postStep() override;
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2014-05-31 07:42:05 +08:00
|
|
|
virtual void draw(Renderer *renderer, const Mat4 &transform, uint32_t flags) override;
|
2013-12-03 04:13:05 +08:00
|
|
|
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-18 07:56:19 +08:00
|
|
|
virtual void setBatchNode(ParticleBatchNode* batchNode) override;
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-09-08 11:26:38 +08:00
|
|
|
virtual void setTotalParticles(int tp) override;
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2013-12-13 06:30:22 +08:00
|
|
|
virtual std::string getDescription() const override;
|
2014-03-21 13:44:29 +08:00
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
2013-11-15 08:21:49 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
|
|
|
ParticleSystemQuad();
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~ParticleSystemQuad();
|
2014-03-21 13:44:29 +08:00
|
|
|
|
|
|
|
// Overrides
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual bool initWithTotalParticles(int numberOfParticles) override;
|
2016-06-15 18:31:10 +08:00
|
|
|
|
|
|
|
|
2013-11-15 08:21:49 +08:00
|
|
|
|
2014-03-21 13:44:29 +08:00
|
|
|
protected:
|
2013-11-15 08:21:49 +08:00
|
|
|
/** initializes the indices for the vertices*/
|
|
|
|
void initIndices();
|
2014-03-21 13:44:29 +08:00
|
|
|
|
2013-11-15 08:21:49 +08:00
|
|
|
/** initializes the texture with a rectangle measured Points */
|
|
|
|
void initTexCoordsWithRect(const Rect& rect);
|
2014-01-03 18:15:56 +08:00
|
|
|
|
2014-02-13 10:33:57 +08:00
|
|
|
/** Updates texture coords */
|
|
|
|
void updateTexCoords();
|
2013-11-15 08:21:49 +08:00
|
|
|
|
2012-04-13 17:24:50 +08:00
|
|
|
void setupVBOandVAO();
|
|
|
|
void setupVBO();
|
2012-04-19 14:35:52 +08:00
|
|
|
bool allocMemory();
|
2013-11-15 08:21:49 +08:00
|
|
|
|
2013-07-23 18:26:26 +08:00
|
|
|
V3F_C4B_T2F_Quad *_quads; // quads to be rendered
|
2014-03-01 08:19:27 +08:00
|
|
|
GLushort *_indices; // indices
|
|
|
|
GLuint _VAOname;
|
|
|
|
GLuint _buffersVBO[2]; //0: vertex 1: indices
|
|
|
|
|
|
|
|
QuadCommand _quadCommand; // quad command
|
2016-06-15 18:31:10 +08:00
|
|
|
|
|
|
|
|
2013-11-15 08:21:49 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(ParticleSystemQuad);
|
2010-12-28 11:55:34 +08:00
|
|
|
};
|
2011-03-19 10:07:16 +08:00
|
|
|
|
2015-03-24 10:34:41 +08:00
|
|
|
// end of _2d group
|
2012-06-20 18:09:11 +08:00
|
|
|
/// @}
|
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_END
|
2011-03-19 10:07:16 +08:00
|
|
|
|
|
|
|
#endif //__CC_PARTICLE_SYSTEM_QUAD_H__
|
|
|
|
|