2012-11-09 12:08:18 +08:00
|
|
|
/* Copyright (c) 2012 Scott Lembcke and Howling Moon Software
|
|
|
|
* Copyright (c) 2012 cocos2d-x.org
|
2014-01-07 11:25:07 +08:00
|
|
|
* Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2012-11-09 12:08:18 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Code copied & pasted from SpacePatrol game https://github.com/slembcke/SpacePatrol
|
|
|
|
*
|
|
|
|
* Renamed and added some changes for cocos2d
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CCDRAWNODES_CCDRAW_NODE_H__
|
|
|
|
#define __CCDRAWNODES_CCDRAW_NODE_H__
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "2d/CCNode.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/ccTypes.h"
|
|
|
|
#include "renderer/CCCustomCommand.h"
|
2014-09-11 15:39:56 +08:00
|
|
|
#include "math/CCMath.h"
|
2012-11-09 12:08:18 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** DrawNode
|
2012-11-09 12:08:18 +08:00
|
|
|
Node that draws dots, segments and polygons.
|
2014-07-28 10:39:35 +08:00
|
|
|
Faster than the "drawing primitives" since they draws everything in one single batch.
|
2012-11-09 12:08:18 +08:00
|
|
|
|
|
|
|
@since v2.1
|
|
|
|
*/
|
2014-09-11 15:39:56 +08:00
|
|
|
|
|
|
|
class PointArray;
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL DrawNode : public Node
|
2012-11-09 12:08:18 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-07-18 07:56:19 +08:00
|
|
|
/** creates and initialize a DrawNode node */
|
2013-06-20 14:13:12 +08:00
|
|
|
static DrawNode* create();
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2014-09-11 15:39:56 +08:00
|
|
|
void drawPoint(const Vec2& point, const float pointSize, const Color4F &color);
|
|
|
|
|
|
|
|
void drawPoints(const Vec2 *position, unsigned int numberOfPoints, const Color4F &color);
|
2015-01-07 11:02:31 +08:00
|
|
|
void drawPoints(const Vec2 *position, unsigned int numberOfPoints, const float pointSize, const Color4F &color);
|
2014-09-11 15:39:56 +08:00
|
|
|
|
|
|
|
void drawLine(const Vec2 &origin, const Vec2 &destination, const Color4F &color);
|
|
|
|
|
|
|
|
void drawRect(const Vec2 &origin, const Vec2 &destination, const Color4F &color);
|
|
|
|
|
|
|
|
void drawPoly(const Vec2 *poli, unsigned int numberOfPoints, bool closePolygon, const Color4F &color);
|
|
|
|
|
|
|
|
void drawCircle( const Vec2& center, float radius, float angle, unsigned int segments, bool drawLineToCenter, float scaleX, float scaleY, const Color4F &color);
|
|
|
|
|
|
|
|
void drawCircle(const Vec2 ¢er, float radius, float angle, unsigned int segments, bool drawLineToCenter, const Color4F &color);
|
|
|
|
|
|
|
|
void drawQuadBezier(const Vec2 &origin, const Vec2 &control, const Vec2 &destination, unsigned int segments, const Color4F &color);
|
2014-09-12 07:33:34 +08:00
|
|
|
|
|
|
|
/** draw a cubic bezier curve with color and number of segments */
|
2014-09-11 15:39:56 +08:00
|
|
|
void drawCubicBezier(const Vec2 &origin, const Vec2 &control1, const Vec2 &control2, const Vec2 &destination, unsigned int segments, const Color4F &color);
|
|
|
|
|
|
|
|
void drawCardinalSpline(PointArray *config, float tension, unsigned int segments, const Color4F &color);
|
|
|
|
|
|
|
|
void drawCatmullRom(PointArray *points, unsigned int segments, const Color4F &color);
|
|
|
|
|
2012-11-09 12:08:18 +08:00
|
|
|
/** draw a dot at a position, with a given radius and color */
|
2014-05-15 01:07:09 +08:00
|
|
|
void drawDot(const Vec2 &pos, float radius, const Color4F &color);
|
2012-11-09 12:08:18 +08:00
|
|
|
|
2015-01-07 11:44:16 +08:00
|
|
|
void drawRect(const Vec2 &p1, const Vec2 &p2, const Vec2 &p3, const Vec2& p4, const Color4F &color);
|
2014-09-11 15:39:56 +08:00
|
|
|
|
|
|
|
void drawSolidRect(const Vec2 &origin, const Vec2 &destination, const Color4F &color);
|
|
|
|
|
|
|
|
void drawSolidPoly(const Vec2 *poli, unsigned int numberOfPoints, const Color4F &color);
|
|
|
|
|
|
|
|
void drawSolidCircle(const Vec2& center, float radius, float angle, unsigned int segments, float scaleX, float scaleY, const Color4F &color);
|
|
|
|
|
|
|
|
void drawSolidCircle(const Vec2& center, float radius, float angle, unsigned int segments, const Color4F& color);
|
|
|
|
|
2012-11-09 12:08:18 +08:00
|
|
|
/** draw a segment with a radius and color */
|
2014-05-15 01:07:09 +08:00
|
|
|
void drawSegment(const Vec2 &from, const Vec2 &to, float radius, const Color4F &color);
|
2012-11-09 12:08:18 +08:00
|
|
|
|
2013-09-13 11:41:20 +08:00
|
|
|
/** draw a polygon with a fill color and line color
|
|
|
|
* @code
|
|
|
|
* When this function bound into js or lua,the parameter will be changed
|
|
|
|
* In js: var drawPolygon(var Arrayofpoints, var fillColor, var width, var borderColor)
|
|
|
|
* In lua:local drawPolygon(local pointTable,local tableCount,local fillColor,local width,local borderColor)
|
|
|
|
* @endcode
|
|
|
|
*/
|
2014-09-11 15:39:56 +08:00
|
|
|
void drawPolygon(const Vec2 *verts, int count, const Color4F &fillColor, float borderWidth, const Color4F &borderColor);
|
2013-10-14 11:41:55 +08:00
|
|
|
|
|
|
|
/** draw a triangle with color */
|
2014-05-15 01:07:09 +08:00
|
|
|
void drawTriangle(const Vec2 &p1, const Vec2 &p2, const Vec2 &p3, const Color4F &color);
|
2013-10-14 11:41:55 +08:00
|
|
|
|
2014-09-12 07:33:34 +08:00
|
|
|
/** draw a quadratic bezier curve with color and number of segments, use drawQuadBezier instead*/
|
2014-09-11 15:39:56 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void drawQuadraticBezier(const Vec2& from, const Vec2& control, const Vec2& to, unsigned int segments, const Color4F &color);
|
2012-11-09 12:08:18 +08:00
|
|
|
|
|
|
|
/** Clear the geometry in the node's buffer. */
|
|
|
|
void clear();
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-05 16:49:22 +08:00
|
|
|
const BlendFunc& getBlendFunc() const;
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @code
|
|
|
|
* When this function bound into js or lua,the parameter will be changed
|
|
|
|
* In js: var setBlendFunc(var src, var dst)
|
|
|
|
* @endcode
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-05 16:49:22 +08:00
|
|
|
void setBlendFunc(const BlendFunc &blendFunc);
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2014-05-31 07:42:05 +08:00
|
|
|
void onDraw(const Mat4 &transform, uint32_t flags);
|
2014-09-11 15:39:56 +08:00
|
|
|
void onDrawGLLine(const Mat4 &transform, uint32_t flags);
|
|
|
|
void onDrawGLPoint(const Mat4 &transform, uint32_t flags);
|
2013-12-19 03:43:45 +08:00
|
|
|
|
2013-07-18 07:56:19 +08:00
|
|
|
// Overrides
|
2014-05-31 07:42:05 +08:00
|
|
|
virtual void draw(Renderer *renderer, const Mat4 &transform, uint32_t flags) override;
|
2014-03-24 17:44:01 +08:00
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
2013-11-15 08:21:49 +08:00
|
|
|
DrawNode();
|
|
|
|
virtual ~DrawNode();
|
2015-03-15 02:33:15 +08:00
|
|
|
virtual bool init() override;
|
2013-11-15 08:21:49 +08:00
|
|
|
|
2014-03-24 17:44:01 +08:00
|
|
|
protected:
|
2013-12-05 17:19:01 +08:00
|
|
|
void ensureCapacity(int count);
|
2014-09-11 15:39:56 +08:00
|
|
|
void ensureCapacityGLPoint(int count);
|
|
|
|
void ensureCapacityGLLine(int count);
|
2013-07-18 07:56:19 +08:00
|
|
|
|
|
|
|
GLuint _vao;
|
|
|
|
GLuint _vbo;
|
2014-09-11 15:39:56 +08:00
|
|
|
GLuint _vaoGLPoint;
|
|
|
|
GLuint _vboGLPoint;
|
|
|
|
GLuint _vaoGLLine;
|
|
|
|
GLuint _vboGLLine;
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2013-12-05 17:19:01 +08:00
|
|
|
int _bufferCapacity;
|
2013-07-20 13:01:27 +08:00
|
|
|
GLsizei _bufferCount;
|
|
|
|
V2F_C4B_T2F *_buffer;
|
2014-09-11 15:39:56 +08:00
|
|
|
|
|
|
|
int _bufferCapacityGLPoint;
|
|
|
|
GLsizei _bufferCountGLPoint;
|
2015-01-20 16:50:51 +08:00
|
|
|
V2F_C4B_T2F *_bufferGLPoint;
|
2014-09-11 15:39:56 +08:00
|
|
|
Color4F _pointColor;
|
|
|
|
int _pointSize;
|
|
|
|
|
|
|
|
int _bufferCapacityGLLine;
|
|
|
|
GLsizei _bufferCountGLLine;
|
|
|
|
V2F_C4B_T2F *_bufferGLLine;
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2013-07-20 13:01:27 +08:00
|
|
|
BlendFunc _blendFunc;
|
2013-12-26 21:19:12 +08:00
|
|
|
CustomCommand _customCommand;
|
2014-09-11 15:39:56 +08:00
|
|
|
CustomCommand _customCommandGLPoint;
|
|
|
|
CustomCommand _customCommandGLLine;
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2013-07-20 13:01:27 +08:00
|
|
|
bool _dirty;
|
2014-09-11 15:39:56 +08:00
|
|
|
bool _dirtyGLPoint;
|
|
|
|
bool _dirtyGLLine;
|
2013-11-15 08:21:49 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(DrawNode);
|
2012-11-09 12:08:18 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CCDRAWNODES_CCDRAW_NODE_H__
|