/* 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 ARRVISIONPTZ_H #define ARRVISIONPTZ_H #include "ariaTypedefs.h" #include "ArBasePacket.h" #include "ArPTZ.h" #include "ArSerialConnection.h" /// A class for for making commands to send to the RVision camera /** There are only two functioning ways to put things into this packet, * uByteToBuf() and byte2ToBuf; You * MUST use thse, if you use anything else your commands won't work. * @since 2.7.0 */ class ArRVisionPacket: public ArBasePacket { public: /// Constructor AREXPORT ArRVisionPacket(ArTypes::UByte2 bufferSize = 15); AREXPORT virtual ~ArRVisionPacket(); AREXPORT virtual void uByteToBuf(ArTypes::UByte val); AREXPORT virtual void byte2ToBuf(ArTypes::Byte2 val); /// This is a new function, read the details before you try to use it AREXPORT void byte2ToBufAtPos(ArTypes::Byte2 val, ArTypes::UByte2 pose); }; //class ArRobot; /** Control the RVision camera pan tilt zoom unit. In addition to creating an ArRvisionPTZ instance, you will also need to create an ArSerialConnection object and open the serial port connection (the RVision is normally on COM3 on Seekur and Seekur Jr. robots) and use the setDeviceConnection() method to associate the serial connection with the ArRVisionPTZ object. @since 2.7.0 */ class ArRVisionPTZ : public ArPTZ { public: AREXPORT ArRVisionPTZ(ArRobot *robot); AREXPORT virtual ~ArRVisionPTZ(); AREXPORT virtual bool init(void); AREXPORT virtual const char *getTypeName() { return "rvision"; } /// Set serial port /// @since 2.7.6 void setPort(const char *port) { mySerialPort = port; } protected: AREXPORT virtual bool pan_i(double degrees); AREXPORT virtual bool panRel_i(double degrees); AREXPORT virtual bool tilt_i(double degrees); AREXPORT virtual bool tiltRel_i(double degrees); AREXPORT virtual bool panTilt_i(double degreesPan, double degreesTilt); AREXPORT virtual bool panTiltRel_i(double degreesPan, double degreesTilt); public: AREXPORT virtual bool canZoom(void) const { return true; } AREXPORT virtual bool zoom(int zoomValue); AREXPORT virtual bool zoomRel(int zoomValue); protected: AREXPORT virtual double getPan_i(void) const { return myPan; } AREXPORT virtual double getTilt_i(void) const { return myTilt; } public: AREXPORT virtual int getZoom(void) const { return myZoom; } //AREXPORT void getRealPanTilt(void); //AREXPORT void getRealZoomPos(void); /* AREXPORT virtual double getMaxPosPan(void) const { return MAX_PAN; } AREXPORT virtual double getMaxNegPan(void) const { return MIN_PAN; } AREXPORT virtual double getMaxPosTilt(void) const { return MAX_TILT; } AREXPORT virtual double getMaxNegTilt(void) const { return MIN_TILT; } AREXPORT virtual int getMaxZoom(void) const { return MAX_ZOOM; } AREXPORT virtual int getMinZoom(void) const { return MIN_ZOOM; } */ AREXPORT virtual bool canGetRealPanTilt(void) const { return false; } AREXPORT virtual bool canGetRealZoom(void) const { return false; } AREXPORT virtual bool canGetFOV(void) { return true; } /// Gets the field of view at maximum zoom AREXPORT virtual double getFOVAtMaxZoom(void) { return 4.4; } /// Gets the field of view at minimum zoom AREXPORT virtual double getFOVAtMinZoom(void) { return 48.8; } virtual ArBasePacket* readPacket(void); enum { MAX_PAN = 180, ///< maximum degrees the unit can pan (clockwise from top) MIN_PAN = -180, ///< minimum degrees the unit can pan (counterclockwise from top) MIN_TILT = -30, ///< minimum degrees the unit can tilt MAX_TILT = 60, ///< maximum degrees the unit can tilt MIN_ZOOM = 0, ///< minimum value for zoom MAX_ZOOM = 32767, ///< maximum value for zoom TILT_OFFSET_IN_DEGREES = 38, ///< offset value to convert internal camera coords to world PAN_OFFSET_IN_DEGREES = 190 ///< offset value to convert internal camera coords to world }; /// called automatically by Aria::init() ///@since 2.7.6 ///@internal #ifndef SWIG static void registerPTZType(); #endif protected: void initializePackets(void); double myPan; double myTilt; int myZoom; double myDegToTilt; double myDegToPan; double myPanOffsetInDegrees; double myTiltOffsetInDegrees; ArRVisionPacket myPacket; ArRVisionPacket myZoomPacket; ArRVisionPacket myPanTiltPacket; ArRVisionPacket myInquiryPacket; const char *mySerialPort; ///@since 2.7.6 static ArPTZ* create(size_t index, ArPTZParams params, ArArgumentParser *parser, ArRobot *robot); ///@since 2.7.6 static ArPTZConnector::GlobalPTZCreateFunc ourCreateFunc; }; #endif // ARRVISIONPTZ_H