Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / scoutsim / src / sim_frame.h @ 7b94db2c

History | View | Annotate | Download (7.42 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
#include <wx/wx.h>
49
#include <wx/event.h>
50
#include <wx/timer.h>
51
#include <wx/string.h>
52
#include <wx/utils.h>
53

    
54
#include <sys/stat.h>
55

    
56
#include <ros/ros.h>
57

    
58
#include <std_srvs/Empty.h>
59
#include <scoutsim/Spawn.h>
60
#include <scoutsim/Kill.h>
61
#include <scoutsim/SetSonarViz.h>
62
#include <scoutsim/SetGhost.h>
63
#include <scoutsim/SetTeleop.h>
64
#include <messages/set_motors.h>
65
#include <map>
66

    
67
#include "scout.h"
68
#include "emitter.h"
69
#include "ghost_scout.h"
70
#include "scoutsim_internal.h"
71
#include "messages/WirelessPacket.h"
72

    
73
#define SCOUTSIM_NUM_SCOUTS 1
74
#define ID_ABOUT 1
75
#define ID_QUIT 2
76
#define ID_CLEAR 3
77
#define ID_MAP 4
78
#define ID_LINES 5
79
#define ID_WALLS 6
80
#define ID_TELEOP_NONE 7
81
#define ID_TELEOP_PRECISE 8
82
#define ID_TELEOP_FLUID 9
83

    
84
// Absolute speeds (-100 - 100)
85
/// @todo: Clean this up a little; we should be risking overflowing shorts.
86
#define TELEOP_PRECISE_SPEED 47
87
#define TELEOP_PRECISE_TURN_SPEED 98
88
#define TELEOP_FLUID_MAX_SPEED 79
89
#define TELEOP_FLUID_INC 6
90

    
91
// Teleop types
92
#define TELEOP_OFF 0
93
#define TELEOP_PRECISE 1
94
#define TELEOP_FLUID 2
95

    
96
//Scout DImensions
97
#define SCOUT_H 0.25
98
#define SCOUT_W 0.125
99

    
100
namespace scoutsim
101
{
102
    class SimFrame : public wxFrame
103
    {
104
        public:
105
            SimFrame(wxWindow* parent, std::string map_name);
106
            ~SimFrame();
107

    
108
            std::string spawnScout(const std::string& name,
109
                    float x, float y, float angle);
110
            std::string spawnEmitter(const std::string& name,
111
                    float x, float y, float angle);
112

    
113
            void onQuit(wxCommandEvent& event);
114
            void onAbout(wxCommandEvent& event);
115
            void onClear(wxCommandEvent& event);
116
            void showMap(wxCommandEvent& event);
117
            void showLines(wxCommandEvent& event);
118
            void showWalls(wxCommandEvent& event);
119
            void stopTeleop(wxCommandEvent& event);
120
            void startTeleopPrecise(wxCommandEvent& event);
121
            void startTeleopFluid(wxCommandEvent& event);
122

    
123
            DECLARE_EVENT_TABLE()
124

    
125
        private:
126

    
127
            typedef std::map<std::string, ScoutPtr> M_Scout;
128
            typedef std::map<std::string, EmitterPtr> M_Emitter;
129

    
130
            void onUpdate(wxTimerEvent& evt);
131
            void onPaint(wxPaintEvent& evt);
132

    
133
            bool fileExists(const std::string& filename);
134

    
135
            void teleop_move_precise();
136
            void teleop_move_fluid();
137
            void teleop();
138

    
139
            void updateScouts();
140
            void clear();
141
            bool hasScout(const std::string& name);
142
            bool hasEmitter(const std::string& name);
143

    
144
            bool clearCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
145
            bool resetCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
146
            bool spawnCallback(Spawn::Request&, Spawn::Response&);
147
            bool spawnEmCallback(Spawn::Request&, Spawn::Response&);
148
            bool killCallback(Kill::Request&, Kill::Response&);
149

    
150
            bool setSonarVizCallback(SetSonarViz::Request&, SetSonarViz::Response&);
151
            bool setGhostCallback(SetGhost::Request&, SetGhost::Response&);
152
            bool setTeleopCallback(SetTeleop::Request&, SetTeleop::Response&);
153

    
154
            void wirelessCallback(const messages::WirelessPacket::ConstPtr& msg);
155
            bool is_inrange(geometry_msgs::Pose2D scout_pos, 
156
                         geometry_msgs::Pose2D emitter_pos,
157
                         double aperture, double distance);
158
            void checkBOM(geometry_msgs::Pose2D scout_pos,
159
                          M_Scout::iterator it); 
160
            int getActiveEmitter(geometry_msgs::Pose2D bom_pos);
161
            
162

    
163
            ros::Subscriber wireless_send;
164
            ros::Publisher wireless_receive;
165

    
166
            // Teleop
167
            short teleop_l_speed;
168
            short teleop_r_speed;
169
            ros::Publisher teleop_pub;
170
            std::string teleop_scoutname;
171
            int teleop_type;
172

    
173
            int teleop_fluid_speed;
174
            int teleop_fluid_omega;
175

    
176
            ros::NodeHandle nh;
177
            wxTimer* update_timer;
178
            wxBitmap path_bitmap;
179
            wxImage path_image;
180
            wxImage lines_image;
181
            wxImage walls_image;
182
            wxMemoryDC path_dc;
183
            wxMemoryDC sonar_dc;
184

    
185
            uint64_t frame_count;
186

    
187
            ros::WallTime last_scout_update;
188

    
189
            ros::ServiceServer clear_srv;
190
            ros::ServiceServer reset_srv;
191
            ros::ServiceServer spawn_srv;
192
            ros::ServiceServer spawn_em_srv;
193
            ros::ServiceServer kill_srv;
194
            ros::ServiceServer set_sonar_viz_srv;
195
            ros::ServiceServer set_ghost_srv;
196
            ros::ServiceServer set_teleop_srv;
197

    
198
            M_Scout scouts;
199
            M_Emitter emitters;
200
            std::vector<GhostScout*> ghost_scouts;
201
            uint32_t id_counter;
202
            uint32_t BOM_counter;
203

    
204
            std::string images_path;
205

    
206
            float width_in_meters;
207
            float height_in_meters;
208

    
209
            //Emitter default values
210
            double em_aperture;
211
            double em_distance;
212

    
213

    
214
            std::string map_base_name;
215
            std::string map_lines_name;
216
            std::string map_walls_name;
217
            std::string display_map_name;
218
    };
219

    
220
}