tibia-client/src/framework/core/eventdispatcher.cpp

95 lines
3.4 KiB
C++
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 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
#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-03-14 19:45:15 +01:00
EventDispatcher g_eventDispatcher;
2011-08-14 04:09:11 +02:00
void EventDispatcher::flush()
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
while(!m_scheduledEventList.empty())
m_scheduledEventList.pop();
}
2012-03-28 13:46:15 +02:00
void EventDispatcher::poll()
2011-08-14 04:09:11 +02:00
{
while(!m_scheduledEventList.empty()) {
2012-01-19 05:12:53 +01:00
ScheduledEventPtr scheduledEvent = m_scheduledEventList.top();
if(scheduledEvent->reamaningTicks() > 0)
2011-08-14 04:09:11 +02:00
break;
m_scheduledEventList.pop();
2012-01-19 05:12:53 +01:00
scheduledEvent->execute();
2011-08-14 04:09:11 +02:00
}
2012-03-28 21:09:45 +02:00
// execute events list up to 10 times, 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,
// we can't loop until the event list is empty, because this could lead to infinite loops
// if someone write a module with bad code
2012-03-28 21:09:45 +02:00
m_pollEventsSize = m_eventList.size();
int count = 0;
while(m_pollEventsSize > 0) {
if(count > 50) {
2012-03-30 00:46:44 +02:00
static Timer reportTimer;
if(reportTimer.running() && reportTimer.ticksElapsed() > 250) {
2012-03-28 21:09:45 +02:00
logError("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
}
break;
2012-03-28 21:09:45 +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();
count++;
2012-03-28 13:46:15 +02:00
}
2011-08-14 04:09:11 +02:00
}
ScheduledEventPtr EventDispatcher::scheduleEvent(const std::function<void()>& callback, int delay)
2011-08-14 04:09:11 +02:00
{
assert(delay >= 0);
2012-01-19 05:12:53 +01:00
ScheduledEventPtr scheduledEvent(new ScheduledEvent(callback, delay));
m_scheduledEventList.push(scheduledEvent);
return scheduledEvent;
2011-08-14 04:09:11 +02:00
}
EventPtr EventDispatcher::addEvent(const std::function<void()>& callback, bool pushFront)
2011-08-14 04:09:11 +02:00
{
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
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
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
}