mirror of https://github.com/axmolengine/axmol.git
122 lines
3.8 KiB
Plaintext
122 lines
3.8 KiB
Plaintext
enum {
|
|
kCCNodeTagInvalid = -1,
|
|
};
|
|
|
|
enum {
|
|
kCCNodeOnEnter,
|
|
kCCNodeOnExit
|
|
};
|
|
|
|
typedef enum {
|
|
CC_GL_ALL = 0,
|
|
} ccGLServerState;
|
|
|
|
class CCNode : public CCObject
|
|
{
|
|
int getZOrder();
|
|
float getVertexZ();
|
|
void setVertexZ(float var);
|
|
float getRotation();
|
|
void setRotation(float newRotation);
|
|
float getScale();
|
|
void setScale(float scale);
|
|
float getScaleX();
|
|
void setScaleX(float newScaleX);
|
|
float getScaleY();
|
|
void setScaleY(float newScaleY);
|
|
void getPosition(float* x = 0, float* y = 0);
|
|
float getPositionX();
|
|
float getPositionY();
|
|
void setPosition(float x, float y);
|
|
void setPosition(CCPoint pos);
|
|
void setPositionX(float x);
|
|
void setPositionY(float y);
|
|
float getSkewX();
|
|
void setSkewX(float skewX);
|
|
float getSkewY();
|
|
void setSkewY(float skewY);
|
|
bool isVisible();
|
|
void setVisible(bool var);
|
|
CCPoint getAnchorPoint();
|
|
void setAnchorPoint(CCPoint point);
|
|
CCSize getContentSize();
|
|
void setContentSize(const CCSize & size);
|
|
int getTag();
|
|
void setTag(int var);
|
|
|
|
CCArray* getChildren();
|
|
unsigned int getChildrenCount(void);
|
|
|
|
CCCamera* getCamera();
|
|
CCGridBase* getGrid();
|
|
void setGrid(CCGridBase* pGrid);
|
|
CCPoint getAnchorPointInPoints();
|
|
bool isRunning();
|
|
CCNode* getParent();
|
|
void setParent(CCNode * var);
|
|
bool isIgnoreAnchorPointForPosition();
|
|
void ignoreAnchorPointForPosition(bool newValue);
|
|
void* getUserData();
|
|
void setUserData(void *var);
|
|
CCObject* getUserObject();
|
|
void setUserObject(CCObject* pObject);
|
|
CCGLProgram* getShaderProgram();
|
|
void setShaderProgram(CCGLProgram* pShaderProgram);
|
|
int getOrderOfArrival();
|
|
void setOrderOfArrival(int order);
|
|
ccGLServerState getGLServerState();
|
|
void setGLServerState(ccGLServerState state);
|
|
CCActionManager* getActionManager();
|
|
void setActionManager(CCActionManager* pActionMgr);
|
|
ccGLServerState getGLServerState(void);
|
|
void setGLServerState(ccGLServerState state);
|
|
CCScheduler* getScheduler();
|
|
void setScheduler(CCScheduler* pScheduler);
|
|
void addChild(CCNode * child);
|
|
void addChild(CCNode * child, int zOrder);
|
|
void addChild(CCNode * child, int zOrder, int tag);
|
|
void removeChild(CCNode* child, bool cleanup);
|
|
void removeAllChildrenWithCleanup(bool cleanup);
|
|
void reorderChild(CCNode * child, int zOrder);
|
|
void cleanup(void);
|
|
void draw(void);
|
|
void visit(void);
|
|
void transform(void);
|
|
void transformAncestors(void);
|
|
CCRect boundingBox(void);
|
|
|
|
CCAction* runAction(CCAction* action);
|
|
void stopAllActions(void);
|
|
void stopAction(CCAction* action);
|
|
|
|
void stopActionByTag(int tag);
|
|
CCAction* getActionByTag(int tag);
|
|
char * description(void);
|
|
CCNode* getChildByTag(int tag);
|
|
|
|
unsigned int numberOfRunningActions(void);
|
|
|
|
CCAffineTransform nodeToParentTransform(void);
|
|
CCAffineTransform parentToNodeTransform(void);
|
|
CCAffineTransform nodeToWorldTransform(void);
|
|
CCAffineTransform worldToNodeTransform(void);
|
|
|
|
CCPoint convertToNodeSpace(CCPoint worldPoint);
|
|
CCPoint convertToWorldSpace(CCPoint nodePoint);
|
|
CCPoint convertToNodeSpaceAR(CCPoint worldPoint);
|
|
CCPoint convertToWorldSpaceAR(CCPoint nodePoint);
|
|
CCPoint convertTouchToNodeSpace(CCTouch * touch);
|
|
CCPoint convertTouchToNodeSpaceAR(CCTouch * touch);
|
|
|
|
void removeFromParentAndCleanup(bool cleanup);
|
|
void removeChildByTag(int tag, bool cleanup);
|
|
|
|
void scheduleUpdateWithPriorityLua(LUA_FUNCTION nHandler, int priority);
|
|
void unscheduleUpdate(void);
|
|
|
|
void registerScriptHandler(LUA_FUNCTION funcID);
|
|
void unregisterScriptHandler(void);
|
|
|
|
static CCNode * create(void);
|
|
};
|