1 | /**************************************************************************** |
---|---|
2 | ** |
3 | ** Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB). |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the Qt3D module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #include "genericdevicebackendnode_p.h" |
41 | |
42 | #include <Qt3DInput/qabstractphysicaldevice.h> |
43 | |
44 | #include <Qt3DInput/private/inputhandler_p.h> |
45 | #include <Qt3DInput/private/inputmanagers_p.h> |
46 | #include <Qt3DInput/private/qgenericinputdevice_p.h> |
47 | #include <Qt3DInput/private/qabstractphysicaldevice_p.h> |
48 | |
49 | QT_BEGIN_NAMESPACE |
50 | |
51 | namespace Qt3DInput { |
52 | namespace Input { |
53 | |
54 | GenericDeviceBackendNode::GenericDeviceBackendNode(QBackendNode::Mode mode) |
55 | : QAbstractPhysicalDeviceBackendNode(mode) |
56 | , m_mutex() |
57 | { |
58 | } |
59 | |
60 | GenericDeviceBackendNode::~GenericDeviceBackendNode() |
61 | { |
62 | } |
63 | |
64 | void GenericDeviceBackendNode::syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime) |
65 | { |
66 | QAbstractPhysicalDeviceBackendNode::syncFromFrontEnd(frontEnd, firstTime); |
67 | const Qt3DInput::QGenericInputDevice *node = qobject_cast<const Qt3DInput::QGenericInputDevice *>(object: frontEnd); |
68 | if (!node) |
69 | return; |
70 | |
71 | auto *d = static_cast<Qt3DInput::QAbstractPhysicalDevicePrivate *>( Qt3DCore::QNodePrivate::get(q: const_cast<Qt3DCore::QNode *>(frontEnd)) ); |
72 | |
73 | { |
74 | const QMutexLocker lock(&m_mutex); |
75 | for (const auto &val: qAsConst(t&: d->m_pendingAxisEvents)) |
76 | m_axesValues[val.first] = val.second; |
77 | for (const auto &val: qAsConst(t&: d->m_pendingButtonsEvents)) |
78 | m_buttonsValues[val.first] = val.second; |
79 | |
80 | d->m_pendingAxisEvents.clear(); |
81 | d->m_pendingButtonsEvents.clear(); |
82 | } |
83 | } |
84 | |
85 | void GenericDeviceBackendNode::cleanup() |
86 | { |
87 | const QMutexLocker lock(&m_mutex); |
88 | m_axesValues.clear(); |
89 | m_buttonsValues.clear(); |
90 | QAbstractPhysicalDeviceBackendNode::cleanup(); |
91 | } |
92 | |
93 | float GenericDeviceBackendNode::axisValue(int axisIdentifier) const |
94 | { |
95 | const QMutexLocker lock(&m_mutex); |
96 | return m_axesValues[axisIdentifier]; |
97 | } |
98 | |
99 | bool GenericDeviceBackendNode::isButtonPressed(int buttonIdentifier) const |
100 | { |
101 | const QMutexLocker lock(&m_mutex); |
102 | return m_buttonsValues[buttonIdentifier]; |
103 | } |
104 | |
105 | GenericDeviceBackendFunctor::GenericDeviceBackendFunctor(QInputAspect *inputaspect, InputHandler *handler) |
106 | : m_inputAspect(inputaspect) |
107 | , m_handler(handler) |
108 | { |
109 | } |
110 | |
111 | Qt3DCore::QBackendNode *GenericDeviceBackendFunctor::create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const |
112 | { |
113 | GenericDeviceBackendNode *backendNode = m_handler->genericDeviceBackendNodeManager()->getOrCreateResource(id: change->subjectId()); |
114 | backendNode->setInputAspect(m_inputAspect); |
115 | m_handler->appendGenericDevice(device: m_handler->genericDeviceBackendNodeManager()->lookupHandle(id: change->subjectId())); |
116 | return backendNode; |
117 | } |
118 | |
119 | Qt3DCore::QBackendNode *GenericDeviceBackendFunctor::get(Qt3DCore::QNodeId id) const |
120 | { |
121 | return m_handler->genericDeviceBackendNodeManager()->lookupResource(id); |
122 | } |
123 | |
124 | void GenericDeviceBackendFunctor::destroy(Qt3DCore::QNodeId id) const |
125 | { |
126 | m_handler->removeGenericDevice(device: m_handler->genericDeviceBackendNodeManager()->lookupHandle(id)); |
127 | m_handler->genericDeviceBackendNodeManager()->releaseResource(id); |
128 | } |
129 | |
130 | } // namespace Input |
131 | } // namespace Qt3DInput |
132 | |
133 | QT_END_NAMESPACE |
134 |