Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
PointerEventMngr.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright (c) 2025 Gothel Software e.K.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24#ifndef GAMP_WTPOINTERMNNGR_HPP_
25#define GAMP_WTPOINTERMNNGR_HPP_
26
27#include <jau/bitfield.hpp>
28#include <jau/int_types.hpp>
29#include <jau/enum_util.hpp>
30#include <jau/int_math_ct.hpp>
31#include <jau/fraction_type.hpp>
32#include <jau/cow_darray.hpp>
33
38#include <vector>
39
40namespace gamp::wt::event {
41 /** \addtogroup Gamp_WT
42 *
43 * @{
44 */
45
47 private:
49 std::vector<InputButton> m_buttonDown;
50
51 // TODO
52 // - CLICKED
53 // - ENTERED/EXITED
54
55 public:
56 void dispatch(uint16_t type, const jau::fraction_timespec& when, const WindowRef& source, InputModifier mods,
57 PointerType ptype, uint16_t id,
58 jau::math::Vec2i pos, uint16_t clickCount, InputButton button,
59 jau::math::Vec3f rotation, float rotationScale) noexcept {
60 if( InputButton::none != button ) {
61 if( EVENT_POINTER_PRESSED == type ) {
62 m_buttonDown.push_back(button);
63 } else if( EVENT_POINTER_RELEASED == type ) {
64 std::erase(m_buttonDown, button);
65 }
66 }
67 if( EVENT_POINTER_MOVED == type && m_buttonDown.size() > 0 ) {
69 }
70 PointerEvent evt(type, when, source, mods, ptype, id, pos, clickCount, button, rotation, rotationScale);
71 for(const PointerListenerRef& kl : *m_pointerListener.snapshot()) {
72 try {
73 switch(type) {
75 kl->pointerClicked(evt); break;
77 kl->pointerEntered(evt); break;
79 kl->pointerExited(evt); break;
81 kl->pointerPressed(evt); break;
83 kl->pointerReleased(evt); break;
85 kl->pointerMoved(evt); break;
87 kl->pointerDragged(evt); break;
89 kl->pointerWheelMoved(evt); break;
90 default: break;
91 }
92 } catch (std::exception &err) {
93 ERR_PRINT("PointerManager::dispatch: %s: Caught exception %s", evt.toString().c_str(), err.what());
94 }
95 if( evt.consumed() ) { break; }
96 }
97 }
98
99 void addListener(const PointerListenerRef& l) { m_pointerListener.push_back(l); }
100
102 return m_pointerListener.erase_matching(l, true,
103 [](const PointerListenerRef& a, const PointerListenerRef& b) noexcept -> bool { return a.get() == b.get(); } );
104 }
105
107 const size_t count = m_pointerListener.size();
108 m_pointerListener.clear(true);
109 return count;
110 }
111
112 size_t listenerCount() const noexcept { return m_pointerListener.size(); }
113 };
114
115 /**@}*/
116}
117
118#endif /* GAMP_WTPOINTERMNNGR_HPP_ */
size_t removeListener(const PointerListenerRef &l)
void addListener(const PointerListenerRef &l)
void dispatch(uint16_t type, const jau::fraction_timespec &when, const WindowRef &source, InputModifier mods, PointerType ptype, uint16_t id, jau::math::Vec2i pos, uint16_t clickCount, InputButton button, jau::math::Vec3f rotation, float rotationScale) noexcept
Pointer event of type PointerType.
std::string toString() const noexcept
constexpr bool consumed() const noexcept
Consumed events will stop traversing through listener.
Definition Event.hpp:88
Implementation of a Copy-On-Write (CoW) using jau::darray as the underlying storage,...
#define ERR_PRINT(...)
Use for unconditional error messages, prefix '[elapsed_time] Error @ FILE:LINE FUNC: '.
Definition debug.hpp:112
static constexpr short EVENT_POINTER_WHEEL
Definition Event.hpp:70
static constexpr short EVENT_POINTER_PRESSED
Definition Event.hpp:66
std::shared_ptr< PointerListener > PointerListenerRef
static constexpr short EVENT_POINTER_RELEASED
Definition Event.hpp:67
static constexpr short EVENT_POINTER_CLICKED
Definition Event.hpp:61
static constexpr short EVENT_POINTER_EXITED
Only generated for PointerType::mouse.
Definition Event.hpp:65
PointerType
Type of pointer devices.
static constexpr short EVENT_POINTER_DRAGGED
Definition Event.hpp:69
std::shared_ptr< Window > WindowRef
Definition Event.hpp:36
static constexpr short EVENT_POINTER_MOVED
Definition Event.hpp:68
static constexpr short EVENT_POINTER_ENTERED
Only generated for PointerType::mouse.
Definition Event.hpp:63
Vector2I< int > Vec2i
Definition vec2i.hpp:328
Vector3F< float > Vec3f
Definition vec3f.hpp:436
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...