]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/new_gui.cxx
Melchior: Make line wrapping in textboxes configurable, and enable it by default
[flightgear.git] / src / GUI / new_gui.cxx
index 9301ba92b9b759c9163519028e6601ac695a80cc..fce518055bbf85648093610d04729d5d3a5479e6 100644 (file)
 #include "new_gui.hxx"
 
 #include <plib/pu.h>
+#include <plib/ul.h>
 
-#include <vector>
-SG_USING_STD(vector);
+#include <simgear/compiler.h>
+#include <simgear/structure/exception.hxx>
 
-#include <simgear/misc/exception.hxx>
 #include <Main/fg_props.hxx>
 
+#include "menubar.hxx"
+#include "dialog.hxx"
+
+SG_USING_STD(map);
+
+\f
+////////////////////////////////////////////////////////////////////////
+// Implementation of NewGUI.
+////////////////////////////////////////////////////////////////////////
+
 
 NewGUI::NewGUI ()
-    : _activeObject(0)
+    : _menubar(new FGMenuBar),
+      _active_dialog(0)
 {
 }
 
 NewGUI::~NewGUI ()
 {
+    clear();
 }
 
 void
 NewGUI::init ()
 {
-    SGPropertyNode props;
-
-    try {
-        fgLoadProps("gui.xml", &props);
-    } catch (const sg_exception &ex) {
-        SG_LOG(SG_INPUT, SG_ALERT, "Error parsing gui.xml: "
-               << ex.getMessage());
-        return;
-    }
-
-    int nChildren = props.nChildren();
-    for (int i = 0; i < nChildren; i++) {
-        SGPropertyNode_ptr child = props.getChild(i);
-        if (!child->hasValue("name")) {
-            SG_LOG(SG_INPUT, SG_WARN, "GUI node " << child->getName()
-                   << " has no name; skipping.");
-        } else {
-            string name = child->getStringValue("name");
-            SG_LOG(SG_INPUT, SG_BULK, "Saving GUI node " << name);
-            _objects[name] = child;
-        }
-    }
+    char path1[1024];
+    char path2[1024];
+    ulMakePath(path1, globals->get_fg_root().c_str(), "gui");
+    ulMakePath(path2, path1, "dialogs");
+    readDir(path2);
+    _menubar->init();
 }
 
 void
-NewGUI::update (double delta_time_sec)
+NewGUI::reinit ()
 {
-    // NO OP
+    unbind();
+    clear();
+    _menubar = new FGMenuBar;
+    init();
+    bind();
 }
 
-static void
-close_callback (puObject * object)
+void
+NewGUI::bind ()
 {
-    ((NewGUI *)object->getUserData())->closeActiveObject();
+    fgTie("/sim/menubar/visibility", this,
+          &NewGUI::getMenuBarVisible, &NewGUI::setMenuBarVisible);
 }
 
 void
-NewGUI::closeActiveObject ()
+NewGUI::unbind ()
 {
-    delete _activeObject;
-    _activeObject = 0;
+    fgUntie("/sim/menubar/visibility");
 }
 
 void
-NewGUI::display (const string &name)
+NewGUI::update (double delta_time_sec)
 {
-    if (_activeObject != 0) {
-        SG_LOG(SG_GENERAL, SG_ALERT, "Another GUI object is still active");
-        return;
-    }
+    map<string,FGDialog *>::iterator iter = _active_dialogs.begin();
+    for(/**/; iter != _active_dialogs.end(); iter++)
+        iter->second->update();
+}
 
