Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / scoutsim / src / scout.h @ e3f69e61

History | View | Annotate | Download (5.18 KB)

1
/**
2
 * The code in this package was developed using the structure of Willow
3
 * Garage's turtlesim package.  It was modified by the CMU Robotics Club
4
 * to be used as a simulator for the Colony Scout robot.
5
 *
6
 * All redistribution of this code is limited to the terms of Willow Garage's
7
 * licensing terms, as well as under permission from the CMU Robotics Club.
8
 * 
9
 * Copyright (c) 2011 Colony Project
10
 * 
11
 * Permission is hereby granted, free of charge, to any person
12
 * obtaining a copy of this software and associated documentation
13
 * files (the "Software"), to deal in the Software without
14
 * restriction, including without limitation the rights to use,
15
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
16
 * copies of the Software, and to permit persons to whom the
17
 * Software is furnished to do so, subject to the following
18
 * conditions:
19
 * 
20
 * The above copyright notice and this permission notice shall be
21
 * included in all copies or substantial portions of the Software.
22
 * 
23
 * Copyright (c) 2009, Willow Garage, Inc.
24
 * All rights reserved.
25
 * 
26
 * Redistribution and use in source and binary forms, with or without
27
 * modification, are permitted provided that the following conditions are met:
28
 * 
29
 *    Redistributions of source code must retain the above copyright
30
 *       notice, this list of conditions and the following disclaimer.
31
 *    Redistributions in binary form must reproduce the above copyright
32
 *       notice, this list of conditions and the following disclaimer in the
33
 *       documentation and/or other materials provided with the distribution.
34
 *    Neither the name of the Willow Garage, Inc. nor the names of its
35
 *       contributors may be used to endorse or promote products derived from
36
 *       this software without specific prior written permission.
37
 * 
38
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
40
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
41
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
42
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
43
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
44
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
45
 * OTHER DEALINGS IN THE SOFTWARE.
46
 */
47

    
48
#ifndef _SCOUTSIM_SCOUT_H_
49
#define _SCOUTSIM_SCOUT_H_
50

    
51
#include <ros/ros.h>
52
#include <boost/shared_ptr.hpp>
53

    
54
#include <motors/set_motors.h>
55
#include <encoders/query_encoders.h>
56

    
57
#include <scoutsim/Pose.h>
58
#include <scoutsim/SetPen.h>
59
#include <scoutsim/Color.h>
60

    
61
#include <geometry_msgs/Pose2D.h>
62

    
63
#include <wx/wx.h>
64

    
65
#include "scoutsim_internal.h"
66

    
67
//#include "scout_constants.h"
68

    
69
#define PI 3.14159265
70

    
71
/// The scale factor so the speed of scout robots is reasonable for the sim
72
#define SPEED_SCALE_FACTOR 0.05
73

    
74
namespace scoutsim
75
{
76
    struct Vector2
77
    {
78
        Vector2()
79
            : x(0.0)
80
              , y(0.0)
81
        {}
82

    
83
        Vector2(float new_x, float new_y)
84
            : x(new_x)
85
              , y(new_y)
86
        {}
87

    
88
        bool operator==(const Vector2& rhs)
89
        {
90
            return x == rhs.x && y == rhs.y;
91
        }
92

    
93
        bool operator!=(const Vector2& rhs)
94
        {
95
            return x != rhs.x || y != rhs.y;
96
        }
97

    
98
        float x;
99
        float y;
100
    };
101

    
102
    class Scout
103
    {
104
        public:
105
            Scout(const ros::NodeHandle& nh, const wxImage& scout_image,
106
                  const Vector2& pos, float orient);
107

    
108
            geometry_msgs::Pose2D update(double dt, wxMemoryDC& path_dc,
109
                                         const wxImage& path_image,
110
                                         wxColour background_color,
111
                                         world_state state);
112
            void paint(wxDC& dc);
113

    
114
        private:
115
            void setMotors(const motors::set_motors::ConstPtr& msg);
116
            float getSonar(float angle);
117
            bool setPenCallback(scoutsim::SetPen::Request&,
118
                                scoutsim::SetPen::Response&);
119
            bool query_encoders_callback(encoders::query_encoders::Request&,
120
                                         encoders::query_encoders::Response&);
121

    
122
            ros::NodeHandle node;
123

    
124
            wxImage scout_image;
125
            wxBitmap scout;
126

    
127
            Vector2 pos;
128
            float orient;
129

    
130
            /// @todo should these be an array or something?
131

    
132
            // Keep track of the last commanded speeds sent to the sim
133
            int motor_fl_speed;
134
            int motor_fr_speed;
135
            int motor_bl_speed;
136
            int motor_br_speed;
137

    
138
            // Keep track of encoder ticks for each motor
139
            unsigned int fl_ticks;
140
            unsigned int fr_ticks;
141
            unsigned int bl_ticks;
142
            unsigned int br_ticks;
143

    
144
            // Each scout has a unique id number, which is also displayed on its image.
145
            int scout_id;
146

    
147
            bool pen_on;
148
            wxPen pen;
149

    
150
            ros::Subscriber motors_sub;
151
            ros::Publisher pose_pub;
152
            ros::Publisher color_pub;
153
            ros::ServiceServer set_pen_srv;
154
            ros::ServiceServer query_encoders_srv;
155

    
156
            ros::WallTime last_command_time;
157

    
158
            float meter;
159

    
160
    };
161
    typedef boost::shared_ptr<Scout> ScoutPtr;
162

    
163
}
164

    
165
#endif