2006-12-27 23:04:04 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Note, elements of GraphicsWindowX11 have used Prodcer/RenderSurface_X11.cpp as both
|
|
|
|
* a guide to use of X11/GLX and copiying directly in the case of setBorder().
|
|
|
|
* These elements are license under OSGPL as above, with Copyright (C) 2001-2004 Don Burns.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSGVIEWER_GRAPHICSWINDOWWIN32
|
2007-03-18 19:04:12 +08:00
|
|
|
#define OSGVIEWER_GRAPHICSWINDOWWIN32 1
|
2006-12-27 23:04:04 +08:00
|
|
|
|
|
|
|
#include <osgViewer/GraphicsWindow>
|
From Colin MacDonald, "In my application I have a custom graphics context class, derived from
osg::GraphicsContext, in order to give good integration with the
application's GUI toolkit. This works really well.
However, I need to share OpenGL texture resources with the standard
osgViewer GraphicsContext implementations, in particular the
PixelBuffers. This is essential for my application to conserve graphics
memory on low-end hardware. Currently the standard osg implementations
will not share resources with another derived osg::GraphicsContext,
other than the pre-defined osgViewer classes e.g. PixelBufferX11 is
hardcoded to only share resources with GraphicsWindowX11 and
PixelBufferX11 objects, and no other osg::GraphicsContext object.
To address this in the cleanest way I could think of, I have moved the
OpenGL handle variables for each platform into a small utility class,
e.g. GraphicsHandleX11 for unix. Then GraphicsWindowX11, PixelBufferX11
and any other derived osg::GraphicsContext class can inherit from
GraphicsHandleX11 to share OpenGL resources.
I have updated the X11, Win32 and Carbon implementations to use this.
The changes are minor. I haven't touched the Cocoa implmentation as
I'm not familiar with it at all and couldn't test it - it will work
unchanged.
Without this I had some horrible hacks in my application, this greatly
simplifies things for me. It also simplifies the osgViewer
implementations slightly. Perhaps it may help with other users'
desires to share resources with external graphics contexts, as was
discussed on the user list recently."
Notes from Robert Osfield, adapted Colin's submission to work with the new EGL related changes.
2009-11-22 00:41:02 +08:00
|
|
|
#include <osgViewer/api/Win32/GraphicsHandleWin32>
|
2007-01-17 22:21:18 +08:00
|
|
|
|
2006-12-27 23:04:04 +08:00
|
|
|
namespace osgViewer
|
|
|
|
{
|
|
|
|
|
From Colin MacDonald, "In my application I have a custom graphics context class, derived from
osg::GraphicsContext, in order to give good integration with the
application's GUI toolkit. This works really well.
However, I need to share OpenGL texture resources with the standard
osgViewer GraphicsContext implementations, in particular the
PixelBuffers. This is essential for my application to conserve graphics
memory on low-end hardware. Currently the standard osg implementations
will not share resources with another derived osg::GraphicsContext,
other than the pre-defined osgViewer classes e.g. PixelBufferX11 is
hardcoded to only share resources with GraphicsWindowX11 and
PixelBufferX11 objects, and no other osg::GraphicsContext object.
To address this in the cleanest way I could think of, I have moved the
OpenGL handle variables for each platform into a small utility class,
e.g. GraphicsHandleX11 for unix. Then GraphicsWindowX11, PixelBufferX11
and any other derived osg::GraphicsContext class can inherit from
GraphicsHandleX11 to share OpenGL resources.
I have updated the X11, Win32 and Carbon implementations to use this.
The changes are minor. I haven't touched the Cocoa implmentation as
I'm not familiar with it at all and couldn't test it - it will work
unchanged.
Without this I had some horrible hacks in my application, this greatly
simplifies things for me. It also simplifies the osgViewer
implementations slightly. Perhaps it may help with other users'
desires to share resources with external graphics contexts, as was
discussed on the user list recently."
Notes from Robert Osfield, adapted Colin's submission to work with the new EGL related changes.
2009-11-22 00:41:02 +08:00
|
|
|
class OSGVIEWER_EXPORT GraphicsWindowWin32 : public osgViewer::GraphicsWindow, public osgViewer::GraphicsHandleWin32
|
2006-12-27 23:04:04 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2007-01-17 22:21:18 +08:00
|
|
|
GraphicsWindowWin32(osg::GraphicsContext::Traits* traits);
|
|
|
|
|
|
|
|
~GraphicsWindowWin32();
|
2006-12-27 23:04:04 +08:00
|
|
|
|
2007-06-12 23:32:04 +08:00
|
|
|
virtual bool isSameKindAs(const Object* object) const { return dynamic_cast<const GraphicsWindowWin32*>(object)!=0; }
|
|
|
|
virtual const char* libraryName() const { return "osgViewer"; }
|
|
|
|
virtual const char* className() const { return "GraphicsWindowWin32"; }
|
|
|
|
|
2006-12-27 23:04:04 +08:00
|
|
|
virtual bool valid() const { return _valid; }
|
2007-03-18 19:04:12 +08:00
|
|
|
|
|
|
|
/** Realize the GraphicsContext.*/
|
2006-12-27 23:04:04 +08:00
|
|
|
virtual bool realizeImplementation();
|
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Return true if the graphics context has been realized and is ready to use.*/
|
2006-12-27 23:04:04 +08:00
|
|
|
virtual bool isRealizedImplementation() const { return _realized; }
|
|
|
|
|
|
|
|
/** Close the graphics context.*/
|
|
|
|
virtual void closeImplementation();
|
|
|
|
|
|
|
|
/** Make this graphics context current.*/
|
2007-01-09 03:29:59 +08:00
|
|
|
virtual bool makeCurrentImplementation();
|
|
|
|
|
|
|
|
/** Release the graphics context.*/
|
|
|
|
virtual bool releaseContextImplementation();
|
2006-12-27 23:04:04 +08:00
|
|
|
|
|
|
|
/** Swap the front and back buffers.*/
|
|
|
|
virtual void swapBuffersImplementation();
|
|
|
|
|
|
|
|
/** Check to see if any events have been generated.*/
|
|
|
|
virtual void checkEvents();
|
|
|
|
|
2007-04-13 22:23:10 +08:00
|
|
|
/** Set the window's position and size.*/
|
2007-06-11 03:53:18 +08:00
|
|
|
virtual bool setWindowRectangleImplementation(int x, int y, int width, int height);
|
2007-04-13 22:23:10 +08:00
|
|
|
|
2006-12-27 23:04:04 +08:00
|
|
|
/** Set Window decoration.*/
|
2007-06-11 03:53:18 +08:00
|
|
|
virtual bool setWindowDecorationImplementation(bool flag);
|
2006-12-27 23:04:04 +08:00
|
|
|
|
|
|
|
/** Get focus.*/
|
|
|
|
virtual void grabFocus();
|
|
|
|
|
|
|
|
/** Get focus on if the pointer is in this window.*/
|
|
|
|
virtual void grabFocusIfPointerInWindow();
|
2007-01-17 22:21:18 +08:00
|
|
|
|
2007-01-24 18:02:04 +08:00
|
|
|
/** Override from GUIActionAdapter.*/
|
|
|
|
virtual void requestWarpPointer(float x,float y);
|
2007-09-26 17:50:32 +08:00
|
|
|
|
2008-08-16 01:32:26 +08:00
|
|
|
/** Raise specified window */
|
|
|
|
virtual void raiseWindow();
|
|
|
|
|
2007-09-26 17:50:32 +08:00
|
|
|
/** Set the name of the window */
|
|
|
|
virtual void setWindowName(const std::string& /*name*/);
|
2007-01-24 18:02:04 +08:00
|
|
|
|
|
|
|
/** Switch on/off the cursor.*/
|
|
|
|
virtual void useCursor(bool /*cursorOn*/);
|
|
|
|
|
2007-06-06 19:28:44 +08:00
|
|
|
/** Set mouse cursor to a specific shape.*/
|
|
|
|
virtual void setCursor(MouseCursor cursor);
|
2010-04-22 01:16:13 +08:00
|
|
|
|
|
|
|
/** Set sync-to-vblank. */
|
|
|
|
virtual void setSyncToVBlank(bool on);
|
|
|
|
|
2011-04-21 21:34:03 +08:00
|
|
|
/** Set swap group. */
|
|
|
|
virtual void setSwapGroup(bool on, GLuint group, GLuint barrier);
|
|
|
|
|
2007-01-17 22:21:18 +08:00
|
|
|
/** Handle a native (Win32) windowing event as received from the system */
|
|
|
|
virtual LRESULT handleNativeWindowingEvent( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
|
|
|
|
2007-03-16 21:22:05 +08:00
|
|
|
/** WindowData is used to pass in the Win32 window handle attached the GraphicsContext::Traits structure.*/
|
|
|
|
struct WindowData : public osg::Referenced
|
|
|
|
{
|
2009-04-22 19:12:03 +08:00
|
|
|
WindowData(HWND window, bool installEventHandler = true):
|
|
|
|
_hwnd(window), _installEventHandler(installEventHandler) {}
|
2007-03-16 21:22:05 +08:00
|
|
|
|
|
|
|
HWND _hwnd;
|
2009-04-22 19:12:03 +08:00
|
|
|
bool _installEventHandler;
|
2007-03-16 21:22:05 +08:00
|
|
|
};
|
|
|
|
|
2006-12-27 23:04:04 +08:00
|
|
|
protected:
|
|
|
|
|
2007-03-18 19:04:12 +08:00
|
|
|
void init();
|
2010-06-28 16:24:53 +08:00
|
|
|
|
|
|
|
void registerWindow();
|
|
|
|
void unregisterWindow();
|
2007-03-18 19:04:12 +08:00
|
|
|
|
|
|
|
bool registerWindowProcedure();
|
|
|
|
bool unregisterWindowProcedure();
|
2006-12-27 23:04:04 +08:00
|
|
|
|
2009-11-23 01:27:13 +08:00
|
|
|
HGLRC createContextImplementation();
|
2007-03-18 19:04:12 +08:00
|
|
|
bool createWindow();
|
|
|
|
bool setWindow( HWND handle );
|
2007-01-17 22:21:18 +08:00
|
|
|
|
|
|
|
void destroyWindow( bool deleteNativeWindow = true );
|
2007-01-24 18:02:04 +08:00
|
|
|
void recreateWindow();
|
2007-01-17 22:21:18 +08:00
|
|
|
|
2007-09-28 16:53:34 +08:00
|
|
|
bool determineWindowPositionAndStyle( unsigned int screenNum,
|
|
|
|
int clientAreaX,
|
|
|
|
int clientAreaY,
|
|
|
|
unsigned int clientAreaWidth,
|
|
|
|
unsigned int clientAreaHeight,
|
|
|
|
bool decorated,
|
|
|
|
int& x,
|
|
|
|
int& y,
|
|
|
|
unsigned int& w,
|
|
|
|
unsigned int& h,
|
|
|
|
unsigned int& style,
|
|
|
|
unsigned int& extendedStyle );
|
2007-01-17 22:21:18 +08:00
|
|
|
|
|
|
|
bool setPixelFormat();
|
From Colin MacDonald, "In my application I have a custom graphics context class, derived from
osg::GraphicsContext, in order to give good integration with the
application's GUI toolkit. This works really well.
However, I need to share OpenGL texture resources with the standard
osgViewer GraphicsContext implementations, in particular the
PixelBuffers. This is essential for my application to conserve graphics
memory on low-end hardware. Currently the standard osg implementations
will not share resources with another derived osg::GraphicsContext,
other than the pre-defined osgViewer classes e.g. PixelBufferX11 is
hardcoded to only share resources with GraphicsWindowX11 and
PixelBufferX11 objects, and no other osg::GraphicsContext object.
To address this in the cleanest way I could think of, I have moved the
OpenGL handle variables for each platform into a small utility class,
e.g. GraphicsHandleX11 for unix. Then GraphicsWindowX11, PixelBufferX11
and any other derived osg::GraphicsContext class can inherit from
GraphicsHandleX11 to share OpenGL resources.
I have updated the X11, Win32 and Carbon implementations to use this.
The changes are minor. I haven't touched the Cocoa implmentation as
I'm not familiar with it at all and couldn't test it - it will work
unchanged.
Without this I had some horrible hacks in my application, this greatly
simplifies things for me. It also simplifies the osgViewer
implementations slightly. Perhaps it may help with other users'
desires to share resources with external graphics contexts, as was
discussed on the user list recently."
Notes from Robert Osfield, adapted Colin's submission to work with the new EGL related changes.
2009-11-22 00:41:02 +08:00
|
|
|
|
2011-01-28 00:23:48 +08:00
|
|
|
void adaptKey( WPARAM wParam, LPARAM lParam, int& keySymbol, unsigned int& modifierMask, int& unmodifiedKeySymbol );
|
2007-01-17 22:21:18 +08:00
|
|
|
|
2006-12-27 23:04:04 +08:00
|
|
|
void transformMouseXY(float& x, float& y);
|
2007-01-17 22:21:18 +08:00
|
|
|
|
From Frederic Bouvier, SetCursor fixes from GraphicsWindowWin32,
Original email from Frederic at start of thread:
"he patch attached, made from r10068, fix two things, in other of importance :
- the selected cursor is never shown ( second change in file ). Only the left arrow is always displayed.
- remove the arbitrary ( in my sense ) limitation that the user cannot choose a cursor with the same shape that one used when resizing the window. This limitation doesn't exist for X11, and we have a diverging behaviour there ( first change in file ). Flightgear use the LeftRightCursor in look around mode."
Follow up email from Frederic (with changes that finally made it into this check in:
"I've just tested Mark's suggestion and it works perfectly, even when the
cursor goes to the border then come back inside the window.
But his patch doesn't seem to be based on the last revision of the
files, or at least not on the trunk, and there are more changes than
expected in them, including some loss from the previous patches.
The patch attached is based on r10068 of
src/osgViewer/GraphicsWindowWin32.cpp and r10067 of
include/osgViewer/api/Win32/GraphicsWindowWin32"
2009-05-07 21:30:54 +08:00
|
|
|
void setCursorImpl(MouseCursor cursor);
|
|
|
|
|
2007-06-06 19:28:44 +08:00
|
|
|
HCURSOR getOrCreateCursor(MouseCursor mouseShape);
|
2007-02-15 20:24:04 +08:00
|
|
|
|
2007-06-06 19:28:44 +08:00
|
|
|
HCURSOR _currentCursor;
|
2007-01-17 22:21:18 +08:00
|
|
|
|
2007-03-18 19:04:12 +08:00
|
|
|
WNDPROC _windowProcedure;
|
|
|
|
|
2007-01-17 22:21:18 +08:00
|
|
|
double _timeOfLastCheckEvents;
|
|
|
|
|
2007-06-06 19:28:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2007-01-24 18:02:04 +08:00
|
|
|
int _screenOriginX;
|
|
|
|
int _screenOriginY;
|
2007-01-17 22:21:18 +08:00
|
|
|
unsigned int _screenWidth;
|
|
|
|
unsigned int _screenHeight;
|
|
|
|
|
2007-01-24 18:02:04 +08:00
|
|
|
int _windowOriginXToRealize;
|
|
|
|
int _windowOriginYToRealize;
|
2007-01-17 22:21:18 +08:00
|
|
|
unsigned int _windowWidthToRealize;
|
|
|
|
unsigned int _windowHeightToRealize;
|
|
|
|
|
2006-12-27 23:04:04 +08:00
|
|
|
bool _initialized;
|
2007-01-17 22:21:18 +08:00
|
|
|
bool _valid;
|
2006-12-27 23:04:04 +08:00
|
|
|
bool _realized;
|
2007-03-18 19:04:12 +08:00
|
|
|
|
|
|
|
bool _ownsWindow;
|
|
|
|
bool _closeWindow;
|
|
|
|
bool _destroyWindow;
|
2007-01-17 22:21:18 +08:00
|
|
|
bool _destroying;
|
2008-04-16 18:01:16 +08:00
|
|
|
|
|
|
|
MouseCursor _mouseCursor;
|
2008-08-04 00:57:09 +08:00
|
|
|
|
|
|
|
/// Persist which mouse cursor was used before switching to the resize cursors.
|
|
|
|
MouseCursor _appMouseCursor;
|
2007-06-06 19:28:44 +08:00
|
|
|
|
|
|
|
std::map<MouseCursor,HCURSOR> _mouseCursorMap;
|
2008-08-04 00:57:09 +08:00
|
|
|
|
2011-01-28 00:23:48 +08:00
|
|
|
std::map<std::pair<int, int>, bool> _keyMap;
|
2008-08-04 00:57:09 +08:00
|
|
|
|
2008-11-15 01:03:59 +08:00
|
|
|
bool _applyWorkaroundForMultimonitorMultithreadNVidiaWin32Issues;
|
2006-12-27 23:04:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|