/usr/include/Aria/ArActionGroups.h is in libaria-dev 2.8.0+repack-1.2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | /*
Adept MobileRobots Robotics Interface for Applications (ARIA)
Copyright (C) 2004, 2005 ActivMedia Robotics LLC
Copyright (C) 2006, 2007, 2008, 2009, 2010 MobileRobots Inc.
Copyright (C) 2011, 2012, 2013 Adept Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
If you wish to redistribute ARIA under different terms, contact
Adept MobileRobots for information about a commercial version of ARIA at
robots@mobilerobots.com or
Adept MobileRobots, 10 Columbia Drive, Amherst, NH 03031; +1-603-881-7960
*/
#ifndef ARACTIONGROUPS_H
#define ARACTIONGROUPS_H
#include "ariaTypedefs.h"
#include "ArActionGroup.h"
#include "ArActionColorFollow.h"
#include "ArACTS.h"
#include "ArPTZ.h"
class ArActionStop;
class ArActionInput;
class ArActionJoydrive;
class ArActionDeceleratingLimiter;
class ArActionRatioInput;
class ArRatioInputKeydrive;
class ArRatioInputJoydrive;
class ArRatioInputRobotJoydrive;
/// Action group to use to drive the robot with input actions (keyboard, joystick, etc.)
/**
This class is just useful for teleoping the robot under your own
joystick and keyboard control... Note that you the predefined
ArActionGroups in ARIA are made only to be used exclusively... only
one can be active at once.
This class is largely now obsolete (it is used by ArServerModeDrive
but that is now obsolete and was replaced by a class that just
makes its own action group)
ArActionGroupRatioDrive is better.
**/
class ArActionGroupInput : public ArActionGroup
{
public:
AREXPORT ArActionGroupInput(ArRobot *robot);
AREXPORT virtual ~ArActionGroupInput();
AREXPORT void setVel(double vel);
AREXPORT void setRotVel(double rotVel);
AREXPORT void setHeading(double heading);
AREXPORT void deltaHeadingFromCurrent(double delta);
AREXPORT void clear(void);
AREXPORT ArActionInput *getActionInput(void);
protected:
ArActionInput *myInput;
};
/// Action group to stop the robot
/**
This class is just useful for having the robot stopped... Note that
you the predefined ArActionGroups in ARIA are made only to be used
exclusively... they won't combine.
**/
class ArActionGroupStop : public ArActionGroup
{
public:
AREXPORT ArActionGroupStop(ArRobot *robot);
AREXPORT virtual ~ArActionGroupStop();
AREXPORT ArActionStop *getActionStop(void);
public:
ArActionStop *myActionStop;
};
/// Action group to teleopoperate the robot using ArActionJoydrive, and the Limiter actions to avoid collisions.
/**
This class is just useful for teleoping the robot and having these
actions read the joystick and keyboard... Note that you the
predefined ArActionGroups in ARIA are made only to be used
exclusively... only one can be active at once.
**/
class ArActionGroupTeleop : public ArActionGroup
{
public:
AREXPORT ArActionGroupTeleop(ArRobot *robot);
AREXPORT virtual ~ArActionGroupTeleop();
AREXPORT void setThrottleParams(int lowSpeed, int highSpeed);
protected:
ArActionJoydrive *myJoydrive;
};
/// Action group to teleoperate the robot using ArActionJoydrive, but without any Limiter actions to avoid collisions.
/**
This class is just useful for teleoping the robot in an unguarded
and unsafe manner and having these actions read the joystick and
keyboard... Note that you the predefined ArActionGroups in ARIA are
made only to be used exclusively... only one can be active at once.
**/
class ArActionGroupUnguardedTeleop : public ArActionGroup
{
public:
AREXPORT ArActionGroupUnguardedTeleop(ArRobot *robot);
AREXPORT virtual ~ArActionGroupUnguardedTeleop();
AREXPORT void setThrottleParams(int lowSpeed, int highSpeed);
protected:
ArActionJoydrive *myJoydrive;
};
/// Action group to make the robot wander, avoiding obstacles.
/**
This class is useful for having the robot wander... Note that
you the predefined ArActionGroups in ARIA are made only to be used
exclusively... only one can be active at once.
**/
class ArActionGroupWander : public ArActionGroup
{
public:
AREXPORT ArActionGroupWander(ArRobot *robot, int forwardVel = 400, int avoidFrontDist = 450, int avoidVel = 200, int avoidTurnAmt = 15);
AREXPORT virtual ~ArActionGroupWander();
};
/// Follows a blob of color
/**
This class has the robot follow a blob of color... Note that you the
predefined ArActionGroups in ARIA are made only to be used
exclusively... only one can be active at once.
**/
class ArActionGroupColorFollow : public ArActionGroup
{
public:
AREXPORT ArActionGroupColorFollow(ArRobot *robot, ArACTS_1_2 *acts, ArPTZ *camera);
AREXPORT virtual ~ArActionGroupColorFollow();
AREXPORT void setCamera(ArPTZ *camera);
AREXPORT void setChannel(int channel);
AREXPORT void startMovement();
AREXPORT void stopMovement();
AREXPORT void setAcquire(bool acquire);
AREXPORT int getChannel();
AREXPORT bool getAcquire();
AREXPORT bool getMovement();
AREXPORT bool getBlob();
protected:
ArActionColorFollow *myColorFollow;
};
/// Use keyboard and joystick input to to drive the robot, with Limiter actions to avoid obstacles.
/**
This class is just useful for teleoping the robot under your own
joystick and keyboard control... Note that you the predefined
ArActionGroups in ARIA are made only to be used exclusively (one at
a time)... only one can be active at once.
**/
class ArActionGroupRatioDrive : public ArActionGroup
{
public:
AREXPORT ArActionGroupRatioDrive(ArRobot *robot);
AREXPORT virtual ~ArActionGroupRatioDrive();
AREXPORT ArActionRatioInput *getActionRatioInput(void);
AREXPORT void addToConfig(ArConfig *config, const char *section);
protected:
ArActionDeceleratingLimiter *myDeceleratingLimiterForward;
ArActionDeceleratingLimiter *myDeceleratingLimiterBackward;
ArActionDeceleratingLimiter *myDeceleratingLimiterLateralLeft;
ArActionDeceleratingLimiter *myDeceleratingLimiterLateralRight;
ArActionRatioInput *myInput;
ArRatioInputKeydrive *myKeydrive;
ArRatioInputJoydrive *myJoydrive;
ArRatioInputRobotJoydrive *myRobotJoydrive;
};
/// Use keyboard and joystick input to to drive the robot, but without Limiter actions to avoid obstacles.
/**
This class is just useful for teleoping the robot under your own
joystick and keyboard control... Note that you the predefined
ArActionGroups in ARIA are made only to be used exclusively (one at
a time)... only one can be active at once.
**/
class ArActionGroupRatioDriveUnsafe : public ArActionGroup
{
public:
AREXPORT ArActionGroupRatioDriveUnsafe(ArRobot *robot);
AREXPORT virtual ~ArActionGroupRatioDriveUnsafe();
AREXPORT ArActionRatioInput *getActionRatioInput(void);
AREXPORT void addToConfig(ArConfig *config, const char *section);
protected:
ArActionRatioInput *myInput;
ArRatioInputKeydrive *myKeydrive;
ArRatioInputJoydrive *myJoydrive;
ArRatioInputRobotJoydrive *myRobotJoydrive;
};
#endif // ARACTIONGROUPS_H
|