turtle.h
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2009, Willow Garage, Inc.
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions are met:
00007  *
00008  *     * Redistributions of source code must retain the above copyright
00009  *       notice, this list of conditions and the following disclaimer.
00010  *     * Redistributions in binary form must reproduce the above copyright
00011  *       notice, this list of conditions and the following disclaimer in the
00012  *       documentation and/or other materials provided with the distribution.
00013  *     * Neither the name of the Willow Garage, Inc. nor the names of its
00014  *       contributors may be used to endorse or promote products derived from
00015  *       this software without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00027  * POSSIBILITY OF SUCH DAMAGE.
00028  */
00029 
00030 #ifndef TURTLESIM_TURTLE_H
00031 #define TURTLESIM_TURTLE_H
00032 
00033 #include <ros/ros.h>
00034 #include <boost/shared_ptr.hpp>
00035 
00036 #include <turtlesim/Pose.h>
00037 #include <turtlesim/Velocity.h>
00038 #include <turtlesim/SetPen.h>
00039 #include <turtlesim/TeleportRelative.h>
00040 #include <turtlesim/TeleportAbsolute.h>
00041 #include <turtlesim/Color.h>
00042 
00043 #include <QImage>
00044 #include <QPainter>
00045 #include <QPen>
00046 #include <QPointF>
00047 
00048 #define PI 3.14159265
00049 
00050 namespace turtlesim
00051 {
00052 
00053 class Turtle
00054 {
00055 public:
00056   Turtle(const ros::NodeHandle& nh, const QImage& turtle_image, const QPointF& pos, float orient);
00057 
00058   bool update(double dt, QPainter& path_painter, const QImage& path_image, qreal canvas_width, qreal canvas_height);
00059   void paint(QPainter &painter);
00060 private:
00061   void velocityCallback(const VelocityConstPtr& vel);
00062   bool setPenCallback(turtlesim::SetPen::Request&, turtlesim::SetPen::Response&);
00063   bool teleportRelativeCallback(turtlesim::TeleportRelative::Request&, turtlesim::TeleportRelative::Response&);
00064   bool teleportAbsoluteCallback(turtlesim::TeleportAbsolute::Request&, turtlesim::TeleportAbsolute::Response&);
00065 
00066   void rotateImage();
00067 
00068   ros::NodeHandle nh_;
00069 
00070   QImage turtle_image_;
00071   QImage turtle_rotated_image_;
00072 
00073   QPointF pos_;
00074   qreal orient_;
00075 
00076   qreal lin_vel_;
00077   qreal ang_vel_;
00078   bool pen_on_;
00079   QPen pen_;
00080 
00081   ros::Subscriber velocity_sub_;
00082   ros::Publisher pose_pub_;
00083   ros::Publisher color_pub_;
00084   ros::ServiceServer set_pen_srv_;
00085   ros::ServiceServer teleport_relative_srv_;
00086   ros::ServiceServer teleport_absolute_srv_;
00087 
00088   ros::WallTime last_command_time_;
00089 
00090   float meter_;
00091 
00092   struct TeleportRequest
00093   {
00094     TeleportRequest(float x, float y, qreal _theta, qreal _linear, bool _relative)
00095     : pos(x, y)
00096     , theta(_theta)
00097     , linear(_linear)
00098     , relative(_relative)
00099     {}
00100 
00101     QPointF pos;
00102     qreal theta;
00103     qreal linear;
00104     bool relative;
00105   };
00106   typedef std::vector<TeleportRequest> V_TeleportRequest;
00107   V_TeleportRequest teleport_requests_;
00108 };
00109 typedef boost::shared_ptr<Turtle> TurtlePtr;
00110 
00111 }
00112 
00113 #endif


turtlesim
Author(s): Josh Faust
autogenerated on Sat Dec 28 2013 17:34:16