axmol/core/base/CCScheduler.cpp

1104 lines
30 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
https://axis-project.github.io/
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "base/CCScheduler.h"
#include "base/ccMacros.h"
#include "base/CCDirector.h"
#include "uthash/utlist.h"
2019-11-23 20:27:39 +08:00
#include "base/ccCArray.h"
#include "base/CCScriptSupport.h"
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
// data structures
// A list double-linked list used for "updates with priority"
typedef struct _listEntry
{
2021-12-25 10:04:45 +08:00
struct _listEntry *prev, *next;
ccSchedulerFunc callback;
void* target;
int priority;
bool paused;
bool markedForDeletion; // selector will no longer be called and entry will be removed at end of the next tick
2019-11-23 20:27:39 +08:00
} tListEntry;
typedef struct _hashUpdateEntry
{
2021-12-25 10:04:45 +08:00
tListEntry** list; // Which list does it belong to ?
tListEntry* entry; // entry in the list
void* target;
ccSchedulerFunc callback;
UT_hash_handle hh;
2019-11-23 20:27:39 +08:00
} tHashUpdateEntry;
// Hash Element used for "selectors with interval"
typedef struct _hashSelectorEntry
{
2021-12-25 10:04:45 +08:00
ccArray* timers;
void* target;
int timerIndex;
Timer* currentTimer;
bool paused;
UT_hash_handle hh;
2019-11-23 20:27:39 +08:00
} tHashTimerEntry;
// implementation Timer
Timer::Timer()
2021-12-25 10:04:45 +08:00
: _scheduler(nullptr)
, _elapsed(-1)
, _runForever(false)
, _useDelay(false)
, _timesExecuted(0)
, _repeat(0)
, _delay(0.0f)
, _interval(0.0f)
, _aborted(false)
{}
2019-11-23 20:27:39 +08:00
void Timer::setupTimerWithInterval(float seconds, unsigned int repeat, float delay)
{
2021-12-25 10:04:45 +08:00
_elapsed = -1;
_interval = seconds;
_delay = delay;
_useDelay = (_delay > 0.0f) ? true : false;
_repeat = repeat;
2022-07-16 10:43:05 +08:00
_runForever = (_repeat == AX_REPEAT_FOREVER) ? true : false;
2019-11-23 20:27:39 +08:00
_timesExecuted = 0;
}
void Timer::update(float dt)
{
if (_elapsed == -1)
{
2021-12-25 10:04:45 +08:00
_elapsed = 0;
2019-11-23 20:27:39 +08:00
_timesExecuted = 0;
return;
}
// accumulate elapsed time
_elapsed += dt;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// deal with delay
if (_useDelay)
{
if (_elapsed < _delay)
{
return;
}
2021-12-25 10:04:45 +08:00
_timesExecuted += 1; // important to increment before call trigger
2019-11-23 20:27:39 +08:00
trigger(_delay);
2021-12-25 10:04:45 +08:00
_elapsed = _elapsed - _delay;
2019-11-23 20:27:39 +08:00
_useDelay = false;
// after delay, the rest time should compare with interval
if (isExhausted())
2021-12-25 10:04:45 +08:00
{ // unschedule timer
2019-11-23 20:27:39 +08:00
cancel();
return;
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// if _interval == 0, should trigger once every frame
float interval = (_interval > 0) ? _interval : _elapsed;
while ((_elapsed >= interval) && !_aborted)
{
2021-12-25 10:04:45 +08:00
_timesExecuted += 1; // important to increment before call trigger
2019-11-23 20:27:39 +08:00
trigger(interval);
_elapsed -= interval;
if (isExhausted())
{
cancel();
break;
}
if (_elapsed <= 0.f)
{
break;
}
}
}
bool Timer::isExhausted() const
{
return !_runForever && _timesExecuted > _repeat;
}
// TimerTargetSelector
2021-12-25 10:04:45 +08:00
TimerTargetSelector::TimerTargetSelector() : _target(nullptr), _selector(nullptr) {}
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
bool TimerTargetSelector::initWithSelector(Scheduler* scheduler,
SEL_SCHEDULE selector,
Ref* target,
float seconds,
unsigned int repeat,
float delay)
2019-11-23 20:27:39 +08:00
{
_scheduler = scheduler;
2021-12-25 10:04:45 +08:00
_target = target;
_selector = selector;
2019-11-23 20:27:39 +08:00
setupTimerWithInterval(seconds, repeat, delay);
return true;
}
void TimerTargetSelector::trigger(float dt)
{
if (_target && _selector)
{
(_target->*_selector)(dt);
}
}
void TimerTargetSelector::cancel()
{
_scheduler->unschedule(_selector, _target);
}
// TimerTargetCallback
2021-12-25 10:04:45 +08:00
TimerTargetCallback::TimerTargetCallback() : _target(nullptr), _callback(nullptr) {}
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
bool TimerTargetCallback::initWithCallback(Scheduler* scheduler,
const ccSchedulerFunc& callback,
void* target,
std::string_view key,
2021-12-25 10:04:45 +08:00
float seconds,
unsigned int repeat,
float delay)
2019-11-23 20:27:39 +08:00
{
_scheduler = scheduler;
2021-12-25 10:04:45 +08:00
_target = target;
_callback = callback;
_key = key;
2019-11-23 20:27:39 +08:00
setupTimerWithInterval(seconds, repeat, delay);
return true;
}
void TimerTargetCallback::trigger(float dt)
{
if (_callback)
{
_callback(dt);
}
}
void TimerTargetCallback::cancel()
{
_scheduler->unschedule(_key, _target);
}
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2019-11-23 20:27:39 +08:00
// TimerScriptHandler
bool TimerScriptHandler::initWithScriptHandler(int handler, float seconds)
{
_scriptHandler = handler;
2021-12-25 10:04:45 +08:00
_elapsed = -1;
_interval = seconds;
2019-11-23 20:27:39 +08:00
return true;
}
void TimerScriptHandler::trigger(float dt)
{
if (0 != _scriptHandler)
{
2021-12-25 10:04:45 +08:00
SchedulerScriptData data(_scriptHandler, dt);
ScriptEvent event(kScheduleEvent, &data);
ScriptEngineManager::sendEventToLua(event);
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
void TimerScriptHandler::cancel() {}
2019-11-23 20:27:39 +08:00
#endif
// implementation of Scheduler
// Priority level reserved for system services.
const int Scheduler::PRIORITY_SYSTEM = INT_MIN;
// Minimum priority level for user scheduling.
const int Scheduler::PRIORITY_NON_SYSTEM_MIN = PRIORITY_SYSTEM + 1;
Scheduler::Scheduler()
2021-12-25 10:04:45 +08:00
: _timeScale(1.0f)
, _updatesNegList(nullptr)
, _updates0List(nullptr)
, _updatesPosList(nullptr)
, _hashForUpdates(nullptr)
, _hashForTimers(nullptr)
, _currentTarget(nullptr)
, _currentTargetSalvaged(false)
, _updateHashLocked(false)
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2021-12-25 10:04:45 +08:00
, _scriptHandlerEntries(20)
2019-11-23 20:27:39 +08:00
#endif
{
// I don't expect to have more than 30 functions to all per frame
_functionsToPerform.reserve(30);
}
Scheduler::~Scheduler()
{
unscheduleAll();
}
2021-12-25 10:04:45 +08:00
void Scheduler::removeHashElement(_hashSelectorEntry* element)
2019-11-23 20:27:39 +08:00
{
ccArrayFree(element->timers);
HASH_DEL(_hashForTimers, element);
free(element);
}
2021-12-25 10:04:45 +08:00
void Scheduler::schedule(const ccSchedulerFunc& callback,
void* target,
float interval,
bool paused,
std::string_view key)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
this->schedule(callback, target, interval, AX_REPEAT_FOREVER, 0.0f, paused, key);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
void Scheduler::schedule(const ccSchedulerFunc& callback,
void* target,
float interval,
unsigned int repeat,
float delay,
bool paused,
std::string_view key)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(target, "Argument target must be non-nullptr");
AXASSERT(!key.empty(), "key should not be empty!");
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
2021-12-25 10:04:45 +08:00
if (!element)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
element = (tHashTimerEntry*)calloc(sizeof(*element), 1);
2019-11-23 20:27:39 +08:00
element->target = target;
HASH_ADD_PTR(_hashForTimers, target, element);
// Is this the 1st element ? Then set the pause level to all the selectors of this target
element->paused = paused;
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(element->paused == paused, "element's paused should be paused!");
2019-11-23 20:27:39 +08:00
}
if (element->timers == nullptr)
{
element->timers = ccArrayNew(10);
}
2021-12-25 10:04:45 +08:00
else
2019-11-23 20:27:39 +08:00
{
for (int i = 0; i < element->timers->num; ++i)
{
2021-12-25 10:04:45 +08:00
TimerTargetCallback* timer = dynamic_cast<TimerTargetCallback*>(element->timers->arr[i]);
2019-11-23 20:27:39 +08:00
if (timer && !timer->isExhausted() && key == timer->getKey())
{
2022-07-16 10:43:05 +08:00
AXLOG("CCScheduler#schedule. Reiniting timer with interval %.4f, repeat %u, delay %.4f", interval,
2021-12-25 10:04:45 +08:00
repeat, delay);
2019-11-23 20:27:39 +08:00
timer->setupTimerWithInterval(interval, repeat, delay);
return;
}
}
ccArrayEnsureExtraCapacity(element->timers, 1);
}
2021-12-25 10:04:45 +08:00
TimerTargetCallback* timer = new TimerTargetCallback();
2019-11-23 20:27:39 +08:00
timer->initWithCallback(this, callback, target, key, interval, repeat, delay);
ccArrayAppendObject(element->timers, timer);
timer->release();
}
void Scheduler::unschedule(std::string_view key, void* target)
2019-11-23 20:27:39 +08:00
{
// explicit handle nil arguments when removing an object
if (target == nullptr || key.empty())
{
return;
}
2022-07-16 10:43:05 +08:00
// AXASSERT(target);
// AXASSERT(selector);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
if (element)
{
for (int i = 0; i < element->timers->num; ++i)
{
2021-12-25 10:04:45 +08:00
TimerTargetCallback* timer = dynamic_cast<TimerTargetCallback*>(element->timers->arr[i]);
2019-11-23 20:27:39 +08:00
if (timer && key == timer->getKey())
{
2021-12-25 10:04:45 +08:00
if (timer == element->currentTimer && (!timer->isAborted()))
2019-11-23 20:27:39 +08:00
{
timer->retain();
timer->setAborted();
}
ccArrayRemoveObjectAtIndex(element->timers, i, true);
// update timerIndex in case we are in tick:, looping over the actions
if (element->timerIndex >= i)
{
element->timerIndex--;
}
if (element->timers->num == 0)
{
if (_currentTarget == element)
{
_currentTargetSalvaged = true;
}
else
{
removeHashElement(element);
}
}
return;
}
}
}
}
2021-12-25 10:04:45 +08:00
void Scheduler::priorityIn(tListEntry** list, const ccSchedulerFunc& callback, void* target, int priority, bool paused)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
tListEntry* listElement = new tListEntry();
2019-11-23 20:27:39 +08:00
listElement->callback = callback;
2021-12-25 10:04:45 +08:00
listElement->target = target;
2019-11-23 20:27:39 +08:00
listElement->priority = priority;
2021-12-25 10:04:45 +08:00
listElement->paused = paused;
2019-11-23 20:27:39 +08:00
listElement->next = listElement->prev = nullptr;
2021-12-25 10:04:45 +08:00
listElement->markedForDeletion = false;
2019-11-23 20:27:39 +08:00
// empty list ?
2021-12-25 10:04:45 +08:00
if (!*list)
2019-11-23 20:27:39 +08:00
{
DL_APPEND(*list, listElement);
}
else
{
bool added = false;
2021-12-25 10:04:45 +08:00
for (tListEntry* element = *list; element; element = element->next)
2019-11-23 20:27:39 +08:00
{
if (priority < element->priority)
{
if (element == *list)
{
DL_PREPEND(*list, listElement);
}
else
{
listElement->next = element;
listElement->prev = element->prev;
element->prev->next = listElement;
2021-12-25 10:04:45 +08:00
element->prev = listElement;
2019-11-23 20:27:39 +08:00
}
added = true;
break;
}
}
// Not added? priority has the higher value. Append it.
2021-12-25 10:04:45 +08:00
if (!added)
2019-11-23 20:27:39 +08:00
{
DL_APPEND(*list, listElement);
}
}
// update hash entry for quick access
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* hashElement = (tHashUpdateEntry*)calloc(sizeof(*hashElement), 1);
hashElement->target = target;
hashElement->list = list;
hashElement->entry = listElement;
2019-11-23 20:27:39 +08:00
memset(&hashElement->hh, 0, sizeof(hashElement->hh));
HASH_ADD_PTR(_hashForUpdates, target, hashElement);
}
2021-12-25 10:04:45 +08:00
void Scheduler::appendIn(_listEntry** list, const ccSchedulerFunc& callback, void* target, bool paused)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
tListEntry* listElement = new tListEntry();
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
listElement->callback = callback;
listElement->target = target;
listElement->paused = paused;
listElement->priority = 0;
2019-11-23 20:27:39 +08:00
listElement->markedForDeletion = false;
DL_APPEND(*list, listElement);
// update hash entry for quicker access
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* hashElement = (tHashUpdateEntry*)calloc(sizeof(*hashElement), 1);
hashElement->target = target;
hashElement->list = list;
hashElement->entry = listElement;
2019-11-23 20:27:39 +08:00
memset(&hashElement->hh, 0, sizeof(hashElement->hh));
HASH_ADD_PTR(_hashForUpdates, target, hashElement);
}
2021-12-25 10:04:45 +08:00
void Scheduler::schedulePerFrame(const ccSchedulerFunc& callback, void* target, int priority, bool paused)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* hashElement = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForUpdates, &target, hashElement);
if (hashElement)
{
// change priority: should unschedule it first
if (hashElement->entry->priority != priority)
{
unscheduleUpdate(target);
}
else
{
// don't add it again
return;
}
}
// most of the updates are going to be 0, that's way there
// is an special list for updates with priority 0
if (priority == 0)
{
appendIn(&_updates0List, callback, target, paused);
}
else if (priority < 0)
{
priorityIn(&_updatesNegList, callback, target, priority, paused);
}
else
{
// priority > 0
priorityIn(&_updatesPosList, callback, target, priority, paused);
}
}
bool Scheduler::isScheduled(std::string_view key, const void* target) const
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(!key.empty(), "Argument key must not be empty");
AXASSERT(target, "Argument target must be non-nullptr");
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (!element)
{
return false;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (element->timers == nullptr)
{
return false;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
for (int i = 0; i < element->timers->num; ++i)
{
2021-12-25 10:04:45 +08:00
TimerTargetCallback* timer = dynamic_cast<TimerTargetCallback*>(element->timers->arr[i]);
2019-11-23 20:27:39 +08:00
if (timer && !timer->isExhausted() && key == timer->getKey())
{
return true;
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return false;
}
2021-12-25 10:04:45 +08:00
void Scheduler::removeUpdateFromHash(struct _listEntry* entry)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForUpdates, &entry->target, element);
if (element)
{
// list entry
DL_DELETE(*element->list, element->entry);
if (!_updateHashLocked)
2022-07-16 10:43:05 +08:00
AX_SAFE_DELETE(element->entry);
2019-11-23 20:27:39 +08:00
else
{
element->entry->markedForDeletion = true;
_updateDeleteVector.push_back(element->entry);
}
// hash entry
HASH_DEL(_hashForUpdates, element);
free(element);
}
}
2021-12-25 10:04:45 +08:00
void Scheduler::unscheduleUpdate(void* target)
2019-11-23 20:27:39 +08:00
{
if (target == nullptr)
{
return;
}
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForUpdates, &target, element);
if (element)
this->removeUpdateFromHash(element->entry);
}
void Scheduler::unscheduleAll()
{
unscheduleAllWithMinPriority(PRIORITY_SYSTEM);
}
void Scheduler::unscheduleAllWithMinPriority(int minPriority)
{
// Custom Selectors
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
tHashTimerEntry* nextElement = nullptr;
2019-11-23 20:27:39 +08:00
for (element = _hashForTimers; element != nullptr;)
{
// element may be removed in unscheduleAllSelectorsForTarget
2021-12-25 10:04:45 +08:00
nextElement = (tHashTimerEntry*)element->hh.next;
2019-11-23 20:27:39 +08:00
unscheduleAllForTarget(element->target);
element = nextElement;
}
// Updates selectors
tListEntry *entry, *tmp;
2021-12-25 10:04:45 +08:00
if (minPriority < 0)
2019-11-23 20:27:39 +08:00
{
DL_FOREACH_SAFE(_updatesNegList, entry, tmp)
{
2021-12-25 10:04:45 +08:00
if (entry->priority >= minPriority)
2019-11-23 20:27:39 +08:00
{
unscheduleUpdate(entry->target);
}
}
}
2021-12-25 10:04:45 +08:00
if (minPriority <= 0)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
DL_FOREACH_SAFE(_updates0List, entry, tmp) { unscheduleUpdate(entry->target); }
2019-11-23 20:27:39 +08:00
}
DL_FOREACH_SAFE(_updatesPosList, entry, tmp)
{
2021-12-25 10:04:45 +08:00
if (entry->priority >= minPriority)
2019-11-23 20:27:39 +08:00
{
unscheduleUpdate(entry->target);
}
}
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2019-11-23 20:27:39 +08:00
_scriptHandlerEntries.clear();
#endif
}
2021-12-25 10:04:45 +08:00
void Scheduler::unscheduleAllForTarget(void* target)
2019-11-23 20:27:39 +08:00
{
// explicit nullptr handling
if (target == nullptr)
{
return;
}
// Custom Selectors
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
if (element)
{
2021-12-25 10:04:45 +08:00
if (ccArrayContainsObject(element->timers, element->currentTimer) && (!element->currentTimer->isAborted()))
2019-11-23 20:27:39 +08:00
{
element->currentTimer->retain();
element->currentTimer->setAborted();
}
ccArrayRemoveAllObjects(element->timers);
if (_currentTarget == element)
{
_currentTargetSalvaged = true;
}
else
{
removeHashElement(element);
}
}
// update selector
unscheduleUpdate(target);
}
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2019-11-23 20:27:39 +08:00
unsigned int Scheduler::scheduleScriptFunc(unsigned int handler, float interval, bool paused)
{
SchedulerScriptHandlerEntry* entry = SchedulerScriptHandlerEntry::create(handler, interval, paused);
_scriptHandlerEntries.pushBack(entry);
return entry->getEntryId();
}
void Scheduler::unscheduleScriptEntry(unsigned int scheduleScriptEntryID)
{
for (ssize_t i = _scriptHandlerEntries.size() - 1; i >= 0; i--)
{
SchedulerScriptHandlerEntry* entry = _scriptHandlerEntries.at(i);
if (entry->getEntryId() == (int)scheduleScriptEntryID)
{
entry->markedForDeletion();
break;
}
}
}
#endif
2021-12-25 10:04:45 +08:00
void Scheduler::resumeTarget(void* target)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(target != nullptr, "target can't be nullptr!");
2019-11-23 20:27:39 +08:00
// custom selectors
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
if (element)
{
element->paused = false;
}
// update selector
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* elementUpdate = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForUpdates, &target, elementUpdate);
if (elementUpdate)
{
2022-07-16 10:43:05 +08:00
AXASSERT(elementUpdate->entry != nullptr, "elementUpdate's entry can't be nullptr!");
2019-11-23 20:27:39 +08:00
elementUpdate->entry->paused = false;
}
}
2021-12-25 10:04:45 +08:00
void Scheduler::pauseTarget(void* target)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(target != nullptr, "target can't be nullptr!");
2019-11-23 20:27:39 +08:00
// custom selectors
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
if (element)
{
element->paused = true;
}
// update selector
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* elementUpdate = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForUpdates, &target, elementUpdate);
if (elementUpdate)
{
2022-07-16 10:43:05 +08:00
AXASSERT(elementUpdate->entry != nullptr, "elementUpdate's entry can't be nullptr!");
2019-11-23 20:27:39 +08:00
elementUpdate->entry->paused = true;
}
}
2021-12-25 10:04:45 +08:00
bool Scheduler::isTargetPaused(void* target)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(target != nullptr, "target must be non nil");
2019-11-23 20:27:39 +08:00
// Custom selectors
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
2021-12-25 10:04:45 +08:00
if (element)
2019-11-23 20:27:39 +08:00
{
return element->paused;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// We should check update selectors if target does not have custom selectors
2021-12-25 10:04:45 +08:00
tHashUpdateEntry* elementUpdate = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForUpdates, &target, elementUpdate);
2021-12-25 10:04:45 +08:00
if (elementUpdate)
2019-11-23 20:27:39 +08:00
{
return elementUpdate->entry->paused;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return false; // should never get here
}
std::set<void*> Scheduler::pauseAllTargets()
{
return pauseAllTargetsWithMinPriority(PRIORITY_SYSTEM);
}
std::set<void*> Scheduler::pauseAllTargetsWithMinPriority(int minPriority)
{
std::set<void*> idsWithSelectors;
// Custom Selectors
2021-12-25 10:04:45 +08:00
for (tHashTimerEntry* element = _hashForTimers; element != nullptr; element = (tHashTimerEntry*)element->hh.next)
2019-11-23 20:27:39 +08:00
{
element->paused = true;
idsWithSelectors.insert(element->target);
}
// Updates selectors
tListEntry *entry, *tmp;
2021-12-25 10:04:45 +08:00
if (minPriority < 0)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
DL_FOREACH_SAFE(_updatesNegList, entry, tmp)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (entry->priority >= minPriority)
2019-11-23 20:27:39 +08:00
{
entry->paused = true;
idsWithSelectors.insert(entry->target);
}
}
}
2021-12-25 10:04:45 +08:00
if (minPriority <= 0)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
DL_FOREACH_SAFE(_updates0List, entry, tmp)
2019-11-23 20:27:39 +08:00
{
entry->paused = true;
idsWithSelectors.insert(entry->target);
}
}
2021-12-25 10:04:45 +08:00
DL_FOREACH_SAFE(_updatesPosList, entry, tmp)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (entry->priority >= minPriority)
2019-11-23 20:27:39 +08:00
{
entry->paused = true;
idsWithSelectors.insert(entry->target);
}
}
return idsWithSelectors;
}
void Scheduler::resumeTargets(const std::set<void*>& targetsToResume)
{
2021-12-25 10:04:45 +08:00
for (const auto& obj : targetsToResume)
{
2019-11-23 20:27:39 +08:00
this->resumeTarget(obj);
}
}
2021-12-25 10:04:45 +08:00
void Scheduler::performFunctionInCocosThread(std::function<void()> function)
2019-11-23 20:27:39 +08:00
{
std::lock_guard<std::mutex> lock(_performMutex);
_functionsToPerform.push_back(std::move(function));
}
void Scheduler::removeAllFunctionsToBePerformedInCocosThread()
{
std::unique_lock<std::mutex> lock(_performMutex);
_functionsToPerform.clear();
}
// main loop
void Scheduler::update(float dt)
{
_updateHashLocked = true;
if (_timeScale != 1.0f)
{
dt *= _timeScale;
}
//
// Selector callbacks
//
// Iterate over all the Updates' selectors
tListEntry *entry, *tmp;
// updates with priority < 0
DL_FOREACH_SAFE(_updatesNegList, entry, tmp)
{
2021-12-25 10:04:45 +08:00
if ((!entry->paused) && (!entry->markedForDeletion))
2019-11-23 20:27:39 +08:00
{
entry->callback(dt);
}
}
// updates with priority == 0
DL_FOREACH_SAFE(_updates0List, entry, tmp)
{
2021-12-25 10:04:45 +08:00
if ((!entry->paused) && (!entry->markedForDeletion))
2019-11-23 20:27:39 +08:00
{
entry->callback(dt);
}
}
// updates with priority > 0
DL_FOREACH_SAFE(_updatesPosList, entry, tmp)
{
2021-12-25 10:04:45 +08:00
if ((!entry->paused) && (!entry->markedForDeletion))
2019-11-23 20:27:39 +08:00
{
entry->callback(dt);
}
}
// Iterate over all the custom selectors
2021-12-25 10:04:45 +08:00
for (tHashTimerEntry* elt = _hashForTimers; elt != nullptr;)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
_currentTarget = elt;
2019-11-23 20:27:39 +08:00
_currentTargetSalvaged = false;
2021-12-25 10:04:45 +08:00
if (!_currentTarget->paused)
2019-11-23 20:27:39 +08:00
{
// The 'timers' array may change while inside this loop
for (elt->timerIndex = 0; elt->timerIndex < elt->timers->num; ++(elt->timerIndex))
{
elt->currentTimer = (Timer*)(elt->timers->arr[elt->timerIndex]);
2022-07-16 10:43:05 +08:00
AXASSERT(!elt->currentTimer->isAborted(), "An aborted timer should not be updated");
2019-11-23 20:27:39 +08:00
elt->currentTimer->update(dt);
if (elt->currentTimer->isAborted())
{
// The currentTimer told the remove itself. To prevent the timer from
// accidentally deallocating itself before finishing its step, we retained
// it. Now that step is done, it's safe to release it.
elt->currentTimer->release();
}
elt->currentTimer = nullptr;
}
}
// elt, at this moment, is still valid
// so it is safe to ask this here (issue #490)
2021-12-25 10:04:45 +08:00
elt = (tHashTimerEntry*)elt->hh.next;
2019-11-23 20:27:39 +08:00
// only delete currentTarget if no actions were scheduled during the cycle (issue #481)
if (_currentTargetSalvaged && _currentTarget->timers->num == 0)
{
removeHashElement(_currentTarget);
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// delete all updates that are removed in update
2021-12-25 10:04:45 +08:00
for (auto& e : _updateDeleteVector)
2019-11-23 20:27:39 +08:00
delete e;
_updateDeleteVector.clear();
_updateHashLocked = false;
2021-12-25 10:04:45 +08:00
_currentTarget = nullptr;
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2019-11-23 20:27:39 +08:00
//
// Script callbacks
//
// Iterate over all the script callbacks
if (!_scriptHandlerEntries.empty())
{
for (auto i = _scriptHandlerEntries.size() - 1; i >= 0; i--)
{
SchedulerScriptHandlerEntry* eachEntry = _scriptHandlerEntries.at(i);
if (eachEntry->isMarkedForDeletion())
{
_scriptHandlerEntries.erase(i);
}
else if (!eachEntry->isPaused())
{
eachEntry->getTimer()->update(dt);
}
}
}
#endif
//
// Functions allocated from another thread
//
// Testing size is faster than locking / unlocking.
// And almost never there will be functions scheduled to be called.
2021-12-25 10:04:45 +08:00
if (!_functionsToPerform.empty())
{
2019-11-23 20:27:39 +08:00
_performMutex.lock();
2021-12-25 10:04:45 +08:00
// fixed #4123: Save the callback functions, they must be invoked after '_performMutex.unlock()', otherwise if
// new functions are added in callback, it will cause thread deadlock.
2019-11-23 20:27:39 +08:00
auto temp = std::move(_functionsToPerform);
_performMutex.unlock();
2021-12-25 10:04:45 +08:00
for (const auto& function : temp)
{
2019-11-23 20:27:39 +08:00
function();
}
}
}
2021-12-25 10:04:45 +08:00
void Scheduler::schedule(SEL_SCHEDULE selector,
Ref* target,
float interval,
unsigned int repeat,
float delay,
bool paused)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(target, "Argument target must be non-nullptr");
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
2021-12-25 10:04:45 +08:00
if (!element)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
element = (tHashTimerEntry*)calloc(sizeof(*element), 1);
2019-11-23 20:27:39 +08:00
element->target = target;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
HASH_ADD_PTR(_hashForTimers, target, element);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Is this the 1st element ? Then set the pause level to all the selectors of this target
element->paused = paused;
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(element->paused == paused, "element's paused should be paused.");
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (element->timers == nullptr)
{
element->timers = ccArrayNew(10);
}
else
{
for (int i = 0; i < element->timers->num; ++i)
{
2021-12-25 10:04:45 +08:00
TimerTargetSelector* timer = dynamic_cast<TimerTargetSelector*>(element->timers->arr[i]);
2019-11-23 20:27:39 +08:00
if (timer && !timer->isExhausted() && selector == timer->getSelector())
{
2022-07-16 10:43:05 +08:00
AXLOG("CCScheduler#schedule. Reiniting timer with interval %.4f, repeat %u, delay %.4f", interval,
2021-12-25 10:04:45 +08:00
repeat, delay);
2019-11-23 20:27:39 +08:00
timer->setupTimerWithInterval(interval, repeat, delay);
return;
}
}
ccArrayEnsureExtraCapacity(element->timers, 1);
}
2021-12-25 10:04:45 +08:00
TimerTargetSelector* timer = new TimerTargetSelector();
2019-11-23 20:27:39 +08:00
timer->initWithSelector(this, selector, target, interval, repeat, delay);
ccArrayAppendObject(element->timers, timer);
timer->release();
}
2021-12-25 10:04:45 +08:00
void Scheduler::schedule(SEL_SCHEDULE selector, Ref* target, float interval, bool paused)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
this->schedule(selector, target, interval, AX_REPEAT_FOREVER, 0.0f, paused);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
bool Scheduler::isScheduled(SEL_SCHEDULE selector, const Ref* target) const
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(selector, "Argument selector must be non-nullptr");
AXASSERT(target, "Argument target must be non-nullptr");
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (!element)
{
return false;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (element->timers == nullptr)
{
return false;
}
for (int i = 0; i < element->timers->num; ++i)
{
2021-12-25 10:04:45 +08:00
TimerTargetSelector* timer = dynamic_cast<TimerTargetSelector*>(element->timers->arr[i]);
2019-11-23 20:27:39 +08:00
if (timer && !timer->isExhausted() && selector == timer->getSelector())
{
return true;
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return false;
}
2021-12-25 10:04:45 +08:00
void Scheduler::unschedule(SEL_SCHEDULE selector, Ref* target)
2019-11-23 20:27:39 +08:00
{
// explicit handle nil arguments when removing an object
if (target == nullptr || selector == nullptr)
{
return;
}
2021-12-25 10:04:45 +08:00
tHashTimerEntry* element = nullptr;
2019-11-23 20:27:39 +08:00
HASH_FIND_PTR(_hashForTimers, &target, element);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (element)
{
for (int i = 0; i < element->timers->num; ++i)
{
2021-12-25 10:04:45 +08:00
TimerTargetSelector* timer = dynamic_cast<TimerTargetSelector*>(element->timers->arr[i]);
2019-11-23 20:27:39 +08:00
if (timer && selector == timer->getSelector())
{
if (timer == element->currentTimer && !timer->isAborted())
{
timer->retain();
timer->setAborted();
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
ccArrayRemoveObjectAtIndex(element->timers, i, true);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// update timerIndex in case we are in tick:, looping over the actions
if (element->timerIndex >= i)
{
element->timerIndex--;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (element->timers->num == 0)
{
if (_currentTarget == element)
{
_currentTargetSalvaged = true;
}
else
{
removeHashElement(element);
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return;
}
}
}
}
NS_AX_END