123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- /*
- * EventDispatcher.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "EventDispatcher.h"
- #include "EventsReceiver.h"
- #include "FramerateManager.h"
- #include "CGuiHandler.h"
- #include "MouseButton.h"
- #include "WindowHandler.h"
- #include "../../lib/Point.h"
- template<typename Functor>
- void EventDispatcher::processLists(ui16 activityFlag, const Functor & cb)
- {
- auto processList = [&](ui16 mask, EventReceiversList & lst)
- {
- if(mask & activityFlag)
- cb(lst);
- };
- processList(AEventsReceiver::LCLICK, lclickable);
- processList(AEventsReceiver::SHOW_POPUP, rclickable);
- processList(AEventsReceiver::HOVER, hoverable);
- processList(AEventsReceiver::MOVE, motioninterested);
- processList(AEventsReceiver::DRAG, draginterested);
- processList(AEventsReceiver::KEYBOARD, keyinterested);
- processList(AEventsReceiver::TIME, timeinterested);
- processList(AEventsReceiver::WHEEL, wheelInterested);
- processList(AEventsReceiver::DOUBLECLICK, doubleClickInterested);
- processList(AEventsReceiver::TEXTINPUT, textInterested);
- processList(AEventsReceiver::GESTURE, panningInterested);
- }
- void EventDispatcher::activateElement(AEventsReceiver * elem, ui16 activityFlag)
- {
- processLists(activityFlag,[&](EventReceiversList & lst){
- lst.push_front(elem);
- });
- elem->activeState |= activityFlag;
- }
- void EventDispatcher::deactivateElement(AEventsReceiver * elem, ui16 activityFlag)
- {
- processLists(activityFlag,[&](EventReceiversList & lst){
- auto hlp = std::find(lst.begin(),lst.end(),elem);
- assert(hlp != lst.end());
- lst.erase(hlp);
- });
- elem->activeState &= ~activityFlag;
- }
- void EventDispatcher::dispatchTimer(uint32_t msPassed)
- {
- EventReceiversList hlp = timeinterested;
- for (auto & elem : hlp)
- {
- if(!vstd::contains(timeinterested,elem)) continue;
- elem->tick(msPassed);
- }
- }
- void EventDispatcher::dispatchShortcutPressed(const std::vector<EShortcut> & shortcutsVector)
- {
- bool keysCaptured = false;
- for(auto & i : keyinterested)
- for(EShortcut shortcut : shortcutsVector)
- if(i->captureThisKey(shortcut))
- keysCaptured = true;
- EventReceiversList miCopy = keyinterested;
- for(auto & i : miCopy)
- {
- for(EShortcut shortcut : shortcutsVector)
- if(vstd::contains(keyinterested, i) && (!keysCaptured || i->captureThisKey(shortcut)))
- {
- i->keyPressed(shortcut);
- if (keysCaptured)
- return;
- }
- }
- }
- void EventDispatcher::dispatchShortcutReleased(const std::vector<EShortcut> & shortcutsVector)
- {
- bool keysCaptured = false;
- for(auto & i : keyinterested)
- for(EShortcut shortcut : shortcutsVector)
- if(i->captureThisKey(shortcut))
- keysCaptured = true;
- EventReceiversList miCopy = keyinterested;
- for(auto & i : miCopy)
- {
- for(EShortcut shortcut : shortcutsVector)
- if(vstd::contains(keyinterested, i) && (!keysCaptured || i->captureThisKey(shortcut)))
- {
- i->keyReleased(shortcut);
- if (keysCaptured)
- return;
- }
- }
- }
- void EventDispatcher::dispatchMouseDoubleClick(const Point & position)
- {
- bool doubleClicked = false;
- auto hlp = doubleClickInterested;
- for(auto & i : hlp)
- {
- if(!vstd::contains(doubleClickInterested, i))
- continue;
- if(i->receiveEvent(position, AEventsReceiver::DOUBLECLICK))
- {
- i->clickDouble();
- doubleClicked = true;
- }
- }
- if(!doubleClicked)
- handleLeftButtonClick(true);
- }
- void EventDispatcher::dispatchMouseLeftButtonPressed(const Point & position)
- {
- handleLeftButtonClick(true);
- }
- void EventDispatcher::dispatchMouseLeftButtonReleased(const Point & position)
- {
- handleLeftButtonClick(false);
- }
- void EventDispatcher::dispatchShowPopup(const Point & position)
- {
- auto hlp = rclickable;
- for(auto & i : hlp)
- {
- if(!vstd::contains(rclickable, i))
- continue;
- if( !i->receiveEvent(GH.getCursorPosition(), AEventsReceiver::LCLICK))
- continue;
- i->showPopupWindow();
- }
- }
- void EventDispatcher::dispatchClosePopup(const Point & position)
- {
- if (GH.windows().isTopWindowPopup())
- GH.windows().popWindows(1);
- assert(!GH.windows().isTopWindowPopup());
- }
- void EventDispatcher::handleLeftButtonClick(bool isPressed)
- {
- auto hlp = lclickable;
- for(auto & i : hlp)
- {
- if(!vstd::contains(lclickable, i))
- continue;
- auto prev = i->isMouseLeftButtonPressed();
- if(!isPressed)
- i->mouseClickedState = isPressed;
- if( i->receiveEvent(GH.getCursorPosition(), AEventsReceiver::LCLICK))
- {
- if(isPressed)
- i->mouseClickedState = isPressed;
- i->clickLeft(isPressed, prev);
- }
- else if(!isPressed)
- {
- i->clickLeft(boost::logic::indeterminate, prev);
- }
- }
- }
- void EventDispatcher::dispatchMouseScrolled(const Point & distance, const Point & position)
- {
- EventReceiversList hlp = wheelInterested;
- for(auto & i : hlp)
- {
- if(!vstd::contains(wheelInterested,i))
- continue;
- if (i->receiveEvent(position, AEventsReceiver::WHEEL))
- i->wheelScrolled(distance.y);
- }
- }
- void EventDispatcher::dispatchTextInput(const std::string & text)
- {
- for(auto it : textInterested)
- {
- it->textInputed(text);
- }
- }
- void EventDispatcher::dispatchTextEditing(const std::string & text)
- {
- for(auto it : textInterested)
- {
- it->textEdited(text);
- }
- }
- void EventDispatcher::dispatchGesturePanningStarted(const Point & initialPosition)
- {
- auto copied = panningInterested;
- for(auto it : copied)
- {
- if (it->receiveEvent(initialPosition, AEventsReceiver::GESTURE))
- {
- it->gesture(true, initialPosition, initialPosition);
- it->panningState = true;
- }
- }
- }
- void EventDispatcher::dispatchGesturePanningEnded(const Point & initialPosition, const Point & finalPosition)
- {
- auto copied = panningInterested;
- for(auto it : copied)
- {
- if (it->isGesturing())
- {
- it->gesture(false, initialPosition, finalPosition);
- it->panningState = false;
- }
- }
- }
- void EventDispatcher::dispatchGesturePanning(const Point & initialPosition, const Point & currentPosition, const Point & lastUpdateDistance)
- {
- auto copied = panningInterested;
- for(auto it : copied)
- {
- if (it->isGesturing())
- it->gesturePanning(initialPosition, currentPosition, lastUpdateDistance);
- }
- }
- void EventDispatcher::dispatchGesturePinch(const Point & initialPosition, double distance)
- {
- for(auto it : panningInterested)
- {
- if (it->isGesturing())
- it->gesturePinch(initialPosition, distance);
- }
- }
- void EventDispatcher::dispatchMouseMoved(const Point & distance, const Point & position)
- {
- EventReceiversList newlyHovered;
- auto hoverableCopy = hoverable;
- for(auto & elem : hoverableCopy)
- {
- if(elem->receiveEvent(position, AEventsReceiver::HOVER))
- {
- if (!elem->isHovered())
- {
- newlyHovered.push_back((elem));
- }
- }
- else
- {
- if (elem->isHovered())
- {
- elem->hover(false);
- elem->hoveredState = false;
- }
- }
- }
- for(auto & elem : newlyHovered)
- {
- elem->hover(true);
- elem->hoveredState = true;
- }
- //sending active, MotionInterested objects mouseMoved() call
- EventReceiversList miCopy = motioninterested;
- for(auto & elem : miCopy)
- {
- if(elem->receiveEvent(position, AEventsReceiver::HOVER))
- elem->mouseMoved(position, distance);
- }
- }
- void EventDispatcher::dispatchMouseDragged(const Point & currentPosition, const Point & lastUpdateDistance)
- {
- EventReceiversList diCopy = draginterested;
- for(auto & elem : diCopy)
- {
- if (elem->mouseClickedState)
- elem->mouseDragged(currentPosition, lastUpdateDistance);
- }
- }
|