]> git.mxchange.org Git - simgear.git/commitdiff
Move the carrier interactive geometry configuration into the model files.
authorfrohlich <frohlich>
Mon, 22 Jun 2009 18:39:44 +0000 (18:39 +0000)
committerTim Moore <timoore@redhat.com>
Tue, 23 Jun 2009 08:42:42 +0000 (10:42 +0200)
Modified Files:
Makefile.am animation.cxx
Added Files:
SGInteractionAnimation.hxx SGInteractionAnimation.cxx

simgear/scene/model/Makefile.am
simgear/scene/model/SGInteractionAnimation.cxx [new file with mode: 0644]
simgear/scene/model/SGInteractionAnimation.hxx [new file with mode: 0644]
simgear/scene/model/animation.cxx

index 3bf59ff06a66f0e3ab52952a7c8fa2c3e7f28850..77845fe449ee2e7f7a4b6f06864c6402342587c7 100644 (file)
@@ -14,6 +14,7 @@ include_HEADERS = \
        placement.hxx \
        CheckSceneryVisitor.hxx \
        SGClipGroup.hxx \
+       SGInteractionAnimation.hxx \
        SGMaterialAnimation.hxx \
        SGOffsetTransform.hxx \
        SGPagedLOD.hxx \
@@ -34,6 +35,7 @@ libsgmodel_a_SOURCES = \
        shadanim.cxx \
        CheckSceneryVisitor.cxx \
        SGClipGroup.cxx \
+       SGInteractionAnimation.cxx \
        SGMaterialAnimation.cxx \
        SGOffsetTransform.cxx \
        SGPagedLOD.cxx \
