// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef CYLINDERGEOMETRY_P_H #define CYLINDERGEOMETRY_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #if QT_CONFIG(concurrent) #include #include #endif QT_BEGIN_NAMESPACE class CylinderGeometry : public QQuick3DGeometry { Q_OBJECT Q_PROPERTY(float radius READ radius WRITE setRadius NOTIFY radiusChanged FINAL) Q_PROPERTY(float length READ length WRITE setLength NOTIFY lengthChanged FINAL) Q_PROPERTY(int rings READ rings WRITE setRings NOTIFY ringsChanged FINAL) Q_PROPERTY(int segments READ segments WRITE setSegments NOTIFY segmentsChanged FINAL) Q_PROPERTY(bool asynchronous READ asynchronous WRITE setAsynchronous NOTIFY asynchronousChanged) Q_PROPERTY(Status status READ status NOTIFY statusChanged) QML_ELEMENT QML_ADDED_IN_VERSION(6, 9) public: enum Status { Null, Ready, Loading, Error }; Q_ENUM(Status) explicit CylinderGeometry(QQuick3DObject *parent = nullptr); ~CylinderGeometry() override; float radius() const; void setRadius(float newRadius); float length() const; void setLength(float newLength); int rings() const; void setRings(int newRings); int segments() const; void setSegments(int newSegments); bool asynchronous() const; void setAsynchronous(bool newAsynchronous); Status status() const; private Q_SLOTS: void doUpdateGeometry(); void requestFinished(); Q_SIGNALS: void radiusChanged(); void lengthChanged(); void ringsChanged(); void segmentsChanged(); void asynchronousChanged(); void statusChanged(); private: struct GeometryData { QByteArray vertexData; QByteArray indexData; QVector3D boundsMin; QVector3D boundsMax; }; void scheduleGeometryUpdate(); void updateGeometry(const GeometryData &geometryData); static CylinderGeometry::GeometryData generateCylinderGeometry(float radius, float length, int rings, int slices); #if QT_CONFIG(concurrent) static void generateCylinderGeometryAsync(QPromise &promise, float radius, float length, int rings, int segments); #endif float m_radius = 50.0f; float m_length = 100.0f; int m_rings = 0; int m_segments = 20; bool m_asynchronous = true; Status m_status = Null; #if QT_CONFIG(concurrent) QFuture m_geometryDataFuture; QFutureWatcher m_geometryDataWatcher; #endif bool m_geometryUpdateRequested = false; bool m_pendingAsyncUpdate = false; }; QT_END_NAMESPACE #endif // CYLINDERGEOMETRY_P_H