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

ArActionRatioInput.h

00001 /*
00002 MobileRobots Advanced Robotics Interface for Applications (ARIA)
00003 Copyright (C) 2004, 2005 ActivMedia Robotics LLC
00004 Copyright (C) 2006, 2007 MobileRobots Inc.
00005 
00006      This program is free software; you can redistribute it and/or modify
00007      it under the terms of the GNU General Public License as published by
00008      the Free Software Foundation; either version 2 of the License, or
00009      (at your option) any later version.
00010 
00011      This program is distributed in the hope that it will be useful,
00012      but WITHOUT ANY WARRANTY; without even the implied warranty of
00013      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014      GNU General Public License for more details.
00015 
00016      You should have received a copy of the GNU General Public License
00017      along with this program; if not, write to the Free Software
00018      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00019 
00020 If you wish to redistribute ARIA under different terms, contact 
00021 MobileRobots for information about a commercial version of ARIA at 
00022 robots@mobilerobots.com or 
00023 MobileRobots Inc, 19 Columbia Drive, Amherst, NH 03031; 800-639-9481
00024 */
00025 
00026 #ifndef ARACTIONRATIOINPUT_H
00027 #define ARACTIONRATIOINPUT_H
00028 
00029 #include "ariaTypedefs.h"
00030 #include "ArAction.h"
00031 
00033 
00059 class ArActionRatioInput : public ArAction
00060 {
00061 public:
00063   AREXPORT ArActionRatioInput(const char *name = "RatioInput");
00065   AREXPORT virtual ~ArActionRatioInput();
00067   AREXPORT void setRatios(double transRatio, double rotRatio, 
00068               double throttleRatio);
00070   AREXPORT void setTransRatio(double transRatio);
00072   AREXPORT void setRotRatio(double rotRatio);
00074   AREXPORT void setThrottleRatio(double throttleRatio);
00076   double getTransRatio(void) { return myTransRatio; }
00078   double getRotRatio(void) { return myRotRatio; }
00080   double getThrottleRatio(void) { return myThrottleRatio; }
00082   AREXPORT void addFireCallback(int priority, ArFunctor *functor);
00084   AREXPORT void remFireCallback(ArFunctor *functor);
00086   AREXPORT void addActivateCallback(ArFunctor *functor, 
00087                     ArListPos::Pos position = ArListPos::LAST);
00089   AREXPORT void remActivateCallback(ArFunctor *functor);
00091   AREXPORT void addDeactivateCallback(ArFunctor *functor, 
00092                   ArListPos::Pos position = ArListPos::LAST);
00094   AREXPORT void remDeactivateCallback(ArFunctor *functor);
00096   AREXPORT void setParameters(double fullThrottleForwards, 
00097                   double fullThrottleBackwards, 
00098                   double rotAtFullForwards,
00099                   double rotAtFullBackwards,
00100                   double rotAtStopped);
00102   AREXPORT void addToConfig(ArConfig *config, const char *section);
00103   AREXPORT virtual ArActionDesired *fire(ArActionDesired currentDesired);
00104   AREXPORT virtual ArActionDesired *getDesired(void) { return &myDesired; }
00105 #ifndef SWIG
00106   AREXPORT virtual const ArActionDesired *getDesired(void) const 
00107                                                         { return &myDesired; }
00108 #endif
00109   AREXPORT virtual void activate(void);
00110   AREXPORT virtual void deactivate(void);
00111 protected:
00112   std::multimap<int, ArFunctor *> myFireCallbacks;
00113   std::list<ArFunctor *> myActivateCallbacks;
00114   std::list<ArFunctor *> myDeactivateCallbacks;
00115   // if we're printing extra information or not
00116   bool myPrinting;
00117   double myTransDeadZone;
00118   double myRotDeadZone;
00119   double myFullThrottleForwards;
00120   double myFullThrottleBackwards; 
00121   double myRotAtFullForwards;
00122   double myRotAtFullBackwards;
00123   double myRotAtStopped;
00124   double myTransRatio;
00125   double myRotRatio;
00126   double myThrottleRatio;
00127   ArActionDesired myDesired;
00128 };
00129 
00130 #endif // ARACTIONSTOP_H

Generated on Tue Feb 20 10:51:38 2007 for Aria by  doxygen 1.4.0