2015-02-11 18:14:22 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014 Chukong Technologies 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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CC_PU_PARTICLE_3D_RENDER_H__
|
|
|
|
#define __CC_PU_PARTICLE_3D_RENDER_H__
|
|
|
|
|
|
|
|
#include "base/CCRef.h"
|
|
|
|
#include "math/CCMath.h"
|
2015-02-13 16:57:00 +08:00
|
|
|
#include "extensions/Particle3D/CCParticle3DRender.h"
|
2015-02-11 18:14:22 +08:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
// particle render for quad
|
|
|
|
struct PUParticle3D;
|
|
|
|
class CC_DLL PUParticle3DQuadRender : public Particle3DQuadRender
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
POINT,
|
|
|
|
ORIENTED_COMMON,
|
|
|
|
ORIENTED_SELF,
|
|
|
|
ORIENTED_SHAPE,
|
|
|
|
PERPENDICULAR_COMMON,
|
|
|
|
PERPENDICULAR_SELF,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Origin
|
|
|
|
{
|
|
|
|
TOP_LEFT,
|
|
|
|
TOP_CENTER,
|
|
|
|
TOP_RIGHT,
|
|
|
|
CENTER_LEFT,
|
|
|
|
CENTER,
|
|
|
|
CENTER_RIGHT,
|
|
|
|
BOTTOM_LEFT,
|
|
|
|
BOTTOM_CENTER,
|
|
|
|
BOTTOM_RIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum RotateType
|
|
|
|
{
|
|
|
|
TEXTURE_COORDS,
|
|
|
|
VERTEX
|
|
|
|
};
|
|
|
|
|
|
|
|
static PUParticle3DQuadRender* create(const std::string& texFile = "");
|
|
|
|
|
|
|
|
void setType(Type type);
|
|
|
|
Type getType() const { return _type; }
|
|
|
|
void setOrigin(Origin origin) { _origin = origin; }
|
|
|
|
Origin getOrigin() const { return _origin; }
|
|
|
|
void setRotateType(RotateType type) { _rotateType = type; }
|
|
|
|
RotateType getRotateType() const { return _rotateType; }
|
|
|
|
void setCommonDirection(const Vec3 &dir) { _commonDir = dir; }
|
|
|
|
const Vec3& getCommonDirection() const { return _commonDir; }
|
|
|
|
void setCommonUp(const Vec3 &up) { _commonUp = up; }
|
|
|
|
const Vec3& getCommonUp() const { return _commonUp; }
|
|
|
|
|
|
|
|
unsigned short getTextureCoordsRows() const;
|
|
|
|
void setTextureCoordsRows(unsigned short textureCoordsRows);
|
|
|
|
unsigned short getTextureCoordsColumns() const;
|
|
|
|
void setTextureCoordsColumns(unsigned short textureCoordsColumns);
|
|
|
|
unsigned int getNumTextureCoords();
|
|
|
|
|
|
|
|
virtual void render(Renderer* renderer, const Mat4 &transform, ParticleSystem3D* particleSystem) override;
|
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
|
|
|
PUParticle3DQuadRender();
|
|
|
|
virtual ~PUParticle3DQuadRender();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void getOriginOffset(int &offsetX, int &offsetY);
|
|
|
|
void determineUVCoords(PUParticle3D *particle);
|
2015-02-12 16:09:08 +08:00
|
|
|
void fillVertex(unsigned short index, const Vec3 &pos, const Vec4 &color, const Vec2 &uv);
|
2015-02-11 18:14:22 +08:00
|
|
|
void fillTriangle(unsigned short index, unsigned short v0, unsigned short v1, unsigned short v2);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Type _type;
|
|
|
|
Origin _origin;
|
|
|
|
RotateType _rotateType;
|
|
|
|
Vec3 _commonDir;
|
|
|
|
Vec3 _commonUp;
|
|
|
|
|
|
|
|
unsigned short _textureCoordsRows;
|
|
|
|
unsigned short _textureCoordsColumns;
|
|
|
|
float _textureCoordsRowStep;
|
|
|
|
float _textureCoordsColStep;
|
|
|
|
};
|
|
|
|
|
|
|
|
// particle render for Sprite3D
|
|
|
|
class CC_DLL PUParticle3DModelRender : public Particle3DModelRender
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static PUParticle3DModelRender* create(const std::string& modelFile, const std::string &texFile = "");
|
|
|
|
|
|
|
|
virtual void render(Renderer* renderer, const Mat4 &transform, ParticleSystem3D* particleSystem) override;
|
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
|
|
|
PUParticle3DModelRender();
|
|
|
|
virtual ~PUParticle3DModelRender();
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
#endif
|