Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / scoutsim / src / sim_frame.h @ 0e143737

History | View | Annotate | Download (6.97 KB)

1 c492be62 Alex Zirbel
/**
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 266ae7f2 Alex Zirbel
 *
6 c492be62 Alex Zirbel
 * 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 266ae7f2 Alex Zirbel
 * All rights reserved.
25 c492be62 Alex Zirbel
 * 
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 266ae7f2 Alex Zirbel
 */
47
48
#include <wx/wx.h>
49
#include <wx/event.h>
50
#include <wx/timer.h>
51 2eaafff2 Alex
#include <wx/string.h>
52 0e77683c Alex
#include <wx/utils.h>
53 266ae7f2 Alex Zirbel
54 594c3bb9 Alex
#include <sys/stat.h>
55
56 266ae7f2 Alex Zirbel
#include <ros/ros.h>
57
58
#include <std_srvs/Empty.h>
59
#include <scoutsim/Spawn.h>
60
#include <scoutsim/Kill.h>
61 43811241 Alex
#include <scoutsim/SetSonarViz.h>
62
#include <scoutsim/SetGhost.h>
63
#include <scoutsim/SetTeleop.h>
64 6ebee82c Alex
#include <messages/set_motors.h>
65 266ae7f2 Alex Zirbel
#include <map>
66
67
#include "scout.h"
68 0e143737 Hui Jun Tay
#include "emitter.h"
69 0e0ef125 Priya
#include "ghost_scout.h"
70 e3f69e61 Alex
#include "scoutsim_internal.h"
71 1d1281cc Priya
#include "messages/WirelessPacket.h"
72 266ae7f2 Alex Zirbel
73 a8480867 Alex Zirbel
#define SCOUTSIM_NUM_SCOUTS 1
74 2eaafff2 Alex
#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 7ffad595 Alex
#define ID_WALLS 6
80 0e77683c Alex
#define ID_TELEOP_NONE 7
81
#define ID_TELEOP_PRECISE 8
82
#define ID_TELEOP_FLUID 9
83
84 2237e1f0 Tom Mullins
// Absolute speeds (-100 - 100)
85 43811241 Alex
/// @todo: Clean this up a little; we should be risking overflowing shorts.
86 2237e1f0 Tom Mullins
#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 0e77683c Alex
91
// Teleop types
92
#define TELEOP_OFF 0
93
#define TELEOP_PRECISE 1
94
#define TELEOP_FLUID 2
95 266ae7f2 Alex Zirbel
96
namespace scoutsim
97
{
98
    class SimFrame : public wxFrame
99
    {
100
        public:
101 2eaafff2 Alex
            SimFrame(wxWindow* parent, std::string map_name);
102 266ae7f2 Alex Zirbel
            ~SimFrame();
103
104
            std::string spawnScout(const std::string& name,
105
                    float x, float y, float angle);
106 0e143737 Hui Jun Tay
            std::string spawnEmitter(const std::string& name,
107
                    float x, float y, float angle);
108 266ae7f2 Alex Zirbel
109 2eaafff2 Alex
            void onQuit(wxCommandEvent& event);
110
            void onAbout(wxCommandEvent& event);
111
            void onClear(wxCommandEvent& event);
112
            void showMap(wxCommandEvent& event);
113
            void showLines(wxCommandEvent& event);
114 7ffad595 Alex
            void showWalls(wxCommandEvent& event);
115 0e77683c Alex
            void stopTeleop(wxCommandEvent& event);
116
            void startTeleopPrecise(wxCommandEvent& event);
117
            void startTeleopFluid(wxCommandEvent& event);
118 2eaafff2 Alex
119
            DECLARE_EVENT_TABLE()
120
121 266ae7f2 Alex Zirbel
        private:
122 04114d13 Alex
123 0e143737 Hui Jun Tay
            typedef std::map<std::string, ScoutPtr> M_Scout;
124
            typedef std::map<std::string, EmitterPtr> M_Emitter;
125
126 266ae7f2 Alex Zirbel
            void onUpdate(wxTimerEvent& evt);
127
            void onPaint(wxPaintEvent& evt);
128
129 594c3bb9 Alex
            bool fileExists(const std::string& filename);
130
131 0e77683c Alex
            void teleop_move_precise();
132
            void teleop_move_fluid();
133
            void teleop();
134
135 266ae7f2 Alex Zirbel
            void updateScouts();
136
            void clear();
137
            bool hasScout(const std::string& name);
138 0e143737 Hui Jun Tay
            bool hasEmitter(const std::string& name);
139 266ae7f2 Alex Zirbel
140
            bool clearCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
141
            bool resetCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
142 4612f7e4 Alex Zirbel
            bool spawnCallback(Spawn::Request&, Spawn::Response&);
143 0e143737 Hui Jun Tay
            bool spawnEmCallback(Spawn::Request&, Spawn::Response&);
144 4612f7e4 Alex Zirbel
            bool killCallback(Kill::Request&, Kill::Response&);
145 266ae7f2 Alex Zirbel
146 43811241 Alex
            bool setSonarVizCallback(SetSonarViz::Request&, SetSonarViz::Response&);
147
            bool setGhostCallback(SetGhost::Request&, SetGhost::Response&);
148
            bool setTeleopCallback(SetTeleop::Request&, SetTeleop::Response&);
149
150 1d1281cc Priya
            void wirelessCallback(const messages::WirelessPacket::ConstPtr& msg);
151 0e143737 Hui Jun Tay
            void readBOM(); 
152
153 82f3f746 Priya
154
            ros::Subscriber wireless_send;
155
            ros::Publisher wireless_receive;
156
157 0e143737 Hui Jun Tay
            //emitter
158
            float em_aperture;
159
            int em_distance;
160
161 0e77683c Alex
            // Teleop
162 04114d13 Alex
            short teleop_l_speed;
163
            short teleop_r_speed;
164 0e77683c Alex
            ros::Publisher teleop_pub;
165 60a90290 Hui Jun Tay
            std::string teleop_scoutname;
166 0e77683c Alex
            int teleop_type;
167
168 6257c97d Alex
            int teleop_fluid_speed;
169
            int teleop_fluid_omega;
170 0e77683c Alex
171 144137a1 Alex Zirbel
            ros::NodeHandle nh;
172
            wxTimer* update_timer;
173
            wxBitmap path_bitmap;
174
            wxImage path_image;
175 ade1b7f9 Alex
            wxImage lines_image;
176 7ffad595 Alex
            wxImage walls_image;
177 144137a1 Alex Zirbel
            wxMemoryDC path_dc;
178 0e77683c Alex
            wxMemoryDC sonar_dc;
179 266ae7f2 Alex Zirbel
180 144137a1 Alex Zirbel
            uint64_t frame_count;
181 266ae7f2 Alex Zirbel
182 144137a1 Alex Zirbel
            ros::WallTime last_scout_update;
183 266ae7f2 Alex Zirbel
184 144137a1 Alex Zirbel
            ros::ServiceServer clear_srv;
185
            ros::ServiceServer reset_srv;
186
            ros::ServiceServer spawn_srv;
187 0e143737 Hui Jun Tay
            ros::ServiceServer spawn_em_srv;
188 144137a1 Alex Zirbel
            ros::ServiceServer kill_srv;
189 43811241 Alex
            ros::ServiceServer set_sonar_viz_srv;
190
            ros::ServiceServer set_ghost_srv;
191
            ros::ServiceServer set_teleop_srv;
192 266ae7f2 Alex Zirbel
193 144137a1 Alex Zirbel
            M_Scout scouts;
194 0e143737 Hui Jun Tay
            M_Emitter emitters;
195 0e0ef125 Priya
            std::vector<GhostScout*> ghost_scouts;
196 144137a1 Alex Zirbel
            uint32_t id_counter;
197 266ae7f2 Alex Zirbel
198 594c3bb9 Alex
            std::string images_path;
199 266ae7f2 Alex Zirbel
200 144137a1 Alex Zirbel
            float width_in_meters;
201
            float height_in_meters;
202 2eaafff2 Alex
203 ade1b7f9 Alex
            std::string map_base_name;
204
            std::string map_lines_name;
205 7ffad595 Alex
            std::string map_walls_name;
206 2eaafff2 Alex
            std::string display_map_name;
207 266ae7f2 Alex Zirbel
    };
208
209
}