Omit mention of autoconf update, autoconf is no longer in use
[freeglut] / src / wayland / fg_internal_wl.h
1 /*
2  * fg_internal_wl.h
3  *
4  * The freeglut library private include file.
5  *
6  * Copyright (c) 2015 Manuel Bachmann. All Rights Reserved.
7  * Written by Manuel Bachmann, <tarnyko@tarnyko.net>
8  * Creation date: Tue Mar 17, 2015
9  *
10  * Permission is hereby granted, free of charge, to any person obtaining a
11  * copy of this software and associated documentation files (the "Software"),
12  * to deal in the Software without restriction, including without limitation
13  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14  * and/or sell copies of the Software, and to permit persons to whom the
15  * Software is furnished to do so, subject to the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be included
18  * in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
23  * MANUEL BACHMANN BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26  */
27
28 #ifndef  FREEGLUT_INTERNAL_WL_H
29 #define  FREEGLUT_INTERNAL_WL_H
30
31
32 /* -- PLATFORM-SPECIFIC INCLUDES ------------------------------------------- */
33 #include "egl/fg_internal_egl.h"
34 #include <wayland-egl.h>
35 #include <wayland-client.h>
36 #include <wayland-cursor.h>
37 #include <xkbcommon/xkbcommon.h>
38
39
40 /* -- GLOBAL TYPE DEFINITIONS ---------------------------------------------- */
41 /* The structure used by display initialization in fg_init.c */
42 typedef struct tagSFG_PlatformDisplay SFG_PlatformDisplay;
43 struct tagSFG_PlatformDisplay
44 {
45     struct tagSFG_PlatformDisplayEGL egl;
46
47     struct wl_display* display;        /* The display we are being run in    */
48     struct wl_registry* registry;      /* The global interface registry      */
49     struct wl_compositor* compositor;  /* The compositor                     */
50     struct wl_shell* shell;            /* The shell, AKA window manager      */
51     struct wl_seat* seat;              /* The seat, references input devices */
52
53     struct xkb_context* xkb_context;   /* The global XKB keyboard context    */
54     struct xkb_state* xkb_state;       /* The current XKB keyboard state     */
55     struct wl_keyboard* keyboard;      /* The keyboard input device          */
56     struct wl_pointer* pointer;        /* The pointer input device (mouse)   */
57     struct wl_touch* touch;            /* The touchscreen input device       */
58
59     struct wl_shm* shm;                    /* The software rendering engine  */
60     struct wl_cursor_theme* cursor_theme;  /* The pointer cursor theme       */
61 };
62
63
64 /* The structure used by window creation in fg_window.c */
65 typedef struct tagSFG_PlatformContext SFG_PlatformContext;
66 struct tagSFG_PlatformContext
67 {
68     struct tagSFG_PlatformContextEGL egl;
69     GLboolean pointer_button_pressed;
70
71     struct wl_surface* surface;            /* The drawing surface             */
72     struct wl_shell_surface* shsurface;    /* The shell surface, has states   */
73     struct wl_egl_window* egl_window;      /* Binding between WL/EGL surfaces */
74
75     struct wl_cursor* cursor;              /* The active cursor */
76     struct wl_surface* cursor_surface;     /* The active cursor surface */
77 };
78
79
80 /* The window state description. This structure should be kept portable. */
81 typedef struct tagSFG_PlatformWindowState SFG_PlatformWindowState;
82 struct tagSFG_PlatformWindowState
83 {
84     int OldWidth;                        /* Window width from before a resize */
85     int OldHeight;                       /*   "    height  "    "    "   "    */
86 };
87
88
89 /* -- JOYSTICK-SPECIFIC STRUCTURES AND TYPES ------------------------------- */
90 /*
91  * Initial defines from "js.h" starting around line 33 with the existing "fg_joystick.c"
92  * interspersed
93  */
94 #    ifdef HAVE_SYS_IOCTL_H
95 #        include <sys/ioctl.h>
96 #    endif
97 #    ifdef HAVE_FCNTL_H
98 #        include <fcntl.h>
99 #    endif
100
101 #include <errno.h>
102 #include <string.h>
103
104 #    if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
105 #        define HAVE_USB_JS    1
106
107 #        include <sys/joystick.h>
108 #        define JS_DATA_TYPE joystick
109 #        define JS_RETURN (sizeof(struct JS_DATA_TYPE))
110 #    endif
111
112 #    if defined(__linux__)
113 #        include <linux/joystick.h>
114
115 /* check the joystick driver version */
116 #        if defined(JS_VERSION) && JS_VERSION >= 0x010000
117 #            define JS_NEW
118 #        endif
119 #    else  /* Not BSD or Linux */
120 #        ifndef JS_RETURN
121
122   /*
123    * We'll put these values in and that should
124    * allow the code to at least compile when there is
125    * no support. The JS open routine should error out
126    * and shut off all the code downstream anyway and if
127    * the application doesn't use a joystick we'll be fine.
128    */
129
130   struct JS_DATA_TYPE
131   {
132     int buttons;
133     int x;
134     int y;
135   };
136
137 #            define JS_RETURN (sizeof(struct JS_DATA_TYPE))
138 #        endif
139 #    endif
140
141 /* XXX It might be better to poll the operating system for the numbers of buttons and
142  * XXX axes and then dynamically allocate the arrays.
143  */
144 #    define _JS_MAX_AXES 16
145 typedef struct tagSFG_PlatformJoystick SFG_PlatformJoystick;
146 struct tagSFG_PlatformJoystick
147 {
148 #   if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
149        struct os_specific_s *os;
150 #   endif
151
152 #   ifdef JS_NEW
153        struct js_event     js;
154        int          tmp_buttons;
155        float        tmp_axes [ _JS_MAX_AXES ];
156 #   else
157        struct JS_DATA_TYPE js;
158 #   endif
159
160     char         fname [ 128 ];
161     int          fd;
162 };
163
164
165 /* Menu font and color definitions */
166 #define  FREEGLUT_MENU_FONT    GLUT_BITMAP_HELVETICA_18
167
168 #define  FREEGLUT_MENU_PEN_FORE_COLORS   {0.0f,  0.0f,  0.0f,  1.0f}
169 #define  FREEGLUT_MENU_PEN_BACK_COLORS   {0.70f, 0.70f, 0.70f, 1.0f}
170 #define  FREEGLUT_MENU_PEN_HFORE_COLORS  {0.0f,  0.0f,  0.0f,  1.0f}
171 #define  FREEGLUT_MENU_PEN_HBACK_COLORS  {1.0f,  1.0f,  1.0f,  1.0f}
172
173
174 #endif  /* FREEGLUT_INTERNAL_WL_H */