2010-11-12 17:26:01 +08:00
|
|
|
/****************************************************************************
|
2012-02-02 10:39:19 +08:00
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
2014-01-22 02:10:50 +08:00
|
|
|
Copyright (c) 2009 Valentin Milea
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2011 Zynga Inc.
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2012-02-02 10:39:19 +08:00
|
|
|
http://www.cocos2d-x.org
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2012-02-02 10:39:19 +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:
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2012-02-02 10:39:19 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2012-02-02 10:39:19 +08:00
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2010-07-07 15:15:30 +08:00
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
#ifndef __CCNODE_H__
|
|
|
|
#define __CCNODE_H__
|
2010-07-08 10:25:52 +08:00
|
|
|
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/ccMacros.h"
|
|
|
|
#include "base/CCEventDispatcher.h"
|
2014-04-27 01:35:57 +08:00
|
|
|
#include "base/CCVector.h"
|
2014-05-17 05:36:00 +08:00
|
|
|
#include "base/CCScriptSupport.h"
|
|
|
|
#include "base/CCProtocols.h"
|
2014-05-09 09:01:48 +08:00
|
|
|
#include "math/CCAffineTransform.h"
|
2014-04-26 13:03:25 +08:00
|
|
|
#include "math/CCMath.h"
|
2014-05-09 09:01:48 +08:00
|
|
|
#include "renderer/ccGLStateCache.h"
|
|
|
|
#include "CCGL.h"
|
2010-07-07 15:15:30 +08:00
|
|
|
|
2012-03-23 17:31:28 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class GridBase;
|
|
|
|
class Touch;
|
|
|
|
class Action;
|
|
|
|
class LabelProtocol;
|
|
|
|
class Scheduler;
|
|
|
|
class ActionManager;
|
|
|
|
class Component;
|
|
|
|
class ComponentContainer;
|
2013-09-03 18:22:03 +08:00
|
|
|
class EventDispatcher;
|
2013-12-22 04:28:49 +08:00
|
|
|
class Scene;
|
2014-02-28 13:43:54 +08:00
|
|
|
class Renderer;
|
2014-05-09 06:43:12 +08:00
|
|
|
class GLProgram;
|
|
|
|
class GLProgramState;
|
2013-12-26 23:55:05 +08:00
|
|
|
#if CC_USE_PHYSICS
|
2013-09-30 13:02:17 +08:00
|
|
|
class PhysicsBody;
|
|
|
|
#endif
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup base_nodes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2012-03-23 17:31:28 +08:00
|
|
|
enum {
|
2013-06-20 14:13:12 +08:00
|
|
|
kNodeOnEnter,
|
|
|
|
kNodeOnExit,
|
|
|
|
kNodeOnEnterTransitionDidFinish,
|
|
|
|
kNodeOnExitTransitionDidStart,
|
|
|
|
kNodeOnCleanup
|
2012-03-23 17:31:28 +08:00
|
|
|
};
|
|
|
|
|
2014-01-22 01:26:58 +08:00
|
|
|
bool nodeComparisonLess(Node* n1, Node* n2);
|
2013-09-01 06:18:28 +08:00
|
|
|
|
2013-09-14 09:02:49 +08:00
|
|
|
class EventListener;
|
|
|
|
|
2014-03-07 06:04:19 +08:00
|
|
|
/** @brief Node is the base element of the Scene Graph. Elements of the Scene Graph must be Node objects or subclasses of it.
|
|
|
|
The most common Node objects are: Scene, Layer, Sprite, Menu, Label.
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
The main features of a Node are:
|
2013-11-12 12:21:01 +08:00
|
|
|
- They can contain other Node objects (`addChild`, `getChildByTag`, `removeChild`, etc)
|
|
|
|
- They can schedule periodic callback (`schedule`, `unschedule`, etc)
|
|
|
|
- They can execute actions (`runAction`, `stopAction`, etc)
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
Subclassing a Node usually means (one/all) of:
|
2012-03-23 17:31:28 +08:00
|
|
|
- overriding init to initialize resources and schedule callbacks
|
|
|
|
- create callbacks to handle the advancement of time
|
2014-03-07 06:04:19 +08:00
|
|
|
- overriding `draw` to render the node
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-12 12:21:01 +08:00
|
|
|
Properties of Node:
|
2014-03-07 06:04:19 +08:00
|
|
|
- position (default: x=0, y=0)
|
|
|
|
- scale (default: x=1, y=1)
|
|
|
|
- rotation (in degrees, clockwise) (default: 0)
|
|
|
|
- anchor point (default: x=0, y=0)
|
|
|
|
- contentSize (default: width=0, height=0)
|
|
|
|
- visible (default: true)
|
2012-03-23 17:31:28 +08:00
|
|
|
|
|
|
|
Limitations:
|
2014-03-07 06:04:19 +08:00
|
|
|
- A Node is a "void" object. If you want to draw something on the screen, you should use a Sprite instead. Or subclass Node and override `draw`.
|
2012-03-23 17:31:28 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
class CC_DLL Node : public Ref
|
2012-03-23 17:31:28 +08:00
|
|
|
{
|
2013-01-17 11:20:25 +08:00
|
|
|
public:
|
2013-08-29 03:42:25 +08:00
|
|
|
/// Default tag used for all the nodes
|
|
|
|
static const int INVALID_TAG = -1;
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
2013-09-03 18:22:03 +08:00
|
|
|
/// @name Constructor, Destructor and Initializers
|
2013-07-16 03:43:22 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocates and initializes a node.
|
|
|
|
* @return A initialized node which is marked as "autorelease".
|
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
static Node * create();
|
2013-07-16 03:43:22 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Gets the description string. It makes debugging easier.
|
2013-12-13 06:30:22 +08:00
|
|
|
* @return A string
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-12-13 06:30:22 +08:00
|
|
|
virtual std::string getDescription() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of initializers
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Setters & Getters for Graphic Peroperties
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-01-19 03:35:27 +08:00
|
|
|
LocalZOrder is the 'key' used to sort the node relative to its siblings.
|
|
|
|
|
|
|
|
The Node's parent will sort all its children based ont the LocalZOrder value.
|
|
|
|
If two nodes have the same LocalZOrder, then the node that was added first to the children's array will be in front of the other node in the array.
|
|
|
|
|
|
|
|
Also, the Scene Graph is traversed using the "In-Order" tree traversal algorithm ( http://en.wikipedia.org/wiki/Tree_traversal#In-order )
|
|
|
|
And Nodes that have LocalZOder values < 0 are the "left" subtree
|
|
|
|
While Nodes with LocalZOder >=0 are the "right" subtree.
|
|
|
|
|
|
|
|
@see `setGlobalZOrder`
|
|
|
|
@see `setVertexZ`
|
|
|
|
*/
|
2014-01-22 01:26:58 +08:00
|
|
|
virtual void setLocalZOrder(int localZOrder);
|
2014-01-19 03:35:27 +08:00
|
|
|
|
2014-01-22 01:26:58 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual void setZOrder(int localZOrder) { setLocalZOrder(localZOrder); }
|
2014-01-19 03:35:27 +08:00
|
|
|
/* Helper function used by `setLocalZOrder`. Don't use it unless you know what you are doing.
|
|
|
|
*/
|
|
|
|
virtual void _setLocalZOrder(int z);
|
|
|
|
/**
|
|
|
|
* Gets the local Z order of this node.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-01-19 03:35:27 +08:00
|
|
|
* @see `setLocalZOrder(int)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-01-19 03:35:27 +08:00
|
|
|
* @return The local (relative to its siblings) Z order.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-01-19 03:35:27 +08:00
|
|
|
virtual int getLocalZOrder() const { return _localZOrder; }
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual int getZOrder() const { return getLocalZOrder(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
Defines the oder in which the nodes are renderer.
|
|
|
|
Nodes that have a Global Z Order lower, are renderer first.
|
|
|
|
|
|
|
|
In case two or more nodes have the same Global Z Order, the oder is not guaranteed.
|
|
|
|
The only exception if the Nodes have a Global Z Order == 0. In that case, the Scene Graph order is used.
|
|
|
|
|
|
|
|
By default, all nodes have a Global Z Order = 0. That means that by default, the Scene Graph order is used to render the nodes.
|
|
|
|
|
|
|
|
Global Z Order is useful when you need to render nodes in an order different than the Scene Graph order.
|
|
|
|
|
|
|
|
Limitations: Global Z Order can't be used used by Nodes that have SpriteBatchNode as one of their acenstors.
|
|
|
|
And if ClippingNode is one of the ancestors, then "global Z order" will be relative to the ClippingNode.
|
|
|
|
|
|
|
|
@see `setLocalZOrder()`
|
|
|
|
@see `setVertexZ()`
|
|
|
|
|
|
|
|
@since v3.0
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-01-22 02:10:50 +08:00
|
|
|
virtual void setGlobalZOrder(float globalZOrder);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-01-19 03:35:27 +08:00
|
|
|
* Returns the Node's Global Z Order.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-01-19 03:35:27 +08:00
|
|
|
* @see `setGlobalZOrder(int)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-01-19 03:35:27 +08:00
|
|
|
* @return The node's global Z order
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-01-19 03:35:27 +08:00
|
|
|
virtual float getGlobalZOrder() const { return _globalZOrder; }
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the scale (x) of the node.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* It is a scaling factor that multiplies the width of the node and its children.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-07-27 21:44:49 +08:00
|
|
|
* @param scaleX The scale factor on X axis.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-27 21:44:49 +08:00
|
|
|
virtual void setScaleX(float scaleX);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the scale factor on X axis of this node
|
|
|
|
*
|
|
|
|
* @see setScaleX(float)
|
|
|
|
*
|
|
|
|
* @return The scale factor on X axis.
|
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getScaleX() const;
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the scale (y) of the node.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* It is a scaling factor that multiplies the height of the node and its children.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-07-27 21:44:49 +08:00
|
|
|
* @param scaleY The scale factor on Y axis.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-27 21:44:49 +08:00
|
|
|
virtual void setScaleY(float scaleY);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the scale factor on Y axis of this node
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setScaleY(float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-11-30 01:09:38 +08:00
|
|
|
* @return The scale factor on Y axis.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getScaleY() const;
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2014-02-23 11:16:42 +08:00
|
|
|
/**
|
|
|
|
* Changes the scale factor on Z axis of this node
|
|
|
|
*
|
|
|
|
* The Default value is 1.0 if you haven't changed it before.
|
|
|
|
*
|
|
|
|
* @param scaleY The scale factor on Y axis.
|
|
|
|
*/
|
|
|
|
virtual void setScaleZ(float scaleZ);
|
|
|
|
/**
|
|
|
|
* Returns the scale factor on Z axis of this node
|
|
|
|
*
|
|
|
|
* @see `setScaleZ(float)`
|
|
|
|
*
|
|
|
|
* @return The scale factor on Z axis.
|
|
|
|
*/
|
|
|
|
virtual float getScaleZ() const;
|
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the scale (x,y,z) of the node.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* It is a scaling factor that multiplies the width, height and depth of the node and its children.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @param scale The scale factor for both X and Y axis.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
virtual void setScale(float scale);
|
|
|
|
/**
|
|
|
|
* Gets the scale factor of the node, when X and Y have the same scale factor.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @warning Assert when `_scaleX != _scaleY`
|
2013-01-17 11:20:25 +08:00
|
|
|
* @see setScale(float)
|
|
|
|
*
|
|
|
|
* @return The scale factor of the node.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getScale() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-10-08 15:57:34 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the scale (x,y) of the node.
|
2013-10-08 15:57:34 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* It is a scaling factor that multiplies the width and height of the node and its children.
|
2013-10-08 15:57:34 +08:00
|
|
|
*
|
|
|
|
* @param scaleX The scale factor on X axis.
|
|
|
|
* @param scaleY The scale factor on Y axis.
|
|
|
|
*/
|
2014-03-07 06:04:19 +08:00
|
|
|
virtual void setScale(float scaleX, float scaleY);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the position (x,y) of the node in its parent's coordinate system.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-05-15 01:07:09 +08:00
|
|
|
* Usually we use `Vec2(x,y)` to compose Vec2 object.
|
2014-03-07 06:04:19 +08:00
|
|
|
* This code snippet sets the node in the center of screen.
|
2013-11-12 12:21:01 +08:00
|
|
|
@code
|
|
|
|
Size size = Director::getInstance()->getWinSize();
|
2014-05-15 01:07:09 +08:00
|
|
|
node->setPosition( Vec2(size.width/2, size.height/2) )
|
2013-11-12 12:21:01 +08:00
|
|
|
@endcode
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @param position The position (x,y) of the node in OpenGL coordinates
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void setPosition(const Vec2 &position);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Gets the position (x,y) of the node in its parent's coordinate system.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-05-15 01:07:09 +08:00
|
|
|
* @see setPosition(const Vec2&)
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The position (x,y) of the node in OpenGL coordinates
|
2013-09-13 11:41:20 +08:00
|
|
|
* @code
|
|
|
|
* In js and lua return value is table which contains x,y
|
|
|
|
* @endcode
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual const Vec2& getPosition() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the position (x,y) of the node in its parent's coordinate system.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-05-15 01:07:09 +08:00
|
|
|
* Passing two numbers (x,y) is much efficient than passing Vec2 object.
|
2014-03-07 06:04:19 +08:00
|
|
|
* This method is bound to Lua and JavaScript.
|
|
|
|
* Passing a number is 10 times faster than passing a object from Lua to c++
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
@code
|
2014-03-07 06:04:19 +08:00
|
|
|
// sample code in Lua
|
2014-05-15 01:07:09 +08:00
|
|
|
local pos = node::getPosition() -- returns Vec2 object from C++
|
2013-11-12 12:21:01 +08:00
|
|
|
node:setPosition(x, y) -- pass x, y coordinate to C++
|
|
|
|
@endcode
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @param x X coordinate for position
|
|
|
|
* @param y Y coordinate for position
|
|
|
|
*/
|
2013-03-20 08:35:52 +08:00
|
|
|
virtual void setPosition(float x, float y);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-05-15 01:07:09 +08:00
|
|
|
* Gets position in a more efficient way, returns two number instead of a Vec2 object
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setPosition(float, float)`
|
2013-09-13 11:41:20 +08:00
|
|
|
* In js,out value not return
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual void getPosition(float* x, float* y) const;
|
2013-01-21 16:26:02 +08:00
|
|
|
/**
|
|
|
|
* Gets/Sets x or y coordinate individually for position.
|
|
|
|
* These methods are used in Lua and Javascript Bindings
|
|
|
|
*/
|
2013-03-20 08:35:52 +08:00
|
|
|
virtual void setPositionX(float x);
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getPositionX(void) const;
|
2013-03-20 08:35:52 +08:00
|
|
|
virtual void setPositionY(float y);
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getPositionY(void) const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-02-23 17:09:52 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the position (X, Y, and Z) in its parent's coordinate system
|
2014-02-23 17:09:52 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void setPosition3D(const Vec3& position);
|
2014-02-23 17:09:52 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* returns the position (X,Y,Z) in its parent's coordinate system
|
2014-02-23 17:09:52 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual Vec3 getPosition3D() const;
|
2014-02-23 17:09:52 +08:00
|
|
|
|
2014-02-23 11:16:42 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the 'z' coordinate in the position. It is the OpenGL Z vertex value.
|
2014-02-23 11:16:42 +08:00
|
|
|
*
|
|
|
|
* The OpenGL depth buffer and depth testing are disabled by default. You need to turn them on
|
|
|
|
* in order to use this property correctly.
|
|
|
|
*
|
|
|
|
* `setPositionZ()` also sets the `setGlobalZValue()` with the positionZ as value.
|
|
|
|
*
|
|
|
|
* @see `setGlobalZValue()`
|
|
|
|
*
|
|
|
|
* @param vertexZ OpenGL Z vertex of this node.
|
|
|
|
*/
|
|
|
|
virtual void setPositionZ(float positionZ);
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual void setVertexZ(float vertexZ) { setPositionZ(vertexZ); }
|
|
|
|
|
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Gets position Z coordinate of this node.
|
2014-02-23 11:16:42 +08:00
|
|
|
*
|
|
|
|
* @see setPositionZ(float)
|
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* @return the position Z coordinate of this node.
|
2014-02-23 11:16:42 +08:00
|
|
|
*/
|
|
|
|
virtual float getPositionZ() const;
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual float getVertexZ() const { return getPositionZ(); }
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Changes the X skew angle of the node in degrees.
|
|
|
|
*
|
2014-02-23 17:09:52 +08:00
|
|
|
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality
|
2014-03-07 06:04:19 +08:00
|
|
|
* while the second one uses the real skew function.
|
2014-02-23 17:09:52 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* This angle describes the shear distortion in the X direction.
|
2014-03-07 06:04:19 +08:00
|
|
|
* Thus, it is the angle between the Y coordinate and the left edge of the shape
|
2013-01-17 11:20:25 +08:00
|
|
|
* The default skewX angle is 0. Positive values distort the node in a CW direction.
|
|
|
|
*
|
2014-02-23 17:09:52 +08:00
|
|
|
* @param skewX The X skew angle of the node in degrees.
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2014-02-23 17:09:52 +08:00
|
|
|
virtual void setSkewX(float skewX);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the X skew angle of the node in degrees.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setSkewX(float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The X skew angle of the node in degrees.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getSkewX() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Changes the Y skew angle of the node in degrees.
|
|
|
|
*
|
2014-02-23 17:09:52 +08:00
|
|
|
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality
|
2014-03-07 06:04:19 +08:00
|
|
|
* while the second one uses the real skew function.
|
2014-02-23 17:09:52 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* This angle describes the shear distortion in the Y direction.
|
2014-03-07 06:04:19 +08:00
|
|
|
* Thus, it is the angle between the X coordinate and the bottom edge of the shape
|
2013-01-17 11:20:25 +08:00
|
|
|
* The default skewY angle is 0. Positive values distort the node in a CCW direction.
|
|
|
|
*
|
2014-02-23 17:09:52 +08:00
|
|
|
* @param skewY The Y skew angle of the node in degrees.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2014-02-23 17:09:52 +08:00
|
|
|
virtual void setSkewY(float skewY);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the Y skew angle of the node in degrees.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setSkewY(float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The Y skew angle of the node in degrees.
|
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getSkewY() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets the anchor point in percent.
|
|
|
|
*
|
|
|
|
* anchorPoint is the point around which all transformations and positioning manipulations take place.
|
|
|
|
* It's like a pin in the node where it is "attached" to its parent.
|
|
|
|
* The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.
|
|
|
|
* But you can use values higher than (1,1) and lower than (0,0) too.
|
|
|
|
* The default anchorPoint is (0.5,0.5), so it starts in the center of the node.
|
2014-02-28 15:31:25 +08:00
|
|
|
* @note If node has a physics body, the anchor must be in the middle, you cann't change this to other value.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @param anchorPoint The anchor point of node.
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void setAnchorPoint(const Vec2& anchorPoint);
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Returns the anchor point in percent.
|
|
|
|
*
|
2014-05-15 01:07:09 +08:00
|
|
|
* @see `setAnchorPoint(const Vec2&)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The anchor point of node.
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual const Vec2& getAnchorPoint() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the anchorPoint in absolute pixels.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* @warning You can only read it. If you wish to modify it, use anchorPoint instead.
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `getAnchorPoint()`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The anchor point in absolute pixels.
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual const Vec2& getAnchorPointInPoints() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets the untransformed size of the node.
|
|
|
|
*
|
|
|
|
* The contentSize remains the same no matter the node is scaled or rotated.
|
|
|
|
* All nodes has a size. Layer and Scene has the same size of the screen.
|
|
|
|
*
|
|
|
|
* @param contentSize The untransformed size of the node.
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setContentSize(const Size& contentSize);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the untransformed size of the node.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setContentSize(const Size&)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The untransformed size of the node.
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual const Size& getContentSize() const;
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets whether the node is visible
|
|
|
|
*
|
|
|
|
* The default value is true, a node is default to visible
|
|
|
|
*
|
|
|
|
* @param visible true if the node is visible, false if the node is hidden.
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
virtual void setVisible(bool visible);
|
|
|
|
/**
|
|
|
|
* Determines if the node is visible
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setVisible(bool)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return true if the node is visible, false if the node is hidden.
|
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual bool isVisible() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the rotation (angle) of the node in degrees.
|
|
|
|
*
|
|
|
|
* 0 is the default rotation angle.
|
2013-01-17 11:20:25 +08:00
|
|
|
* Positive values rotate node clockwise, and negative values for anti-clockwise.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-06-21 13:47:29 +08:00
|
|
|
* @param rotation The rotation of the node in degrees.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-06-21 13:47:29 +08:00
|
|
|
virtual void setRotation(float rotation);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns the rotation of the node in degrees.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setRotation(float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The rotation of the node in degrees.
|
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual float getRotation() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
|
2014-02-23 17:09:52 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Sets the rotation (X,Y,Z) in degrees.
|
2014-02-23 17:09:52 +08:00
|
|
|
* Useful for 3d rotations
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void setRotation3D(const Vec3& rotation);
|
2014-02-23 17:09:52 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* returns the rotation (X,Y,Z) in degrees.
|
2014-02-23 17:09:52 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual Vec3 getRotation3D() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Sets the X rotation (angle) of the node in degrees which performs a horizontal rotational skew.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality
|
|
|
|
* while the second one uses the real skew function.
|
2014-02-23 17:09:52 +08:00
|
|
|
*
|
2013-11-30 01:09:38 +08:00
|
|
|
* 0 is the default rotation angle.
|
2013-01-17 11:20:25 +08:00
|
|
|
* Positive values rotate node clockwise, and negative values for anti-clockwise.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-08-01 17:47:37 +08:00
|
|
|
* @param rotationX The X rotation in degrees which performs a horizontal rotational skew.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-02-23 11:16:42 +08:00
|
|
|
virtual void setRotationSkewX(float rotationX);
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual void setRotationX(float rotationX) { return setRotationSkewX(rotationX); }
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Gets the X rotation (angle) of the node in degrees which performs a horizontal rotation skew.
|
|
|
|
*
|
2014-02-23 11:16:42 +08:00
|
|
|
* @see `setRotationSkewX(float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The X rotation in degrees.
|
|
|
|
*/
|
2014-02-23 11:16:42 +08:00
|
|
|
virtual float getRotationSkewX() const;
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual float getRotationX() const { return getRotationSkewX(); }
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Sets the Y rotation (angle) of the node in degrees which performs a vertical rotational skew.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality
|
|
|
|
* while the second one uses the real skew function.
|
2014-02-23 17:09:52 +08:00
|
|
|
*
|
2013-11-30 01:09:38 +08:00
|
|
|
* 0 is the default rotation angle.
|
2013-01-17 11:20:25 +08:00
|
|
|
* Positive values rotate node clockwise, and negative values for anti-clockwise.
|
|
|
|
*
|
2013-08-01 17:47:37 +08:00
|
|
|
* @param rotationY The Y rotation in degrees.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-02-23 11:16:42 +08:00
|
|
|
virtual void setRotationSkewY(float rotationY);
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual void setRotationY(float rotationY) { return setRotationSkewY(rotationY); }
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Gets the Y rotation (angle) of the node in degrees which performs a vertical rotational skew.
|
|
|
|
*
|
2014-02-23 11:16:42 +08:00
|
|
|
* @see `setRotationSkewY(float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The Y rotation in degrees.
|
|
|
|
*/
|
2014-02-23 11:16:42 +08:00
|
|
|
virtual float getRotationSkewY() const;
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual float getRotationY() const { return getRotationSkewY(); }
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets the arrival order when this node has a same ZOrder with other children.
|
|
|
|
*
|
|
|
|
* A node which called addChild subsequently will take a larger arrival order,
|
|
|
|
* If two children have the same Z order, the child with larger arrival order will be drawn later.
|
|
|
|
*
|
2014-01-22 01:26:58 +08:00
|
|
|
* @warning This method is used internally for localZOrder sorting, don't change this manually
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-07-20 13:01:27 +08:00
|
|
|
* @param orderOfArrival The arrival order.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2014-01-22 01:26:58 +08:00
|
|
|
void setOrderOfArrival(int orderOfArrival);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Returns the arrival order, indicates which children is added previously.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setOrderOfArrival(unsigned int)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The arrival order.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-01-22 01:26:58 +08:00
|
|
|
int getOrderOfArrival() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
/** @deprecated No longer needed
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-26 09:42:53 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void setGLServerState(int serverState) { /* ignore */ };
|
2013-09-13 11:41:20 +08:00
|
|
|
/** @deprecated No longer needed
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-26 09:42:53 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE int getGLServerState() const { return 0; }
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets whether the anchor point will be (0,0) when you position this node.
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* This is an internal method, only used by Layer and Scene. Don't call it outside framework.
|
|
|
|
* The default value is false, while in Layer and Scene are true
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @param ignore true if anchor point will be (0,0) when you position this node
|
2014-03-07 06:04:19 +08:00
|
|
|
* @todo This method should be renamed as setIgnoreAnchorPointForPosition(bool) or something with "set"
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
virtual void ignoreAnchorPointForPosition(bool ignore);
|
|
|
|
/**
|
|
|
|
* Gets whether the anchor point will be (0,0) when you position this node.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `ignoreAnchorPointForPosition(bool)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return true if the anchor point will be (0,0) when you position this node.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual bool isIgnoreAnchorPointForPosition() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-07 06:04:19 +08:00
|
|
|
/// @} end of Setters & Getters for Graphic Properties
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Children and Parent
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Adds a child to the container with z-order as 0.
|
|
|
|
*
|
|
|
|
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
|
|
|
|
*
|
|
|
|
* @param child A child node
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void addChild(Node * child);
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2014-01-22 01:26:58 +08:00
|
|
|
* Adds a child to the container with a local z-order
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
|
|
|
|
*
|
|
|
|
* @param child A child node
|
2014-01-22 01:26:58 +08:00
|
|
|
* @param zOrder Z order for drawing priority. Please refer to `setLocalZOrder(int)`
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-01-22 01:26:58 +08:00
|
|
|
virtual void addChild(Node * child, int localZOrder);
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Adds a child to the container with z order and tag
|
|
|
|
*
|
|
|
|
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
|
|
|
|
*
|
|
|
|
* @param child A child node
|
2014-03-07 06:04:19 +08:00
|
|
|
* @param zOrder Z order for drawing priority. Please refer to `setLocalZOrder(int)`
|
|
|
|
* @param tag An integer to identify the node easily. Please refer to `setTag(int)`
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-01-22 01:26:58 +08:00
|
|
|
virtual void addChild(Node* child, int localZOrder, int tag);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Gets a child from the container with its tag
|
|
|
|
*
|
|
|
|
* @param tag An identifier to find the child node.
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @return a Node object whose tag equals to the input parameter
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-05-14 04:28:04 +08:00
|
|
|
virtual Node * getChildByTag(int tag) const;
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Returns the array of the node's children
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* @return the array the node's children
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-11-28 16:02:03 +08:00
|
|
|
virtual Vector<Node*>& getChildren() { return _children; }
|
|
|
|
virtual const Vector<Node*>& getChildren() const { return _children; }
|
|
|
|
|
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Returns the amount of children
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The amount of children.
|
|
|
|
*/
|
2013-12-27 16:01:03 +08:00
|
|
|
virtual ssize_t getChildrenCount() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets the parent node
|
|
|
|
*
|
2013-11-30 01:09:38 +08:00
|
|
|
* @param parent A pointer to the parent node
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setParent(Node* parent);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns a pointer to the parent node
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setParent(Node*)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-11-30 01:09:38 +08:00
|
|
|
* @returns A pointer to the parent node
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-19 07:30:19 +08:00
|
|
|
virtual Node* getParent() { return _parent; }
|
|
|
|
virtual const Node* getParent() const { return _parent; }
|
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
////// REMOVES //////
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Removes this node itself from its parent node with a cleanup.
|
|
|
|
* If the node orphan, then nothing happens.
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `removeFromParentAndCleanup(bool)`
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2012-11-05 18:41:52 +08:00
|
|
|
virtual void removeFromParent();
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
|
|
|
* Removes this node itself from its parent node.
|
2013-01-17 11:20:25 +08:00
|
|
|
* If the node orphan, then nothing happens.
|
|
|
|
* @param cleanup true if all actions and callbacks on this node should be removed, false otherwise.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js removeFromParent
|
|
|
|
* @lua removeFromParent
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-11-05 18:41:52 +08:00
|
|
|
virtual void removeFromParentAndCleanup(bool cleanup);
|
2013-07-19 14:57:54 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Removes a child from the container. It will also cleanup all running actions depending on the cleanup parameter.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* @param child The child node which will be removed.
|
|
|
|
* @param cleanup true if all running actions and callbacks on the child node will be cleanup, false otherwise.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-07-19 14:57:54 +08:00
|
|
|
virtual void removeChild(Node* child, bool cleanup = true);
|
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Removes a child from the container by tag value. It will also cleanup all running actions depending on the cleanup parameter
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* @param tag An interger number that identifies a child node
|
2013-11-30 01:09:38 +08:00
|
|
|
* @param cleanup true if all running actions and callbacks on the child node will be cleanup, false otherwise.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-07-19 14:57:54 +08:00
|
|
|
virtual void removeChildByTag(int tag, bool cleanup = true);
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Removes all children from the container with a cleanup.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `removeAllChildrenWithCleanup(bool)`
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2012-11-05 18:41:52 +08:00
|
|
|
virtual void removeAllChildren();
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Removes all children from the container, and do a cleanup to all running actions depending on the cleanup parameter.
|
|
|
|
*
|
|
|
|
* @param cleanup true if all running actions on all children nodes should be cleanup, false oterwise.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js removeAllChildren
|
|
|
|
* @lua removeAllChildren
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
virtual void removeAllChildrenWithCleanup(bool cleanup);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Reorders a child according to a new z value.
|
|
|
|
*
|
|
|
|
* @param child An already added child node. It MUST be already added.
|
2014-01-22 01:26:58 +08:00
|
|
|
* @param localZOrder Z order for drawing priority. Please refer to setLocalZOrder(int)
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-01-22 01:26:58 +08:00
|
|
|
virtual void reorderChild(Node * child, int localZOrder);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Sorts the children array once before drawing, instead of every time when a child is added or reordered.
|
|
|
|
* This appraoch can improves the performance massively.
|
2013-11-30 01:09:38 +08:00
|
|
|
* @note Don't call this manually unless a child added needs to be removed in the same frame
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
|
|
|
virtual void sortAllChildren();
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of Children and Parent
|
2013-12-12 16:21:21 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Tag & User data
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns a tag that is used to identify the node easily.
|
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* @return An integer that identifies the node.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-05-09 06:20:08 +08:00
|
|
|
virtual int getTag() const;
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Changes the tag that is used to identify the node easily.
|
|
|
|
*
|
|
|
|
* Please refer to getTag for the sample code.
|
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* @param tag A integer that identifies the node.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
virtual void setTag(int tag);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-13 10:45:02 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Returns a custom user data pointer
|
|
|
|
*
|
|
|
|
* You can set everything in UserData pointer, a data block, a structure or an object.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* @return A custom user data pointer
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-19 07:30:19 +08:00
|
|
|
virtual void* getUserData() { return _userData; }
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-19 07:30:19 +08:00
|
|
|
virtual const void* getUserData() const { return _userData; }
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets a custom user data pointer
|
|
|
|
*
|
|
|
|
* You can set everything in UserData pointer, a data block, a structure or an object, etc.
|
2013-11-30 01:09:38 +08:00
|
|
|
* @warning Don't forget to release the memory manually,
|
2013-01-17 11:20:25 +08:00
|
|
|
* especially before you change this data pointer, and before this node is autoreleased.
|
|
|
|
*
|
2013-07-29 19:36:47 +08:00
|
|
|
* @param userData A custom user data pointer
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
virtual void setUserData(void *userData);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Returns a user assigned Object
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2013-01-17 11:20:25 +08:00
|
|
|
* Similar to userData, but instead of holding a void* it holds an object
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @return A user assigned Object
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual Ref* getUserObject() { return _userObject; }
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual const Ref* getUserObject() const { return _userObject; }
|
2013-07-19 07:30:19 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Returns a user assigned Object
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* Similar to UserData, but instead of holding a void* it holds an object.
|
|
|
|
* The UserObject will be retained once in this method,
|
2014-03-07 06:04:19 +08:00
|
|
|
* and the previous UserObject (if existed) will be released.
|
|
|
|
* The UserObject will be released in Node's destructor.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-07-29 19:36:47 +08:00
|
|
|
* @param userObject A user assigned Object
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual void setUserObject(Ref *userObject);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of Tag & User Data
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
2014-05-09 06:43:12 +08:00
|
|
|
/// @name GLProgram
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2014-05-09 06:43:12 +08:00
|
|
|
* Return the GLProgram (shader) currently used for this node
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-05-09 06:43:12 +08:00
|
|
|
* @return The GLProgram (shader) currently used for this node
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
GLProgram* getGLProgram() const;
|
|
|
|
CC_DEPRECATED_ATTRIBUTE GLProgram* getShaderProgram() const { return getGLProgram(); }
|
2014-05-09 06:43:12 +08:00
|
|
|
|
2014-05-28 17:41:34 +08:00
|
|
|
GLProgramState *getGLProgramState() const;
|
2014-05-09 06:43:12 +08:00
|
|
|
void setGLProgramState(GLProgramState *glProgramState);
|
2013-07-19 07:30:19 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Sets the shader program for this node
|
|
|
|
*
|
|
|
|
* Since v2.0, each rendering node must set its shader program.
|
|
|
|
* It should be set in initialize phase.
|
2013-11-12 12:21:01 +08:00
|
|
|
@code
|
2014-05-10 09:39:25 +08:00
|
|
|
node->setGLrProgram(GLProgramCache::getInstance()->getProgram(GLProgram::SHADER_NAME_POSITION_TEXTURE_COLOR));
|
2013-11-12 12:21:01 +08:00
|
|
|
@endcode
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* @param shaderProgram The shader program
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2014-05-09 06:43:12 +08:00
|
|
|
void setGLProgram(GLProgram *glprogram);
|
|
|
|
CC_DEPRECATED_ATTRIBUTE void setShaderProgram(GLProgram *glprogram) { setGLProgram(glprogram); }
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of Shader Program
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Returns whether or not the node is "running".
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* If the node is running it will accept event callbacks like onEnter(), onExit(), update()
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return Whether or not the node is running.
|
|
|
|
*/
|
2013-07-04 08:22:15 +08:00
|
|
|
virtual bool isRunning() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Schedules for lua script.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
void scheduleUpdateWithPriorityLua(int handler, int priority);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end Script Bindings
|
|
|
|
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Event Callbacks
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Event callback that is invoked every time when Node enters the 'stage'.
|
|
|
|
* If the Node enters the 'stage' with a transition, this event is called when the transition starts.
|
2013-01-17 11:20:25 +08:00
|
|
|
* During onEnter you can't access a "sister/brother" node.
|
2013-06-20 14:13:12 +08:00
|
|
|
* If you override onEnter, you shall call its parent's one, e.g., Node::onEnter().
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
|
|
|
virtual void onEnter();
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** Event callback that is invoked when the Node enters in the 'stage'.
|
|
|
|
* If the Node enters the 'stage' with a transition, this event is called when the transition finishes.
|
|
|
|
* If you override onEnterTransitionDidFinish, you shall call its parent's one, e.g. Node::onEnterTransitionDidFinish()
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
|
|
|
virtual void onEnterTransitionDidFinish();
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Event callback that is invoked every time the Node leaves the 'stage'.
|
|
|
|
* If the Node leaves the 'stage' with a transition, this event is called when the transition finishes.
|
2013-01-17 11:20:25 +08:00
|
|
|
* During onExit you can't access a sibling node.
|
2013-06-20 14:13:12 +08:00
|
|
|
* If you override onExit, you shall call its parent's one, e.g., Node::onExit().
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
|
|
|
virtual void onExit();
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Event callback that is called every time the Node leaves the 'stage'.
|
|
|
|
* If the Node leaves the 'stage' with a transition, this callback is called when the transition starts.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
virtual void onExitTransitionDidStart();
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of event callbacks.
|
2012-02-02 15:58:10 +08:00
|
|
|
|
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Stops all running actions and schedulers
|
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
virtual void cleanup();
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Override this method to draw your own node.
|
|
|
|
* The following GL states will be enabled by default:
|
2013-11-12 12:21:01 +08:00
|
|
|
* - `glEnableClientState(GL_VERTEX_ARRAY);`
|
|
|
|
* - `glEnableClientState(GL_COLOR_ARRAY);`
|
|
|
|
* - `glEnableClientState(GL_TEXTURE_COORD_ARRAY);`
|
|
|
|
* - `glEnable(GL_TEXTURE_2D);`
|
2013-01-17 11:20:25 +08:00
|
|
|
* AND YOU SHOULD NOT DISABLE THEM AFTER DRAWING YOUR NODE
|
|
|
|
* But if you enable any other GL state, you should disable it after drawing your node.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void draw(Renderer *renderer, const Mat4& transform, bool transformUpdated);
|
2014-02-28 13:43:54 +08:00
|
|
|
virtual void draw() final;
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Visits this node's children and draw them recursively.
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void visit(Renderer *renderer, const Mat4& parentTransform, bool parentTransformUpdated);
|
2014-02-28 13:43:54 +08:00
|
|
|
virtual void visit() final;
|
|
|
|
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-12-22 04:28:49 +08:00
|
|
|
/** Returns the Scene that contains the Node.
|
|
|
|
It returns `nullptr` if the node doesn't belong to any Scene.
|
|
|
|
This function recursively calls parent->getScene() until parent is a Scene object. The results are not cached. It is that the user caches the results in case this functions is being used inside a loop.
|
|
|
|
*/
|
|
|
|
virtual Scene* getScene();
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2014-03-07 06:04:19 +08:00
|
|
|
* Returns an AABB (axis-aligned bounding-box) in its parent's coordinate system.
|
2013-11-30 01:09:38 +08:00
|
|
|
*
|
2014-03-07 06:04:19 +08:00
|
|
|
* @return An AABB (axis-aligned bounding-box) in its parent's coordinate system
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
virtual Rect getBoundingBox() const;
|
|
|
|
|
|
|
|
/** @deprecated Use getBoundingBox instead */
|
2013-07-18 07:56:19 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE inline virtual Rect boundingBox() const { return getBoundingBox(); }
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-10-26 15:04:01 +08:00
|
|
|
virtual void setEventDispatcher(EventDispatcher* dispatcher);
|
|
|
|
virtual EventDispatcher* getEventDispatcher() const { return _eventDispatcher; };
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Actions
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Sets the ActionManager object that is used by all actions.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @warning If you set a new ActionManager, then previously created actions will be removed.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @param actionManager A ActionManager object that is used by all actions.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setActionManager(ActionManager* actionManager);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Gets the ActionManager object that is used by all actions.
|
|
|
|
* @see setActionManager(ActionManager*)
|
|
|
|
* @return A ActionManager object.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-19 07:30:19 +08:00
|
|
|
virtual ActionManager* getActionManager() { return _actionManager; }
|
|
|
|
virtual const ActionManager* getActionManager() const { return _actionManager; }
|
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Executes an action, and returns the action that is executed.
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* This node becomes the action's target. Refer to Action::getTarget()
|
2013-01-17 11:20:25 +08:00
|
|
|
* @warning Actions don't retain their target.
|
|
|
|
*
|
|
|
|
* @return An Action pointer
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
Action* runAction(Action* action);
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Stops and removes all actions from the running action list .
|
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
void stopAllActions();
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Stops and removes an action from the running action list.
|
|
|
|
*
|
2013-07-29 19:36:47 +08:00
|
|
|
* @param action The action object to be removed.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
void stopAction(Action* action);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Removes an action from the running action list by its tag.
|
|
|
|
*
|
2013-07-29 19:36:47 +08:00
|
|
|
* @param tag A tag that indicates the action to be removed.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
void stopActionByTag(int tag);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Gets an action from the running action list by its tag.
|
|
|
|
*
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `setTag(int)`, `getTag()`.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @return The action object with the given tag.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-07-19 07:30:19 +08:00
|
|
|
Action* getActionByTag(int tag);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Returns the numbers of actions that are running plus the ones that are schedule to run (actions in actionsToAdd and actions arrays).
|
|
|
|
*
|
2012-03-23 17:31:28 +08:00
|
|
|
* Composable actions are counted as 1 action. Example:
|
|
|
|
* If you are running 1 Sequence of 7 actions, it will return 1.
|
|
|
|
* If you are running 7 Sequences of 2 actions, it will return 7.
|
2013-01-17 11:20:25 +08:00
|
|
|
* @todo Rename to getNumberOfRunningActions()
|
|
|
|
*
|
|
|
|
* @return The number of actions that are running plus the ones that are schedule to run
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-12-12 12:07:20 +08:00
|
|
|
ssize_t getNumberOfRunningActions() const;
|
2013-07-18 07:56:19 +08:00
|
|
|
|
|
|
|
/** @deprecated Use getNumberOfRunningActions() instead */
|
2013-12-12 12:07:20 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE ssize_t numberOfRunningActions() const { return getNumberOfRunningActions(); };
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of Actions
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Scheduler and Timer
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Sets a Scheduler object that is used to schedule all "updates" and timers.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @warning If you set a new Scheduler, then previously created timers/update are going to be removed.
|
|
|
|
* @param scheduler A Shdeduler object that is used to schedule all "update" and timers.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setScheduler(Scheduler* scheduler);
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Gets a Sheduler object.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @see setScheduler(Scheduler*)
|
|
|
|
* @return A Scheduler object.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-19 07:30:19 +08:00
|
|
|
virtual Scheduler* getScheduler() { return _scheduler; }
|
|
|
|
virtual const Scheduler* getScheduler() const { return _scheduler; }
|
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Checks whether a selector is scheduled.
|
|
|
|
*
|
|
|
|
* @param selector A function selector
|
|
|
|
* @return Whether the funcion selector is scheduled.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
bool isScheduled(SEL_SCHEDULE selector);
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
|
|
|
* Schedules the "update" method.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* It will use the order number 0. This method will be called every frame.
|
|
|
|
* Scheduled methods with a lower order value will be called before the ones that have a higher order value.
|
|
|
|
* Only one "update" method could be scheduled per node.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
void scheduleUpdate(void);
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
|
|
|
* Schedules the "update" method with a custom priority.
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* This selector will be called every frame.
|
|
|
|
* Scheduled methods with a lower priority will be called before the ones that have a higher value.
|
|
|
|
* Only one "update" selector could be scheduled per node (You can't have 2 'update' selectors).
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
void scheduleUpdateWithPriority(int priority);
|
2012-02-02 15:58:10 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/*
|
2013-01-17 11:20:25 +08:00
|
|
|
* Unschedules the "update" method.
|
|
|
|
* @see scheduleUpdate();
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
void unscheduleUpdate(void);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Schedules a custom selector.
|
|
|
|
*
|
|
|
|
* If the selector is already scheduled, then the interval parameter will be updated without scheduling it again.
|
2013-11-12 12:21:01 +08:00
|
|
|
@code
|
|
|
|
// firstly, implement a schedule function
|
|
|
|
void MyNode::TickMe(float dt);
|
|
|
|
// wrap this function into a selector via schedule_selector marco.
|
|
|
|
this->schedule(schedule_selector(MyNode::TickMe), 0, 0, 0);
|
|
|
|
@endcode
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-08-01 21:40:13 +08:00
|
|
|
* @param selector The SEL_SCHEDULE selector to be scheduled.
|
2013-01-17 11:20:25 +08:00
|
|
|
* @param interval Tick interval in seconds. 0 means tick every frame. If interval = 0, it's recommended to use scheduleUpdate() instead.
|
2013-06-20 14:13:12 +08:00
|
|
|
* @param repeat The selector will be excuted (repeat + 1) times, you can use kRepeatForever for tick infinitely.
|
2013-01-17 11:20:25 +08:00
|
|
|
* @param delay The amount of time that the first tick will wait before execution.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @lua NA
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
void schedule(SEL_SCHEDULE selector, float interval, unsigned int repeat, float delay);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Schedules a custom selector with an interval time in seconds.
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `schedule(SEL_SCHEDULE, float, unsigned int, float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-08-01 21:40:13 +08:00
|
|
|
* @param selector The SEL_SCHEDULE selector to be scheduled.
|
2013-01-17 11:20:25 +08:00
|
|
|
* @param interval Callback interval time in seconds. 0 means tick every frame,
|
2013-09-13 11:41:20 +08:00
|
|
|
* @lua NA
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-06-08 13:55:28 +08:00
|
|
|
void schedule(SEL_SCHEDULE selector, float interval);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Schedules a selector that runs only once, with a delay of 0 or larger
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `schedule(SEL_SCHEDULE, float, unsigned int, float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
2013-08-01 21:40:13 +08:00
|
|
|
* @param selector The SEL_SCHEDULE selector to be scheduled.
|
2013-01-17 11:20:25 +08:00
|
|
|
* @param delay The amount of time that the first tick will wait before execution.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @lua NA
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
void scheduleOnce(SEL_SCHEDULE selector, float delay);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Schedules a custom selector, the scheduled selector will be ticked every frame
|
|
|
|
* @see schedule(SEL_SCHEDULE, float, unsigned int, float)
|
|
|
|
*
|
|
|
|
* @param selector A function wrapped as a selector
|
2013-09-13 11:41:20 +08:00
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
|
|
|
void schedule(SEL_SCHEDULE selector);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Unschedules a custom selector.
|
2013-11-12 12:21:01 +08:00
|
|
|
* @see `schedule(SEL_SCHEDULE, float, unsigned int, float)`
|
2013-01-17 11:20:25 +08:00
|
|
|
*
|
|
|
|
* @param selector A function wrapped as a selector
|
2013-09-13 11:41:20 +08:00
|
|
|
* @lua NA
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
void unschedule(SEL_SCHEDULE selector);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Unschedule all scheduled selectors: custom selectors, and the 'update' selector.
|
|
|
|
* Actions are not affected by this method.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @lua NA
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
void unscheduleAllSelectors(void);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-10-26 15:04:01 +08:00
|
|
|
/**
|
|
|
|
* Resumes all scheduled selectors, actions and event listeners.
|
2013-01-17 11:20:25 +08:00
|
|
|
* This method is called internally by onEnter
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2013-10-26 15:04:01 +08:00
|
|
|
void resume(void);
|
|
|
|
/**
|
|
|
|
* Pauses all scheduled selectors, actions and event listeners..
|
|
|
|
* This method is called internally by onExit
|
|
|
|
*/
|
|
|
|
void pause(void);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-10-26 15:04:01 +08:00
|
|
|
/**
|
|
|
|
* Resumes all scheduled selectors, actions and event listeners.
|
|
|
|
* This method is called internally by onEnter
|
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void resumeSchedulerAndActions();
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-10-26 15:04:01 +08:00
|
|
|
* Pauses all scheduled selectors, actions and event listeners..
|
2013-01-17 11:20:25 +08:00
|
|
|
* This method is called internally by onExit
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void pauseSchedulerAndActions();
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/*
|
2013-01-17 11:20:25 +08:00
|
|
|
* Update method will be called automatically every frame if "scheduleUpdate" is called, and the node is "live"
|
2012-11-14 18:05:15 +08:00
|
|
|
*/
|
2013-01-17 11:20:25 +08:00
|
|
|
virtual void update(float delta);
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-03-13 14:53:51 +08:00
|
|
|
/// @} end of Scheduler and Timer
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Transformations
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/**
|
|
|
|
* Calls children's updateTransform() method recursively.
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* This method is moved from Sprite, so it's no longer specific to Sprite.
|
|
|
|
* As the result, you apply SpriteBatchNode's optimization on your customed Node.
|
2013-11-12 12:21:01 +08:00
|
|
|
* e.g., `batchNode->addChild(myCustomNode)`, while you can only addChild(sprite) before.
|
2013-01-17 11:20:25 +08:00
|
|
|
*/
|
2013-07-17 09:16:04 +08:00
|
|
|
virtual void updateTransform();
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
|
|
|
|
* The matrix is in Pixels.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual const Mat4& getNodeToParentTransform() const;
|
2013-12-10 09:32:51 +08:00
|
|
|
virtual AffineTransform getNodeToParentAffineTransform() const;
|
2013-07-17 09:16:04 +08:00
|
|
|
|
2013-12-21 08:33:31 +08:00
|
|
|
/**
|
|
|
|
* Sets the Transformation matrix manually.
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual void setNodeToParentTransform(const Mat4& transform);
|
2013-12-21 08:33:31 +08:00
|
|
|
|
2013-07-17 09:16:04 +08:00
|
|
|
/** @deprecated use getNodeToParentTransform() instead */
|
2013-12-10 09:32:51 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE inline virtual AffineTransform nodeToParentTransform() const { return getNodeToParentAffineTransform(); }
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Returns the matrix that transform parent's space coordinates to the node's (local) space coordinates.
|
|
|
|
* The matrix is in Pixels.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual const Mat4& getParentToNodeTransform() const;
|
2013-12-10 09:32:51 +08:00
|
|
|
virtual AffineTransform getParentToNodeAffineTransform() const;
|
2013-07-17 09:16:04 +08:00
|
|
|
|
|
|
|
/** @deprecated Use getParentToNodeTransform() instead */
|
2013-12-10 09:32:51 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE inline virtual AffineTransform parentToNodeTransform() const { return getParentToNodeAffineTransform(); }
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Returns the world affine transform matrix. The matrix is in Pixels.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual Mat4 getNodeToWorldTransform() const;
|
2013-12-10 09:32:51 +08:00
|
|
|
virtual AffineTransform getNodeToWorldAffineTransform() const;
|
2013-07-17 09:16:04 +08:00
|
|
|
|
|
|
|
/** @deprecated Use getNodeToWorldTransform() instead */
|
2013-12-10 09:32:51 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE inline virtual AffineTransform nodeToWorldTransform() const { return getNodeToWorldAffineTransform(); }
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-01-17 11:20:25 +08:00
|
|
|
* Returns the inverse world affine transform matrix. The matrix is in Pixels.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
virtual Mat4 getWorldToNodeTransform() const;
|
2013-12-10 09:32:51 +08:00
|
|
|
virtual AffineTransform getWorldToNodeAffineTransform() const;
|
|
|
|
|
2013-07-17 09:16:04 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
/** @deprecated Use getWorldToNodeTransform() instead */
|
2013-12-10 09:32:51 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE inline virtual AffineTransform worldToNodeTransform() const { return getWorldToNodeAffineTransform(); }
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of Transformations
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Coordinate Converters
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2014-05-15 01:07:09 +08:00
|
|
|
* Converts a Vec2 to node (local) space coordinates. The result is in Points.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertToNodeSpace(const Vec2& worldPoint) const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2014-05-15 01:07:09 +08:00
|
|
|
* Converts a Vec2 to world space coordinates. The result is in Points.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertToWorldSpace(const Vec2& nodePoint) const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2014-05-15 01:07:09 +08:00
|
|
|
* Converts a Vec2 to node (local) space coordinates. The result is in Points.
|
2013-01-17 11:20:25 +08:00
|
|
|
* treating the returned/received node point as anchor relative.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertToNodeSpaceAR(const Vec2& worldPoint) const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2014-05-15 01:07:09 +08:00
|
|
|
* Converts a local Vec2 to world space coordinates.The result is in Points.
|
2013-01-17 11:20:25 +08:00
|
|
|
* treating the returned/received node point as anchor relative.
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertToWorldSpaceAR(const Vec2& nodePoint) const;
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2014-05-15 01:07:09 +08:00
|
|
|
* convenience methods which take a Touch instead of Vec2
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertTouchToNodeSpace(Touch * touch) const;
|
2012-03-23 17:31:28 +08:00
|
|
|
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* converts a Touch (world coordinates) into a local coordinate. This method is AR (Anchor Relative).
|
2012-03-23 17:31:28 +08:00
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertTouchToNodeSpaceAR(Touch * touch) const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-02-20 22:33:28 +08:00
|
|
|
/**
|
2014-01-14 04:52:07 +08:00
|
|
|
* Sets an additional transform matrix to the node.
|
|
|
|
*
|
2014-03-02 00:26:54 +08:00
|
|
|
* In order to remove it, call it again with the argument `nullptr`
|
2013-02-22 16:01:49 +08:00
|
|
|
*
|
2013-07-17 09:16:04 +08:00
|
|
|
* @note The additional transform will be concatenated at the end of getNodeToParentTransform.
|
2013-02-22 16:01:49 +08:00
|
|
|
* It could be used to simulate `parent-child` relationship between two nodes (e.g. one is in BatchNode, another isn't).
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
void setAdditionalTransform(Mat4* additionalTransform);
|
2014-03-01 08:10:48 +08:00
|
|
|
void setAdditionalTransform(const AffineTransform& additionalTransform);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// @} end of Coordinate Converters
|
2012-12-10 13:48:27 +08:00
|
|
|
|
2013-06-04 17:38:43 +08:00
|
|
|
/// @{
|
|
|
|
/// @name component functions
|
2013-11-30 01:09:38 +08:00
|
|
|
/**
|
2013-06-04 17:38:43 +08:00
|
|
|
* gets a component by its name
|
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
Component* getComponent(const std::string& name);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
2013-06-04 17:38:43 +08:00
|
|
|
* adds a component
|
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
virtual bool addComponent(Component *component);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* removes a component by its name
|
2013-06-04 17:38:43 +08:00
|
|
|
*/
|
2014-05-28 17:41:34 +08:00
|
|
|
virtual bool removeComponent(const std::string& name);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-06-04 17:38:43 +08:00
|
|
|
/**
|
|
|
|
* removes all components
|
|
|
|
*/
|
|
|
|
virtual void removeAllComponents();
|
|
|
|
/// @} end of component functions
|
2013-11-30 01:09:38 +08:00
|
|
|
|
|
|
|
|
2013-12-26 23:55:05 +08:00
|
|
|
#if CC_USE_PHYSICS
|
2013-09-30 13:02:17 +08:00
|
|
|
/**
|
|
|
|
* set the PhysicsBody that let the sprite effect with physics
|
2014-05-15 01:07:09 +08:00
|
|
|
* @note This method will set anchor point to Vec2::ANCHOR_MIDDLE if body not null, and you cann't change anchor point if node has a physics body.
|
2013-09-30 13:02:17 +08:00
|
|
|
*/
|
2013-10-18 15:34:13 +08:00
|
|
|
void setPhysicsBody(PhysicsBody* body);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-09-30 13:02:17 +08:00
|
|
|
/**
|
|
|
|
* get the PhysicsBody the sprite have
|
|
|
|
*/
|
|
|
|
PhysicsBody* getPhysicsBody() const;
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-09-30 13:02:17 +08:00
|
|
|
#endif
|
2013-12-06 18:07:16 +08:00
|
|
|
|
|
|
|
// overrides
|
|
|
|
virtual GLubyte getOpacity() const;
|
|
|
|
virtual GLubyte getDisplayedOpacity() const;
|
|
|
|
virtual void setOpacity(GLubyte opacity);
|
|
|
|
virtual void updateDisplayedOpacity(GLubyte parentOpacity);
|
|
|
|
virtual bool isCascadeOpacityEnabled() const;
|
|
|
|
virtual void setCascadeOpacityEnabled(bool cascadeOpacityEnabled);
|
|
|
|
|
2014-05-28 17:41:34 +08:00
|
|
|
virtual const Color3B& getColor() const;
|
2013-12-06 18:07:16 +08:00
|
|
|
virtual const Color3B& getDisplayedColor() const;
|
|
|
|
virtual void setColor(const Color3B& color);
|
|
|
|
virtual void updateDisplayedColor(const Color3B& parentColor);
|
|
|
|
virtual bool isCascadeColorEnabled() const;
|
|
|
|
virtual void setCascadeColorEnabled(bool cascadeColorEnabled);
|
|
|
|
|
2014-05-28 17:41:34 +08:00
|
|
|
virtual void setOpacityModifyRGB(bool value) {CC_UNUSED_PARAM(value);}
|
2013-12-06 18:07:16 +08:00
|
|
|
virtual bool isOpacityModifyRGB() const { return false; };
|
2014-03-21 13:44:29 +08:00
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
2013-11-14 07:55:36 +08:00
|
|
|
// Nodes should be created using create();
|
|
|
|
Node();
|
|
|
|
virtual ~Node();
|
2014-03-21 13:44:29 +08:00
|
|
|
|
2013-11-14 07:55:36 +08:00
|
|
|
virtual bool init();
|
2013-11-28 17:57:13 +08:00
|
|
|
|
2014-03-21 13:44:29 +08:00
|
|
|
protected:
|
2013-11-28 17:57:13 +08:00
|
|
|
/// lazy allocs
|
|
|
|
void childrenAlloc(void);
|
2013-11-28 16:02:03 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// helper that reorder a child
|
2013-06-20 14:13:12 +08:00
|
|
|
void insertChild(Node* child, int z);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// Removes a child, call child->onExit(), do cleanup, remove it from children array.
|
2013-12-12 12:07:20 +08:00
|
|
|
void detachChild(Node *child, ssize_t index, bool doCleanup);
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-01-17 11:20:25 +08:00
|
|
|
/// Convert cocos2d coordinates to UI windows coordinate.
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 convertToWindowSpace(const Vec2& nodePoint) const;
|
2014-03-01 08:10:48 +08:00
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
Mat4 transform(const Mat4 &parentTransform);
|
2014-03-01 08:10:48 +08:00
|
|
|
|
2013-12-06 18:07:16 +08:00
|
|
|
virtual void updateCascadeOpacity();
|
|
|
|
virtual void disableCascadeOpacity();
|
|
|
|
virtual void updateCascadeColor();
|
|
|
|
virtual void disableCascadeColor();
|
2013-12-11 15:57:20 +08:00
|
|
|
virtual void updateColor() {}
|
2014-04-15 03:21:18 +08:00
|
|
|
|
|
|
|
#if CC_USE_PHYSICS
|
2014-05-02 07:42:35 +08:00
|
|
|
virtual void updatePhysicsBodyPosition(Scene* layer);
|
|
|
|
virtual void updatePhysicsBodyRotation(Scene* layer);
|
2014-04-15 03:21:18 +08:00
|
|
|
#endif // CC_USE_PHYSICS
|
2013-01-17 11:20:25 +08:00
|
|
|
|
2014-02-23 11:16:42 +08:00
|
|
|
float _rotationX; ///< rotation on the X-axis
|
|
|
|
float _rotationY; ///< rotation on the Y-axis
|
2013-08-27 09:04:51 +08:00
|
|
|
|
2014-02-23 11:16:42 +08:00
|
|
|
// rotation Z is decomposed in 2 to simulate Skew for Flash animations
|
|
|
|
float _rotationZ_X; ///< rotation angle on Z-axis, component X
|
|
|
|
float _rotationZ_Y; ///< rotation angle on Z-axis, component Y
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-02-23 11:16:42 +08:00
|
|
|
float _scaleX; ///< scaling factor on x-axis
|
|
|
|
float _scaleY; ///< scaling factor on y-axis
|
|
|
|
float _scaleZ; ///< scaling factor on z-axis
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 _position; ///< position of the node
|
2014-02-23 11:16:42 +08:00
|
|
|
float _positionZ; ///< OpenGL real Z position
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-02-23 11:16:42 +08:00
|
|
|
float _skewX; ///< skew angle on x-axis
|
|
|
|
float _skewY; ///< skew angle on y-axis
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 _anchorPointInPoints; ///< anchor point in points
|
|
|
|
Vec2 _anchorPoint; ///< anchor point normalized (NOT in points)
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
Size _contentSize; ///< untransformed size of the node
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
Mat4 _modelViewTransform; ///< ModelView transform of the Node.
|
2014-01-14 04:52:07 +08:00
|
|
|
|
2013-07-17 09:16:04 +08:00
|
|
|
// "cache" variables are allowed to be mutable
|
2014-05-15 01:07:09 +08:00
|
|
|
mutable Mat4 _transform; ///< transform
|
2014-03-01 08:10:48 +08:00
|
|
|
mutable bool _transformDirty; ///< transform dirty flag
|
2014-05-15 01:07:09 +08:00
|
|
|
mutable Mat4 _inverse; ///< inverse transform
|
2014-03-01 08:10:48 +08:00
|
|
|
mutable bool _inverseDirty; ///< inverse transform dirty flag
|
2014-05-15 01:07:09 +08:00
|
|
|
mutable Mat4 _additionalTransform; ///< transform
|
2014-01-14 04:52:07 +08:00
|
|
|
bool _useAdditionalTransform; ///< The flag to check whether the additional transform is dirty
|
2014-03-01 08:10:48 +08:00
|
|
|
bool _transformUpdated; ///< Whether or not the Transform object was updated since the last frame
|
2014-01-19 03:35:27 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
int _localZOrder; ///< Local order (relative to its siblings) used to sort the node
|
|
|
|
float _globalZOrder; ///< Global order used to sort the node
|
2014-01-19 03:35:27 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
Vector<Node*> _children; ///< array of children nodes
|
2013-06-20 14:13:12 +08:00
|
|
|
Node *_parent; ///< weak reference to parent node
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-05 00:15:01 +08:00
|
|
|
int _tag; ///< a tag. Can be any number you assigned just to identify this node
|
|
|
|
|
2014-03-10 18:21:53 +08:00
|
|
|
std::string _name; ///<a string label, an user defined string to identify this node
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
void *_userData; ///< A user assingned void pointer, Can be point to any cpp object
|
|
|
|
Ref *_userObject; ///< A user assigned Object
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-05-09 06:43:12 +08:00
|
|
|
GLProgramState *_glProgramState; ///< OpenGL Program State
|
2013-07-26 09:42:53 +08:00
|
|
|
|
2014-01-22 01:26:58 +08:00
|
|
|
int _orderOfArrival; ///< used to preserve sequence while sorting children with the same localZOrder
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
Scheduler *_scheduler; ///< scheduler used to schedule timers and updates
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
ActionManager *_actionManager; ///< a pointer to ActionManager singleton, which is used to handle all the actions
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-10-26 15:04:01 +08:00
|
|
|
EventDispatcher* _eventDispatcher; ///< event dispatcher used to dispatch all kinds of events
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
bool _running; ///< is running
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-03-01 08:10:48 +08:00
|
|
|
bool _visible; ///< is this node visible
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
bool _ignoreAnchorPointForPosition; ///< true if the Anchor Vec2 will be (0,0) when you position the Node, false otherwise.
|
2013-06-20 14:13:12 +08:00
|
|
|
///< Used by Layer and Scene.
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _reorderChildDirty; ///< children order dirty flag
|
|
|
|
bool _isTransitionFinished; ///< flag to indicate whether the transition was finished
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2014-02-20 16:40:46 +08:00
|
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
2013-06-15 14:03:30 +08:00
|
|
|
int _scriptHandler; ///< script handler for onEnter() & onExit(), used in Javascript binding and Lua binding.
|
|
|
|
int _updateScriptHandler; ///< script handler for update() callback per frame, which is invoked from lua & javascript.
|
|
|
|
ccScriptType _scriptType; ///< type of script binding, lua or javascript
|
2014-02-20 16:40:46 +08:00
|
|
|
#endif
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
ComponentContainer *_componentContainer; ///< Dictionary of components
|
2013-11-30 01:09:38 +08:00
|
|
|
|
2013-12-26 23:55:05 +08:00
|
|
|
#if CC_USE_PHYSICS
|
2013-09-30 13:02:17 +08:00
|
|
|
PhysicsBody* _physicsBody; ///< the physicsBody the node have
|
|
|
|
#endif
|
2013-12-06 18:07:16 +08:00
|
|
|
|
|
|
|
// opacity controls
|
2013-12-11 15:57:20 +08:00
|
|
|
GLubyte _displayedOpacity;
|
2013-02-27 14:48:19 +08:00
|
|
|
GLubyte _realOpacity;
|
2013-12-11 15:57:20 +08:00
|
|
|
Color3B _displayedColor;
|
2013-07-11 16:38:58 +08:00
|
|
|
Color3B _realColor;
|
2013-12-11 15:57:20 +08:00
|
|
|
bool _cascadeColorEnabled;
|
2013-02-27 14:48:19 +08:00
|
|
|
bool _cascadeOpacityEnabled;
|
2013-11-14 07:55:36 +08:00
|
|
|
|
2014-03-25 15:07:11 +08:00
|
|
|
static int s_globalOrderOfArrival;
|
|
|
|
|
2013-11-14 07:55:36 +08:00
|
|
|
private:
|
2013-12-06 18:07:16 +08:00
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(Node);
|
2014-04-15 03:21:18 +08:00
|
|
|
|
|
|
|
#if CC_USE_PHYSICS
|
|
|
|
friend class Layer;
|
|
|
|
#endif //CC_USTPS
|
2013-02-27 09:38:30 +08:00
|
|
|
};
|
|
|
|
|
2014-03-26 14:54:50 +08:00
|
|
|
// NodeRGBA
|
2013-12-09 11:32:28 +08:00
|
|
|
|
|
|
|
/** NodeRGBA is a subclass of Node that implements the RGBAProtocol protocol.
|
|
|
|
|
|
|
|
All features from Node are valid, plus the following new features:
|
|
|
|
- opacity
|
|
|
|
- RGB colors
|
|
|
|
|
|
|
|
Opacity/Color propagates into children that conform to the RGBAProtocol if cascadeOpacity/cascadeColor is enabled.
|
|
|
|
@since v2.1
|
|
|
|
*/
|
2013-12-13 10:10:49 +08:00
|
|
|
class CC_DLL __NodeRGBA : public Node, public __RGBAProtocol
|
2013-12-09 11:32:28 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// overrides
|
|
|
|
virtual GLubyte getOpacity() const override { return Node::getOpacity(); }
|
|
|
|
virtual GLubyte getDisplayedOpacity() const override { return Node::getDisplayedOpacity(); }
|
|
|
|
virtual void setOpacity(GLubyte opacity) override { return Node::setOpacity(opacity); }
|
|
|
|
virtual void updateDisplayedOpacity(GLubyte parentOpacity) override { return Node::updateDisplayedOpacity(parentOpacity); }
|
|
|
|
virtual bool isCascadeOpacityEnabled() const override { return Node::isCascadeOpacityEnabled(); }
|
|
|
|
virtual void setCascadeOpacityEnabled(bool cascadeOpacityEnabled) override { return Node::setCascadeOpacityEnabled(cascadeOpacityEnabled); }
|
|
|
|
|
|
|
|
virtual const Color3B& getColor(void) const override { return Node::getColor(); }
|
|
|
|
virtual const Color3B& getDisplayedColor() const override { return Node::getDisplayedColor(); }
|
|
|
|
virtual void setColor(const Color3B& color) override { return Node::setColor(color); }
|
|
|
|
virtual void updateDisplayedColor(const Color3B& parentColor) override { return Node::updateDisplayedColor(parentColor); }
|
|
|
|
virtual bool isCascadeColorEnabled() const override { return Node::isCascadeColorEnabled(); }
|
|
|
|
virtual void setCascadeColorEnabled(bool cascadeColorEnabled) override { return Node::setCascadeColorEnabled(cascadeColorEnabled); }
|
|
|
|
|
|
|
|
virtual void setOpacityModifyRGB(bool bValue) override { return Node::setOpacityModifyRGB(bValue); }
|
|
|
|
virtual bool isOpacityModifyRGB() const override { return Node::isOpacityModifyRGB(); }
|
|
|
|
|
|
|
|
protected:
|
2013-12-16 03:42:54 +08:00
|
|
|
__NodeRGBA();
|
2013-12-13 10:10:49 +08:00
|
|
|
virtual ~__NodeRGBA() {}
|
2013-12-09 11:32:28 +08:00
|
|
|
|
|
|
|
private:
|
2013-12-13 10:10:49 +08:00
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(__NodeRGBA);
|
2013-12-09 11:32:28 +08:00
|
|
|
};
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of base_node group
|
|
|
|
/// @}
|
|
|
|
|
2012-03-23 17:31:28 +08:00
|
|
|
NS_CC_END
|
2010-07-07 15:15:30 +08:00
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
#endif // __CCNODE_H__
|