Added missing files

This commit is contained in:
Elias Naur 2004-11-11 16:04:28 +00:00
parent 1ec70842d0
commit ab6433c004
2 changed files with 320 additions and 0 deletions

View File

@ -0,0 +1,90 @@
/*
* Copyright (c) 2002-2004 LWJGL 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 'LWJGL' 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.
*/
package org.lwjgl.opengl;
/**
* A java implementation of a LWJGL compatible event queue.
* Currently only used by the Mac OS X implementation.
* @author elias_naur
*/
import java.nio.ByteBuffer;
import java.nio.IntBuffer;
abstract class EventQueue {
private final static int QUEUE_SIZE = 200;
private final int event_size;
private final IntBuffer queue;
public EventQueue(int event_size) {
this.event_size = event_size;
this.queue = ByteBuffer.allocateDirect(QUEUE_SIZE*event_size).asIntBuffer();
}
protected synchronized void clearEvents() {
queue.clear();
}
/**
* Copy available events into the specified buffer.
* Note that the buffer position is maintained, to emulate
* the behaviour of the native event queues.
* @return the number of events copied
*/
public synchronized int copyEvents(IntBuffer dest) {
int old_position = dest.position();
queue.flip();
int old_limit = queue.limit();
if (dest.remaining() < queue.remaining())
queue.limit(dest.remaining() + queue.position());
dest.put(queue);
queue.limit(old_limit);
queue.compact();
int num_events = (dest.position() - old_position)/event_size;
dest.position(old_position);
return num_events;
}
/**
* Put an event into the queue.
* @return true if the event fitted into the queue, false otherwise
*/
public synchronized boolean putEvent(int[] event) {
if (event.length != event_size)
throw new IllegalArgumentException("Internal error: event size " + event_size + " does not equals the given event size " + event.length);
if (queue.remaining() >= event.length) {
queue.put(event);
return true;
} else
return false;
}
}

View File

@ -0,0 +1,230 @@
/*
* Copyright (c) 2002-2004 LWJGL 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 'LWJGL' 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.
*/
package org.lwjgl.opengl;
/**
* A java implementation of a LWJGL compatible Mouse event queue.
* Currently only used by the Mac OS X implementation.
* @author elias_naur
*/
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.awt.event.MouseWheelListener;
import java.awt.event.MouseWheelEvent;
import java.awt.event.MouseEvent;
import java.nio.IntBuffer;
import java.nio.ByteBuffer;
import org.lwjgl.BufferUtils;
final class MouseEventQueue extends EventQueue implements MouseListener, MouseMotionListener, MouseWheelListener {
private final static int WHEEL_SCALE = 120;
public final static int NUM_BUTTONS = 3;
private final static int EVENT_SIZE = 5;
private final int width;
private final int height;
private boolean grabbed;
private final IntBuffer delta_buffer = BufferUtils.createIntBuffer(2);
/** The accumulated mouse deltas returned by poll() */
private int accum_dx;
private int accum_dy;
private int accum_dz;
/** The last polled mouse position */
private int last_poll_x;
private int last_poll_y;
/** The last event mouse position */
private int last_event_x;
private int last_event_y;
/** Event scratch array */
private final int[] event = new int[EVENT_SIZE];
/** Buttons array */
private final byte[] buttons = new byte[NUM_BUTTONS];
public MouseEventQueue(int width, int height) {
super(EVENT_SIZE);
this.width = width;
this.height = height;
resetCursorToCenter();
}
public synchronized void setGrabbed(boolean grabbed) {
this.grabbed = grabbed;
resetCursorToCenter();
}
public synchronized boolean isGrabbed() {
return grabbed;
}
private void resetCursorToCenter() {
int center_x = width/2;
int center_y = height - 1 - height/2;
last_poll_x = center_x;
last_poll_y = center_y;
last_event_x = center_x;
last_event_y = center_y;
clearEvents();
accum_dx = accum_dy = 0;
}
private boolean putMouseEvent(int button, int state, int dx, int dy, int dz) {
event[0] = button;
event[1] = state;
event[2] = dx;
event[3] = dy;
event[4] = dz;
return putEvent(event);
}
public synchronized void poll(IntBuffer coord_buffer, ByteBuffer buttons_buffer) {
coord_buffer.put(0, accum_dx);
coord_buffer.put(1, accum_dy);
coord_buffer.put(2, accum_dz);
accum_dx = accum_dy = accum_dz = 0;
int old_position = buttons_buffer.position();
buttons_buffer.put(buttons, 0, buttons.length);
buttons_buffer.position(old_position);
}
private synchronized void setCursorPos(int x, int y) {
if (grabbed)
return;
int poll_dx = x - last_poll_x;
int poll_dy = y - last_poll_y;
accum_dx += poll_dx;
accum_dy += poll_dy;
last_poll_x = x;
last_poll_y = y;
int event_dx = x - last_event_x;
int event_dy = y - last_event_y;
if (putMouseEvent(-1, 0, event_dx, -event_dy, 0)) {
last_event_x = x;
last_event_y = y;
}
}
public void mouseClicked(MouseEvent e) {
}
public void mouseEntered(MouseEvent e) {
}
public void mouseExited(MouseEvent e) {
}
private void handleButton(MouseEvent e) {
byte button;
switch (e.getButton()) {
case MouseEvent.BUTTON1:
button = (byte)0;
break;
case MouseEvent.BUTTON2:
button = (byte)2;
break;
case MouseEvent.BUTTON3:
button = (byte)1;
break;
default:
throw new IllegalArgumentException("Not a valid button: " + e.getButton());
}
byte state;
switch (e.getID()) {
case MouseEvent.MOUSE_PRESSED:
state = 1;
break;
case MouseEvent.MOUSE_RELEASED:
state = 0;
break;
default:
throw new IllegalArgumentException("Not a valid event ID: " + e.getID());
}
setButton(button, state);
}
public void mousePressed(MouseEvent e) {
updateDeltas();
handleButton(e);
}
private synchronized void setButton(byte button, byte state) {
buttons[button] = state;
putMouseEvent(button, state, 0, 0, 0);
}
public void mouseReleased(MouseEvent e) {
updateDeltas();
handleButton(e);
}
public void mouseDragged(MouseEvent e) {
setCursorPos(e.getX(), e.getY());
}
public void mouseMoved(MouseEvent e) {
setCursorPos(e.getX(), e.getY());
}
private synchronized void handleWheel(int amount) {
accum_dz += amount;
putMouseEvent(-1, 0, 0, 0, amount);
}
public void updateDeltas() {
if (!grabbed)
return;
synchronized (this) {
((MacOSXDisplay)Display.getImplementation()).getMouseDeltas(delta_buffer);
int dx = delta_buffer.get(0);
int dy = delta_buffer.get(1);
if (dx != 0 || dy != 0) {
putMouseEvent(-1, 0, dx, -dy, 0);
accum_dx += dx;
accum_dy += dy;
}
}
}
public void mouseWheelMoved(MouseWheelEvent e) {
int wheel_amount = -e.getWheelRotation()*WHEEL_SCALE;
updateDeltas();
handleWheel(wheel_amount);
}
}