diff --git a/simgear/scene/model/SGInteractionAnimation.cxx b/simgear/scene/model/SGInteractionAnimation.cxx
new file mode 100644 (file)
index 0000000..de96c1e
--- /dev/null
@@ -0,0 +1,151 @@
+// Copyright (C) 2004-2007  Vivian Meazza
+// Copyright (C) 2004-2009  Mathias Froehlich - Mathias.Froehlich@web.de
+//
+// 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.
+//
+
+#include "SGInteractionAnimation.hxx"
+
+#include <osg/Geode>
+#include <osg/NodeVisitor>
+#include <osg/TemplatePrimitiveFunctor>
+
+#include <simgear/scene/util/SGSceneUserData.hxx>
+#include <simgear/scene/bvh/BVHGroup.hxx>
+#include <simgear/scene/bvh/BVHLineGeometry.hxx>
+
+class SGInteractionAnimation::LineCollector : public osg::NodeVisitor {
+    struct LinePrimitiveFunctor {
+        LinePrimitiveFunctor() : _lineCollector(0)
+        { }
+        void operator() (const osg::Vec3&, bool)
+        { }
+        void operator() (const osg::Vec3& v1, const osg::Vec3& v2, bool)
+        { if (_lineCollector) _lineCollector->addLine(v1, v2); }
+        void operator() (const osg::Vec3&, const osg::Vec3&, const osg::Vec3&,
+                         bool)
+        { }
+        void operator() (const osg::Vec3&, const osg::Vec3&, const osg::Vec3&,
+                         const osg::Vec3&, bool)
+        { }
+        LineCollector* _lineCollector;
+    };
+    
+public:
+    LineCollector() :
+        osg::NodeVisitor(osg::NodeVisitor::NODE_VISITOR,
+                         osg::NodeVisitor::TRAVERSE_ALL_CHILDREN)
+    { }
+    virtual void apply(osg::Geode& geode)
+    {
+        osg::TemplatePrimitiveFunctor<LinePrimitiveFunctor> pf;
+        pf._lineCollector = this;
+        for (unsigned i = 0; i < geode.getNumDrawables(); ++i) {
+            geode.getDrawable(i)->accept(pf);
+        }
+    }
+    virtual void apply(osg::Node& node)
+    {
+        traverse(node);
+    }
+    virtual void apply(osg::Transform& transform)
+    {
+        osg::Matrix matrix = _matrix;
+        if (transform.computeLocalToWorldMatrix(_matrix, this))
+            traverse(transform);
+        _matrix = matrix;
+    }
+    
+    const std::vector<SGLineSegmentf>& getLineSegments() const
+    { return _lineSegments; }
+    
+    void addLine(const osg::Vec3& v1, const osg::Vec3& v2)
+    {
+        // Trick to get the ends in the right order.
+        // Use the x axis in the original coordinate system. Choose the
+        // most negative x-axis as the one pointing forward
+        SGVec3f tv1(_matrix.preMult(v1));
+        SGVec3f tv2(_matrix.preMult(v2));
+        if (tv1[0] > tv2[0])
+            _lineSegments.push_back(SGLineSegmentf(tv1, tv2));
+        else
+            _lineSegments.push_back(SGLineSegmentf(tv2, tv1));
+    }
+
+    void addBVHElements(osg::Node& node, simgear::BVHLineGeometry::Type type)
+    {
+        if (_lineSegments.empty())
+            return;
+
+        SGSceneUserData* userData;
+        userData = SGSceneUserData::getOrCreateSceneUserData(&node);
+
+        simgear::BVHNode* bvNode = userData->getBVHNode();
+        if (!bvNode && _lineSegments.size() == 1) {
+            simgear::BVHLineGeometry* bvLine;
+            bvLine = new simgear::BVHLineGeometry(_lineSegments.front(), type);
+            userData->setBVHNode(bvLine);
+            return;
+        }
+
+        simgear::BVHGroup* group = new simgear::BVHGroup;
+        if (bvNode)
+            group->addChild(bvNode);
+
+        for (unsigned i = 0; i < _lineSegments.size(); ++i) {
+            simgear::BVHLineGeometry* bvLine;
+            bvLine = new simgear::BVHLineGeometry(_lineSegments[i], type);
+            group->addChild(bvLine);
+        }
+        userData->setBVHNode(group);
+    }
+    
+private:
+    osg::Matrix _matrix;
+    std::vector<SGLineSegmentf> _lineSegments;
+};
+
+SGInteractionAnimation::SGInteractionAnimation(const SGPropertyNode* configNode,
+                                               SGPropertyNode* modelRoot) :
+  SGAnimation(configNode, modelRoot)
+{
+}
+
+void
+SGInteractionAnimation::install(osg::Node& node)
+{
+  SGAnimation::install(node);
+
+  if (!getConfig()->hasChild("type"))
+      return;
+  std::string interactionType;
+  interactionType = getConfig()->getStringValue("interaction-type", "");
+
+  LineCollector lineCollector;
+  node.accept(lineCollector);
+
+  if (interactionType == "carrier-catapult") {
+      lineCollector.addBVHElements(node,
+                                   simgear::BVHLineGeometry::CarrierCatapult);
+  } else if (interactionType == "carrier-wire") {
+      lineCollector.addBVHElements(node,
+                                   simgear::BVHLineGeometry::CarrierWire);
+  } else {
+      SG_LOG(SG_IO, SG_ALERT, "Unknown interaction animation "
+             "interaction-type \"" << interactionType << "\". Ignoring!");
+  }
+}
+
+
diff --git a/simgear/scene/model/SGInteractionAnimation.hxx b/simgear/scene/model/SGInteractionAnimation.hxx
new file mode 100644 (file)
index 0000000..3b3ab6e
--- /dev/null
@@ -0,0 +1,32 @@
+// Copyright (C) 2009  Mathias Froehlich - Mathias.Froehlich@web.de
+//
+// 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_SGINTERACTIONANIMATION_HXX
+#define _SG_SGINTERACTIONANIMATION_HXX 1
+
+#include "animation.hxx"
+
+class SGInteractionAnimation : public SGAnimation {
+public:
+  SGInteractionAnimation(const SGPropertyNode* configNode,
+                         SGPropertyNode* modelRoot);
+  virtual void install(osg::Node& node);
+private:
+  class LineCollector;
+};
+
+#endif
index cb5b0eee586eaac9ef78f0d4e9e2aa1026b789c6..10b1b66d71906aa30865093ed946f1999a40e737 100644 (file)
@@ -46,6 +46,7 @@
 #include "SGMaterialAnimation.hxx"
 #include "SGRotateTransform.hxx"
 #include "SGScaleTransform.hxx"
+#include "SGInteractionAnimation.hxx"
 
 using OpenThreads::Mutex;
 using OpenThreads::ReentrantMutex;
@@ -401,6 +402,9 @@ SGAnimation::animate(osg::Node* node, const SGPropertyNode* configNode,
   } else if (type == "flash") {
     SGFlashAnimation animInst(configNode, modelRoot);
     animInst.apply(node);
+  } else if (type == "interaction") {
+    SGInteractionAnimation animInst(configNode, modelRoot);
+    animInst.apply(node);
   } else if (type == "material") {
     SGMaterialAnimation animInst(configNode, modelRoot, options);
     animInst.apply(node);