2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2012-06-22 11:53:02 +00:00
|
|
|
// Cursor input bug test
|
2010-09-07 15:34:51 +00:00
|
|
|
// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
//
|
|
|
|
// This test came about as the result of bugs #1262764, #1726540 and
|
|
|
|
// #1726592, all reported by the user peterpp, hence the name
|
|
|
|
//
|
|
|
|
// The utility of this test outside of these bugs is uncertain
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 11:16:03 +00:00
|
|
|
#include <GL/glfw3.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2010-09-09 17:18:18 +00:00
|
|
|
static GLFWwindow window_handle = NULL;
|
2011-10-13 12:11:06 +00:00
|
|
|
static int cursor_x;
|
|
|
|
static int cursor_y;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
static GLboolean open_window(void);
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
static void toggle_cursor(GLFWwindow window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-02-03 23:51:35 +00:00
|
|
|
if (glfwGetInputMode(window, GLFW_CURSOR_MODE) == GLFW_CURSOR_CAPTURED)
|
2011-10-13 12:11:06 +00:00
|
|
|
{
|
|
|
|
printf("Released cursor\n");
|
2012-02-03 23:51:35 +00:00
|
|
|
glfwSetInputMode(window, GLFW_CURSOR_MODE, GLFW_CURSOR_NORMAL);
|
2011-10-13 12:11:06 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
else
|
2011-10-13 12:11:06 +00:00
|
|
|
{
|
|
|
|
printf("Captured cursor\n");
|
2012-02-03 23:51:35 +00:00
|
|
|
glfwSetInputMode(window, GLFW_CURSOR_MODE, GLFW_CURSOR_CAPTURED);
|
2011-10-13 12:11:06 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
static void cursor_position_callback(GLFWwindow window, int x, int y)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
printf("Cursor moved to: %i %i (%i %i)\n", x, y, x - cursor_x, y - cursor_y);
|
2011-10-13 12:11:06 +00:00
|
|
|
cursor_x = x;
|
|
|
|
cursor_y = y;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-09 17:18:18 +00:00
|
|
|
static void key_callback(GLFWwindow window, int key, int action)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case GLFW_KEY_SPACE:
|
|
|
|
{
|
|
|
|
if (action == GLFW_PRESS)
|
2012-06-22 11:53:02 +00:00
|
|
|
toggle_cursor(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-01-03 21:22:14 +00:00
|
|
|
case GLFW_KEY_R:
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
if (action == GLFW_PRESS)
|
|
|
|
{
|
2012-08-06 15:56:41 +00:00
|
|
|
glfwDestroyWindow(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
open_window();
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-09 17:18:18 +00:00
|
|
|
static void window_size_callback(GLFWwindow window, int width, int height)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
glViewport(0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GLboolean open_window(void)
|
|
|
|
{
|
2012-08-06 15:56:41 +00:00
|
|
|
window_handle = glfwCreateWindow(0, 0, GLFW_WINDOWED, "Peter Detector", NULL);
|
2010-09-09 17:18:18 +00:00
|
|
|
if (!window_handle)
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2012-08-10 13:29:45 +00:00
|
|
|
glfwMakeContextCurrent(window_handle);
|
|
|
|
glfwSwapInterval(1);
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
glfwGetCursorPos(window_handle, &cursor_x, &cursor_y);
|
|
|
|
printf("Cursor position: %i %i\n", cursor_x, cursor_y);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-10-24 16:28:55 +00:00
|
|
|
glfwSetWindowSizeCallback(window_size_callback);
|
2012-06-22 11:53:02 +00:00
|
|
|
glfwSetCursorPosCallback(cursor_position_callback);
|
2010-10-24 16:28:55 +00:00
|
|
|
glfwSetKeyCallback(key_callback);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2012-02-07 13:58:58 +00:00
|
|
|
if (!glfwInit())
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 12:32:05 +00:00
|
|
|
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
|
|
|
|
exit(EXIT_FAILURE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!open_window())
|
|
|
|
{
|
|
|
|
glfwTerminate();
|
|
|
|
|
2010-09-11 12:32:05 +00:00
|
|
|
fprintf(stderr, "Failed to open GLFW window: %s\n", glfwErrorString(glfwGetError()));
|
|
|
|
exit(EXIT_FAILURE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glClearColor(0.f, 0.f, 0.f, 0.f);
|
|
|
|
|
2012-08-10 11:31:15 +00:00
|
|
|
while (!glfwGetWindowParam(window_handle, GLFW_CLOSE_REQUESTED))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
2012-08-06 16:13:37 +00:00
|
|
|
glfwSwapBuffers(window_handle);
|
2010-09-07 15:34:51 +00:00
|
|
|
glfwWaitEvents();
|
|
|
|
}
|
|
|
|
|
|
|
|
glfwTerminate();
|
2010-09-11 12:32:05 +00:00
|
|
|
exit(EXIT_SUCCESS);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|