Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / scoutsim / src / scout.h @ 71ae6e3f

History | View | Annotate | Download (7.82 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 <vector>
53
#include <boost/shared_ptr.hpp>
54

    
55
#include <messages/set_motors.h>
56
#include <messages/query_encoders.h>
57
#include <messages/query_linesensor.h>
58
#include <messages/sonar_distance.h>
59
#include <messages/sonar_toggle.h>
60
#include <messages/sonar_set_scan.h>
61

    
62
#include <scoutsim/Pose.h>
63
#include <scoutsim/SetPen.h>
64
#include <scoutsim/Color.h>
65
#include <scoutsim/BOM.h>
66

    
67
#include <geometry_msgs/Pose2D.h>
68

    
69
#include <wx/wx.h>
70

    
71
#include "scoutsim_internal.h"
72
#include "scout_constants.h"
73

    
74
#define PI 3.14159265
75

    
76
#define NUM_LINESENSORS 8
77

    
78
// Distance, pixels, from center of robot to the linesensors.
79
#define LNSNSR_D 20
80

    
81
namespace scoutsim
82
{
83
    struct Vector2
84
    {
85
        Vector2()
86
            : x(0.0)
87
              , y(0.0)
88
        {}
89

    
90
        Vector2(float new_x, float new_y)
91
            : x(new_x)
92
              , y(new_y)
93
        {}
94

    
95
        bool operator==(const Vector2& rhs)
96
        {
97
            return x == rhs.x && y == rhs.y;
98
        }
99

    
100
        bool operator!=(const Vector2& rhs)
101
        {
102
            return x != rhs.x || y != rhs.y;
103
        }
104

    
105
        float x;
106
        float y;
107
    };
108

    
109
    class Scout
110
    {
111
        public:
112
            Scout(const ros::NodeHandle& nh,const wxImage& scout_image,
113
                  const Vector2& pos, wxBitmap *path_bitmap, float orient);
114

    
115
            geometry_msgs::Pose2D update(double dt, wxMemoryDC& path_dc,
116
                                         wxMemoryDC& sonar_dc,
117
                                         const wxImage& path_image,
118
                                         const wxImage& lines_image,
119
                                         const wxImage& walls_image,
120
                                         wxColour background_color,
121
                                         wxColour sonar_color,
122
                                         world_state state);
123
            void paint(wxDC& dc);
124
            void set_sonar_visual(bool on);
125
            void update_BOM(int bom_index,bool bom_value);
126

    
127
        private:
128
            float absolute_to_mps(int absolute_speed);
129
            void setMotors(const messages::set_motors::ConstPtr& msg);
130
            bool setPenCallback(scoutsim::SetPen::Request&,
131
                                scoutsim::SetPen::Response&);
132
            bool query_encoders_callback(messages::query_encoders::Request&,
133
                                     messages::query_encoders::Response&);
134
            bool query_linesensor_callback(messages::query_linesensor::Request&,
135
                                     messages::query_linesensor::Response&);
136
            bool handle_sonar_toggle(messages::sonar_toggle::Request  &req,
137
                                     messages::sonar_toggle::Response &res);
138
            bool handle_sonar_set_scan(messages::sonar_set_scan::Request  &req,
139
                                     messages::sonar_set_scan::Response &res);
140
            unsigned int rgb_to_grey(unsigned char r,
141
                                     unsigned char g,
142
                                     unsigned char b);
143
            unsigned int trace_sonar(const wxImage& walls_image, int x, int y,
144
                                     double robot_theta, int sonar_pos,
145
                                     wxMemoryDC& sonar_dc);
146

    
147
            void update_sonar(const wxImage& walls_image, int x, int y,
148
                              double robot_theta, wxMemoryDC& sonar_dc);
149
            void update_linesensor(const wxImage& lines_image, int x, int y,
150
                                   double theta);
151
            int old_front_dx;
152
            int old_front_dy;
153
            int old_back_dx;
154
            int old_back_dy;
155
            bool isFront;
156
            
157
            int teleop_latch;
158

    
159
                wxBitmap *path_bitmap;
160
                bool sonar_visual_on;
161
            bool sonar_on;
162
            bool ignore_behavior;
163
            
164
            //std::string current_teleop_scout;
165

    
166
            ros::NodeHandle node;
167

    
168
            wxImage scout_image;
169
            wxBitmap scout;
170

    
171
            Vector2 pos;
172
            float orient;
173

    
174
            /// @todo should these be an array or something?
175

    
176
            // Keep track of the last commanded speeds sent to the sim,
177
            // converted to m/s
178
            float motor_fl_speed;
179
            float motor_fr_speed;
180
            float motor_bl_speed;
181
            float motor_br_speed;
182

    
183
            // Keep track of encoder ticks for each motor
184
            unsigned int fl_ticks;
185
            unsigned int fr_ticks;
186
            unsigned int bl_ticks;
187
            unsigned int br_ticks;
188

    
189
            int sonar_position;
190
            int sonar_stop_l;
191
            int sonar_stop_r;
192
            int sonar_direction;
193

    
194
            // The last time the sonar changed its position.
195
            ros::Time last_sonar_time;
196
            ros::Duration sonar_tick_time;
197

    
198
            // A vector of the 8 linesensor readings
199
            std::vector<unsigned int> linesensor_readings;
200

    
201
            // Each scout has a unique id number, which is also displayed on its image.
202
            int scout_id;
203

    
204
            bool pen_on;
205
            wxPen pen;
206

    
207
            ros::Subscriber motors_sub;
208
            ros::Publisher pose_pub;
209
            ros::Publisher color_pub;
210
            ros::Publisher sonar_pub;
211
            ros::Publisher bom_pub;
212
            ros::ServiceServer set_pen_srv;
213
            ros::ServiceServer query_encoders_srv;
214
            ros::ServiceServer query_linesensor_srv;
215
            ros::ServiceServer toggle_sonar_srv;
216
            ros::ServiceServer set_sonar_srv;
217

    
218
            ros::WallTime last_command_time;
219
    };
220
    typedef boost::shared_ptr<Scout> ScoutPtr;
221
}
222

    
223
#endif