Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / scoutsim / src / scout.h @ 9f547ef7

History | View | Annotate | Download (5.04 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 <wx/wx.h>
62

    
63
//#include "scout_constants.h"
64

    
65
#define PI 3.14159265
66

    
67
/// The scale factor so the speed of scout robots is reasonable for the sim
68
#define SPEED_SCALE_FACTOR 0.05
69

    
70
namespace scoutsim
71
{
72
    struct Vector2
73
    {
74
        Vector2()
75
            : x(0.0)
76
              , y(0.0)
77
        {}
78

    
79
        Vector2(float new_x, float new_y)
80
            : x(new_x)
81
              , y(new_y)
82
        {}
83

    
84
        bool operator==(const Vector2& rhs)
85
        {
86
            return x == rhs.x && y == rhs.y;
87
        }
88

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

    
94
        float x;
95
        float y;
96
    };
97

    
98
    class Scout
99
    {
100
        public:
101
            Scout(const ros::NodeHandle& nh, const wxImage& scout_image,
102
                  const Vector2& pos, float orient);
103

    
104
            void update(double dt, wxMemoryDC& path_dc,
105
                        const wxImage& path_image, wxColour background_color,
106
                        float canvas_width, float canvas_height);
107
            void paint(wxDC& dc);
108

    
109
        private:
110
            void setMotors(const motors::set_motors::ConstPtr& msg);
111
            float getSonar(float angle);
112
            bool setPenCallback(scoutsim::SetPen::Request&,
113
                                scoutsim::SetPen::Response&);
114
            bool query_encoders_callback(encoders::query_encoders::Request&,
115
                                         encoders::query_encoders::Response&);
116

    
117
            ros::NodeHandle node;
118

    
119
            wxImage scout_image;
120
            wxBitmap scout;
121

    
122
            Vector2 pos;
123
            float orient;
124

    
125
            /// @todo should these be an array or something?
126

    
127
            // Keep track of the last commanded speeds sent to the sim
128
            int motor_fl_speed;
129
            int motor_fr_speed;
130
            int motor_bl_speed;
131
            int motor_br_speed;
132

    
133
            // Keep track of encoder ticks for each motor
134
            unsigned int fl_ticks;
135
            unsigned int fr_ticks;
136
            unsigned int bl_ticks;
137
            unsigned int br_ticks;
138

    
139
            // Each scout has a unique id number, which is also displayed on its image.
140
            int scout_id;
141

    
142
            bool pen_on;
143
            wxPen pen;
144

    
145
            ros::Subscriber motors_sub;
146
            ros::Publisher pose_pub;
147
            ros::Publisher color_pub;
148
            ros::ServiceServer set_pen_srv;
149
            ros::ServiceServer query_encoders_srv;
150

    
151
            ros::WallTime last_command_time;
152

    
153
            float meter;
154

    
155
    };
156
    typedef boost::shared_ptr<Scout> ScoutPtr;
157

    
158
}
159

    
160
#endif