schlangeservo2.h

Go to the documentation of this file.
00001 /************************************************************************/ 00002 /*schlangeservo.h */ 00003 /*Snake with PID Servo motors (just motor per joint) */ 00004 /*@author Georg Martius */ 00005 /* */ 00006 /************************************************************************/ 00007 /*************************************************************************** 00008 * Copyright (C) 2005 by Robot Group Leipzig * 00009 * martius@informatik.uni-leipzig.de * 00010 * fhesse@informatik.uni-leipzig.de * 00011 * der@informatik.uni-leipzig.de * 00012 * * 00013 * This program is free software; you can redistribute it and/or modify * 00014 * it under the terms of the GNU General Public License as published by * 00015 * the Free Software Foundation; either version 2 of the License, or * 00016 * (at your option) any later version. * 00017 * * 00018 * This program is distributed in the hope that it will be useful, * 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00021 * GNU General Public License for more details. * 00022 * * 00023 * You should have received a copy of the GNU General Public License * 00024 * along with this program; if not, write to the * 00025 * Free Software Foundation, Inc., * 00026 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00027 * * 00028 * $Log: schlangeservo2.h,v $ 00029 * Revision 1.4 2006/09/20 12:56:17 martius 00030 * Snakes have CreateSegment 00031 * 00032 * Revision 1.3 2006/07/20 17:19:44 martius 00033 * removed using namespace std from matrix.h 00034 * 00035 * Revision 1.2 2006/07/14 12:23:41 martius 00036 * selforg becomes HEAD 00037 * 00038 * Revision 1.1.2.3 2006/06/25 16:57:16 martius 00039 * abstractrobot is configureable 00040 * name and revision 00041 * 00042 * Revision 1.1.2.2 2006/03/30 12:34:56 martius 00043 * documentation updated 00044 * 00045 * Revision 1.1.2.1 2006/02/01 18:33:40 martius 00046 * use Axis type for Joint axis. very important, since otherwise Vec3 * pose is not the right direction vector anymore 00047 * 00048 * * 00049 ***************************************************************************/ 00050 #ifndef __SCHLANGESERVO2_H 00051 #define __SCHLANGESERVO2_H 00052 00053 00054 #include "schlange.h" 00055 #include "universalservo.h" 00056 00057 namespace lpzrobots { 00058 00059 /** 00060 * This is a class, which models a snake like robot. 00061 * It consists of a number of equal elements, each linked 00062 * by a joint powered by 2 servos 00063 **/ 00064 class SchlangeServo2: public Schlange 00065 { 00066 private: 00067 std::vector <UniversalServo*> servos; 00068 00069 public: 00070 SchlangeServo2 ( const OdeHandle& odeHandle, const OsgHandle& osgHandle, 00071 const SchlangeConf& conf, 00072 const std::string& name, 00073 const std::string& revision = "" ); 00074 00075 virtual ~SchlangeServo2(); 00076 00077 /** 00078 *Reads the actual motor commands from an array, 00079 *an sets all motors of the snake to this values. 00080 *It is an linear allocation. 00081 *@param motors pointer to the array, motor values are scaled to [-1,1] 00082 *@param motornumber length of the motor array 00083 **/ 00084 virtual void setMotors ( const motor* motors, int motornumber ); 00085 00086 /** 00087 *Writes the sensor values to an array in the memory. 00088 *@param sensors pointer to the array 00089 *@param sensornumber length of the sensor array 00090 *@return number of actually written sensors 00091 **/ 00092 virtual int getSensors ( sensor* sensors, int sensornumber ); 00093 00094 /** returns number of sensors 00095 */ 00096 virtual int getSensorNumber() { assert(created); return 2*servos.size(); } 00097 00098 /** returns number of motors 00099 */ 00100 virtual int getMotorNumber(){ assert(created); return 2*servos.size(); } 00101 00102 virtual bool setParam(const paramkey& key, paramval val); 00103 00104 private: 00105 virtual void create(const osg::Matrix& pose); 00106 virtual void destroy(); 00107 }; 00108 00109 } 00110 00111 #endif

Generated on Tue Jan 16 02:14:37 2007 for Robotsystem of the Robot Group Leipzig by doxygen 1.3.8