2014-03-17 21:53:43 +00:00
|
|
|
//========================================================================
|
2016-08-18 21:42:15 +00:00
|
|
|
// GLFW 3.3 Wayland - www.glfw.org
|
2014-03-17 21:53:43 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// 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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
struct _GLFWvidmodeWayland
|
|
|
|
{
|
2014-03-17 21:53:43 +00:00
|
|
|
GLFWvidmode base;
|
|
|
|
uint32_t flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void geometry(void* data,
|
|
|
|
struct wl_output* output,
|
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t physicalWidth,
|
|
|
|
int32_t physicalHeight,
|
|
|
|
int32_t subpixel,
|
|
|
|
const char* make,
|
|
|
|
const char* model,
|
|
|
|
int32_t transform)
|
|
|
|
{
|
|
|
|
struct _GLFWmonitor *monitor = data;
|
2016-10-11 01:40:16 +00:00
|
|
|
char* name;
|
|
|
|
size_t nameLength;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
monitor->wl.x = x;
|
|
|
|
monitor->wl.y = y;
|
2014-03-17 21:53:43 +00:00
|
|
|
monitor->widthMM = physicalWidth;
|
|
|
|
monitor->heightMM = physicalHeight;
|
2016-10-11 01:40:16 +00:00
|
|
|
|
|
|
|
nameLength = strlen(make) + 1 + strlen(model) + 1;
|
|
|
|
name = realloc(monitor->name, nameLength);
|
|
|
|
if (name)
|
|
|
|
{
|
|
|
|
sprintf(name, "%s %s", make, model);
|
|
|
|
monitor->name = name;
|
|
|
|
}
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mode(void* data,
|
|
|
|
struct wl_output* output,
|
|
|
|
uint32_t flags,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
int32_t refresh)
|
|
|
|
{
|
|
|
|
struct _GLFWmonitor *monitor = data;
|
|
|
|
_GLFWvidmodeWayland mode = { { 0 }, };
|
|
|
|
|
|
|
|
mode.base.width = width;
|
|
|
|
mode.base.height = height;
|
2015-10-23 23:52:10 +00:00
|
|
|
mode.base.refreshRate = refresh / 1000;
|
2014-03-17 21:53:43 +00:00
|
|
|
mode.flags = flags;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (monitor->wl.modesCount + 1 >= monitor->wl.modesSize)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
int size = monitor->wl.modesSize * 2;
|
2014-03-17 21:53:43 +00:00
|
|
|
_GLFWvidmodeWayland* modes =
|
2014-03-19 15:20:32 +00:00
|
|
|
realloc(monitor->wl.modes,
|
2014-06-30 00:59:41 +00:00
|
|
|
size * sizeof(_GLFWvidmodeWayland));
|
2014-03-19 15:20:32 +00:00
|
|
|
monitor->wl.modes = modes;
|
|
|
|
monitor->wl.modesSize = size;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
monitor->wl.modes[monitor->wl.modesCount++] = mode;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void done(void* data,
|
|
|
|
struct wl_output* output)
|
|
|
|
{
|
|
|
|
struct _GLFWmonitor *monitor = data;
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
monitor->wl.done = GLFW_TRUE;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void scale(void* data,
|
|
|
|
struct wl_output* output,
|
|
|
|
int32_t factor)
|
|
|
|
{
|
2015-10-10 15:35:06 +00:00
|
|
|
struct _GLFWmonitor *monitor = data;
|
|
|
|
|
|
|
|
monitor->wl.scale = factor;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2016-10-01 19:05:29 +00:00
|
|
|
static const struct wl_output_listener outputListener = {
|
2014-03-17 21:53:43 +00:00
|
|
|
geometry,
|
|
|
|
mode,
|
|
|
|
done,
|
|
|
|
scale,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
void _glfwAddOutputWayland(uint32_t name, uint32_t version)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor *monitor;
|
|
|
|
struct wl_output *output;
|
|
|
|
|
|
|
|
if (version < 2)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2014-03-19 15:32:50 +00:00
|
|
|
"Wayland: Unsupported output interface version");
|
2014-03-17 21:53:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-11 01:40:16 +00:00
|
|
|
// The actual name of this output will be set in the geometry handler.
|
|
|
|
monitor = _glfwAllocMonitor(NULL, 0, 0);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
output = wl_registry_bind(_glfw.wl.registry,
|
2014-03-17 21:53:43 +00:00
|
|
|
name,
|
|
|
|
&wl_output_interface,
|
|
|
|
2);
|
|
|
|
if (!output)
|
|
|
|
{
|
|
|
|
_glfwFreeMonitor(monitor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
monitor->wl.modes = calloc(4, sizeof(_GLFWvidmodeWayland));
|
|
|
|
monitor->wl.modesSize = 4;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2015-10-10 15:35:06 +00:00
|
|
|
monitor->wl.scale = 1;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
monitor->wl.output = output;
|
2016-10-01 19:05:29 +00:00
|
|
|
wl_output_add_listener(output, &outputListener, monitor);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (_glfw.wl.monitorsCount + 1 >= _glfw.wl.monitorsSize)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
_GLFWmonitor** monitors = _glfw.wl.monitors;
|
|
|
|
int size = _glfw.wl.monitorsSize * 2;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
monitors = realloc(monitors, size * sizeof(_GLFWmonitor*));
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
_glfw.wl.monitors = monitors;
|
|
|
|
_glfw.wl.monitorsSize = size;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
_glfw.wl.monitors[_glfw.wl.monitorsCount++] = monitor;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
_GLFWmonitor** _glfwPlatformGetMonitors(int* count)
|
|
|
|
{
|
|
|
|
_GLFWmonitor** monitors;
|
|
|
|
_GLFWmonitor* monitor;
|
2014-03-19 15:20:32 +00:00
|
|
|
int i, monitorsCount = _glfw.wl.monitorsCount;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (_glfw.wl.monitorsCount == 0)
|
2014-03-17 21:53:43 +00:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
monitors = calloc(monitorsCount, sizeof(_GLFWmonitor*));
|
|
|
|
|
|
|
|
for (i = 0; i < monitorsCount; i++)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
_GLFWmonitor* origMonitor = _glfw.wl.monitors[i];
|
2014-03-19 15:11:19 +00:00
|
|
|
monitor = calloc(1, sizeof(_GLFWmonitor));
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
monitor->modes =
|
|
|
|
_glfwPlatformGetVideoModes(origMonitor,
|
2014-03-19 15:20:32 +00:00
|
|
|
&origMonitor->wl.modesCount);
|
|
|
|
*monitor = *_glfw.wl.monitors[i];
|
2014-03-17 21:53:43 +00:00
|
|
|
monitors[i] = monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
*count = monitorsCount;
|
|
|
|
return monitors;
|
|
|
|
|
|
|
|
err:
|
|
|
|
*count = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
GLFWbool _glfwPlatformIsSameMonitor(_GLFWmonitor* first, _GLFWmonitor* second)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
return first->wl.output == second->wl.output;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos)
|
|
|
|
{
|
|
|
|
if (xpos)
|
2014-03-19 15:20:32 +00:00
|
|
|
*xpos = monitor->wl.x;
|
2014-03-17 21:53:43 +00:00
|
|
|
if (ypos)
|
2014-03-19 15:20:32 +00:00
|
|
|
*ypos = monitor->wl.y;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|
|
|
{
|
|
|
|
GLFWvidmode *modes;
|
2014-03-19 15:20:32 +00:00
|
|
|
int i, modesCount = monitor->wl.modesCount;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
modes = calloc(modesCount, sizeof(GLFWvidmode));
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
for (i = 0; i < modesCount; i++)
|
2014-03-19 15:20:32 +00:00
|
|
|
modes[i] = monitor->wl.modes[i].base;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
*found = modesCount;
|
|
|
|
return modes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
for (i = 0; i < monitor->wl.modesCount; i++)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
if (monitor->wl.modes[i].flags & WL_OUTPUT_MODE_CURRENT)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
*mode = monitor->wl.modes[i].base;
|
2014-03-17 21:53:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 15:11:19 +00:00
|
|
|
|
2014-08-18 10:31:48 +00:00
|
|
|
void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
// TODO
|
2016-04-08 23:47:55 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland: Gamma ramp getting not supported yet");
|
2014-08-18 10:31:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
// TODO
|
2016-04-08 23:47:55 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland: Gamma ramp setting not supported yet");
|
2014-08-18 10:31:48 +00:00
|
|
|
}
|
|
|
|
|
2015-08-16 20:02:31 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI struct wl_output* glfwGetWaylandMonitor(GLFWmonitor* handle)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
return monitor->wl.output;
|
|
|
|
}
|
|
|
|
|