-    if (_objects.find(name) == _objects.end()) {
+bool
+NewGUI::showDialog (const string &name)
+{
+    if (_dialog_props.find(name) == _dialog_props.end()) {
         SG_LOG(SG_GENERAL, SG_ALERT, "Dialog " << name << " not defined");
-        return;
+        return false;
+    } else {
+        if(!_active_dialogs[name])
+            _active_dialogs[name] = new FGDialog(_dialog_props[name]);
+        return true;
     }
-    SGPropertyNode_ptr props = _objects[name];
-    
-    _activeObject = makeObject(props, 1024, 768);
+}
 
-    if (_activeObject != 0) {
-        _activeObject->reveal();
-    } else {
-        SG_LOG(SG_GENERAL, SG_ALERT, "Dialog " << name
-               << " does not contain a proper GUI definition");
+bool
+NewGUI::closeActiveDialog ()
+{
+    if (_active_dialog == 0)
+        return false;
+
+    // Kill any entries in _active_dialogs...  Is there an STL
+    // algorithm to do (delete map entries by value, not key)?  I hate
+    // the STL :) -Andy
+    map<string,FGDialog *>::iterator iter = _active_dialogs.begin();
+    for(/**/; iter != _active_dialogs.end(); iter++) {
+        if(iter->second == _active_dialog) {
+            _active_dialogs.erase(iter);
+            // iter is no longer valid
+            break;
+        }
     }
+
+    delete _active_dialog;
+    _active_dialog = 0;
+    return true;
 }
 
-puObject *
-NewGUI::makeObject (SGPropertyNode * props, int parentWidth, int parentHeight)
-{
-    int width = props->getIntValue("width", parentWidth);
-    int height = props->getIntValue("height", parentHeight);
-
-    int x = props->getIntValue("x", (parentWidth - width) / 2);
-    int y = props->getIntValue("y", (parentHeight - height) / 2);
-
-    string type = props->getName();
-
-    if (type == "dialog") {
-        puPopup * dialog;
-        if (props->getBoolValue("modal", false))
-            dialog = new puDialogBox(x, y);
-        else
-            dialog = new puPopup(x, y);
-        setupGroup(dialog, props, width, height, true);
-        return dialog;
-    } else if (type == "group") {
-        puGroup * group = new puGroup(x, y);
-        setupGroup(group, props, width, height, false);
-        return group;
-    } else if (type == "input") {
-        puInput * input = new puInput(x, y, x + width, y + height);
-        setupObject(input, props);
-        return input;
-    } else if (type == "text") {
-        puText * text = new puText(x, y);
-        setupObject(text, props);
-        return text;
-    } else if (type == "button") {
-        puButton * b;
-        const char * legend = props->getStringValue("legend", "[none]");
-        if (props->getBoolValue("one-shot", true))
-            b = new puOneShot(x, y, legend);
-        else
-            b = new puButton(x, y, legend);
-        setupObject(b, props);
-        b->setCallback(close_callback);
-        b->setUserData(this);
-        return b;
-    } else {
-        return 0;
+bool
+NewGUI::closeDialog (const string& name)
+{
+    if(_active_dialogs.find(name) != _active_dialogs.end()) {
+        if(_active_dialog == _active_dialogs[name])
+            _active_dialog = 0;
+        delete _active_dialogs[name];
+        _active_dialogs.erase(name);
+        return true;
     }
+    return false; // dialog wasn't open...
 }
 
 void
-NewGUI::setupObject (puObject * object, SGPropertyNode * props)
+NewGUI::setActiveDialog (FGDialog * dialog)
 {
-    if (props->hasValue("legend"))
-        object->setLegend(props->getStringValue("legend"));
+    _active_dialog = dialog;
+}
 
-    if (props->hasValue("label"))
-        object->setLabel(props->getStringValue("label"));
+FGDialog *
+NewGUI::getActiveDialog ()
+{
+    return _active_dialog;
+}
+
+FGMenuBar *
+NewGUI::getMenuBar ()
+{
+    return _menubar;
+}
+
+bool
+NewGUI::getMenuBarVisible () const
+{
+    return _menubar->isVisible();
+}
+
+void
+NewGUI::setMenuBarVisible (bool visible)
+{
+    if (visible)
+        _menubar->show();
+    else
+        _menubar->hide();
+}
+
+void
+NewGUI::clear ()
+{
+    delete _menubar;
+    _menubar = 0;
+    _dialog_props.clear();
+}
 
-    if (props->hasValue("default-value-prop"))
-        object->setValue(fgGetString(props->getStringValue("default-value-prop")));
+static bool
+test_extension (const char * path, const char * ext)
+{
+    int pathlen = strlen(path);
+    int extlen = strlen(ext);
+    
+    for (int i = 1; i <= pathlen && i <= extlen; i++) {
+        if (path[pathlen-i] != ext[extlen-i])
+            return false;
+    }
+    return true;
+}
 
-    object->makeReturnDefault(props->getBoolValue("default"));
+void
+NewGUI::newDialog (SGPropertyNode* props)
+{
+    const char* cname = props->getStringValue("name");
+    if(!cname) {
+        SG_LOG(SG_GENERAL, SG_ALERT, "New dialog has no <name> property");
+        return;
+    }
+    string name = cname;
+    if(!_active_dialogs[name])
+        _dialog_props[name] = props;
 }
 
 void
-NewGUI::setupGroup (puGroup * group, SGPropertyNode * props,
-                    int width, int height, bool makeFrame)
+NewGUI::readDir (const char * path)
 {
-    setupObject(group, props);
+    ulDir * dir = ulOpenDir(path);
 
-    if (makeFrame)
-        new puFrame(0, 0, width, height);
+    if (dir == 0) {
+        SG_LOG(SG_GENERAL, SG_ALERT, "Failed to read GUI files from "
+               << path);
+        return;
+    }
 
-    int nChildren = props->nChildren();
-    for (int i = 0; i < nChildren; i++)
-        makeObject(props->getChild(i), width, height);
-    group->close();
+    for (ulDirEnt * dirEnt = ulReadDir(dir);
+         dirEnt != 0;
+         dirEnt = ulReadDir(dir)) {
+
+        char subpath[1024];
+
+        ulMakePath(subpath, path, dirEnt->d_name);
+
+        if (!dirEnt->d_isdir && test_extension(subpath, ".xml")) {
+            SGPropertyNode * props = new SGPropertyNode;
+            try {
+                readProperties(subpath, props);
+            } catch (const sg_exception &) {
+                SG_LOG(SG_INPUT, SG_ALERT, "Error parsing dialog "
+                       << subpath);
+                delete props;
+                continue;
+            }
+            SGPropertyNode *nameprop = props->getNode("name");
+            if (!nameprop) {
+                SG_LOG(SG_INPUT, SG_WARN, "dialog " << subpath
+                   << " has no name; skipping.");
+                delete props;
+                continue;
+            }
+            string name = nameprop->getStringValue();
+            if (_dialog_props[name])
+                delete (SGPropertyNode *)_dialog_props[name];
+
+            _dialog_props[name] = props;
+        }
+    }
+    ulCloseDir(dir);
 }
 
 // end of new_gui.cxx