2014-03-17 21:53:43 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW 3.1 Wayland - www.glfw.org
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2014 Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#include <wayland-egl.h>
|
|
|
|
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
static void handlePing(void* data,
|
|
|
|
struct wl_shell_surface* shellSurface,
|
|
|
|
uint32_t serial)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
|
|
|
wl_shell_surface_pong(shellSurface, serial);
|
|
|
|
}
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
static void handleConfigure(void* data,
|
|
|
|
struct wl_shell_surface* shellSurface,
|
|
|
|
uint32_t edges,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
static void handlePopupDone(void* data,
|
|
|
|
struct wl_shell_surface* shellSurface)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_shell_surface_listener shellSurfaceListener = {
|
|
|
|
handlePing,
|
|
|
|
handleConfigure,
|
|
|
|
handlePopupDone
|
|
|
|
};
|
|
|
|
|
|
|
|
static GLboolean createSurface(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
|
|
|
if (!window->wl.surface)
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.native = wl_egl_window_create(window->wl.surface,
|
|
|
|
wndconfig->width,
|
|
|
|
wndconfig->height);
|
|
|
|
if (!window->wl.native)
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.shell_surface = wl_shell_get_shell_surface(_glfw.wl.shell,
|
|
|
|
window->wl.surface);
|
|
|
|
if (!window->wl.shell_surface)
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_add_listener(window->wl.shell_surface,
|
2014-03-17 21:53:43 +00:00
|
|
|
&shellSurfaceListener,
|
|
|
|
window);
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.width = wndconfig->width;
|
|
|
|
window->wl.height = wndconfig->height;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
|
|
|
{
|
|
|
|
if (!_glfwCreateContext(window, ctxconfig, fbconfig))
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
if (!createSurface(window, wndconfig))
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
if (wndconfig->monitor)
|
|
|
|
{
|
|
|
|
wl_shell_surface_set_fullscreen(
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.shell_surface,
|
2014-03-17 21:53:43 +00:00
|
|
|
WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
|
|
|
|
0,
|
2014-03-19 15:20:32 +00:00
|
|
|
wndconfig->monitor->wl.output);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_set_toplevel(window->wl.shell_surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
if (window->wl.native)
|
|
|
|
wl_egl_window_destroy(window->wl.native);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
_glfwDestroyContext(window);
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (window->wl.shell_surface)
|
|
|
|
wl_shell_surface_destroy(window->wl.shell_surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (window->wl.surface)
|
|
|
|
wl_surface_destroy(window->wl.surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_set_title(window->wl.shell_surface, title);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
|
|
|
|
{
|
|
|
|
// A Wayland client is not aware of its position, so just warn and set it
|
|
|
|
// to (0, 0)
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland does not allow manual window positioning");
|
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = 0;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos)
|
|
|
|
{
|
2014-03-19 15:11:19 +00:00
|
|
|
// A Wayland client can not set its position, so just warn
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland does not allow manual window positioning");
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
if (width)
|
2014-03-19 15:20:32 +00:00
|
|
|
*width = window->wl.width;
|
2014-03-17 21:53:43 +00:00
|
|
|
if (height)
|
2014-03-19 15:20:32 +00:00
|
|
|
*height = window->wl.height;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_egl_window_resize(window->wl.native, width, height, 0, 0);
|
|
|
|
window->wl.width = width;
|
|
|
|
window->wl.height = height;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
_glfwPlatformGetWindowSize(window, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformIconifyWindow not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformRestoreWindow not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_set_toplevel(window->wl.shell_surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_surface_attach(window->wl.surface, NULL, 0, 0);
|
|
|
|
wl_surface_commit(window->wl.surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformPollEvents(void)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
struct wl_display* display = _glfw.wl.display;
|
2014-03-17 21:53:43 +00:00
|
|
|
struct pollfd fds[] = {
|
|
|
|
{ wl_display_get_fd(display), POLLIN },
|
|
|
|
};
|
|
|
|
|
|
|
|
while (wl_display_prepare_read(display) != 0)
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
wl_display_flush(display);
|
|
|
|
if (poll(fds, 1, 0) > 0)
|
|
|
|
{
|
|
|
|
wl_display_read_events(display);
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformWaitEvents(void)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
struct wl_display* display = _glfw.wl.display;
|
2014-03-17 21:53:43 +00:00
|
|
|
struct pollfd fds[] = {
|
|
|
|
{ wl_display_get_fd(display), POLLIN },
|
|
|
|
};
|
|
|
|
|
|
|
|
while (wl_display_prepare_read(display) != 0)
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
wl_display_flush(display);
|
|
|
|
if (poll(fds, 1, -1) > 0)
|
|
|
|
{
|
|
|
|
wl_display_read_events(display);
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformPostEmptyEvent(void)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_display_sync(_glfw.wl.display);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double x, double y)
|
|
|
|
{
|
2014-03-19 15:11:19 +00:00
|
|
|
// A Wayland client can not set the cursor position
|
2014-03-17 21:53:43 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland does not allow cursor positioning");
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformApplyCursorMode(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "_glfwPlatformApplyCursorMode not implemented yet\n");
|
|
|
|
switch (window->cursorMode)
|
|
|
|
{
|
|
|
|
case GLFW_CURSOR_NORMAL:
|
|
|
|
// TODO: enable showing cursor
|
|
|
|
break;
|
|
|
|
case GLFW_CURSOR_HIDDEN:
|
|
|
|
// TODO: enable not showing cursor
|
|
|
|
break;
|
|
|
|
case GLFW_CURSOR_DISABLED:
|
|
|
|
// TODO: enable pointer lock and hide cursor
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 15:11:19 +00:00
|
|
|
|