lwjgl/src/native/linux/org_lwjgl_input_Keyboard.cpp

244 lines
7.3 KiB
C++
Raw Normal View History

2002-11-15 05:40:55 -05:00
/*
2004-06-12 16:28:34 -04:00
* Copyright (c) 2002-2004 LWJGL Project
2002-11-15 05:40:55 -05:00
* 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.
*
2004-06-12 16:28:34 -04:00
* * Neither the name of 'LWJGL' nor the names of
2002-11-15 05:40:55 -05:00
* 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 keyboard 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>
2003-01-11 16:03:22 -05:00
#include <X11/Xutil.h>
2002-11-15 05:40:55 -05:00
#include <string.h>
#include <assert.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_Keyboard.h"
#define KEYBOARD_BUFFER_SIZE 50
#define KEYBOARD_SIZE 256
2003-02-09 12:01:01 -05:00
#define KEY_EVENT_BACKLOG 40
2003-02-08 14:55:07 -05:00
static unsigned char key_buf[KEYBOARD_SIZE];
static unsigned char key_map[KEYBOARD_SIZE];
2002-11-15 05:40:55 -05:00
2003-10-11 12:29:40 -04:00
static event_queue_t event_queue;
2003-02-08 14:55:07 -05:00
static bool keyboard_grabbed;
static bool buffer_enabled;
static bool translation_enabled;
static bool created = false;
2003-03-30 14:26:39 -05:00
2003-05-16 14:39:46 -04:00
static void grabKeyboard(void) {
2004-04-12 06:05:13 -04:00
if (!keyboard_grabbed) {
int result = XGrabKeyboard(getDisplay(), getCurrentWindow(), False, GrabModeAsync, GrabModeAsync, CurrentTime);
if (result == GrabSuccess)
keyboard_grabbed = true;
}
}
static void ungrabKeyboard(void) {
2003-05-16 14:39:46 -04:00
if (keyboard_grabbed) {
keyboard_grabbed = false;
XUngrabKeyboard(getDisplay(), CurrentTime);
2003-05-16 14:39:46 -04:00
}
}
2004-04-12 06:05:13 -04:00
void updateKeyboardGrab(void) {
2003-05-16 14:39:46 -04:00
if (!created)
return;
2004-04-13 08:13:32 -04:00
if (isFullscreen() || shouldGrab()) {
2003-05-16 14:39:46 -04:00
grabKeyboard();
} else {
2003-05-16 14:39:46 -04:00
ungrabKeyboard();
}
}
2002-11-15 05:40:55 -05:00
/*
* Class: org_lwjgl_input_Keyboard
* Method: nCreate
* Signature: ()Z
*/
2003-09-30 07:14:06 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nCreate
2002-11-15 05:40:55 -05:00
(JNIEnv * env, jclass clazz)
{
Display *disp = incDisplay(env);
if (disp == NULL)
return;
2002-11-25 09:57:13 -05:00
for (int i = 0; i < KEYBOARD_SIZE; i++)
key_map[i] = i;
key_map[0x6b] = 0xdb; // Left doze key
key_map[0x6c] = 0xdc; // Right doze key
key_map[0x6d] = 0xdd; // Apps key
key_map[0x5a] = 0xc8; // Up arrow
key_map[0x5c] = 0xcb; // Left arrow
key_map[0x5e] = 0xcd; // Right arrow
key_map[0x60] = 0xd0; // Down arrow
key_map[0x59] = 0xc7; // Home
key_map[0x62] = 0xd2; // Insert
key_map[0x63] = 0xd3; // Delete
key_map[0x5f] = 0xcf; // End
key_map[0x5b] = 0xc9; // Page up
key_map[0x61] = 0xd1; // Page down
key_map[0x67] = 0xb7; // SysRQ
key_map[0x66] = 0xc5; // Pause
key_map[0x64] = 0x9c; // Numpad enter
2003-02-02 17:49:16 -05:00
key_map[0x65] = 0x9d; // Right control
2002-11-25 09:57:13 -05:00
key_map[0x68] = 0xb5; // Numpad divide
2002-11-15 05:40:55 -05:00
memset(key_buf, 0, KEYBOARD_SIZE*sizeof(unsigned char));
created = true;
2003-06-01 13:20:03 -04:00
keyboard_grabbed = false;
translation_enabled = false;
buffer_enabled = false;
2003-10-11 12:29:40 -04:00
initEventQueue(&event_queue);
2004-04-12 06:05:13 -04:00
updateKeyboardGrab();
2002-11-15 05:40:55 -05:00
}
/*
* Class: org_lwjgl_input_Keyboard
* Method: nDestroy
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nDestroy
(JNIEnv * env, jclass clazz)
{
2003-05-16 14:39:46 -04:00
ungrabKeyboard();
created = false;
decDisplay();
2002-11-15 05:40:55 -05:00
}
static unsigned char getKeycode(XKeyEvent *event) {
2003-01-11 16:03:22 -05:00
unsigned char keycode = (unsigned char)((event->keycode - 8) & 0xff);
keycode = key_map[keycode];
return keycode;
}
2003-10-11 12:29:40 -04:00
static int translateEvent(XKeyEvent *event) {
2003-01-11 16:03:22 -05:00
static char temp_translation_buffer[KEYBOARD_BUFFER_SIZE];
static XComposeStatus status;
int num_chars, i;
if (event->type == KeyRelease) {
2003-10-11 12:29:40 -04:00
putEventElement(&event_queue, 0);
putEventElement(&event_queue, 0);
2003-01-11 16:03:22 -05:00
return 0;
}
num_chars = XLookupString(event, temp_translation_buffer, KEYBOARD_BUFFER_SIZE, NULL, &status);
if (num_chars > 0) {
num_chars--;
/* Assume little endian byte order */
2003-10-11 12:29:40 -04:00
putEventElement(&event_queue, temp_translation_buffer[0]);
putEventElement(&event_queue, 0);
2003-01-11 16:03:22 -05:00
for (i = 0; i < num_chars; i++) {
2003-10-11 12:29:40 -04:00
putEventElement(&event_queue, 0);
putEventElement(&event_queue, 0);
putEventElement(&event_queue, temp_translation_buffer[i + 1]);
putEventElement(&event_queue, 0);
2003-01-11 16:03:22 -05:00
}
} else {
2003-10-11 12:29:40 -04:00
putEventElement(&event_queue, 0);
putEventElement(&event_queue, 0);
2003-01-11 16:03:22 -05:00
}
return num_chars;
}
static unsigned char eventState(XKeyEvent *event) {
2003-01-11 16:03:22 -05:00
if (event->type == KeyPress) {
return 1;
} else if (event->type == KeyRelease) {
return 0;
} else
assert(0);
}
2003-10-11 12:29:40 -04:00
static void bufferEvent(XKeyEvent *key_event) {
unsigned char keycode = getKeycode(key_event);
unsigned char state = eventState(key_event);
//printf("Reading a key %d %d count %d\n", (int)keycode, (int)state, num_events);
putEventElement(&event_queue, keycode);
putEventElement(&event_queue, state);
if (translation_enabled)
translateEvent(key_event);
}
2003-02-09 12:01:01 -05:00
void handleKeyEvent(XKeyEvent *event) {
unsigned char keycode = getKeycode(event);
unsigned char state = eventState(event);
key_buf[keycode] = state;
if (key_buf[org_lwjgl_input_Keyboard_KEY_LMENU] == 1 ||
key_buf[org_lwjgl_input_Keyboard_KEY_RMENU] == 1) {
if (key_buf[org_lwjgl_input_Keyboard_KEY_TAB] == 1) {
if (releaseInput()) {
key_buf[org_lwjgl_input_Keyboard_KEY_RMENU] = 0;
key_buf[org_lwjgl_input_Keyboard_KEY_LMENU] = 0;
key_buf[org_lwjgl_input_Keyboard_KEY_TAB] = 0;
return;
}
}
}
2003-02-09 12:01:01 -05:00
if (buffer_enabled)
2003-10-11 12:29:40 -04:00
bufferEvent(event);
2003-02-09 12:01:01 -05:00
}
2003-10-11 12:29:40 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nPoll(JNIEnv * env, jclass clazz, jobject buffer) {
2003-06-24 08:24:55 -04:00
unsigned char *new_keyboard_buffer = (unsigned char *)env->GetDirectBufferAddress(buffer);
memcpy(new_keyboard_buffer, key_buf, KEYBOARD_SIZE*sizeof(unsigned char));
2002-11-15 05:40:55 -05:00
}
JNIEXPORT int JNICALL Java_org_lwjgl_input_Keyboard_nRead(JNIEnv * env, jclass clazz, jobject buffer, jint buffer_position) {
2003-10-11 12:29:40 -04:00
int event_size;
if (translation_enabled)
event_size = 4;
else
event_size = 2;
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, event_size);
2003-01-11 16:03:22 -05:00
}
2003-10-11 12:29:40 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nEnableTranslation(JNIEnv *env, jclass clazz) {
2003-01-11 16:03:22 -05:00
translation_enabled = true;
2002-11-15 05:40:55 -05:00
}
JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nEnableBuffer(JNIEnv * env, jclass clazz) {
2003-01-11 16:03:22 -05:00
buffer_enabled = true;
2002-11-15 05:40:55 -05:00
}
2003-08-23 05:47:58 -04:00
2003-10-11 12:29:40 -04:00
JNIEXPORT jint JNICALL Java_org_lwjgl_input_Keyboard_nisStateKeySet(JNIEnv *env, jclass clazz, jint key) {
return org_lwjgl_input_Keyboard_STATE_UNKNOWN;
2003-08-23 05:47:58 -04:00
}