U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2012 Intel Corporation |
| 3 | * |
| 4 | * Permission to use, copy, modify, distribute, and sell this software and |
| 5 | * its documentation for any purpose is hereby granted without fee, provided |
| 6 | * that the above copyright notice appear in all copies and that both that |
| 7 | * copyright notice and this permission notice appear in supporting |
| 8 | * documentation, and that the name of the copyright holders not be used in |
| 9 | * advertising or publicity pertaining to distribution of the software |
| 10 | * without specific, written prior permission. The copyright holders make |
| 11 | * no representations about the suitability of this software for any |
| 12 | * purpose. It is provided "as is" without express or implied warranty. |
| 13 | * |
| 14 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS |
| 15 | * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 16 | * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 17 | * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER |
| 18 | * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF |
| 19 | * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 20 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 21 | */ |
| 22 | |
| 23 | #ifndef _WESTON_TEST_CLIENT_HELPER_H_ |
| 24 | #define _WESTON_TEST_CLIENT_HELPER_H_ |
| 25 | |
| 26 | #include <assert.h> |
| 27 | #include "weston-test-runner.h" |
| 28 | #include "wayland-test-client-protocol.h" |
| 29 | |
| 30 | struct client { |
| 31 | struct wl_display *wl_display; |
| 32 | struct wl_registry *wl_registry; |
| 33 | struct wl_compositor *wl_compositor; |
| 34 | struct wl_shm *wl_shm; |
| 35 | struct test *test; |
| 36 | struct input *input; |
| 37 | struct output *output; |
| 38 | struct surface *surface; |
| 39 | int has_argb; |
Kristian Høgsberg | 1cb3df4 | 2012-12-11 23:03:56 -0500 | [diff] [blame] | 40 | struct wl_list global_list; |
| 41 | }; |
| 42 | |
| 43 | struct global { |
| 44 | uint32_t name; |
| 45 | char *interface; |
| 46 | uint32_t version; |
| 47 | struct wl_list link; |
U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | struct test { |
| 51 | struct wl_test *wl_test; |
| 52 | int pointer_x; |
| 53 | int pointer_y; |
Neil Roberts | 40c0c3f | 2013-10-29 20:13:45 +0000 | [diff] [blame] | 54 | uint32_t n_egl_buffers; |
U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | struct input { |
| 58 | struct wl_seat *wl_seat; |
| 59 | struct pointer *pointer; |
| 60 | struct keyboard *keyboard; |
| 61 | }; |
| 62 | |
| 63 | struct pointer { |
| 64 | struct wl_pointer *wl_pointer; |
| 65 | struct surface *focus; |
| 66 | int x; |
| 67 | int y; |
| 68 | uint32_t button; |
| 69 | uint32_t state; |
| 70 | }; |
| 71 | |
| 72 | struct keyboard { |
| 73 | struct wl_keyboard *wl_keyboard; |
| 74 | struct surface *focus; |
| 75 | uint32_t key; |
| 76 | uint32_t state; |
| 77 | uint32_t mods_depressed; |
| 78 | uint32_t mods_latched; |
| 79 | uint32_t mods_locked; |
| 80 | uint32_t group; |
| 81 | }; |
| 82 | |
| 83 | struct output { |
| 84 | struct wl_output *wl_output; |
| 85 | int x; |
| 86 | int y; |
| 87 | int width; |
| 88 | int height; |
| 89 | }; |
| 90 | |
| 91 | struct surface { |
| 92 | struct wl_surface *wl_surface; |
| 93 | struct wl_buffer *wl_buffer; |
| 94 | struct output *output; |
| 95 | int x; |
| 96 | int y; |
| 97 | int width; |
| 98 | int height; |
| 99 | void *data; |
| 100 | }; |
| 101 | |
| 102 | struct client * |
| 103 | client_create(int x, int y, int width, int height); |
| 104 | |
Pekka Paalanen | 32ac9b9 | 2013-02-08 17:01:26 +0200 | [diff] [blame] | 105 | struct wl_buffer * |
| 106 | create_shm_buffer(struct client *client, int width, int height, void **pixels); |
| 107 | |
U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 108 | int |
| 109 | surface_contains(struct surface *surface, int x, int y); |
| 110 | |
| 111 | void |
U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 112 | move_client(struct client *client, int x, int y); |
| 113 | |
Pekka Paalanen | f2aa64f | 2012-12-12 14:26:41 +0200 | [diff] [blame] | 114 | #define client_roundtrip(c) do { \ |
| 115 | assert(wl_display_roundtrip((c)->wl_display) >= 0); \ |
| 116 | } while (0) |
U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 117 | |
Pekka Paalanen | 8aaef7d | 2013-02-08 17:01:25 +0200 | [diff] [blame] | 118 | struct wl_callback * |
| 119 | frame_callback_set(struct wl_surface *surface, int *done); |
| 120 | |
| 121 | void |
| 122 | frame_callback_wait(struct client *client, int *done); |
| 123 | |
Neil Roberts | 40c0c3f | 2013-10-29 20:13:45 +0000 | [diff] [blame] | 124 | int |
| 125 | get_n_egl_buffers(struct client *client); |
| 126 | |
Kristian Høgsberg | 42284f5 | 2014-01-01 17:38:04 -0800 | [diff] [blame^] | 127 | void |
| 128 | skip(const char *fmt, ...); |
| 129 | |
U. Artie Eoff | 1ba9b38 | 2012-12-07 13:50:32 -0800 | [diff] [blame] | 130 | #endif |