X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FGUI%2Fgui.cxx;h=2e8305ba419b6b9adf25aba261b78b8224c6a06d;hb=474789269b7656509f62339c17e62a55b6157d43;hp=b34e135e2a15720dbc6f513486e6c6f2f096ccc1;hpb=65e2ce16d6aa01d2c58827c62e0e8544ba15ae79;p=flightgear.git diff --git a/src/GUI/gui.cxx b/src/GUI/gui.cxx index b34e135e2..2e8305ba4 100644 --- a/src/GUI/gui.cxx +++ b/src/GUI/gui.cxx @@ -30,9 +30,7 @@ #include -#ifdef HAVE_WINDOWS_H -# include -#endif +#include #include #include @@ -45,12 +43,15 @@ #include
#include
#include
+#include
#include #include "gui.h" -#include "gui_local.hxx" #include "layout.hxx" +#include + +using namespace flightgear; puFont guiFnt = 0; @@ -59,48 +60,61 @@ puFont guiFnt = 0; init the gui _____________________________________________________________________*/ - -void guiInit() +namespace { - char *mesa_win_state; - - // Initialize PUI -#ifndef PU_USE_NONE - puInit(); -#endif - puSetDefaultStyle ( PUSTYLE_SMALL_SHADED ); //PUSTYLE_DEFAULT - puSetDefaultColourScheme (0.8, 0.8, 0.9, 1); - - FGFontCache *fc = globals->get_fontcache(); - puFont *GuiFont = fc->get(globals->get_locale()->getStringValue("font", "typewriter.txf"), 15); - puSetDefaultFonts(*GuiFont, *GuiFont); - guiFnt = puGetDefaultLabelFont(); - - LayoutWidget::setDefaultFont(GuiFont, 15); +class GUIInitOperation : public GraphicsContextOperation +{ +public: + GUIInitOperation() : GraphicsContextOperation(std::string("GUI init")) + { + } + void run(osg::GraphicsContext* gc) + { + 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(); + fc->initializeFonts(); + puFont *GuiFont + = fc->get(globals->get_locale()->getStringValue("font", + "typewriter.txf"), + 15); + puSetDefaultFonts(*GuiFont, *GuiFont); + guiFnt = puGetDefaultLabelFont(); + + LayoutWidget::setDefaultFont(GuiFont, 15); - if (!fgHasNode("/sim/startup/mouse-pointer")) { - // no preference specified for mouse pointer, attempt to autodetect... - // Determine if we need to render the cursor, or if the windowing - // system will do it. First test if we are rendering with glide. - if ( strstr ( general.get_glRenderer(), "Glide" ) ) { - // Test for the MESA_GLX_FX env variable - if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) { - // test if we are fullscreen mesa/glide - if ( (mesa_win_state[0] == 'f') || - (mesa_win_state[0] == 'F') ) { - puShowCursor (); - } - } + if (!fgHasNode("/sim/startup/mouse-pointer")) { + // no preference specified for mouse pointer + } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) { + // don't show pointer + } else { + // force showing pointer + puShowCursor(); } -// mouse_active = ~mouse_active; - } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) { - // don't show pointer - } else { - // force showing pointer - puShowCursor(); -// mouse_active = ~mouse_active; } - - // MOUSE_VIEW mode stuff - initMouseQuat(); +}; + +osg::ref_ptr initOp; +} + +void guiStartInit(osg::GraphicsContext* gc) +{ + if (gc) { + initOp = new GUIInitOperation; + gc->add(initOp.get()); + } } + +bool guiFinishInit() +{ + if (!initOp.valid()) + return true; + if (!initOp->isFinished()) + return false; + initOp = 0; + return true; +} +