From 89a57e6e19ef6210af3a6b609897d4221807a0ae Mon Sep 17 00:00:00 2001 From: Benau Date: Tue, 16 Jun 2020 00:44:11 +0800 Subject: [PATCH] Allow configure event callback for widgets based on input type This will allow for example touch screen tapping to not triggering kart selection in mobile STK --- src/guiengine/event_handler.cpp | 12 +++++++----- src/guiengine/event_handler.hpp | 2 +- src/guiengine/widget.cpp | 15 +++++++++++++++ src/guiengine/widget.hpp | 15 +++++++++++++++ 4 files changed, 38 insertions(+), 6 deletions(-) diff --git a/src/guiengine/event_handler.cpp b/src/guiengine/event_handler.cpp index 288b2430c..133b44acb 100644 --- a/src/guiengine/event_handler.cpp +++ b/src/guiengine/event_handler.cpp @@ -380,7 +380,7 @@ void EventHandler::processGUIAction(const PlayerAction action, if (w == NULL) break; // FIXME : consider returned value? - onWidgetActivated( w, playerID ); + onWidgetActivated(w, playerID, type); } break; default: @@ -780,7 +780,7 @@ void EventHandler::sendEventToUser(GUIEngine::Widget* widget, std::string& name, // ----------------------------------------------------------------------------- -EventPropagation EventHandler::onWidgetActivated(GUIEngine::Widget* w, const int playerID) +EventPropagation EventHandler::onWidgetActivated(GUIEngine::Widget* w, const int playerID, Input::InputType type) { if (w->onActivationInput(playerID) == EVENT_BLOCK) return EVENT_BLOCK; @@ -831,7 +831,8 @@ EventPropagation EventHandler::onWidgetActivated(GUIEngine::Widget* w, const int parent event handler says so */ if (parent->transmitEvent(w, w->m_properties[PROP_ID], playerID) == EVENT_LET) { - sendEventToUser(parent, parent->m_properties[PROP_ID], playerID); + if (parent->isEventCallbackActive(type)) + sendEventToUser(parent, parent->m_properties[PROP_ID], playerID); } } else @@ -841,7 +842,8 @@ EventPropagation EventHandler::onWidgetActivated(GUIEngine::Widget* w, const int if (w->transmitEvent(w, id, playerID) == EVENT_LET) { assert(w->ok()); - sendEventToUser(w, id, playerID); + if (w->isEventCallbackActive(type)) + sendEventToUser(w, id, playerID); } } @@ -881,7 +883,7 @@ EventPropagation EventHandler::onGUIEvent(const SEvent& event) // These events are only triggered by mouse (or so I hope) // The player that owns the mouser receives "game master" priviledges - return onWidgetActivated(w, PLAYER_ID_GAME_MASTER); + return onWidgetActivated(w, PLAYER_ID_GAME_MASTER, Input::IT_MOUSEBUTTON); // These events are only triggered by keyboard/mouse (or so I hope...) //const int playerID = input_manager->getPlayerKeyboardID(); diff --git a/src/guiengine/event_handler.hpp b/src/guiengine/event_handler.hpp index 3f6dad9e5..ab8f64719 100644 --- a/src/guiengine/event_handler.hpp +++ b/src/guiengine/event_handler.hpp @@ -70,7 +70,7 @@ namespace GUIEngine bool m_accept_events; EventPropagation onGUIEvent(const irr::SEvent& event); - EventPropagation onWidgetActivated(Widget* w, const int playerID); + EventPropagation onWidgetActivated(Widget* w, const int playerID, Input::InputType type); void sendNavigationEvent(const NavigationDirection nav, const int playerID); void navigate(const NavigationDirection nav, const int playerID); diff --git a/src/guiengine/widget.cpp b/src/guiengine/widget.cpp index 121f3927c..19fcf642f 100644 --- a/src/guiengine/widget.cpp +++ b/src/guiengine/widget.cpp @@ -55,6 +55,9 @@ using namespace GUIEngine; Widget::Widget(WidgetType type, bool reserve_id) { + // Accept all input by default + m_active_event_callback.flip(); + m_active_event_callback[Input::IT_NONE] = false; m_magic_number = 0xCAFEC001; m_x = -1; @@ -120,6 +123,18 @@ Widget::~Widget() m_magic_number = 0xDEADBEEF; } +// ----------------------------------------------------------------------------- +void Widget::setEventCallbackActive(Input::InputType type, bool active) +{ + m_active_event_callback[type] = active; +} + +// ----------------------------------------------------------------------------- +bool Widget::isEventCallbackActive(Input::InputType type) const +{ + return m_active_event_callback[type]; +} + // ----------------------------------------------------------------------------- void Widget::setText(const irr::core::stringw &s) { diff --git a/src/guiengine/widget.hpp b/src/guiengine/widget.hpp index dc4fb3ecd..4dabace4e 100644 --- a/src/guiengine/widget.hpp +++ b/src/guiengine/widget.hpp @@ -25,6 +25,7 @@ namespace irr { namespace gui { class IGUIElement; } } +#include #include #include "guiengine/event_handler.hpp" @@ -140,6 +141,10 @@ namespace GUIEngine protected: unsigned int m_magic_number; + // Used to limit event callback on this widget based on input type + // At the moment used for continue button in kart selection + std::bitset m_active_event_callback; + // FIXME: find better ways than hackish "friend"? friend class EventHandler; friend class Screen; @@ -340,6 +345,16 @@ namespace GUIEngine Widget(WidgetType type, bool reserve_id = false); virtual ~Widget(); + /** + * Allow (or not) an event callback for this widget based on input type. + */ + virtual void setEventCallbackActive(Input::InputType type, bool active); + + /** + * Return if there should be an event callback for this widget based on input type. + */ + virtual bool isEventCallbackActive(Input::InputType type) const; + /** * Set the irrlicht widget to be used as parent of this widget next time Widget::add() * is invoked on this widget.