2006-07-18 23:21:48 +08:00
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
2006-03-08 23:40:02 +08:00
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* included with this distribution, and on the openscenegraph.org website.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* OpenSceneGraph Public License for more details.
*/
#ifndef OSGGA_EVENTQUEUE
#define OSGGA_EVENTQUEUE 1
#include <osgGA/GUIEventAdapter>
#include <osg/ref_ptr>
#include <osg/Timer>
#include <OpenThreads/Mutex>
#include <list>
namespace osgGA {
/**
* EventQueue implementation for collecting and adapting windowing events
*/
class OSGGA_EXPORT EventQueue : public osg::Referenced
{
public:
2006-03-13 21:19:37 +08:00
EventQueue(GUIEventAdapter::MouseYOrientation mouseYOrientation=GUIEventAdapter::Y_INCREASING_DOWNWARDS);
2006-03-08 23:40:02 +08:00
typedef std::list< osg::ref_ptr<GUIEventAdapter> > Events;
/** Set events.*/
void setEvents(Events& events);
/** Take the entire event queue leaving the EventQueue' event queue empty.*/
bool takeEvents(Events& events);
/** Take a copy the entire event queue leaving the EventQueue' event queue intact.*/
bool copyEvents(Events& events) const;
/** Add events to end of event queue.*/
void appendEvents(Events& events);
/** Add an event to the end of the event queue.*/
void addEvent(GUIEventAdapter* event);
2006-12-27 01:37:58 +08:00
2006-12-21 05:13:29 +08:00
/** Specify if mouse coordinates should be transformed into a pre defined input range, or whether they
* should be simply based on as local coordinates to the window that generated the mouse events.*/
void setUseFixedMouseInputRange(bool useFixedMouseInputRange) { _useFixedMouseInputRange = useFixedMouseInputRange; }
/** Get whether the mouse coordinates should be transformed into a pre defined input range.*/
bool getUseFixedMouseInputRange() { return _useFixedMouseInputRange; }
2006-12-27 01:37:58 +08:00
2008-06-03 01:34:47 +08:00
/** Set the graphics context associated with this event queue.*/
void setGraphicsContext(osg::GraphicsContext* context) { getCurrentEventState()->setGraphicsContext(context); }
2006-12-21 05:13:29 +08:00
/** Set the mouse input range.*/
void setMouseInputRange(float xMin, float yMin, float xMax, float yMax) { getCurrentEventState()->setInputRange(xMin, yMin, xMax, yMax); }
2006-03-08 23:40:02 +08:00
2006-12-27 01:37:58 +08:00
2006-08-22 04:29:32 +08:00
/** Method for adapting window resize event, placing this event on the back of the event queue. */
2007-01-02 02:20:10 +08:00
void windowResize(int x, int y, int width, int height) { windowResize(x,y,width,height,getTime()); }
2006-12-27 01:37:58 +08:00
/** Method for adapting window resize event, placing this event on the back of the event queue, with specified time. */
2007-01-02 02:20:10 +08:00
void windowResize(int x, int y, int width, int height, double time);
2006-12-27 01:37:58 +08:00
2006-03-08 23:40:02 +08:00
2006-08-22 04:29:32 +08:00
/** Method for adapting mouse scroll wheel events, placing this event on the back of the event queue. */
2006-12-27 01:37:58 +08:00
void mouseScroll(GUIEventAdapter::ScrollingMotion sm) { mouseScroll(sm,getTime()); }
/** Method for adapting mouse scroll wheel events, placing this event on the back of the event queue, with specified time. */
void mouseScroll(GUIEventAdapter::ScrollingMotion sm, double time);
2006-07-04 22:18:44 +08:00
2006-12-27 01:37:58 +08:00
/** Method for adapting mouse scroll wheel events, placing this event on the back of the event queue. */
void mouseScroll2D(float x, float y) { mouseScroll2D(x, y, getTime()); }
2006-08-22 04:29:32 +08:00
/** Method for adapting mouse scroll wheel events, placing this event on the back of the event queue. */
2006-12-27 01:37:58 +08:00
void mouseScroll2D(float x, float y, double time);
/** Method for adapting pen pressure events, placing this event on the back of the event queue.*/
void penPressure(float pressure) { penPressure(pressure, getTime()); }
2006-07-04 22:18:44 +08:00
2006-12-27 01:37:58 +08:00
/** Method for adapting pen pressure events, placing this event on the back of the event queue, with specified time.*/
void penPressure(float pressure, double time);
2008-04-11 21:28:09 +08:00
/** Method for adapting pen orientation events, placing this event on the back of the event queue.*/
void penOrientation(float tiltX, float tiltY, float rotation) { penOrientation(tiltX, tiltY, rotation, getTime()); }
/** Method for adapting pen orientation events, placing this event on the back of the event queue, with specified time.*/
void penOrientation(float tiltX, float tiltY, float rotation, double time);
2006-12-27 01:37:58 +08:00
/** Method for adapting pen proximity events, placing this event on the back of the event queue.*/
void penProximity(GUIEventAdapter::TabletPointerType pt, bool isEntering) { penProximity(pt, isEntering, getTime()); }
/** Method for adapting pen proximity events, placing this event on the back of the event queue, with specified time.*/
void penProximity(GUIEventAdapter::TabletPointerType pt, bool isEntering, double time);
2006-03-08 23:40:02 +08:00
2006-08-22 04:29:32 +08:00
/** Method for updating in response to a mouse warp. Note, just moves the mouse position without creating a new event for it.*/
2006-12-27 01:37:58 +08:00
void mouseWarped(float x, float y);
2006-03-14 21:18:21 +08:00
2006-11-16 04:24:09 +08:00
/** Method for adapting mouse motion events, placing this event on the back of the event queue.*/
2006-12-27 01:37:58 +08:00
void mouseMotion(float x, float y) { mouseMotion(x,y, getTime()); }
/** Method for adapting mouse motion events, placing this event on the back of the event queue, with specified time.*/
void mouseMotion(float x, float y, double time);
2006-03-08 23:40:02 +08:00
2006-08-22 04:29:32 +08:00
/** Method for adapting mouse button pressed events, placing this event on the back of the event queue.
* Button numbering is 1 for left mouse button, 2 for middle, 3 for right. */
2006-12-27 01:37:58 +08:00
void mouseButtonPress(float x, float y, unsigned int button) { mouseButtonPress(x, y, button, getTime()); }
/** Method for adapting mouse button pressed events, placing this event on the back of the event queue, with specified time.
* Button numbering is 1 for left mouse button, 2 for middle, 3 for right. */
void mouseButtonPress(float x, float y, unsigned int button, double time);
2006-07-27 20:32:40 +08:00
2006-08-22 04:29:32 +08:00
/** Method for adapting mouse button pressed events, placing this event on the back of the event queue.
* Button numbering is 1 for left mouse button, 2 for middle, 3 for right. */
2006-12-27 01:37:58 +08:00
void mouseDoubleButtonPress(float x, float y, unsigned int button) { mouseDoubleButtonPress(x, y, button, getTime()); }
2006-03-08 23:40:02 +08:00
2006-12-27 01:37:58 +08:00
/** Method for adapting mouse button pressed events, placing this event on the back of the event queue, with specified time.
* Button numbering is 1 for left mouse button, 2 for middle, 3 for right. */
void mouseDoubleButtonPress(float x, float y, unsigned int button, double time);
2006-08-22 04:29:32 +08:00
/** Method for adapting mouse button release events, placing this event on the back of the event queue.
* Button numbering is 1 for left mouse button, 2 for middle, 3 for right. */
2006-12-27 01:37:58 +08:00
void mouseButtonRelease(float x, float y, unsigned int button) { mouseButtonRelease(x, y, button, getTime()); }
/** Method for adapting mouse button release events, placing this event on the back of the event queue, with specified time.
* Button numbering is 1 for left mouse button, 2 for middle, 3 for right. */
void mouseButtonRelease(float x, float y, unsigned int button, double time);
2006-03-08 23:40:02 +08:00
2006-12-21 05:13:29 +08:00
/** Method for adapting keyboard press events. Note, special keys such as Ctrl/Function keys should be adapted to GUIEventAdapter::KeySymbol mappings.*/
2006-12-27 01:37:58 +08:00
void keyPress(int key) { keyPress(key, getTime()); }
/** Method for adapting keyboard press events. Note, special keys such as Ctrl/Function keys should be adapted to GUIEventAdapter::KeySymbol mappings, with specified time.*/
void keyPress(int key, double time);
2006-03-08 23:40:02 +08:00
2006-12-21 05:13:29 +08:00
/** Method for adapting keyboard press events. Note, special keys such as Ctrl/Function keys should be adapted to GUIEventAdapter::KeySymbol mappings.*/
2006-12-27 01:37:58 +08:00
void keyRelease(int key) { keyRelease(key, getTime()); }
/** Method for adapting keyboard press events. Note, special keys such as Ctrl/Function keys should be adapted to GUIEventAdapter::KeySymbol mappings, with specified time.*/
void keyRelease(int key, double time);
2006-03-08 23:40:02 +08:00
2007-01-09 03:29:59 +08:00
/** Method for adapting close window events.*/
void closeWindow() { closeWindow(getTime()); }
/** Method for adapting close window event with specified event time.*/
void closeWindow(double time);
/** Method for adapting application quit events.*/
void quitApplication() { quitApplication(getTime()); }
/** Method for adapting application quit events with specified event time.*/
void quitApplication(double time);
2006-08-22 04:29:32 +08:00
/** Method for adapting frame events.*/
2006-12-27 01:37:58 +08:00
void frame(double time);
2006-03-08 23:40:02 +08:00
void setStartTick(osg::Timer_t tick) { _startTick = tick; }
osg::Timer_t getStartTick() const { return _startTick; }
double getTime() const { return osg::Timer::instance()->delta_s(_startTick, osg::Timer::instance()->tick()); }
2006-12-27 01:37:58 +08:00
2007-12-11 01:30:18 +08:00
/** convenience method for create an event ready to fill in. Clones the getCurrentEventState() to produce a up to date event state. */
2006-03-15 23:49:21 +08:00
GUIEventAdapter* createEvent();
2006-12-27 01:37:58 +08:00
2007-07-13 19:31:56 +08:00
void setCurrentEventState(GUIEventAdapter* ea) { _accumulateEventState = ea; }
2006-03-08 23:40:02 +08:00
GUIEventAdapter* getCurrentEventState() { return _accumulateEventState.get(); }
const GUIEventAdapter* getCurrentEventState() const { return _accumulateEventState.get(); }
2007-05-19 21:39:55 +08:00
/** Method for adapting user defined events */
void userEvent(osg::Referenced* userEventData) { userEvent(userEventData, getTime()); }
/** Method for adapting user defined events with specified event time */
void userEvent(osg::Referenced* userEventData, double time);
2006-03-08 23:40:02 +08:00
protected:
virtual ~EventQueue();
/** Prevent unwanted copy operator.*/
EventQueue& operator = (const EventQueue&) { return *this; }
osg::ref_ptr<GUIEventAdapter> _accumulateEventState;
2006-12-21 05:13:29 +08:00
bool _useFixedMouseInputRange;
2006-03-08 23:40:02 +08:00
osg::Timer_t _startTick;
mutable OpenThreads::Mutex _eventQueueMutex;
Events _eventQueue;
};
}
#endif