1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/client/gui/EventDispatcher.cpp

330 lines
7.4 KiB
C++
Raw Normal View History

/*
2023-05-18 12:31:26 +02:00
* 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"
2023-05-18 12:31:26 +02:00
#include "EventDispatcher.h"
#include "EventsReceiver.h"
#include "FramerateManager.h"
2023-05-18 12:31:26 +02:00
#include "CGuiHandler.h"
#include "MouseButton.h"
#include "WindowHandler.h"
#include "../../lib/Point.h"
2023-05-20 00:51:10 +02:00
template<typename Functor>
void EventDispatcher::processLists(ui16 activityFlag, const Functor & cb)
{
2023-05-20 00:51:10 +02:00
auto processList = [&](ui16 mask, EventReceiversList & lst)
{
if(mask & activityFlag)
cb(lst);
};
processList(AEventsReceiver::LCLICK, lclickable);
2023-06-13 18:33:35 +02:00
processList(AEventsReceiver::SHOW_POPUP, rclickable);
2023-05-20 00:51:10 +02:00
processList(AEventsReceiver::HOVER, hoverable);
processList(AEventsReceiver::MOVE, motioninterested);
processList(AEventsReceiver::DRAG, draginterested);
2023-05-20 00:51:10 +02:00
processList(AEventsReceiver::KEYBOARD, keyinterested);
processList(AEventsReceiver::TIME, timeinterested);
processList(AEventsReceiver::WHEEL, wheelInterested);
processList(AEventsReceiver::DOUBLECLICK, doubleClickInterested);
processList(AEventsReceiver::TEXTINPUT, textInterested);
processList(AEventsReceiver::GESTURE, panningInterested);
2023-05-20 00:51:10 +02:00
}
void EventDispatcher::activateElement(AEventsReceiver * elem, ui16 activityFlag)
{
processLists(activityFlag,[&](EventReceiversList & lst){
lst.push_front(elem);
});
elem->activeState |= activityFlag;
}
2023-05-20 00:51:10 +02:00
void EventDispatcher::deactivateElement(AEventsReceiver * elem, ui16 activityFlag)
{
2023-05-20 00:51:10 +02:00
processLists(activityFlag,[&](EventReceiversList & lst){
auto hlp = std::find(lst.begin(),lst.end(),elem);
assert(hlp != lst.end());
lst.erase(hlp);
});
elem->activeState &= ~activityFlag;
}
2023-05-18 12:31:26 +02:00
void EventDispatcher::dispatchTimer(uint32_t msPassed)
{
2023-05-20 00:51:10 +02:00
EventReceiversList hlp = timeinterested;
for (auto & elem : hlp)
{
if(!vstd::contains(timeinterested,elem))
continue;
elem->tick(msPassed);
}
}
2023-05-18 12:31:26 +02:00
void EventDispatcher::dispatchShortcutPressed(const std::vector<EShortcut> & shortcutsVector)
{
bool keysCaptured = false;
2023-05-18 01:09:42 +02:00
for(auto & i : keyinterested)
for(EShortcut shortcut : shortcutsVector)
2023-05-18 01:09:42 +02:00
if(i->captureThisKey(shortcut))
keysCaptured = true;
2023-05-20 00:51:10 +02:00
EventReceiversList miCopy = keyinterested;
2023-05-18 01:09:42 +02:00
for(auto & i : miCopy)
{
for(EShortcut shortcut : shortcutsVector)
2023-05-18 01:09:42 +02:00
if(vstd::contains(keyinterested, i) && (!keysCaptured || i->captureThisKey(shortcut)))
{
2023-05-18 01:09:42 +02:00
i->keyPressed(shortcut);
if (keysCaptured)
return;
}
2023-05-18 01:09:42 +02:00
}
}
2023-05-18 12:31:26 +02:00
void EventDispatcher::dispatchShortcutReleased(const std::vector<EShortcut> & shortcutsVector)
{
bool keysCaptured = false;
2023-05-18 01:09:42 +02:00
for(auto & i : keyinterested)
for(EShortcut shortcut : shortcutsVector)
2023-05-18 01:09:42 +02:00
if(i->captureThisKey(shortcut))
keysCaptured = true;
2023-05-20 00:51:10 +02:00
EventReceiversList miCopy = keyinterested;
2023-05-18 01:09:42 +02:00
for(auto & i : miCopy)
{
for(EShortcut shortcut : shortcutsVector)
2023-05-18 01:09:42 +02:00
if(vstd::contains(keyinterested, i) && (!keysCaptured || i->captureThisKey(shortcut)))
{
2023-05-18 01:09:42 +02:00
i->keyReleased(shortcut);
if (keysCaptured)
return;
}
2023-05-18 01:09:42 +02:00
}
}
2023-05-18 12:31:26 +02:00
void EventDispatcher::dispatchMouseDoubleClick(const Point & position)
{
2023-05-18 01:09:42 +02:00
bool doubleClicked = false;
auto hlp = doubleClickInterested;
for(auto & i : hlp)
{
if(!vstd::contains(doubleClickInterested, i))
continue;
if(i->receiveEvent(position, AEventsReceiver::DOUBLECLICK))
2023-05-18 01:09:42 +02:00
{
i->clickDouble(position);
2023-05-18 01:09:42 +02:00
doubleClicked = true;
}
}
2023-05-18 01:09:42 +02:00
if(!doubleClicked)
handleLeftButtonClick(position, true);
2023-05-18 01:09:42 +02:00
}
void EventDispatcher::dispatchMouseLeftButtonPressed(const Point & position)
2023-05-18 01:09:42 +02:00
{
handleLeftButtonClick(position, true);
}
void EventDispatcher::dispatchMouseLeftButtonReleased(const Point & position)
{
handleLeftButtonClick(position, false);
}
void EventDispatcher::dispatchShowPopup(const Point & position)
{
2023-06-11 17:27:42 +02:00
auto hlp = rclickable;
2023-05-18 01:09:42 +02:00
for(auto & i : hlp)
{
2023-06-11 17:27:42 +02:00
if(!vstd::contains(rclickable, i))
2023-05-18 01:09:42 +02:00
continue;
if( !i->receiveEvent(GH.getCursorPosition(), AEventsReceiver::LCLICK))
continue;
i->showPopupWindow(position);
2023-06-11 17:27:42 +02:00
}
}
void EventDispatcher::dispatchClosePopup(const Point & position)
{
if (GH.windows().isTopWindowPopup())
GH.windows().popWindows(1);
assert(!GH.windows().isTopWindowPopup());
}
void EventDispatcher::handleLeftButtonClick(const Point & position, bool isPressed)
2023-06-11 17:27:42 +02:00
{
auto hlp = lclickable;
for(auto & i : hlp)
{
if(!vstd::contains(lclickable, i))
continue;
if( i->receiveEvent(GH.getCursorPosition(), AEventsReceiver::LCLICK))
{
if(isPressed)
i->clickPressed(position);
2023-07-09 14:15:25 +02:00
if (i->mouseClickedState && !isPressed)
i->clickReleased(position);
2023-07-09 14:15:25 +02:00
i->mouseClickedState = isPressed;
}
else
{
if(i->mouseClickedState && !isPressed)
{
i->mouseClickedState = isPressed;
i->clickCancel(position);
}
}
}
}
2023-05-18 12:31:26 +02:00
void EventDispatcher::dispatchMouseScrolled(const Point & distance, const Point & position)
{
2023-05-20 00:51:10 +02:00
EventReceiversList hlp = wheelInterested;
for(auto & i : hlp)
{
if(!vstd::contains(wheelInterested,i))
continue;
if (i->receiveEvent(position, AEventsReceiver::WHEEL))
i->wheelScrolled(distance.y);
}
}
2023-05-18 12:31:26 +02:00
void EventDispatcher::dispatchTextInput(const std::string & text)
{
for(auto it : textInterested)
{
it->textInputed(text);
}
}
2023-05-18 12:31:26 +02:00
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)
{
2023-05-26 14:58:10 +02:00
EventReceiversList newlyHovered;
auto hoverableCopy = hoverable;
for(auto & elem : hoverableCopy)
{
if(elem->receiveEvent(position, AEventsReceiver::HOVER))
{
2023-05-26 14:58:10 +02:00
if (!elem->isHovered())
{
newlyHovered.push_back((elem));
}
}
2023-05-26 14:58:10 +02:00
else
{
2023-05-26 14:58:10 +02:00
if (elem->isHovered())
{
elem->hover(false);
elem->hoveredState = false;
2023-05-26 14:58:10 +02:00
}
}
}
2023-05-26 14:58:10 +02:00
for(auto & elem : newlyHovered)
{
elem->hover(true);
elem->hoveredState = true;
}
//sending active, MotionInterested objects mouseMoved() call
2023-05-20 00:51:10 +02:00
EventReceiversList miCopy = motioninterested;
for(auto & elem : miCopy)
{
if (!vstd::contains(motioninterested, elem))
continue;
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);
}
}