Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

robot/ToolDescription

Go to the documentation of this file.
00001 /* **-*-c++-*-**************************************************************
00002   Copyright (C)2003 David Jung <opensim@pobox.com>
00003 
00004   This program/file is free software; you can redistribute it and/or modify
00005   it under the terms of the GNU General Public License as published by
00006   the Free Software Foundation; either version 2 of the License, or
00007   (at your option) any later version.
00008         
00009   This program is distributed in the hope that it will be useful,
00010   but WITHOUT ANY WARRANTY; without even the implied warranty of
00011   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012   GNU General Public License for more details. (http://www.gnu.org)
00013         
00014   You should have received a copy of the GNU General Public License
00015   along with this program; if not, write to the Free Software
00016   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00017 
00018   $Id: ToolDescription 1039 2004-02-11 20:50:52Z jungd $
00019   $Revision: 1.5 $
00020   $Date: 2004-02-11 15:50:52 -0500 (Wed, 11 Feb 2004) $
00021   $Author: jungd $
00022  
00023 ****************************************************************************/
00024 
00025 #ifndef _ROBOT_TOOLDESCRIPTION_
00026 #define _ROBOT_TOOLDESCRIPTION_
00027 
00028 #include <robot/robot>
00029 
00030 #include <base/Named>
00031 #include <base/ReferencedObject>
00032 #include <base/Externalizable>
00033 #include <robot/KinematicChain>
00034 
00035 
00036 namespace robot {
00037 
00038 /**
00039  * An abstract description of a Tool
00040  */
00041 class ToolDescription : public base::Named, public base::Externalizable, public base::ReferencedObject
00042 {
00043 public:
00044   ToolDescription() {}
00045   ToolDescription(const ToolDescription& t) 
00046     : Named(t), kinematicChain(t.kinematicChain) {}
00047 
00048   virtual String className() const { return String("ToolDescription"); }
00049 
00050   ToolDescription& operator=(const ToolDescription& t)
00051     { setName( t.getName() ); kinematicChain=t.kinematicChain; return *this; }
00052 
00053   /**
00054    * get a kinematic chain that describes this tool.
00055    * The first link of a tool is static (0-dof).  For example, a simple extension
00056    *  tool consists of a single static link, thus has 0-dof.
00057    *  In general, tools can have an arbitrary number of links, possibly with
00058    *   joints, analogous to a manipulator.
00059    */
00060   virtual KinematicChain getKinematicChain(Int p=0) const
00061     { return kinematicChain; }
00062 
00063 
00064   bool operator==(const ToolDescription& td) const
00065     {
00066       if (&td == this) return true;
00067       return (kinematicChain==td.kinematicChain);
00068     }
00069 
00070   bool operator!=(const ToolDescription& td) const { return !(*this == td); }
00071   
00072   bool equals(ref<const ToolDescription> td) const { return (*this == *td); }
00073 
00074 
00075   // Externalizable
00076   virtual bool formatSupported(const String format, Real version = 1.0, ExternalizationType type = IO) const
00077     { return ( (format=="xml") && (version==1.0) ); }
00078   virtual void externalize(base::Externalizer& e, String format = "", Real version = 1.0);
00079   void externalize(base::Externalizer& e, String format = "", Real version = 1.0) const
00080     { Externalizable::externalize(e,format,version); }
00081 
00082 protected:
00083   ToolDescription(const String& name) : Named(name) {}
00084   
00085   virtual void setKinematicChain(const KinematicChain& kc) { kinematicChain=kc; }
00086 
00087 private:
00088   KinematicChain kinematicChain;
00089 
00090   friend class Robot;
00091 };
00092 
00093 
00094 } // robot
00095 
00096 #endif

Generated on Thu Jul 29 15:56:44 2004 for OpenSim by doxygen 1.3.6