lwjgl/src/native/linux/org_lwjgl_input_Cursor.cpp

95 lines
3.6 KiB
C++
Raw Normal View History

2003-10-14 10:29:23 -04:00
/*
2004-06-12 16:28:34 -04:00
* Copyright (c) 2002-2004 LWJGL Project
2003-10-14 10:29:23 -04: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
2003-10-14 10:29:23 -04: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$
*
* Linux cursor handling.
*
* @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$
*/
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xcursor/Xcursor.h>
2003-05-16 14:39:46 -04:00
#include "org_lwjgl_input_Cursor.h"
//#include "extxcursor.h"
2003-05-16 14:39:46 -04:00
#include "Window.h"
2003-10-11 12:29:40 -04:00
#include "common_tools.h"
2003-05-16 14:39:46 -04:00
JNIEXPORT void JNICALL Java_org_lwjgl_input_Cursor_nCreateCursor
(JNIEnv *env, jclass clazz, jobject handle_buffer, jint width, jint height, jint x_hotspot, jint y_hotspot, jint num_images, jobject image_buffer, jint images_offset, jobject delay_buffer, jint delays_offset)
2003-05-16 14:39:46 -04:00
{
if (env->GetDirectBufferCapacity(handle_buffer) < sizeof(Cursor)) {
throwException(env, "Handle buffer not large enough");
return;
}
Display *disp = incDisplay(env);
if (disp == NULL)
return;
2004-07-07 06:31:26 -04:00
const int *delays = NULL;
if (delay_buffer != NULL)
delays = (const int *)env->GetDirectBufferAddress(delay_buffer) + delays_offset;
2003-08-05 16:07:32 -04:00
XcursorPixel *pixels = (XcursorPixel *)env->GetDirectBufferAddress(image_buffer) + images_offset;
int stride = width*height;
XcursorImages *cursor_images = XcursorImagesCreate(num_images);
2004-07-30 09:30:15 -04:00
if (cursor_images == NULL) {
decDisplay();
2003-05-16 14:39:46 -04:00
throwException(env, "Could not allocate cursor.");
2004-07-30 09:30:15 -04:00
return;
}
cursor_images->nimage = num_images;
for (int i = 0; i < num_images; i++) {
2003-05-16 14:39:46 -04:00
XcursorImage *cursor_image = XcursorImageCreate(width, height);
cursor_image->xhot = x_hotspot;
2004-07-07 06:31:26 -04:00
// Of some reason, the y hotspot coordinate is offset by 1
cursor_image->yhot = y_hotspot + 1;
cursor_image->pixels = &(pixels[stride*i]);
if (num_images > 1)
cursor_image->delay = delays[i];
cursor_images->images[i] = cursor_image;
}
Cursor *cursor = (Cursor *)env->GetDirectBufferAddress(handle_buffer);
*cursor = XcursorImagesLoadCursor(disp, cursor_images);
2003-05-16 14:39:46 -04:00
XcursorImagesDestroy(cursor_images);
}
JNIEXPORT void JNICALL Java_org_lwjgl_input_Cursor_nDestroyCursor
(JNIEnv *env, jclass clazz, jobject cursor_handle_buffer)
2003-05-16 14:39:46 -04:00
{
Cursor *cursor = (Cursor *)env->GetDirectBufferAddress(cursor_handle_buffer);
// Cursor cursor = (Cursor)cursor_handle;
XFreeCursor(getDisplay(), *cursor);
decDisplay();
2003-05-16 14:39:46 -04:00
}