2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-09-14 02:03:34 +00:00
|
|
|
|
2011-04-27 15:49:30 +00:00
|
|
|
#include <QWindow>
|
|
|
|
|
2011-08-22 08:49:28 +00:00
|
|
|
#include <QColor>
|
2013-04-08 06:32:43 +00:00
|
|
|
#include <QMutex>
|
2020-05-20 09:05:17 +00:00
|
|
|
#include <QOpenGLShaderProgram>
|
2014-08-02 17:42:15 +00:00
|
|
|
#include <QOpenGLBuffer>
|
2012-05-25 10:50:21 +00:00
|
|
|
#include <QSharedPointer>
|
2012-12-19 10:27:10 +00:00
|
|
|
#include <QTimer>
|
2011-06-07 15:25:22 +00:00
|
|
|
|
2013-04-08 06:32:43 +00:00
|
|
|
class HelloWindow;
|
|
|
|
|
2011-06-07 15:25:22 +00:00
|
|
|
class Renderer : public QObject
|
2011-04-27 15:49:30 +00:00
|
|
|
{
|
2011-08-18 08:50:18 +00:00
|
|
|
Q_OBJECT
|
2012-12-19 10:27:10 +00:00
|
|
|
|
2011-04-27 15:49:30 +00:00
|
|
|
public:
|
2020-05-20 09:05:17 +00:00
|
|
|
explicit Renderer(const QSurfaceFormat &format, Renderer *share = nullptr,
|
|
|
|
QScreen *screen = nullptr);
|
2011-04-27 15:49:30 +00:00
|
|
|
|
2011-08-18 08:50:18 +00:00
|
|
|
QSurfaceFormat format() const { return m_format; }
|
2011-04-27 15:49:30 +00:00
|
|
|
|
2016-08-23 06:02:16 +00:00
|
|
|
public slots:
|
2020-05-20 09:05:17 +00:00
|
|
|
void render(HelloWindow *surface, qreal angle, const QColor &color);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void requestUpdate();
|
2011-04-27 15:49:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void initialize();
|
|
|
|
|
|
|
|
void createGeometry();
|
|
|
|
void createBubbles(int number);
|
|
|
|
void quad(qreal x1, qreal y1, qreal x2, qreal y2, qreal x3, qreal y3, qreal x4, qreal y4);
|
|
|
|
void extrude(qreal x1, qreal y1, qreal x2, qreal y2);
|
2014-08-02 17:42:15 +00:00
|
|
|
|
2020-06-22 08:12:38 +00:00
|
|
|
QList<QVector3D> vertices;
|
|
|
|
QList<QVector3D> normals;
|
2011-04-27 15:49:30 +00:00
|
|
|
int vertexAttr;
|
|
|
|
int normalAttr;
|
|
|
|
int matrixUniform;
|
|
|
|
int colorUniform;
|
2011-06-07 15:25:22 +00:00
|
|
|
|
|
|
|
bool m_initialized;
|
2011-06-21 11:39:26 +00:00
|
|
|
QSurfaceFormat m_format;
|
2011-08-22 08:49:28 +00:00
|
|
|
QOpenGLContext *m_context;
|
|
|
|
QOpenGLShaderProgram *m_program;
|
2014-08-02 17:42:15 +00:00
|
|
|
QOpenGLBuffer m_vbo;
|
2014-10-16 11:35:33 +00:00
|
|
|
QColor m_backgroundColor;
|
2011-06-07 15:25:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class HelloWindow : public QWindow
|
|
|
|
{
|
|
|
|
public:
|
2020-05-20 09:05:17 +00:00
|
|
|
explicit HelloWindow(const QSharedPointer<Renderer> &renderer, QScreen *screen = nullptr);
|
2011-06-07 15:25:22 +00:00
|
|
|
|
2013-04-08 06:32:43 +00:00
|
|
|
QColor color() const;
|
2011-08-18 08:50:18 +00:00
|
|
|
void updateColor();
|
|
|
|
|
2019-01-14 13:21:10 +00:00
|
|
|
protected:
|
|
|
|
bool event(QEvent *ev) override;
|
2016-06-15 08:12:35 +00:00
|
|
|
void exposeEvent(QExposeEvent *event) override;
|
|
|
|
void mousePressEvent(QMouseEvent *) override;
|
2020-05-20 09:05:17 +00:00
|
|
|
void render();
|
2011-06-07 15:25:22 +00:00
|
|
|
|
2019-01-14 13:21:10 +00:00
|
|
|
private:
|
2011-06-07 15:25:22 +00:00
|
|
|
int m_colorIndex;
|
|
|
|
QColor m_color;
|
2012-05-25 10:50:21 +00:00
|
|
|
const QSharedPointer<Renderer> m_renderer;
|
2011-04-27 15:49:30 +00:00
|
|
|
};
|