]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/new_gui.cxx
Moved random ground cover object management code (userdata.[ch]xx) over
[flightgear.git] / src / GUI / new_gui.cxx
index 656fc2a2aa2c806eca4b4a56f93bce988457cddc..63f41cba969ed3dc994eedf5b7233f6b6ee30a07 100644 (file)
@@ -3,91 +3,66 @@
 #include "new_gui.hxx"
 
 #include <plib/pu.h>
+#include <plib/ul.h>
 
-#include <vector>
-SG_USING_STD(vector);
-
+#include <simgear/compiler.h>
 #include <simgear/misc/exception.hxx>
 #include <Main/fg_props.hxx>
 
+#include "menubar.hxx"
+#include "dialog.hxx"
 
-/**
- * Callback to update all property values.
- */
-static void
-update_callback (puObject * object)
-{
-    ((NewGUI *)object->getUserData())->updateProperties();
-}
+SG_USING_STD(map);
+
+\f
+////////////////////////////////////////////////////////////////////////
+// Implementation of NewGUI.
+////////////////////////////////////////////////////////////////////////
 
 
-/**
- * Callback to close the dialog.
- */
-static void
-close_callback (puObject * object)
+NewGUI::NewGUI ()
+    : _menubar(new FGMenuBar),
+      _active_dialog(0)
 {
-    ((NewGUI *)object->getUserData())->closeActiveObject();
 }
 
-
-/**
- * Callback to apply the property value for every field.
- */
-static void
-apply_callback (puObject * object)
+NewGUI::~NewGUI ()
 {
-    ((NewGUI *)object->getUserData())->applyProperties();
-    update_callback(object);
+    clear();
 }
 
-
-/**
- * Callback to apply the property values and close the dialog.
- */
-static void
-close_apply_callback (puObject * object)
+void
+NewGUI::init ()
 {
-    apply_callback(object);
-    close_callback(object);
+    char path1[1024];
+    char path2[1024];
+    ulMakePath(path1, globals->get_fg_root().c_str(), "gui");
+    ulMakePath(path2, path1, "dialogs");
+    readDir(path2);
+    _menubar->init();
 }
 
-
-
-NewGUI::NewGUI ()
-    : _activeObject(0)
+void
+NewGUI::reinit ()
 {
+    unbind();
+    clear();
+    _menubar = new FGMenuBar;
+    init();
+    bind();
 }
 
-NewGUI::~NewGUI ()
+void
+NewGUI::bind ()
 {
+    fgTie("/sim/menubar/visibility", this,
+          &NewGUI::getMenuBarVisible, &NewGUI::setMenuBarVisible);
 }
 
 void
-NewGUI::init ()
+NewGUI::unbind ()
 {
-    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;
-        }
-    }
+    fgUntie("/sim/menubar/visibility");
 }
 
 void
@@ -96,157 +71,131 @@ NewGUI::update (double delta_time_sec)
     // NO OP
 }
 
-void
-NewGUI::display (const string &name)
+bool
+NewGUI::showDialog (const string &name)
 {
-    if (_activeObject != 0) {
-        SG_LOG(SG_GENERAL, SG_ALERT, "Another GUI object is still active");
-        return;
-    }
-
-    if (_objects.find(name) == _objects.end()) {
+    if (_dialog_props.find(name) == _dialog_props.end()) {
         SG_LOG(SG_GENERAL, SG_ALERT, "Dialog " << name << " not defined");
-        return;
+        return false;
+    } else {
+        new FGDialog(_dialog_props[name]); // it will be deleted by a callback
+        return true;
     }
-    SGPropertyNode_ptr props = _objects[name];
-    
-    _activeObject = makeObject(props, 1024, 768);
+}
 
-    if (_activeObject != 0) {
-        _activeObject->reveal();
+bool
+NewGUI::closeActiveDialog ()
+{
+    if (_active_dialog == 0) {
+        return false;
     } else {
-        SG_LOG(SG_GENERAL, SG_ALERT, "Dialog " << name
-               << " does not contain a proper GUI definition");
+        delete _active_dialog;
+        _active_dialog = 0;
+        return true;
     }
 }
 
 void
-NewGUI::applyProperties ()
+NewGUI::setActiveDialog (FGDialog * dialog)
 {
-    for (int i = 0; i < _propertyObjects.size(); i++) {
-        puObject * object = _propertyObjects[i].object;
-        SGPropertyNode_ptr node = _propertyObjects[i].node;
-        node->setStringValue(object->getStringValue());
-    }
+    _active_dialog = dialog;
 }
 
-void
-NewGUI::updateProperties ()
+FGDialog *
+NewGUI::getActiveDialog ()
 {
-    for (int i = 0; i < _propertyObjects.size(); i++) {
-        puObject * object = _propertyObjects[i].object;
-        SGPropertyNode_ptr node = _propertyObjects[i].node;
-        object->setValue(node->getStringValue());
-    }
+    return _active_dialog;
 }
 
-void
-NewGUI::closeActiveObject ()
-{
-    delete _activeObject;
-    _activeObject = 0;
-    _propertyObjects.clear();
-}
-
-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);
-        return b;
-    } else {
-        return 0;
-    }
+FGMenuBar *
+NewGUI::getMenuBar ()
+{
+    return _menubar;
 }
 
