]> git.mxchange.org Git - simgear.git/commitdiff
Merge branch 'topics/propobj' into next
authorJames Turner <zakalawe@mac.com>
Thu, 18 Nov 2010 20:23:40 +0000 (20:23 +0000)
committerJames Turner <zakalawe@mac.com>
Thu, 18 Nov 2010 20:23:40 +0000 (20:23 +0000)
simgear/props/Makefile.am
simgear/props/propertyObject.cxx [new file with mode: 0644]
simgear/props/propertyObject.hxx [new file with mode: 0644]

index 658fe126763a57ae8eb9dce1856eaac5dcf6f9e0..c39bd0a038cee300e26d8546b82906a81186dc33 100644 (file)
@@ -7,13 +7,15 @@ include_HEADERS = \
        props.hxx \
        props_io.hxx \
        AtomicChangeListener.hxx \
-       ExtendedPropertyAdapter.hxx
+       ExtendedPropertyAdapter.hxx \
+       propertyObject.hxx
 
 libsgprops_a_SOURCES = \
        condition.cxx \
        props.cxx \
        props_io.cxx \
-       AtomicChangeListener.cxx
+       AtomicChangeListener.cxx \
+       propertyObject.cxx
 
 check_PROGRAMS = props_test
 
diff --git a/simgear/props/propertyObject.cxx b/simgear/props/propertyObject.cxx
new file mode 100644 (file)
index 0000000..ff90ce7
--- /dev/null
@@ -0,0 +1,91 @@
+// Copyright (C) 2010  James Turner - zakalawe@mac.com
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// 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 GNU
+// Library 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
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+
+#ifdef HAVE_CONFIG_H
+#  include "simgear_config.h"
+#endif
+
+#include "propertyObject.hxx"
+
+namespace simgear
+{
+
+SGPropertyNode* static_defaultRoot = NULL;
+
+void PropertyObjectBase::setDefaultRoot(SGPropertyNode* aRoot)
+{
+  static_defaultRoot = aRoot;
+}
+
+PropertyObjectBase::PropertyObjectBase(const char* aChild) :
+  _base(NULL),
+  _path(aChild),
+  _prop(NULL)
+{
+}
+  
+PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
+  _base(aNode),
+  _path(aChild),
+  _prop(NULL)
+{
+
+}
+  
+SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
+{
+  if (_prop) {
+    return _prop;
+  }
+  
+  _prop = _base ? _base : static_defaultRoot;
+  if (_path) {
+    _prop = _prop->getNode(_path, aCreate);
+  }
+  
+  return _prop;
+}
+
+} // of namespace simgear
+
+void test()
+{
+  SGPropObjDouble foo("/bar/foo");
+
+  SGPropertyNode* zoob;
+
+  SGPropObjDouble foo2 = SGPropObjDouble::create(zoob, "foo2", 42.0);
+  
+  foo = 1123.0;
+  foo2 =  43;
+  
+  std::string s("lalala");
+  
+  foo = "lalal";
+  
+  
+  SGPropObjString sp(zoob);
+  sp = "fooo";
+  s =  sp;
+  
+
+  SGPropObjBool bp("/some nice big path");
+  bp = false;
+  
+  bp = 456;
+  int i5 = bp;
+}
diff --git a/simgear/props/propertyObject.hxx b/simgear/props/propertyObject.hxx
new file mode 100644 (file)
index 0000000..0067cb5
--- /dev/null
@@ -0,0 +1,173 @@
+// Copyright (C) 2010  James Turner - zakalawe@mac.com
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// 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 GNU
+// Library 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
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+
+#ifndef SG_PROPERTY_OBJECT
+#define SG_PROPERTY_OBJECT
+
+#include <simgear/props/props.hxx>
+#include <simgear/structure/exception.hxx>
+
+namespace simgear
+{
+
+class PropertyObjectBase
+{
+public:
+  static void setDefaultRoot(SGPropertyNode* aRoot);
+  
+  PropertyObjectBase(const char* aChild);
+  
+  PropertyObjectBase(SGPropertyNode* aNode, const char* aChild = NULL);
+  
+  SGPropertyNode* node(bool aCreate) const;
+
+protected:
+  SGPropertyNode* _base;
+  const char* _path;
+  mutable SGPropertyNode* _prop;
+};
+
+template <typename T>
+class PropertyObject : PropertyObjectBase
+{
+public:
+  /**
+   * Create from path relative to the default root, and option default value
+   */
+  PropertyObject(const char* aChild) :
+    PropertyObjectBase(aChild)
+  { }
+  
+  /**
+   * Create from a node, with optional relative path
+   */
+  PropertyObject(SGPropertyNode* aNode, const char* aChild = NULL) :
+    PropertyObjectBase(aNode, aChild)
+  {
+  
+  }
+  
+// create() form creates the property immediately
+  static PropertyObject<T> create(const char* aPath, T aValue)
+  {
+    PropertyObject<T> p(aPath);
+    p = aValue;
+    return p;
+  }
+  
+  static PropertyObject<T> create(SGPropertyNode* aNode, T aValue)
+  {
+    PropertyObject<T> p(aNode);
+    p = aValue;
+    return p;
+  }
+
+  static PropertyObject<T> create(SGPropertyNode* aNode, const char* aChild, T aValue)
+  {
+    PropertyObject<T> p(aNode, aChild);
+    p = aValue;
+    return p;
+  }
+  
+// conversion operators
+  operator T () const
+  {
+    SGPropertyNode* n = node(false);
+    if (!n) {
+      throw sg_exception("read of undefined property:", _path);
+    }
+    
+    return n->getValue<T>();
+  }
+
+  T operator=(const T& aValue)
+  {
+    SGPropertyNode* n = node(true);
+    if (!n) {
+      return aValue;
+    }
+    
+    n->setValue<T>(aValue);
+    return aValue;
+  }
+
+}; // of template PropertyObject
+
+
+// specialization for const char* / std::string
+
+template <>
+class PropertyObject<std::string> : PropertyObjectBase
+{
+public:
+  PropertyObject(const char* aChild) :
+    PropertyObjectBase(aChild)
+  { }
+  
+
+  
+  PropertyObject(SGPropertyNode* aNode, const char* aChild = NULL) :
+    PropertyObjectBase(aNode, aChild)
+  {
+  
+  }
+  
+
+  
+  operator std::string () const
+  {
+    SGPropertyNode* n = node(false);
+    if (!n) {
+      throw sg_exception("read of undefined property:", _path);
+    }
+    
+    return n->getStringValue();
+  }
+  
+  const char* operator=(const char* aValue)
+  {
+    SGPropertyNode* n = node(true);
+    if (!n) {
+      return aValue;
+    }
+    
+    n->setStringValue(aValue);
+    return aValue;
+  }
+  
+  std::string operator=(const std::string& aValue)
+  {
+    SGPropertyNode* n = node(true);
+    if (!n) {
+      return aValue;
+    }
+    
+    n->setStringValue(aValue);
+    return aValue;
+  }
+  
+private:
+};
+
+} // of namespace simgear
+
+typedef simgear::PropertyObject<double> SGPropObjDouble;
+typedef simgear::PropertyObject<bool> SGPropObjBool;
+typedef simgear::PropertyObject<std::string> SGPropObjString;
+typedef simgear::PropertyObject<long> SGPropObjInt;
+
+#endif