geode/loader/include/Geode/cocos/actions/CCActionManager.h

146 lines
4.8 KiB
C
Raw Normal View History

2022-07-30 12:24:03 -04:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2009 Valentin Milea
Copyright (c) 2011 Zynga Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __ACTION_CCACTION_MANAGER_H__
#define __ACTION_CCACTION_MANAGER_H__
#include "CCAction.h"
#include "../cocoa/CCArray.h"
#include "../cocoa/CCObject.h"
2022-07-30 12:24:03 -04:00
NS_CC_BEGIN
class CCSet;
struct _hashElement;
/**
* @addtogroup actions
* @{
*/
/**
@brief CCActionManager is a singleton that manages all the actions.
Normally you won't need to use this singleton directly. 99% of the cases you will use the CCNode interface,
which uses this singleton.
But there are some cases where you might need to use this singleton.
Examples:
- When you want to run an action where the target is different from a CCNode.
- When you want to pause / resume the actions
@since v0.8
*/
class CC_DLL CCActionManager : public CCObject
{
GEODE_FRIEND_MODIFY
public:
/**
* @js ctor
*/
CCActionManager(void);
/**
* @js NA
* @lua NA
*/
~CCActionManager(void);
2023-08-21 18:25:27 -04:00
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCActionManager, CCObject);
2022-07-30 12:24:03 -04:00
// actions
/** Adds an action with a target.
If the target is already present, then the action will be added to the existing target.
If the target is not present, a new instance of this target will be created either paused or not, and the action will be added to the newly created target.
When the target is paused, the queued actions won't be 'ticked'.
*/
void addAction(CCAction *pAction, CCNode *pTarget, bool paused);
/** Removes all actions from all the targets.
*/
void removeAllActions(void);
/** Removes all actions from a certain target.
All the actions that belongs to the target will be removed.
*/
void removeAllActionsFromTarget(CCObject *pTarget);
/** Removes an action given an action reference.
*/
void removeAction(CCAction *pAction);
/** Removes an action given its tag and the target */
void removeActionByTag(unsigned int tag, CCObject *pTarget);
/** Gets an action given its tag an a target
@return the Action the with the given tag
*/
CCAction* getActionByTag(unsigned int tag, CCObject *pTarget);
/** Returns the numbers of actions that are running in a certain target.
* 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.
*/
unsigned int numberOfRunningActionsInTarget(CCObject *pTarget);
/** Pauses the target: all running actions and newly added actions will be paused.
*/
void pauseTarget(CCObject *pTarget);
/** Resumes the target. All queued actions will be resumed.
*/
void resumeTarget(CCObject *pTarget);
/** Pauses all running actions, returning a list of targets whose actions were paused.
*/
CCSet* pauseAllRunningActions();
/** Resume a set of targets (convenience function to reverse a pauseAllRunningActions call)
*/
void resumeTargets(CCSet *targetsToResume);
protected:
// declared in CCActionManager.m
void removeActionAtIndex(unsigned int uIndex, struct _hashElement *pElement);
void deleteHashElement(struct _hashElement *pElement);
void actionAllocWithHashElement(struct _hashElement *pElement);
void update(float dt);
protected:
struct _hashElement *m_pTargets;
struct _hashElement *m_pCurrentTarget;
bool m_bCurrentTargetSalvaged;
};
// end of actions group
/// @}
NS_CC_END
#endif // __ACTION_CCACTION_MANAGER_H__