lwjgl/src/native/linux/org_lwjgl_input_Mouse.cpp

368 lines
11 KiB
C++
Raw Normal View History

2002-11-15 05:40:55 -05:00
/*
* Copyright (c) 2002 Light Weight Java Game Library Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of 'Light Weight Java Game Library' nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* $Id$
*
2002-11-15 06:10:32 -05:00
* Linux mouse handling.
2002-11-15 05:40:55 -05:00
*
2002-11-15 06:10:32 -05:00
* @author elias_naur <elias_naur@users.sourceforge.net>
2002-11-15 05:40:55 -05:00
* @version $Revision$
*/
#include <X11/X.h>
#include <X11/Xlib.h>
2002-11-20 08:54:58 -05:00
#include <X11/extensions/xf86vmode.h>
2002-11-15 05:40:55 -05:00
#include <assert.h>
#include <string.h>
2003-10-11 12:29:40 -04:00
#include "Window.h"
#include "common_tools.h"
2002-11-15 05:40:55 -05:00
#include "org_lwjgl_input_Mouse.h"
2003-05-16 14:39:46 -04:00
#include "extxcursor.h"
2002-11-15 05:40:55 -05:00
2002-11-17 11:49:16 -05:00
#define NUM_BUTTONS 3
2002-11-15 05:40:55 -05:00
#define POINTER_WARP_BORDER 10
#define WARP_RETRY 5
// scale the mouse wheel according to win32
#define WHEEL_SCALE 120
2004-04-12 06:05:13 -04:00
static bool pointer_grabbed;
static bool created;
2002-11-15 05:40:55 -05:00
2003-02-08 14:55:07 -05:00
static int last_x;
static int last_y;
static int last_z;
static int current_x;
static int current_y;
static int current_z;
2003-10-11 12:29:40 -04:00
static jbyte buttons[NUM_BUTTONS];
static event_queue_t event_queue;
static bool buffer_enabled;
2002-11-15 05:40:55 -05:00
2003-02-08 14:55:07 -05:00
static Cursor blank_cursor;
2003-05-16 14:39:46 -04:00
static Cursor current_cursor;
static int cap(int val, int min, int max) {
if (val < min)
return min;
else if (val > max)
return max;
else
return val;
}
static void setCursorPos(int x, int y) {
current_x = cap(x, 0, getWindowWidth() - 1);
current_y = cap(y, 0, getWindowHeight() - 1);
}
2003-10-11 08:56:26 -04:00
static void transformCursorPos(int x, int y) {
// transform to OpenGL coordinate system center
2003-10-11 08:56:26 -04:00
y = getWindowHeight() - 1 - y;
setCursorPos(x, y);
2003-10-11 08:56:26 -04:00
}
2004-04-12 08:20:59 -04:00
void resetCursor(int x, int y) {
transformCursorPos(x, y);
last_x = current_x;
last_y = current_y;
}
2003-10-11 09:23:55 -04:00
static bool blankCursor(void) {
2002-11-19 03:50:57 -05:00
unsigned int best_width, best_height;
if (XQueryBestCursor(getDisplay(), getCurrentWindow(), 1, 1, &best_width, &best_height) == 0) {
2003-12-20 17:03:25 -05:00
printfDebug("Could not query best cursor size\n");
2003-10-11 09:23:55 -04:00
return false;
2002-11-17 11:14:53 -05:00
}
Pixmap mask = XCreatePixmap(getDisplay(), getCurrentWindow(), best_width, best_height, 1);
2002-11-17 11:14:53 -05:00
XGCValues gc_values;
gc_values.foreground = 0;
GC gc = XCreateGC(getDisplay(), mask, GCForeground, &gc_values);
XFillRectangle(getDisplay(), mask, gc, 0, 0, best_width, best_height);
XFreeGC(getDisplay(), gc);
2002-11-17 11:14:53 -05:00
XColor dummy_color;
blank_cursor = XCreatePixmapCursor(getDisplay(), mask, mask, &dummy_color, &dummy_color, 0, 0);
XFreePixmap(getDisplay(), mask);
2003-10-11 09:23:55 -04:00
return true;
2002-11-17 11:14:53 -05:00
}
2004-04-12 06:05:13 -04:00
static void updateCursor(void) {
Cursor cursor;
if (isGrabbed())
cursor = blank_cursor;
else
cursor = current_cursor;
XDefineCursor(getDisplay(), getCurrentWindow(), cursor);
2003-05-16 14:39:46 -04:00
}
static void grabPointer(void) {
2004-04-12 06:05:13 -04:00
if (!pointer_grabbed) {
int result;
int grab_mask = PointerMotionMask | ButtonPressMask | ButtonReleaseMask;
result = XGrabPointer(getDisplay(), getCurrentWindow(), False, grab_mask, GrabModeAsync,
GrabModeAsync, getCurrentWindow(), None, CurrentTime);
if (result == GrabSuccess) {
pointer_grabbed = true;
// make sure we have a centered window
XF86VidModeSetViewPort(getDisplay(), getCurrentScreen(), 0, 0);
XFlush(getDisplay());
2003-05-16 14:39:46 -04:00
}
2003-05-02 09:41:40 -04:00
}
}
static void ungrabPointer(void) {
2003-05-16 14:39:46 -04:00
if (pointer_grabbed) {
pointer_grabbed = false;
XUngrabPointer(getDisplay(), CurrentTime);
XFlush(getDisplay());
2003-05-16 14:39:46 -04:00
}
}
2004-04-12 06:05:13 -04:00
void updatePointerGrab(void) {
2003-05-16 14:39:46 -04:00
if (!created)
return;
2004-04-12 06:05:13 -04:00
if (shouldGrab()) {
2003-05-16 14:39:46 -04:00
grabPointer();
} else {
2003-05-16 14:39:46 -04:00
ungrabPointer();
}
2004-04-12 06:05:13 -04:00
updateCursor();
2003-05-02 09:41:40 -04:00
}
static void doWarpPointer(void ) {
2004-04-12 06:33:39 -04:00
XEvent ignore_warp_guard;
ignore_warp_guard.type = MotionNotify;
2004-04-12 08:20:59 -04:00
// Tell event loop to start ignoring motion events
ignore_warp_guard.xmotion.state = 1;
2004-04-12 06:33:39 -04:00
XSendEvent(getDisplay(), getCurrentWindow(), False, 0, &ignore_warp_guard);
2004-04-12 08:20:59 -04:00
XWarpPointer(getDisplay(), None, getCurrentWindow(), 0, 0, 0, 0, getWindowWidth()/2, getWindowHeight()/2);
// Tell event loop to stop ignoring motion events
ignore_warp_guard.xmotion.state = 0;
2004-04-12 06:33:39 -04:00
XSendEvent(getDisplay(), getCurrentWindow(), False, 0, &ignore_warp_guard);
2004-04-12 08:20:59 -04:00
/* centerCursor();
XWarpPointer(getDisplay(), None, getCurrentWindow(), 0, 0, 0, 0, current_x, current_y);
XEvent event;
// Try to catch the warp pointer event
2003-10-11 12:29:40 -04:00
for (i = 0; i < WARP_RETRY; i++) {
XMaskEvent(getDisplay(), PointerMotionMask, &event);
if (event.xmotion.x > current_x - POINTER_WARP_BORDER &&
event.xmotion.x < current_x + POINTER_WARP_BORDER &&
event.xmotion.y > current_y - POINTER_WARP_BORDER &&
event.xmotion.y < current_y + POINTER_WARP_BORDER)
break;
2003-12-20 17:03:25 -05:00
printfDebug("Skipped event searching for warp event %d, %d\n", event.xmotion.x, event.xmotion.y);
}
if (i == WARP_RETRY)
2004-04-12 06:33:39 -04:00
printfDebug("Never got warp event\n");*/
}
static void warpPointer(void) {
2004-04-12 06:05:13 -04:00
if (!pointer_grabbed || !isGrabbed())
return;
// Reset pointer to middle of screen if outside a certain inner border
if (current_x < POINTER_WARP_BORDER || current_y < POINTER_WARP_BORDER ||
current_x > getWindowWidth() - POINTER_WARP_BORDER || current_y > getWindowHeight() - POINTER_WARP_BORDER)
doWarpPointer();
}
JNIEXPORT jint JNICALL Java_org_lwjgl_input_Mouse_nGetNativeCursorCaps
2003-05-16 14:39:46 -04:00
(JNIEnv *env, jclass clazz) {
2003-10-11 12:29:40 -04:00
int caps = 0;
2003-05-16 14:39:46 -04:00
if (!isXcursorLoaded())
return caps;
XcursorBool argb_supported = XcursorSupportsARGB(getDisplay());
XcursorBool anim_supported = XcursorSupportsAnim(getDisplay());
2003-10-11 12:29:40 -04:00
if (argb_supported)
2003-08-29 04:00:44 -04:00
caps |= org_lwjgl_input_Mouse_CURSOR_8_BIT_ALPHA | org_lwjgl_input_Mouse_CURSOR_ONE_BIT_TRANSPARENCY;
if (anim_supported)
caps |= org_lwjgl_input_Mouse_CURSOR_ANIMATION;
return caps;
2003-05-16 14:39:46 -04:00
}
2004-04-12 06:05:13 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nSetNativeCursor (JNIEnv *env, jclass clazz, jlong cursor_handle) {
2003-06-24 08:24:55 -04:00
if (cursor_handle != 0) {
Cursor cursor = (Cursor)cursor_handle;
2003-05-16 14:39:46 -04:00
current_cursor = cursor;
2004-04-12 06:05:13 -04:00
} else
current_cursor = None;
updateCursor();
2003-05-16 14:39:46 -04:00
}
JNIEXPORT jint JNICALL Java_org_lwjgl_input_Mouse_nGetMinCursorSize
(JNIEnv *env, jclass clazz)
{
unsigned int width_return = 0;
unsigned int height_return = 0;
XQueryBestCursor(getDisplay(), getCurrentWindow(), 1, 1, &width_return, &height_return);
return width_return > height_return ? width_return : height_return;
2003-05-16 14:39:46 -04:00
}
JNIEXPORT jint JNICALL Java_org_lwjgl_input_Mouse_nGetMaxCursorSize
(JNIEnv *env, jclass clazz)
{
unsigned int width_return = 0;
unsigned int height_return = 0;
XQueryBestCursor(getDisplay(), getCurrentWindow(), 0xffffffff, 0xffffffff, &width_return, &height_return);
2003-05-16 14:39:46 -04:00
return width_return > height_return ? height_return : width_return;
}
2003-10-07 09:10:17 -04:00
JNIEXPORT jboolean JNICALL Java_org_lwjgl_input_Mouse_nHasWheel(JNIEnv *, jclass) {
return JNI_TRUE;
}
JNIEXPORT jint JNICALL Java_org_lwjgl_input_Mouse_nGetButtonCount(JNIEnv *, jclass) {
return NUM_BUTTONS;
}
2003-09-30 07:14:06 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nCreate
2002-11-15 05:40:55 -05:00
(JNIEnv * env, jclass clazz)
{
Display *disp = incDisplay(env);
if (disp == NULL)
return;
2002-11-15 05:40:55 -05:00
int i;
current_z = last_z = 0;
2002-11-15 05:40:55 -05:00
for (i = 0; i < NUM_BUTTONS; i++)
2003-10-11 12:29:40 -04:00
buttons[i] = 0;
2002-11-17 11:14:53 -05:00
if (!blankCursor()) {
2003-09-30 07:14:06 -04:00
throwException(env, "Could not create blank cursor");
return;
2002-11-15 05:40:55 -05:00
}
2004-04-12 06:05:13 -04:00
current_cursor = None;
created = true;
2003-10-11 12:29:40 -04:00
pointer_grabbed = false;
buffer_enabled = false;
2004-04-12 06:05:13 -04:00
updatePointerGrab();
2003-10-11 12:29:40 -04:00
initEventQueue(&event_queue);
2003-05-16 14:39:46 -04:00
loadXcursor();
2003-10-20 08:49:50 -04:00
doWarpPointer();
2002-11-15 05:40:55 -05:00
}
JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nDestroy
(JNIEnv * env, jclass clazz)
{
2003-05-16 14:39:46 -04:00
closeXcursor();
ungrabPointer();
XFreeCursor(getDisplay(), blank_cursor);
created = false;
decDisplay();
2002-11-15 05:40:55 -05:00
}
2003-10-11 12:29:40 -04:00
static unsigned char mapButton(XButtonEvent *event) {
switch (event->button) {
case Button1:
return 0;
case Button2:
return 2;
case Button3:
return 1;
default: return NUM_BUTTONS;
}
}
static void handleButton(XButtonEvent *event, unsigned char state) {
unsigned char button_num = mapButton(event);
if (button_num == NUM_BUTTONS)
return;
buttons[button_num] = state;
if (buffer_enabled) {
putEventElement(&event_queue, button_num);
putEventElement(&event_queue, state);
}
}
2003-02-09 12:01:01 -05:00
void handleButtonPress(XButtonEvent *event) {
2004-04-12 06:05:13 -04:00
switch (event->button) {
case Button4:
current_z += WHEEL_SCALE;
break;
case Button5:
current_z -= WHEEL_SCALE;
break;
default: break;
2002-11-15 05:40:55 -05:00
}
2004-04-12 06:05:13 -04:00
handleButton(event, 1);
2003-02-09 12:01:01 -05:00
}
void handleButtonRelease(XButtonEvent *event) {
2004-04-12 06:05:13 -04:00
handleButton(event, 0);
2003-02-09 12:01:01 -05:00
}
void handlePointerMotion(XMotionEvent *event) {
2004-04-12 06:05:13 -04:00
setCursorPos(event->x, event->y);
2002-11-15 05:40:55 -05:00
}
JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nPoll(JNIEnv * env, jclass clazz, jobject coord_buffer_obj, jobject button_buffer_obj) {
2002-11-15 05:40:55 -05:00
int moved_x = current_x - last_x;
2003-10-11 12:29:40 -04:00
int moved_y = -(current_y - last_y);
2002-11-17 11:49:16 -05:00
int moved_z = current_z - last_z;
int *coords = (int *)env->GetDirectBufferAddress(coord_buffer_obj);
int coords_length = env->GetDirectBufferCapacity(coord_buffer_obj);
unsigned char *buttons_buffer = (unsigned char *)env->GetDirectBufferAddress(button_buffer_obj);
int buttons_length = env->GetDirectBufferCapacity(button_buffer_obj);
if (coords_length < 3) {
printfDebug("ERROR: Not enough space in coords array: %d < 3\n", coords_length);
return;
}
coords[0] = moved_x;
coords[1] = moved_y;
coords[2] = moved_z;
2002-11-15 05:40:55 -05:00
last_x = current_x;
last_y = current_y;
2002-11-17 11:49:16 -05:00
last_z = current_z;
int num_buttons = NUM_BUTTONS;
if (num_buttons > buttons_length)
num_buttons = buttons_length;
for (int i = 0; i < num_buttons; i++)
buttons_buffer[i] = buttons[i];
warpPointer();
2002-11-29 06:51:10 -05:00
}
2003-10-11 12:29:40 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nEnableBuffer(JNIEnv *env, jclass clazz) {
2003-10-11 12:29:40 -04:00
buffer_enabled = true;
}
JNIEXPORT jint JNICALL Java_org_lwjgl_input_Mouse_nRead(JNIEnv *env, jclass clazz, jobject buffer, jint buffer_position) {
unsigned char* buffer_ptr = (unsigned char *)env->GetDirectBufferAddress(buffer);
int buffer_size = env->GetDirectBufferCapacity(buffer) - buffer_position;
return copyEvents(&event_queue, buffer_ptr + buffer_position, buffer_size, 2);
2003-10-11 12:29:40 -04:00
}
2004-04-12 06:05:13 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nGrabMouse(JNIEnv * env, jclass clazz, jboolean new_grab) {
setGrab(new_grab == JNI_TRUE ? true : false);
if (created)
doWarpPointer();
}