2013-01-15 19:31:44 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
|
|
|
*
|
|
|
|
* 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 OSGPRESENTATION_TIMOUTOUT
|
|
|
|
#define OSGPRESENTATION_TIMOUTOUT 1
|
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
#include <osg/Transform>
|
2013-01-17 17:51:15 +08:00
|
|
|
|
2015-03-05 02:36:44 +08:00
|
|
|
#include <osgPresentation/SlideEventHandler>
|
2013-01-15 19:31:44 +08:00
|
|
|
|
|
|
|
namespace osgPresentation {
|
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
class OSGPRESENTATION_EXPORT HUDSettings : public osg::Referenced
|
2013-01-15 19:31:44 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-01-17 00:13:30 +08:00
|
|
|
HUDSettings(double slideDistance, float eyeOffset, unsigned int leftMask, unsigned int rightMask);
|
2013-01-15 19:31:44 +08:00
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
virtual bool getModelViewMatrix(osg::Matrix& matrix, osg::NodeVisitor* nv) const;
|
|
|
|
|
|
|
|
virtual bool getInverseModelViewMatrix(osg::Matrix& matrix, osg::NodeVisitor* nv) const;
|
|
|
|
|
|
|
|
double _slideDistance;
|
|
|
|
double _eyeOffset;
|
|
|
|
unsigned int _leftMask;
|
|
|
|
unsigned int _rightMask;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual ~HUDSettings();
|
|
|
|
};
|
2013-08-19 02:10:39 +08:00
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
class OSGPRESENTATION_EXPORT Timeout : public osg::Transform
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Timeout(HUDSettings* hudSettings=0);
|
2013-01-15 19:31:44 +08:00
|
|
|
|
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
2013-01-17 00:13:30 +08:00
|
|
|
Timeout(const Timeout& timeout,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);
|
2013-01-15 19:31:44 +08:00
|
|
|
|
|
|
|
META_Node(osgPresentation, Timeout);
|
|
|
|
|
2013-08-19 02:10:39 +08:00
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
void setIdleDurationBeforeTimeoutDisplay(double t) { _idleDurationBeforeTimeoutDisplay = t; }
|
|
|
|
double getIdleDurationBeforeTimeoutDisplay() const { return _idleDurationBeforeTimeoutDisplay; }
|
2013-01-17 19:48:20 +08:00
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
void setIdleDurationBeforeTimeoutAction(double t) { _idleDurationBeforeTimeoutAction = t; }
|
|
|
|
double getIdleDurationBeforeTimeoutAction() const { return _idleDurationBeforeTimeoutAction; }
|
|
|
|
|
2013-08-19 02:10:39 +08:00
|
|
|
|
2013-01-17 19:48:20 +08:00
|
|
|
void setKeyStartsTimoutDisplay(int key) { _keyStartsTimoutDisplay = key; }
|
|
|
|
int getKeyStartsTimoutDisplay() const { return _keyStartsTimoutDisplay; }
|
|
|
|
|
|
|
|
void setKeyDismissTimoutDisplay(int key) { _keyDismissTimoutDisplay = key; }
|
|
|
|
int getKeyDismissTimoutDisplay() const { return _keyDismissTimoutDisplay; }
|
|
|
|
|
|
|
|
void setKeyRunTimoutAction(int key) { _keyRunTimeoutAction = key; }
|
|
|
|
int getKeyRunTimoutAction() const { return _keyRunTimeoutAction; }
|
|
|
|
|
2013-08-19 02:10:39 +08:00
|
|
|
|
2013-01-17 21:51:52 +08:00
|
|
|
void setDisplayBroadcastKeyPosition(const osgPresentation::KeyPosition& keyPos) { _displayBroadcastKeyPos = keyPos; }
|
|
|
|
const osgPresentation::KeyPosition& getDisplayBroadcastKeyPosition() const { return _displayBroadcastKeyPos; }
|
|
|
|
|
|
|
|
void setDismissBroadcastKeyPosition(const osgPresentation::KeyPosition& keyPos) { _dismissBroadcastKeyPos = keyPos; }
|
|
|
|
const osgPresentation::KeyPosition& getDismissBroadcastKeyPosition() const { return _dismissBroadcastKeyPos; }
|
|
|
|
|
2013-01-17 19:48:20 +08:00
|
|
|
void setActionKeyPosition(const osgPresentation::KeyPosition& keyPos) { _actionKeyPos = keyPos; }
|
|
|
|
const osgPresentation::KeyPosition& getActionKeyPosition() const { return _actionKeyPos; }
|
|
|
|
|
|
|
|
void setActionBroadcastKeyPosition(const osgPresentation::KeyPosition& keyPos) { _actionBroadcastKeyPos = keyPos; }
|
|
|
|
const osgPresentation::KeyPosition& getActionBroadcastKeyPosition() const { return _actionBroadcastKeyPos; }
|
|
|
|
|
|
|
|
void setActionJumpData(const JumpData& jumpData) { _actionJumpData = jumpData; }
|
|
|
|
const JumpData& getActionJumpData() const { return _actionJumpData; }
|
2013-01-17 17:51:15 +08:00
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
virtual bool computeLocalToWorldMatrix(osg::Matrix& matrix,osg::NodeVisitor* nv) const;
|
|
|
|
|
|
|
|
virtual bool computeWorldToLocalMatrix(osg::Matrix& matrix,osg::NodeVisitor*) const;
|
|
|
|
|
2013-01-15 19:31:44 +08:00
|
|
|
virtual void traverse(osg::NodeVisitor& nv);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual ~Timeout();
|
|
|
|
|
2013-01-17 21:51:52 +08:00
|
|
|
void broadcastEvent(osgViewer::Viewer* viewer, const osgPresentation::KeyPosition& keyPos);
|
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
osg::ref_ptr<HUDSettings> _hudSettings;
|
|
|
|
|
|
|
|
int _previousFrameNumber;
|
|
|
|
double _timeOfLastEvent;
|
2013-01-17 21:51:52 +08:00
|
|
|
bool _displayTimeout;
|
2013-01-17 19:48:20 +08:00
|
|
|
|
2013-01-17 00:13:30 +08:00
|
|
|
double _idleDurationBeforeTimeoutDisplay;
|
|
|
|
double _idleDurationBeforeTimeoutAction;
|
2013-01-17 17:51:15 +08:00
|
|
|
|
2013-01-17 19:48:20 +08:00
|
|
|
int _keyStartsTimoutDisplay;
|
|
|
|
int _keyDismissTimoutDisplay;
|
|
|
|
int _keyRunTimeoutAction;
|
|
|
|
|
2013-01-17 21:51:52 +08:00
|
|
|
osgPresentation::KeyPosition _displayBroadcastKeyPos;
|
|
|
|
osgPresentation::KeyPosition _dismissBroadcastKeyPos;
|
|
|
|
|
2013-01-17 19:48:20 +08:00
|
|
|
osgPresentation::KeyPosition _actionKeyPos;
|
|
|
|
osgPresentation::KeyPosition _actionBroadcastKeyPos;
|
|
|
|
JumpData _actionJumpData;
|
2013-01-15 19:31:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-22 17:38:50 +08:00
|
|
|
#endif
|