2007-01-09 18:06:20 +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_GRAPHICSWINDOWCARBON
|
|
|
|
#define OSGVIEWER_GRAPHICSWINDOWCARBON 1
|
|
|
|
|
2009-03-11 20:55:20 +08:00
|
|
|
#if defined (__APPLE__) && (!__LP64__)
|
2007-01-09 18:06:20 +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/Carbon/GraphicsHandleCarbon>
|
|
|
|
|
2007-01-09 18:06:20 +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 GraphicsWindowCarbon : public osgViewer::GraphicsWindow, public osgViewer::GraphicsHandleCarbon
|
2007-01-09 18:06:20 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
GraphicsWindowCarbon(osg::GraphicsContext::Traits* traits):
|
|
|
|
_valid(false),
|
|
|
|
_initialized(false),
|
2007-03-28 16:52:44 +08:00
|
|
|
_realized(false),
|
2008-04-01 18:00:39 +08:00
|
|
|
_ownsWindow(true),
|
2010-04-22 01:16:13 +08:00
|
|
|
_currentCursor(RightArrowCursor),
|
|
|
|
_currentVSync(true)
|
2007-01-09 18:06:20 +08:00
|
|
|
{
|
|
|
|
_traits = traits;
|
|
|
|
|
2007-03-27 00:28:26 +08:00
|
|
|
init();
|
2007-01-09 18:06:20 +08:00
|
|
|
|
|
|
|
if (valid())
|
|
|
|
{
|
|
|
|
setState( new osg::State );
|
2007-02-15 01:28:33 +08:00
|
|
|
getState()->setGraphicsContext(this);
|
2007-02-15 20:24:04 +08:00
|
|
|
|
2012-09-06 05:03:41 +08:00
|
|
|
if (_traits.valid() && _traits->sharedContext.valid())
|
2007-02-15 20:24:04 +08:00
|
|
|
{
|
|
|
|
getState()->setContextID( _traits->sharedContext->getState()->getContextID() );
|
|
|
|
incrementContextIDUsageCount( getState()->getContextID() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
getState()->setContextID( osg::GraphicsContext::createNewContextID() );
|
|
|
|
}
|
2007-01-09 18:06:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-12 23:32:04 +08:00
|
|
|
virtual bool isSameKindAs(const Object* object) const { return dynamic_cast<const GraphicsWindowCarbon*>(object)!=0; }
|
|
|
|
virtual const char* libraryName() const { return "osgViewer"; }
|
|
|
|
virtual const char* className() const { return "GraphicsWindowCarbon"; }
|
|
|
|
|
2007-01-09 18:06:20 +08:00
|
|
|
virtual bool valid() const { return _valid; }
|
|
|
|
|
|
|
|
/** Realise the GraphicsContext.*/
|
|
|
|
virtual bool realizeImplementation();
|
|
|
|
|
|
|
|
/** Return true if the graphics context has been realised and is ready to use.*/
|
|
|
|
virtual bool isRealizedImplementation() const { return _realized; }
|
|
|
|
|
|
|
|
/** Close the graphics context.*/
|
|
|
|
virtual void closeImplementation();
|
|
|
|
|
|
|
|
/** Make this graphics context current.*/
|
|
|
|
virtual bool makeCurrentImplementation();
|
|
|
|
|
|
|
|
/** Release the graphics context.*/
|
|
|
|
virtual bool releaseContextImplementation();
|
|
|
|
|
|
|
|
/** Swap the front and back buffers.*/
|
|
|
|
virtual void swapBuffersImplementation();
|
|
|
|
|
|
|
|
/** Check to see if any events have been generated.*/
|
2013-05-24 17:35:58 +08:00
|
|
|
virtual bool checkEvents();
|
2007-01-09 18:06:20 +08:00
|
|
|
|
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
|
|
|
|
2007-01-09 18:06:20 +08:00
|
|
|
/** Set Window decoration.*/
|
2007-06-11 03:53:18 +08:00
|
|
|
virtual bool setWindowDecorationImplementation(bool flag);
|
2007-01-09 18:06:20 +08:00
|
|
|
|
2008-11-07 18:23:57 +08:00
|
|
|
// Override from GUIActionAdapter
|
|
|
|
virtual void requestWarpPointer( float x, float y);
|
|
|
|
|
2007-01-09 18:06:20 +08:00
|
|
|
/** Get focus.*/
|
|
|
|
virtual void grabFocus();
|
|
|
|
|
|
|
|
/** Get focus on if the pointer is in this window.*/
|
|
|
|
virtual void grabFocusIfPointerInWindow();
|
|
|
|
|
|
|
|
void requestClose() { _closeRequested = true; }
|
|
|
|
|
|
|
|
virtual void resizedImplementation(int x, int y, int width, int height);
|
2007-01-13 05:33:19 +08:00
|
|
|
|
2007-12-17 18:24:20 +08:00
|
|
|
virtual void setWindowName (const std::string & name);
|
|
|
|
virtual void useCursor(bool cursorOn);
|
2008-04-01 18:00:39 +08:00
|
|
|
virtual void setCursor(MouseCursor mouseCursor);
|
2010-04-22 01:16:13 +08:00
|
|
|
|
|
|
|
/** Set sync-to-vblank. */
|
|
|
|
virtual void setSyncToVBlank(bool on);
|
|
|
|
|
2007-01-13 05:33:19 +08:00
|
|
|
WindowRef getNativeWindowRef() { return _window; }
|
|
|
|
|
|
|
|
bool handleMouseEvent(EventRef theEvent);
|
|
|
|
bool handleKeyboardEvent(EventRef theEvent);
|
2008-02-26 00:05:53 +08:00
|
|
|
bool handleModifierKeys(EventRef theEvent);
|
2007-01-09 18:06:20 +08:00
|
|
|
|
2007-03-28 16:52:44 +08:00
|
|
|
/** WindowData is used to pass in the Carbon window handle attached the GraphicsContext::Traits structure. */
|
2007-05-20 21:42:41 +08:00
|
|
|
class WindowData : public osg::Referenced
|
2007-03-16 21:22:05 +08:00
|
|
|
{
|
2007-05-20 21:42:41 +08:00
|
|
|
public:
|
2008-02-18 23:30:55 +08:00
|
|
|
WindowData(WindowRef window, AGLDrawable* drawable=NULL ): //ADEGLI
|
|
|
|
_window(window), _AGLDrawable(drawable) ,_installEventHandler(false) {} //ADEGLI
|
2007-03-16 21:22:05 +08:00
|
|
|
|
2007-05-20 21:42:41 +08:00
|
|
|
WindowRef getNativeWindowRef() { return _window; }
|
|
|
|
void setInstallEventHandler(bool flag) { _installEventHandler = flag; }
|
|
|
|
bool installEventHandler() { return _installEventHandler; }
|
2008-02-18 23:30:55 +08:00
|
|
|
AGLDrawable* getAGLDrawable() { return _AGLDrawable; } //ADEGLI
|
|
|
|
|
2007-05-20 21:42:41 +08:00
|
|
|
private:
|
2008-02-18 23:30:55 +08:00
|
|
|
WindowRef _window;
|
|
|
|
AGLDrawable* _AGLDrawable; //ADEGLI
|
|
|
|
bool _installEventHandler;
|
2007-05-20 21:42:41 +08:00
|
|
|
|
2007-03-16 21:22:05 +08:00
|
|
|
};
|
2007-05-20 21:42:41 +08:00
|
|
|
|
|
|
|
/// install the standard os-eventhandler
|
|
|
|
void installEventHandler();
|
2007-06-08 19:04:30 +08:00
|
|
|
|
|
|
|
// get the pixelformat
|
|
|
|
AGLPixelFormat getAGLPixelFormat() { return _pixelFormat; }
|
2009-03-11 20:55:20 +08:00
|
|
|
|
|
|
|
void adaptResize(int x, int y, int w, int h);
|
2007-03-16 21:22:05 +08:00
|
|
|
|
2007-01-09 18:06:20 +08:00
|
|
|
protected:
|
|
|
|
|
2007-03-27 00:28:26 +08:00
|
|
|
void init();
|
2007-01-09 18:06:20 +08:00
|
|
|
|
2009-03-11 20:55:20 +08:00
|
|
|
void transformMouseXY(float& x, float& y);
|
2007-05-20 21:42:41 +08:00
|
|
|
|
2007-01-09 18:06:20 +08:00
|
|
|
|
|
|
|
bool _valid;
|
|
|
|
bool _initialized;
|
|
|
|
bool _realized;
|
|
|
|
bool _useWindowDecoration;
|
|
|
|
|
2007-03-16 21:22:05 +08:00
|
|
|
bool _ownsWindow;
|
2007-01-09 18:06:20 +08:00
|
|
|
WindowRef _window;
|
|
|
|
AGLPixelFormat _pixelFormat;
|
2007-05-16 03:32:55 +08:00
|
|
|
|
2007-05-20 21:42:41 +08:00
|
|
|
int _windowTitleHeight;
|
2007-01-13 05:33:19 +08:00
|
|
|
private:
|
2007-05-20 21:42:41 +08:00
|
|
|
/// computes the window attributes
|
|
|
|
WindowAttributes computeWindowAttributes(bool useWindowDecoration, bool supportsResize);
|
2008-02-26 00:05:53 +08:00
|
|
|
void handleModifierKey(UInt32 modifierKey, UInt32 modifierMask, osgGA::GUIEventAdapter::KeySymbol keySymbol);
|
|
|
|
|
2007-05-20 21:42:41 +08:00
|
|
|
|
2008-02-26 00:05:53 +08:00
|
|
|
bool _closeRequested;
|
2008-04-01 18:00:39 +08:00
|
|
|
UInt32 _lastModifierKeys;
|
|
|
|
MouseCursor _currentCursor;
|
2010-04-22 01:16:13 +08:00
|
|
|
bool _currentVSync;
|
2007-01-09 18:06:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|