summaryrefslogtreecommitdiffstats
path: root/tests/manual/texture-sharing/cpp-client/main.cpp
blob: 3c0a826f4b73f71a7ae6920067abc352480fa3af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QGuiApplication>
#include <QtGui/private/qguiapplication_p.h>
#include <QOpenGLWindow>
#include <QOpenGLTexture>
#include <QOpenGLTextureBlitter>
#include <QPainter>
#include <QMouseEvent>
#include <QPlatformSurfaceEvent>

#include <QtWaylandClient/private/qwaylanddisplay_p.h>
#include <QtWaylandClient/private/qwaylandintegration_p.h>
#include <QtWaylandClient/private/qwaylandserverbufferintegration_p.h>
#include "texturesharingextension.h"

#include <QDebug>
#include <QtGui/qpa/qplatformnativeinterface.h>
#include <QTimer>
#include <QMap>

class TestWindow : public QOpenGLWindow
{
    Q_OBJECT

public:
    TestWindow()
        : m_extension(nullptr)
    {
        m_extension = new TextureSharingExtension;
        connect(m_extension, SIGNAL(bufferReceived(QtWaylandClient::QWaylandServerBuffer*, const QString&)), this, SLOT(receiveBuffer(QtWaylandClient::QWaylandServerBuffer*, const QString&)));
        connect(m_extension, &TextureSharingExtension::activeChanged, this, &TestWindow::handleExtensionActive);
    }

public slots:
    void receiveBuffer(QtWaylandClient::QWaylandServerBuffer *buffer, const QString &key)
    {
        if (!buffer) {
            qWarning() << "Could not find image with key" << key;
            return;
        }
        m_buffers.insert(key, buffer);
        update();
    }


    void handleExtensionActive()
    {
        if (m_extension->isActive())
            getImage("qt_logo");
    }

protected:

    void mousePressEvent(QMouseEvent *ev) override {
        QRect rect(10, height() - 10 - 50, 50, 50);
        bool rectPressed = rect.contains(ev->pos());

        static int c;

        if (rectPressed && ev->button() == Qt::LeftButton)
            getImage(QString("unreasonably large image %1").arg(c++));
        else if (ev->button() == Qt::RightButton)
            getImage("guitar.jpg");
        else if (ev->button() == Qt::MiddleButton)
            unloadImageAt(ev->pos());
    }

    void initializeGL() override
    {
        m_blitter = new QOpenGLTextureBlitter;
        m_blitter->create();
    }

    void paintGL() override {
        glClearColor(.5, .45, .42, 1.);
        glClear(GL_COLOR_BUFFER_BIT);

        // draw a "button" to click in
        glScissor(10,10,50,50);
        glEnable(GL_SCISSOR_TEST);
        glClearColor(0.4, 0.7, 0.9, 1.0);
        glClear(GL_COLOR_BUFFER_BIT);
        glDisable(GL_SCISSOR_TEST);

        int x = 0;
        qDebug() << "*** paintGL ***";
        showBuffers();
        for (auto buffer: qAsConst(m_buffers)) {
            m_blitter->bind();
            QSize s(buffer->size());
            qDebug() << "painting" << buffer << s;
            if (s.width() > 1024) {
                qDebug() << "showing large buffer at reduced size";
                s = QSize(128,128);
            }
            QRectF targetRect(QPointF(x,0), s);
            QOpenGLTexture *texture = buffer->toOpenGlTexture();
            if (!texture) {
                qWarning("Null texture");
                continue;
            }
            auto surfaceOrigin = QOpenGLTextureBlitter::OriginTopLeft;
            QMatrix4x4 targetTransform = QOpenGLTextureBlitter::targetTransform(targetRect, QRect(QPoint(), size()));
            m_blitter->blit(texture->textureId(), targetTransform, surfaceOrigin);
            m_blitter->release();
            x += s.width() + 10;
        }
    }

private:
    void getImage(const QString &key) {
        if (!m_buffers.contains(key))
            m_extension->requestImage(key);
    }

    void showBuffers() const
    {
        auto end = m_buffers.cend();
        for (auto it = m_buffers.cbegin(); it != end; ++it) {
            qDebug() << "    " << it.key() << it.value();
        }
    }

    void unloadImageAt(const QPoint &pos) {
        int x = 0;
        QtWaylandClient::QWaylandServerBuffer *foundBuffer = nullptr;
        QString name;
        auto end = m_buffers.cend();
        for (auto it = m_buffers.cbegin(); it != end; ++it) {
            auto *buffer = it.value();
            QSize s(buffer->size());
            if (s.width() > 1024)
                s = QSize(128,128);
            QRectF targetRect(QPointF(x,0), s);
            //qDebug() << "    " << it.key() << it.value() << targetRect << pos;

            if (targetRect.contains(pos)) {
                foundBuffer = buffer;
                name = it.key();
                //qDebug() << "FOUND!!";
                break;
            }

            x += s.width() + 10;
        }
        if (foundBuffer) {
            qDebug() << "unloading image" << name << "found at" << pos;
            unloadImage(name);
        } else {
            qDebug() << "no image at" << pos;
        }
    }

    void unloadImage(const QString &key) {
        auto *buf = m_buffers.take(key);
        if (buf) {
            qDebug() << "unloadImage deleting" << buf;
            delete buf;
            m_extension->abandonImage(key);
        }
        update();
    }

    QOpenGLTextureBlitter *m_blitter = nullptr;
    TextureSharingExtension *m_extension = nullptr;
    QMap<QString, QtWaylandClient::QWaylandServerBuffer*> m_buffers;

};

int main (int argc, char **argv)
{
    QGuiApplication app(argc, argv);

    TestWindow window;
    window.show();

    return app.exec();
}

#include "main.moc"