/**************************************************************************** ** ** Copyright (C) 2014 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:LGPL$ ** 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. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "shaderdata_p.h" #include "qshaderdata.h" #include "qshaderdata_p.h" #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE using namespace Qt3DCore; namespace Qt3DRender { namespace Render { QList ShaderData::m_updatedShaderData; ShaderData::ShaderData() : m_mutex(new QMutex) , m_managers(Q_NULLPTR) { } ShaderData::~ShaderData() { delete m_mutex; } void ShaderData::setManagers(NodeManagers *managers) { m_managers = managers; } ShaderData *ShaderData::lookupResource(NodeManagers *managers, const QNodeId &id) { ShaderData *shaderData = managers->shaderDataManager()->lookupResource(id); if (!shaderData) shaderData = managers->lightManager()->lookupResource(id); return shaderData; } ShaderData *ShaderData::lookupResource(const QNodeId &id) { return ShaderData::lookupResource(m_managers, id); } void ShaderData::updateFromPeer(Qt3DCore::QNode *peer) { m_properties.clear(); const QShaderData *shaderData = static_cast(peer); m_propertyReader = shaderData->propertyReader(); if (!m_propertyReader.isNull()) readPeerProperties(const_cast(shaderData)); } // Call by cleanup job (single thread) void ShaderData::clearUpdatedProperties() { m_updatedProperties.clear(); const QHash::const_iterator end = m_nestedShaderDataProperties.end(); QHash::const_iterator it = m_nestedShaderDataProperties.begin(); while (it != end) { if (it.value().userType() == QMetaType::QVariantList) { Q_FOREACH (const QVariant &v, it.value().value()) { ShaderData *nested = lookupResource(v.value()); if (nested != Q_NULLPTR) nested->clearUpdatedProperties(); } } else { ShaderData *nested = lookupResource(it.value().value()); if (nested != Q_NULLPTR) nested->clearUpdatedProperties(); } ++it; } } void ShaderData::cleanup(NodeManagers *managers) { Q_FOREACH (const Qt3DCore::QNodeId &id, m_updatedShaderData) { ShaderData *shaderData = ShaderData::lookupResource(managers, id); if (shaderData) shaderData->clearUpdatedProperties(); } m_updatedShaderData.clear(); } // Called by renderview jobs (several concurrent threads) /*! \internal Lookup if the current ShaderData or a nested ShaderData has updated properties. UpdateProperties contains either the value of the propertie of a QNodeId if it's another ShaderData. Transformed properties are updated for all of ShaderData that have ones at the point. \note This needs to be performed for every top level ShaderData every time it is used. As we don't know if the transformed properties use the same viewMatrix for all RenderViews. */ bool ShaderData::updateViewTransform(const QMatrix4x4 &viewMatrix) { // We can't perform this only once as we don't know if we would be call as the root or a // nested ShaderData QMutexLocker lock(m_mutex); // Update transformed properties // We check the matrices and decide if the transform has changed since the previous call to needsUpdate if (m_viewMatrix != viewMatrix) { m_viewMatrix = viewMatrix; const QHash::const_iterator transformedEnd = m_transformedProperties.end(); QHash::const_iterator transformedIt = m_transformedProperties.begin(); while (transformedIt != transformedEnd) { if (transformedIt.value() == QShaderData::ModelToEye) { m_updatedProperties.insert(transformedIt.key(), m_viewMatrix * m_worldMatrix * m_originalProperties.value(transformedIt.key()).value()); m_properties.insert(transformedIt.key(), m_viewMatrix * m_worldMatrix * m_originalProperties.value(transformedIt.key()).value()); } ++transformedIt; } } const QHash::const_iterator end = m_nestedShaderDataProperties.end(); QHash::const_iterator it = m_nestedShaderDataProperties.begin(); while (it != end) { if (it.value().userType() == QMetaType::QVariantList) { QVariantList updatedNodes; bool nestedNeedsUpdate = false; Q_FOREACH (const QVariant &v, it.value().value()) { ShaderData *nested = lookupResource(v.value()); if (nested != Q_NULLPTR) { // We need to add the nested nodes to the updated property list // as we need to maintain order // if node[0] doesn't need update but node[1] does, // if we only have a single element, the renderer would update element [0] nestedNeedsUpdate |= nested->updateViewTransform(viewMatrix); updatedNodes << v; } } // Of course we only add all the nodes if at least one of the nested nodes required and update if (nestedNeedsUpdate && !updatedNodes.empty()) m_updatedProperties.insert(it.key(), updatedNodes); } else { ShaderData *nested = lookupResource(it.value().value()); if (nested != Q_NULLPTR && nested->updateViewTransform(viewMatrix)) m_updatedProperties.insert(it.key(), it.value()); } ++it; } return m_updatedProperties.size() > 0; } bool ShaderData::updateWorldTransform(const QMatrix4x4 &worldMatrix) { if (m_worldMatrix != worldMatrix) { m_worldMatrix = worldMatrix; const QHash::const_iterator transformedEnd = m_transformedProperties.end(); QHash::const_iterator transformedIt = m_transformedProperties.begin(); while (transformedIt != transformedEnd) { if (transformedIt.value() == QShaderData::ModelToEye) { m_updatedProperties.insert(transformedIt.key(), m_viewMatrix * m_worldMatrix * m_originalProperties.value(transformedIt.key()).value()); m_properties.insert(transformedIt.key(), m_viewMatrix * m_worldMatrix * m_originalProperties.value(transformedIt.key()).value()); } else { m_updatedProperties.insert(transformedIt.key(), m_worldMatrix * m_originalProperties.value(transformedIt.key()).value()); m_properties.insert(transformedIt.key(), m_worldMatrix * m_originalProperties.value(transformedIt.key()).value()); } ++transformedIt; } } return m_updatedProperties.size() > 0; } // This will add the ShaderData to be cleared from updates at the end of the frame // by the cleanup job // Called by renderview jobs (several concurrent threads) void ShaderData::markDirty() { QMutexLocker lock(m_mutex); if (!ShaderData::m_updatedShaderData.contains(peerUuid())) ShaderData::m_updatedShaderData.append(peerUuid()); } const int qNodeIdTypeId = qMetaTypeId(); void ShaderData::readPeerProperties(QShaderData *shaderData) { const QMetaObject *metaObject = shaderData->metaObject(); const int propertyOffset = QShaderData::staticMetaObject.propertyOffset(); const int propertyCount = metaObject->propertyCount(); for (int i = propertyOffset; i < propertyCount; ++i) { const QMetaProperty property = metaObject->property(i); if (strcmp(property.name(), "data") == 0 || strcmp(property.name(), "childNodes") == 0) // We don't handle default Node properties continue; QVariant propertyValue = m_propertyReader->readProperty(shaderData->property(property.name())); QString propertyName = QString::fromLatin1(property.name()); m_properties.insert(propertyName, propertyValue); m_originalProperties.insert(propertyName, propertyValue); // We check if the property is a QNodeId or QList so that we can // check nested QShaderData for update if (propertyValue.userType() == qNodeIdTypeId) { m_nestedShaderDataProperties.insert(propertyName, propertyValue); } else if (propertyValue.userType() == QMetaType::QVariantList) { QVariantList list = propertyValue.value(); if (list.count() > 0 && list.at(0).userType() == qNodeIdTypeId) m_nestedShaderDataProperties.insert(propertyName, propertyValue); } } // We look for transformed properties QHash::iterator it = m_properties.begin(); const QHash::iterator end = m_properties.end(); while (it != end) { if (static_cast(it.value().type()) == QMetaType::QVector3D) { // if there is a matching QShaderData::TransformType propertyTransformed QVariant value = m_properties.value(it.key() + QStringLiteral("Transformed")); // if that's the case, we apply a space transformation to the property if (value.isValid() && value.type() == QVariant::Int) m_transformedProperties.insert(it.key(), static_cast(value.toInt())); } ++it; } } void ShaderData::sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) { if (!m_propertyReader.isNull()) { QScenePropertyChangePtr propertyChange = qSharedPointerCast(e); QString propertyName = QString::fromLatin1(propertyChange->propertyName()); switch (e->type()) { case NodeUpdated: { // Note we aren't notified about nested QShaderData in this call // only scalar / vec properties if (m_properties.contains(propertyName)) { QVariant val = m_propertyReader->readProperty(propertyChange->value()); // If this is a Transformed property, we need to multiply against the correct // matrices m_originalProperties.insert(propertyName, val); if (m_transformedProperties.contains(propertyName)) { if (m_transformedProperties[propertyName] == QShaderData::ModelToEye) val = m_viewMatrix * m_worldMatrix * val.value(); else val = m_worldMatrix * val.value(); } m_properties.insert(propertyName, val); m_updatedProperties.insert(propertyName, val); } break; } case NodeAdded: { m_properties.insert(propertyName, m_propertyReader->readProperty(propertyChange->value())); m_originalProperties.insert(propertyName, m_propertyReader->readProperty(propertyChange->value())); m_nestedShaderDataProperties.insert(propertyName, propertyChange->value()); break; } case NodeRemoved: { if (m_properties.contains(propertyName)) { m_originalProperties.remove(propertyName); m_properties.remove(propertyName); m_nestedShaderDataProperties.remove(propertyName); } break; } default: break; } } } RenderShaderDataFunctor::RenderShaderDataFunctor(NodeManagers *managers) : m_managers(managers) { } Qt3DCore::QBackendNode *RenderShaderDataFunctor::create(Qt3DCore::QNode *frontend, const Qt3DCore::QBackendNodeFactory *factory) const { ShaderData *backend = m_managers->shaderDataManager()->getOrCreateResource(frontend->id()); backend->setFactory(factory); backend->setManagers(m_managers); backend->setPeer(frontend); return backend; } Qt3DCore::QBackendNode *RenderShaderDataFunctor::get(const Qt3DCore::QNodeId &id) const { return m_managers->shaderDataManager()->lookupResource(id); } void RenderShaderDataFunctor::destroy(const Qt3DCore::QNodeId &id) const { m_managers->shaderDataManager()->releaseResource(id); } } // namespace Render } // namespace Qt3DRender QT_END_NAMESPACE