summaryrefslogtreecommitdiff
path: root/examples/src/main/java/examples/Window.java
blob: d137318840df0e62b92b719303c4ed017c182ae1 (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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
//Copyright 2015 Erik De Rijcke
//
//Licensed under the Apache License,Version2.0(the"License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing,software
//distributed under the License is distributed on an"AS IS"BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
package examples;

import org.freedesktop.wayland.client.*;
import org.freedesktop.wayland.shared.WlPointerButtonState;
import org.freedesktop.wayland.shared.WlShellSurfaceResize;
import org.freedesktop.wayland.util.Fixed;

import javax.annotation.Nonnull;
import java.io.IOException;
import java.nio.IntBuffer;

public class Window {

    private final WlShellSurfaceProxy shellSurface;
    private final WlRegionProxy inputRegion;

    private final WlSurfaceProxy  surfaceProxy;
    private       WlCallbackProxy callbackProxy;
    private BufferPool bufferPool;

    public Window(final Display display,
                  final int width,
                  final int height) throws IOException {

        bufferPool = createBufferPool(display,width,height,2);

        this.surfaceProxy = display.getCompositorProxy()
                                   .createSurface(new WlSurfaceEvents() {
                                       @Override
                                       public void enter(final WlSurfaceProxy emitter,
                                                         @Nonnull
                                                         final WlOutputProxy output) {

                                       }

                                       @Override
                                       public void leave(final WlSurfaceProxy emitter,
                                                         @Nonnull
                                                         final WlOutputProxy output) {

                                       }
                                   });
        this.surfaceProxy.damage(0,
                                 0,
                                 width,
                                 height);

        inputRegion = display.getCompositorProxy().createRegion(new WlRegionEvents() {
        });
        inputRegion.add(0,
                        0,
                        width,
                        height);
        this.surfaceProxy.setInputRegion(inputRegion);

        this.shellSurface = display.getShellProxy()
                                        .getShellSurface(new WlShellSurfaceEvents() {
                                                             @Override
                                                             public void ping(final WlShellSurfaceProxy emitter,
                                                                              final int serial) {
                                                                 emitter.pong(serial);
                                                             }

                                                             @Override
                                                             public void configure(final WlShellSurfaceProxy emitter,
                                                                                   final int edges,
                                                                                   int width,
                                                                                   int height) {
                                                                 try {
                                                                     bufferPool.destroy();
                                                                     bufferPool = createBufferPool(display, width,
                                                                                                   height, 2);
                                                                     Window.this.inputRegion.add(0,
                                                                                                 0,
                                                                                                 width,
                                                                                                 height);
                                                                 } catch (IOException e) {
                                                                     e.printStackTrace();
                                                                 }

                                                             }

                                                             @Override
                                                             public void popupDone(final WlShellSurfaceProxy emitter) {

                                                             }
                                                         },
                                                         this.surfaceProxy);

        display.getSeatProxy()
                    .getPointer(new WlPointerEventsV3() {

                        boolean buttonPressed = false;

                        @Override
                        public void enter(final WlPointerProxy emitter,
                                          final int serial,
                                          @Nonnull final WlSurfaceProxy surface,
                                          @Nonnull final Fixed surfaceX,
                                          @Nonnull final Fixed surfaceY) {

                        }

                        @Override
                        public void leave(final WlPointerProxy emitter,
                                          final int serial,
                                          @Nonnull final WlSurfaceProxy surface) {
                        }

                        @Override
                        public void motion(final WlPointerProxy emitter,
                                           final int time,
                                           @Nonnull final Fixed surfaceX,
                                           @Nonnull final Fixed surfaceY) {
                        }

                        @Override
                        public void button(final WlPointerProxy emitter,
                                           final int serial,
                                           final int time,
                                           final int button,
                                           final int state) {
                            this.buttonPressed = state == WlPointerButtonState.PRESSED.getValue();
                            if (this.buttonPressed && button == 1) {
                                Window.this.shellSurface.move(display.getSeatProxy(),
                                                              serial);
                            }
                            else if(this.buttonPressed && button == 3){
                                Window.this.shellSurface.resize(display.getSeatProxy(),
                                                                serial,
                                                                WlShellSurfaceResize.NONE.getValue());
                            }
                        }

                        @Override
                        public void axis(final WlPointerProxy emitter,
                                         final int time,
                                         final int axis,
                                         @Nonnull final Fixed value) {

                        }
                    });
    }

    private BufferPool createBufferPool(Display display, int width, int height, int size) throws IOException {
        final WlShmPoolProxy wlShmPoolProxy = new BufferPoolFactory(display).create(width,
                                                                                    height,
                                                                                    2);
        final BufferPool bufferPool = (BufferPool) wlShmPoolProxy.getImplementation();
        wlShmPoolProxy.destroy();
        return bufferPool;
    }

    public void destroy() {
        this.surfaceProxy.destroy();
    }

    private int abs(final int i) {
        return i < 0 ? -i : i;
    }

    private void paintPixels(final Buffer buffer,
                             final int time) {
        final int halfh = buffer.getHeight() / 2;
        final int halfw = buffer.getWidth() / 2;
        int ir;
        int or;
        final IntBuffer image = buffer.getByteBuffer().asIntBuffer();
        image.clear();
        for (int i = 0; i < buffer.getWidth() * buffer.getHeight(); ++i) {
            image.put(0xffffffff);
        }
        image.clear();

        /* squared radii thresholds */
        or = (halfw < halfh ? halfw : halfh) - 8;
        ir = or - 32;
        or = or * or;
        ir = ir * ir;

        image.position(0);
        for (int y = 0; y < buffer.getHeight(); y++) {
            final int y2 = (y - halfh) * (y - halfh);

            image.position(image.position());
            for (int x = 0; x < buffer.getWidth(); x++) {
                int v;

                final int r2 = (x - halfw) * (x - halfw) + y2;

                if (r2 < ir) {
                    v = (r2 / 32 + time / 64) * 0x0080401;
                }
                else if (r2 < or) {
                    v = (y + time / 32) * 0x0080401;
                }
                else {
                    v = (x + time / 16) * 0x0080401;
                }
                v &= 0x00ffffff;

                if (abs(x - y) > 6 && abs(x + y - buffer.getHeight()) > 6) {
                    v |= 0xff000000;
                }

                image.put(v);
            }
            image.position(image.position());
        }
    }

    public void redraw(final int time) {
        final WlBufferProxy wlBufferProxy = bufferPool.popBuffer();
        final Buffer buffer = (Buffer) wlBufferProxy.getImplementation();
        paintPixels(buffer,
                    time);

        this.surfaceProxy.attach(wlBufferProxy,
                                 0,
                                 0);
        this.surfaceProxy.damage(0,
                                 0,
                                 buffer.getWidth(),
                                 buffer.getHeight());
        //cleanup the previous frame callback
        if (this.callbackProxy != null) {
            Window.this.callbackProxy.destroy();
        }
        //allocate a new frame callback
        this.callbackProxy = this.surfaceProxy.frame(new WlCallbackEvents() {
            @Override
            public void done(final WlCallbackProxy emitter,
                             final int time) {
                redraw(time);
            }
        });

        this.surfaceProxy.commit();
    }
}