$search
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 <wx/wx.h> 00044 00045 #define PI 3.14159265 00046 00047 namespace turtlesim 00048 { 00049 00050 struct Vector2 00051 { 00052 Vector2() 00053 : x(0.0) 00054 , y(0.0) 00055 {} 00056 00057 Vector2(float _x, float _y) 00058 : x(_x) 00059 , y(_y) 00060 {} 00061 00062 bool operator==(const Vector2& rhs) 00063 { 00064 return x == rhs.x && y == rhs.y; 00065 } 00066 00067 bool operator!=(const Vector2& rhs) 00068 { 00069 return x != rhs.x || y != rhs.y; 00070 } 00071 00072 float x; 00073 float y; 00074 }; 00075 00076 class Turtle 00077 { 00078 public: 00079 Turtle(const ros::NodeHandle& nh, const wxImage& turtle_image, const Vector2& pos, float orient); 00080 00081 void update(double dt, wxMemoryDC& path_dc, const wxImage& path_image, wxColour background_color, float canvas_width, float canvas_height); 00082 void paint(wxDC& dc); 00083 private: 00084 void velocityCallback(const VelocityConstPtr& vel); 00085 bool setPenCallback(turtlesim::SetPen::Request&, turtlesim::SetPen::Response&); 00086 bool teleportRelativeCallback(turtlesim::TeleportRelative::Request&, turtlesim::TeleportRelative::Response&); 00087 bool teleportAbsoluteCallback(turtlesim::TeleportAbsolute::Request&, turtlesim::TeleportAbsolute::Response&); 00088 00089 ros::NodeHandle nh_; 00090 00091 wxImage turtle_image_; 00092 wxBitmap turtle_; 00093 00094 Vector2 pos_; 00095 float orient_; 00096 00097 float lin_vel_; 00098 float ang_vel_; 00099 bool pen_on_; 00100 wxPen pen_; 00101 00102 ros::Subscriber velocity_sub_; 00103 ros::Publisher pose_pub_; 00104 ros::Publisher color_pub_; 00105 ros::ServiceServer set_pen_srv_; 00106 ros::ServiceServer teleport_relative_srv_; 00107 ros::ServiceServer teleport_absolute_srv_; 00108 00109 ros::WallTime last_command_time_; 00110 00111 float meter_; 00112 00113 struct TeleportRequest 00114 { 00115 TeleportRequest(float x, float y, float _theta, float _linear, bool _relative) 00116 : pos(x, y) 00117 , theta(_theta) 00118 , linear(_linear) 00119 , relative(_relative) 00120 {} 00121 00122 Vector2 pos; 00123 float theta; 00124 float linear; 00125 bool relative; 00126 }; 00127 typedef std::vector<TeleportRequest> V_TeleportRequest; 00128 V_TeleportRequest teleport_requests_; 00129 }; 00130 typedef boost::shared_ptr<Turtle> TurtlePtr; 00131 00132 } 00133 00134 #endif