1998-06-12 01:07:06 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* gui.cxx
|
|
|
|
*
|
|
|
|
* Written 1998 by Durk Talsma, started Juni, 1998. For the flight gear
|
|
|
|
* project.
|
|
|
|
*
|
1999-09-09 03:40:06 +00:00
|
|
|
* Additional mouse supported added by David Megginson, 1999.
|
|
|
|
*
|
1998-06-12 01:07:06 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1998-06-12 01:07:06 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
**************************************************************************/
|
|
|
|
|
1998-07-04 00:48:41 +00:00
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-05-08 02:33:13 +00:00
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
#include <string>
|
|
|
|
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
#include <simgear/props/props_io.hxx>
|
2002-08-25 22:53:38 +00:00
|
|
|
|
|
|
|
#include <plib/pu.h>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
#include <Main/main.hxx>
|
2000-07-08 06:29:19 +00:00
|
|
|
#include <Main/globals.hxx>
|
2012-04-21 18:17:42 +00:00
|
|
|
#include <Main/locale.hxx>
|
2001-01-05 17:38:58 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2012-04-25 21:28:00 +00:00
|
|
|
#include <Viewer/WindowSystemAdapter.hxx>
|
2012-09-25 20:39:13 +00:00
|
|
|
#include <Viewer/CameraGroup.hxx>
|
2006-06-06 16:33:38 +00:00
|
|
|
#include <GUI/new_gui.hxx>
|
2011-11-19 20:25:51 +00:00
|
|
|
#include <GUI/FGFontCache.hxx>
|
1999-10-14 23:46:28 +00:00
|
|
|
|
1998-06-12 01:07:06 +00:00
|
|
|
#include "gui.h"
|
2004-05-12 15:36:07 +00:00
|
|
|
#include "layout.hxx"
|
1999-06-28 18:41:01 +00:00
|
|
|
|
2008-08-01 15:57:29 +00:00
|
|
|
#include <osg/GraphicsContext>
|
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
using namespace flightgear;
|
2002-08-08 23:25:47 +00:00
|
|
|
|
1999-05-27 00:21:22 +00:00
|
|
|
puFont guiFnt = 0;
|
1998-06-12 01:07:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------
|
1999-06-01 21:17:10 +00:00
|
|
|
init the gui
|
|
|
|
_____________________________________________________________________*/
|
1998-06-12 01:07:06 +00:00
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
namespace
|
1998-06-12 01:07:06 +00:00
|
|
|
{
|
2008-05-19 21:21:03 +00:00
|
|
|
class GUIInitOperation : public GraphicsContextOperation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GUIInitOperation() : GraphicsContextOperation(std::string("GUI init"))
|
|
|
|
{
|
|
|
|
}
|
2008-08-01 15:57:29 +00:00
|
|
|
void run(osg::GraphicsContext* gc)
|
2008-05-19 21:21:03 +00:00
|
|
|
{
|
|
|
|
WindowSystemAdapter* wsa = WindowSystemAdapter::getWSA();
|
|
|
|
wsa->puInitialize();
|
|
|
|
puSetDefaultStyle ( PUSTYLE_SMALL_SHADED ); //PUSTYLE_DEFAULT
|
|
|
|
puSetDefaultColourScheme (0.8, 0.8, 0.9, 1);
|
|
|
|
|
|
|
|
FGFontCache *fc = globals->get_fontcache();
|
2008-06-06 19:02:17 +00:00
|
|
|
fc->initializeFonts();
|
2008-05-19 21:21:03 +00:00
|
|
|
puFont *GuiFont
|
2012-04-21 18:17:42 +00:00
|
|
|
= fc->get(globals->get_locale()->getDefaultFont("typewriter.txf"),
|
2008-05-19 21:21:03 +00:00
|
|
|
15);
|
|
|
|
puSetDefaultFonts(*GuiFont, *GuiFont);
|
|
|
|
guiFnt = puGetDefaultLabelFont();
|
|
|
|
|
|
|
|
LayoutWidget::setDefaultFont(GuiFont, 15);
|
1999-05-12 01:11:17 +00:00
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
if (!fgHasNode("/sim/startup/mouse-pointer")) {
|
2008-07-27 07:54:13 +00:00
|
|
|
// no preference specified for mouse pointer
|
2008-05-19 21:21:03 +00:00
|
|
|
} else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
|
|
|
|
// don't show pointer
|
|
|
|
} else {
|
|
|
|
// force showing pointer
|
|
|
|
puShowCursor();
|
1999-06-01 21:17:10 +00:00
|
|
|
}
|
1998-07-04 00:48:41 +00:00
|
|
|
}
|
2008-05-19 21:21:03 +00:00
|
|
|
};
|
|
|
|
|
2012-09-25 20:39:13 +00:00
|
|
|
// Operation for querying OpenGL parameters. This must be done in a
|
|
|
|
// valid OpenGL context, potentially in another thread.
|
2008-05-19 21:21:03 +00:00
|
|
|
|
2012-09-25 20:39:13 +00:00
|
|
|
struct GeneralInitOperation : public GraphicsContextOperation
|
2008-05-19 21:21:03 +00:00
|
|
|
{
|
2012-09-25 20:39:13 +00:00
|
|
|
GeneralInitOperation()
|
|
|
|
: GraphicsContextOperation(std::string("General init"))
|
|
|
|
{
|
2008-08-01 15:57:29 +00:00
|
|
|
}
|
2012-09-25 20:39:13 +00:00
|
|
|
void run(osg::GraphicsContext* gc)
|
|
|
|
{
|
|
|
|
SGPropertyNode* simRendering = fgGetNode("/sim/rendering");
|
|
|
|
|
|
|
|
simRendering->setStringValue("gl-vendor", (char*) glGetString(GL_VENDOR));
|
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, glGetString(GL_VENDOR));
|
|
|
|
|
|
|
|
simRendering->setStringValue("gl-renderer", (char*) glGetString(GL_RENDERER));
|
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, glGetString(GL_RENDERER));
|
|
|
|
|
|
|
|
simRendering->setStringValue("gl-version", (char*) glGetString(GL_VERSION));
|
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, glGetString(GL_VERSION));
|
|
|
|
|
|
|
|
simRendering->setStringValue("gl-shading-language-version", (char*) glGetString(GL_SHADING_LANGUAGE_VERSION));
|
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, glGetString(GL_SHADING_LANGUAGE_VERSION));
|
|
|
|
|
|
|
|
GLint tmp;
|
|
|
|
glGetIntegerv( GL_MAX_TEXTURE_SIZE, &tmp );
|
|
|
|
simRendering->setIntValue("max-texture-size", tmp);
|
|
|
|
|
|
|
|
glGetIntegerv( GL_DEPTH_BITS, &tmp );
|
|
|
|
simRendering->setIntValue("depth-buffer-bits", tmp);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
osg::ref_ptr<GUIInitOperation> initOp;
|
|
|
|
|
1999-10-15 20:43:02 +00:00
|
|
|
}
|
2008-05-19 21:21:03 +00:00
|
|
|
|
2012-09-25 20:39:13 +00:00
|
|
|
/** Initializes GUI.
|
|
|
|
* Returns true when done, false when still busy (call again). */
|
|
|
|
bool guiInit()
|
2008-05-19 21:21:03 +00:00
|
|
|
{
|
2012-09-25 20:39:13 +00:00
|
|
|
static osg::ref_ptr<GeneralInitOperation> genOp;
|
|
|
|
|
|
|
|
if (!genOp.valid())
|
|
|
|
{
|
|
|
|
// Pick some window on which to do queries.
|
|
|
|
// XXX Perhaps all this graphics initialization code should be
|
|
|
|
// moved to renderer.cxx?
|
|
|
|
genOp = new GeneralInitOperation;
|
|
|
|
osg::Camera* guiCamera = getGUICamera(CameraGroup::getDefault());
|
|
|
|
WindowSystemAdapter* wsa = WindowSystemAdapter::getWSA();
|
|
|
|
osg::GraphicsContext* gc = 0;
|
|
|
|
if (guiCamera)
|
|
|
|
gc = guiCamera->getGraphicsContext();
|
|
|
|
if (gc) {
|
|
|
|
gc->add(genOp.get());
|
|
|
|
initOp = new GUIInitOperation;
|
|
|
|
gc->add(initOp.get());
|
|
|
|
} else {
|
|
|
|
wsa->windows[0]->gc->add(genOp.get());
|
|
|
|
}
|
|
|
|
return false; // not ready yet
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!genOp->isFinished())
|
|
|
|
return false;
|
|
|
|
if (!initOp.valid())
|
|
|
|
return true;
|
|
|
|
if (!initOp->isFinished())
|
|
|
|
return false;
|
|
|
|
genOp = 0;
|
|
|
|
initOp = 0;
|
|
|
|
// we're done
|
2008-08-01 15:57:29 +00:00
|
|
|
return true;
|
2012-09-25 20:39:13 +00:00
|
|
|
}
|
2008-05-19 21:21:03 +00:00
|
|
|
}
|