-void
-NewGUI::setupObject (puObject * object, SGPropertyNode * props)
+bool
+NewGUI::getMenuBarVisible () const
 {
-    object->setUserData(this);
+    return _menubar->isVisible();
+}
 
-    if (props->hasValue("legend"))
-        object->setLegend(props->getStringValue("legend"));
+void
+NewGUI::setMenuBarVisible (bool visible)
+{
+    if (visible)
+        _menubar->show();
+    else
+        _menubar->hide();
+}
 
-    if (props->hasValue("label"))
-        object->setLabel(props->getStringValue("label"));
+void
+NewGUI::clear ()
+{
+    delete _menubar;
+    _menubar = 0;
 
-    if (props->hasValue("default-value-prop")) {
-        const char * name = props->getStringValue("default-value-prop");
-        SGPropertyNode_ptr node = fgGetNode(name, true);
-        object->setValue(node->getStringValue());
-        _propertyObjects.push_back(PropertyObject(object, node));
-    }
+    map<string,SGPropertyNode *>::iterator it;
+    for (it = _dialog_props.begin(); it != _dialog_props.end(); it++)
+        delete it->second;
+    _dialog_props.clear();
+}
 
-    if (props->hasValue("action")) {
-        string action = props->getStringValue("action");
-        if (action == "update")
-            object->setCallback(update_callback);
-        else if (action == "close")
-            object->setCallback(close_callback);
-        else if (action == "apply")
-            object->setCallback(apply_callback);
-        else if (action == "close-apply")
-            object->setCallback(close_apply_callback);
-        else
-            SG_LOG(SG_GENERAL, SG_ALERT, "Unknown GUI action " + action);
+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;
     }
-
-    object->makeReturnDefault(props->getBoolValue("default"));
+    return true;
 }
 
 void
-NewGUI::setupGroup (puGroup * group, SGPropertyNode * props,
-                    int width, int height, bool makeFrame)
+NewGUI::readDir (const char * path)
 {
-    setupObject(group, props);
-
-    if (makeFrame)
-        new puFrame(0, 0, width, height);
+    ulDir * dir = ulOpenDir(path);
 
-    int nChildren = props->nChildren();
-    for (int i = 0; i < nChildren; i++)
-        makeObject(props->getChild(i), width, height);
-    group->close();
-}
+    if (dir == 0) {
+        SG_LOG(SG_GENERAL, SG_ALERT, "Failed to read GUI files from "
+               << path);
+        return;
+    }
 
-NewGUI::PropertyObject::PropertyObject (puObject * o, SGPropertyNode_ptr n)
-    : object(o),
-      node(n)
-{
+    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 &ex) {
+                SG_LOG(SG_INPUT, SG_ALERT, "Error parsing dialog "
+                       << subpath);
+                delete props;
+                continue;
+            }
+            if (!props->hasValue("name")) {
+                SG_LOG(SG_INPUT, SG_WARN, "dialog " << subpath
+                   << " has no name; skipping.");
+                delete props;
+                continue;
+            }
+            string name = props->getStringValue("name");
+            SG_LOG(SG_INPUT, SG_BULK, "Saving dialog " << name);
+            if (_dialog_props[name] != 0)
+                delete _dialog_props[name];
+            _dialog_props[name] = props;
+        }
+    }
+    ulCloseDir(dir);
 }
 
 // end of new_gui.cxx