2009-07-25 00:58:44 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2009-07-25 00:58:44 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2009-07-25 00:58:44 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/events.h"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
2018-04-05 18:25:28 +00:00
|
|
|
EventDispatcher::EventDispatcher() : _autoFreeMapper(false), _mapper(nullptr) {
|
2009-07-25 00:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EventDispatcher::~EventDispatcher() {
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<SourceEntry>::iterator i = _sources.begin(); i != _sources.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
if (i->autoFree)
|
|
|
|
delete i->source;
|
|
|
|
}
|
|
|
|
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<ObserverEntry>::iterator i = _observers.begin(); i != _observers.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
if (i->autoFree)
|
|
|
|
delete i->observer;
|
|
|
|
}
|
|
|
|
|
2013-05-16 21:18:09 +00:00
|
|
|
if (_autoFreeMapper) {
|
|
|
|
delete _mapper;
|
|
|
|
}
|
2018-04-05 18:25:28 +00:00
|
|
|
_mapper = nullptr;
|
2009-07-25 00:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::dispatch() {
|
2011-08-06 07:47:19 +00:00
|
|
|
Event event;
|
2009-07-25 00:58:44 +00:00
|
|
|
|
2011-08-08 14:38:27 +00:00
|
|
|
dispatchPoll();
|
|
|
|
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<SourceEntry>::iterator i = _sources.begin(); i != _sources.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
while (i->source->pollEvent(event)) {
|
2009-07-25 00:59:30 +00:00
|
|
|
// We only try to process the events via the setup event mapper, when
|
|
|
|
// we have a setup mapper and when the event source allows mapping.
|
2020-01-24 08:25:16 +00:00
|
|
|
if (i->source->allowMapping()) {
|
|
|
|
assert(_mapper);
|
2012-02-17 23:08:58 +00:00
|
|
|
|
2020-01-24 13:08:16 +00:00
|
|
|
// Backends may not produce directly action event types, those are meant
|
|
|
|
// to be the output of the event mapper.
|
|
|
|
assert(event.type != EVENT_CUSTOM_BACKEND_ACTION_START);
|
|
|
|
assert(event.type != EVENT_CUSTOM_BACKEND_ACTION_END);
|
2020-01-25 12:41:08 +00:00
|
|
|
assert(event.type != EVENT_CUSTOM_ENGINE_ACTION_START);
|
|
|
|
assert(event.type != EVENT_CUSTOM_ENGINE_ACTION_END);
|
|
|
|
|
2020-01-24 13:08:16 +00:00
|
|
|
|
2020-01-24 08:25:16 +00:00
|
|
|
List<Event> mappedEvents = _mapper->mapEvent(event);
|
|
|
|
|
|
|
|
for (List<Event>::iterator j = mappedEvents.begin(); j != mappedEvents.end(); ++j) {
|
|
|
|
const Event mappedEvent = *j;
|
|
|
|
dispatchEvent(mappedEvent);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dispatchEvent(event);
|
2009-07-25 00:58:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-25 08:33:32 +00:00
|
|
|
void EventDispatcher::clearEvents() {
|
|
|
|
Event event;
|
|
|
|
|
|
|
|
for (List<SourceEntry>::iterator i = _sources.begin(); i != _sources.end(); ++i) {
|
|
|
|
while (i->source->pollEvent(event)) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-16 21:18:09 +00:00
|
|
|
void EventDispatcher::registerMapper(EventMapper *mapper, bool autoFree) {
|
|
|
|
if (_autoFreeMapper) {
|
|
|
|
delete _mapper;
|
|
|
|
}
|
2009-07-25 00:58:44 +00:00
|
|
|
_mapper = mapper;
|
2013-07-05 00:05:54 +00:00
|
|
|
_autoFreeMapper = autoFree;
|
2009-07-25 00:58:44 +00:00
|
|
|
}
|
|
|
|
|
2013-05-16 21:18:09 +00:00
|
|
|
|
2009-07-25 00:58:44 +00:00
|
|
|
void EventDispatcher::registerSource(EventSource *source, bool autoFree) {
|
|
|
|
SourceEntry newEntry;
|
|
|
|
|
|
|
|
newEntry.source = source;
|
|
|
|
newEntry.autoFree = autoFree;
|
|
|
|
|
|
|
|
_sources.push_back(newEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::unregisterSource(EventSource *source) {
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<SourceEntry>::iterator i = _sources.begin(); i != _sources.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
if (i->source == source) {
|
|
|
|
if (i->autoFree)
|
|
|
|
delete source;
|
|
|
|
|
|
|
|
_sources.erase(i);
|
|
|
|
return;
|
|
|
|
}
|
2009-07-25 13:00:09 +00:00
|
|
|
}
|
2009-07-25 00:58:44 +00:00
|
|
|
}
|
|
|
|
|
2011-08-08 14:38:27 +00:00
|
|
|
void EventDispatcher::registerObserver(EventObserver *obs, uint priority, bool autoFree, bool notifyPoll) {
|
2009-07-25 00:58:44 +00:00
|
|
|
ObserverEntry newEntry;
|
|
|
|
|
|
|
|
newEntry.observer = obs;
|
|
|
|
newEntry.priority = priority;
|
|
|
|
newEntry.autoFree = autoFree;
|
2011-08-08 14:38:27 +00:00
|
|
|
newEntry.poll = notifyPoll;
|
2009-07-25 00:58:44 +00:00
|
|
|
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<ObserverEntry>::iterator i = _observers.begin(); i != _observers.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
if (i->priority < priority) {
|
|
|
|
_observers.insert(i, newEntry);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_observers.push_back(newEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::unregisterObserver(EventObserver *obs) {
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<ObserverEntry>::iterator i = _observers.begin(); i != _observers.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
if (i->observer == obs) {
|
|
|
|
if (i->autoFree)
|
|
|
|
delete obs;
|
|
|
|
|
|
|
|
_observers.erase(i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::dispatchEvent(const Event &event) {
|
2011-08-06 07:47:19 +00:00
|
|
|
for (List<ObserverEntry>::iterator i = _observers.begin(); i != _observers.end(); ++i) {
|
2009-07-25 00:58:44 +00:00
|
|
|
if (i->observer->notifyEvent(event))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-08 14:38:27 +00:00
|
|
|
void EventDispatcher::dispatchPoll() {
|
|
|
|
for (List<ObserverEntry>::iterator i = _observers.begin(); i != _observers.end(); ++i) {
|
2017-08-11 13:34:48 +00:00
|
|
|
if (i->poll)
|
|
|
|
i->observer->notifyPoll();
|
2011-08-08 14:38:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-04 21:26:33 +00:00
|
|
|
} // End of namespace Common
|