/**************************************************************************** ** ** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt3D module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #include "qlogicaldevice.h" #include "qlogicaldevice_p.h" #include #include #include QT_BEGIN_NAMESPACE namespace Qt3DInput { QLogicalDevicePrivate::QLogicalDevicePrivate() : Qt3DCore::QComponentPrivate() { } QLogicalDevicePrivate::~QLogicalDevicePrivate() { } /*! \class Qt3DInput::QLogicalDevice \inmodule Qt3DInput \inherits Qt3DCore::QNode \brief QLogicalDevice allows the user to define a set of actions that they wish to use within an application. \since 5.6 */ /*! \qmltype LogicalDevice \inqmlmodule Qt3D.Input \instantiates Qt3DInput::QLogicalDevice \brief QML frontend for the Qt3DInput::QLogicalDevice C++ class. Allows the user to define a set of actions that they wish to use within an application. \qml LogicalDevice { id: keyboardLogicalDevice actions: [ Action { name: "fire" inputs: [ ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_Space] }, InputChord { tolerance: 10 inputs: [ ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_A] }, ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_S] } ] } ] }, Action { name: "reload" inputs: [ ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_Alt] } ] }, Action { name: "combo" inputs: [ InputSequence { interval: 1000 timeout: 10000 inputs: [ ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_G] }, ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_D] }, ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_J] } ] } ] } ] } \endqml \since 5.6 */ /*! Constructs a new QLogicalDevice instance with parent \a parent. */ QLogicalDevice::QLogicalDevice(Qt3DCore::QNode *parent) : Qt3DCore::QComponent(*new QLogicalDevicePrivate(), parent) { } QLogicalDevice::~QLogicalDevice() { } /*! \qmlproperty list Qt3D.Input::LogicalDevice::actions The actions used by this Logical Device */ /*! Add an \a action to the list of actions. */ void QLogicalDevice::addAction(QAction *action) { Q_D(QLogicalDevice); if (!d->m_actions.contains(action)) { d->m_actions.push_back(action); // Force creation in backend by setting parent if (!action->parent()) action->setParent(this); // Ensures proper bookkeeping d->registerDestructionHelper(action, &QLogicalDevice::removeAction, d->m_actions); d->updateNode(action, "action", Qt3DCore::PropertyValueAdded); } } /*! Remove an \a action from the list of actions. */ void QLogicalDevice::removeAction(QAction *action) { Q_D(QLogicalDevice); if (d->m_actions.contains(action)) { d->updateNode(action, "action", Qt3DCore::PropertyValueRemoved); d->m_actions.removeOne(action); // Remove bookkeeping connection d->unregisterDestructionHelper(action); } } /*! Returns the list of actions. */ QVector QLogicalDevice::actions() const { Q_D(const QLogicalDevice); return d->m_actions; } /*! \qmlproperty list Qt3D.Input::LogicalDevice::axis The axis used by this Logical Device */ /*! Add an \a axis to the list of axis. */ void QLogicalDevice::addAxis(QAxis *axis) { Q_D(QLogicalDevice); if (!d->m_axes.contains(axis)) { d->m_axes.push_back(axis); // Force creation in backend by setting parent if (!axis->parent()) axis->setParent(this); // Ensures proper bookkeeping d->registerDestructionHelper(axis, &QLogicalDevice::removeAxis, d->m_axes); d->updateNode(axis, "axis", Qt3DCore::PropertyValueAdded); } } /*! Remove an \a axis drom the list of axis. */ void QLogicalDevice::removeAxis(QAxis *axis) { Q_D(QLogicalDevice); if (d->m_axes.contains(axis)) { d->updateNode(axis, "axis", Qt3DCore::PropertyValueRemoved); d->m_axes.removeOne(axis); // Remove bookkeeping connection d->unregisterDestructionHelper(axis); } } /*! Returns the list of axis. */ QVector QLogicalDevice::axes() const { Q_D(const QLogicalDevice); return d->m_axes; } Qt3DCore::QNodeCreatedChangeBasePtr QLogicalDevice::createNodeCreationChange() const { auto creationChange = Qt3DCore::QNodeCreatedChangePtr::create(this); auto &data = creationChange->data; data.actionIds = qIdsForNodes(actions()); data.axisIds = qIdsForNodes(axes()); return creationChange; } } // Qt3DInput QT_END_NAMESPACE