2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02: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.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#include "eventdispatcher.h"
|
2011-08-15 16:06:15 +02:00
|
|
|
|
2011-12-01 23:25:32 +01:00
|
|
|
#include <framework/core/clock.h>
|
2012-03-30 00:46:44 +02:00
|
|
|
#include "timer.h"
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
EventDispatcher g_dispatcher;
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-07-30 14:29:13 +02:00
|
|
|
void EventDispatcher::shutdown()
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
2012-01-31 18:06:55 +01:00
|
|
|
while(!m_eventList.empty())
|
|
|
|
poll();
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-06-18 10:13:52 +02:00
|
|
|
while(!m_scheduledEventList.empty()) {
|
|
|
|
ScheduledEventPtr scheduledEvent = m_scheduledEventList.top();
|
|
|
|
scheduledEvent->cancel();
|
2011-08-14 04:09:11 +02:00
|
|
|
m_scheduledEventList.pop();
|
2012-06-18 10:13:52 +02:00
|
|
|
}
|
|
|
|
m_disabled = true;
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
2012-03-28 13:46:15 +02:00
|
|
|
void EventDispatcher::poll()
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
2012-08-03 09:42:49 +02:00
|
|
|
int loops = 0;
|
|
|
|
for(int count = 0, max = m_scheduledEventList.size(); count < max && !m_scheduledEventList.empty(); ++count) {
|
2012-01-19 05:12:53 +01:00
|
|
|
ScheduledEventPtr scheduledEvent = m_scheduledEventList.top();
|
2013-01-05 08:57:31 +01:00
|
|
|
if(scheduledEvent->remainingTicks() > 0)
|
2011-08-14 04:09:11 +02:00
|
|
|
break;
|
|
|
|
m_scheduledEventList.pop();
|
2012-01-19 05:12:53 +01:00
|
|
|
scheduledEvent->execute();
|
2012-06-06 22:14:53 +02:00
|
|
|
|
|
|
|
if(scheduledEvent->nextCycle())
|
|
|
|
m_scheduledEventList.push(scheduledEvent);
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
2011-12-01 23:25:32 +01:00
|
|
|
|
2012-08-03 09:42:49 +02:00
|
|
|
// execute events list until all events are out, this is needed because some events can schedule new events that would
|
2012-03-28 13:46:15 +02:00
|
|
|
// change the UIWidgets layout, in this case we must execute these new events before we continue rendering,
|
2012-03-28 21:09:45 +02:00
|
|
|
m_pollEventsSize = m_eventList.size();
|
2012-08-03 09:42:49 +02:00
|
|
|
loops = 0;
|
2012-03-28 21:09:45 +02:00
|
|
|
while(m_pollEventsSize > 0) {
|
2012-08-03 09:42:49 +02:00
|
|
|
if(loops > 50) {
|
2012-03-30 00:46:44 +02:00
|
|
|
static Timer reportTimer;
|
2012-08-03 09:42:49 +02:00
|
|
|
if(reportTimer.running() && reportTimer.ticksElapsed() > 100) {
|
2012-06-01 22:39:23 +02:00
|
|
|
g_logger.error("ATTENTION the event list is not getting empty, this could be caused by some bad code");
|
2012-03-30 00:46:44 +02:00
|
|
|
reportTimer.restart();
|
2012-03-28 21:09:45 +02:00
|
|
|
}
|
2012-03-27 20:14:35 +02:00
|
|
|
break;
|
2012-03-28 21:09:45 +02:00
|
|
|
}
|
|
|
|
|
2012-03-27 20:14:35 +02:00
|
|
|
for(int i=0;i<m_pollEventsSize;++i) {
|
|
|
|
EventPtr event = m_eventList.front();
|
|
|
|
m_eventList.pop_front();
|
|
|
|
event->execute();
|
|
|
|
}
|
2012-03-28 21:09:45 +02:00
|
|
|
m_pollEventsSize = m_eventList.size();
|
2012-03-28 13:46:15 +02:00
|
|
|
}
|
2012-08-04 06:46:04 +02:00
|
|
|
|
|
|
|
for(auto it = m_coroutines.begin(); it != m_coroutines.end();) {
|
|
|
|
stdext::coroutine& coroutine = (*it);
|
|
|
|
if(coroutine.is_finished())
|
|
|
|
it = m_coroutines.erase(it);
|
|
|
|
else {
|
|
|
|
coroutine.resume();
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 15:06:26 +02:00
|
|
|
ScheduledEventPtr EventDispatcher::scheduleEvent(const std::function<void()>& callback, int delay)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
2012-06-18 10:13:52 +02:00
|
|
|
if(m_disabled)
|
|
|
|
return ScheduledEventPtr(new ScheduledEvent(nullptr, delay, 1));
|
|
|
|
|
2011-12-01 23:25:32 +01:00
|
|
|
assert(delay >= 0);
|
2012-06-06 22:14:53 +02:00
|
|
|
ScheduledEventPtr scheduledEvent(new ScheduledEvent(callback, delay, 1));
|
|
|
|
m_scheduledEventList.push(scheduledEvent);
|
|
|
|
return scheduledEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScheduledEventPtr EventDispatcher::cycleEvent(const std::function<void()>& callback, int delay)
|
|
|
|
{
|
2012-06-18 10:13:52 +02:00
|
|
|
if(m_disabled)
|
|
|
|
return ScheduledEventPtr(new ScheduledEvent(nullptr, delay, 0));
|
|
|
|
|
2012-06-06 22:14:53 +02:00
|
|
|
assert(delay > 0);
|
|
|
|
ScheduledEventPtr scheduledEvent(new ScheduledEvent(callback, delay, 0));
|
2012-01-19 05:12:53 +01:00
|
|
|
m_scheduledEventList.push(scheduledEvent);
|
|
|
|
return scheduledEvent;
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 15:06:26 +02:00
|
|
|
EventPtr EventDispatcher::addEvent(const std::function<void()>& callback, bool pushFront)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
2012-06-18 10:13:52 +02:00
|
|
|
if(m_disabled)
|
|
|
|
return EventPtr(new Event(nullptr));
|
|
|
|
|
2012-01-19 05:12:53 +01:00
|
|
|
EventPtr event(new Event(callback));
|
2012-03-28 13:46:15 +02:00
|
|
|
// front pushing is a way to execute an event before others
|
2012-02-05 23:42:35 +01:00
|
|
|
if(pushFront) {
|
2012-01-19 05:12:53 +01:00
|
|
|
m_eventList.push_front(event);
|
2012-03-28 13:46:15 +02:00
|
|
|
// the poll event list only grows when pushing into front
|
2012-02-05 23:42:35 +01:00
|
|
|
m_pollEventsSize++;
|
|
|
|
} else
|
2012-01-19 05:12:53 +01:00
|
|
|
m_eventList.push_back(event);
|
|
|
|
return event;
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
2012-08-04 06:46:04 +02:00
|
|
|
|
|
|
|
void EventDispatcher::addCoroutine(const stdext::coroutine& coroutine)
|
|
|
|
{
|
|
|
|
m_coroutines.push_back(coroutine);
|
|
|
|
}
|