root / scout / scoutsim / src / sim_frame.cpp @ 6639ce9c
History | View | Annotate | Download (11.4 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 | a8480867 | Alex Zirbel | #include "sim_frame.h" |
| 49 | 266ae7f2 | Alex Zirbel | |
| 50 | 2eaafff2 | Alex | #include <stdio.h> |
| 51 | |||
| 52 | 266ae7f2 | Alex Zirbel | #include <ros/package.h> |
| 53 | #include <cstdlib> |
||
| 54 | #include <ctime> |
||
| 55 | |||
| 56 | 2eaafff2 | Alex | using namespace std; |
| 57 | 266ae7f2 | Alex Zirbel | |
| 58 | namespace scoutsim
|
||
| 59 | {
|
||
| 60 | 2eaafff2 | Alex | SimFrame::SimFrame(wxWindow* parent, string map_name)
|
| 61 | 266ae7f2 | Alex Zirbel | : wxFrame(parent, wxID_ANY, wxT("ScoutSim"), wxDefaultPosition,
|
| 62 | wxSize(500, 500), wxDEFAULT_FRAME_STYLE & ~wxRESIZE_BORDER) |
||
| 63 | 144137a1 | Alex Zirbel | , frame_count(0)
|
| 64 | , id_counter(0)
|
||
| 65 | 266ae7f2 | Alex Zirbel | {
|
| 66 | 2eaafff2 | Alex | std::cout << "Constructing sim frame." << std::endl;
|
| 67 | |||
| 68 | 266ae7f2 | Alex Zirbel | srand(time(NULL));
|
| 69 | |||
| 70 | 144137a1 | Alex Zirbel | update_timer = new wxTimer(this); |
| 71 | update_timer->Start(16);
|
||
| 72 | 266ae7f2 | Alex Zirbel | |
| 73 | 144137a1 | Alex Zirbel | Connect(update_timer->GetId(), wxEVT_TIMER, |
| 74 | 266ae7f2 | Alex Zirbel | wxTimerEventHandler(SimFrame::onUpdate), NULL, this); |
| 75 | Connect(wxEVT_PAINT, wxPaintEventHandler(SimFrame::onPaint), |
||
| 76 | NULL, this); |
||
| 77 | |||
| 78 | std::string scouts[SCOUTSIM_NUM_SCOUTS] =
|
||
| 79 | {
|
||
| 80 | dec96050 | Priya | "scout.png"
|
| 81 | 266ae7f2 | Alex Zirbel | }; |
| 82 | |||
| 83 | std::string images_path = ros::package::getPath("scoutsim")+"/images/"; |
||
| 84 | for (size_t i = 0; i < SCOUTSIM_NUM_SCOUTS; ++i) |
||
| 85 | {
|
||
| 86 | 144137a1 | Alex Zirbel | scout_images[i].LoadFile( |
| 87 | 266ae7f2 | Alex Zirbel | wxString::FromAscii((images_path + scouts[i]).c_str())); |
| 88 | 144137a1 | Alex Zirbel | scout_images[i].SetMask(true);
|
| 89 | scout_images[i].SetMaskColour(255, 255, 255); |
||
| 90 | 266ae7f2 | Alex Zirbel | } |
| 91 | |||
| 92 | 2eaafff2 | Alex | /// @todo This should change.
|
| 93 | 144137a1 | Alex Zirbel | meter = scout_images[0].GetHeight();
|
| 94 | 266ae7f2 | Alex Zirbel | |
| 95 | ade1b7f9 | Alex | map_base_name = ros::package::getPath("scoutsim") + "/maps/" + |
| 96 | map_name + ".bmp";
|
||
| 97 | map_lines_name = ros::package::getPath("scoutsim") + "/maps/" + |
||
| 98 | map_name + "_lines.bmp";
|
||
| 99 | 7ffad595 | Alex | map_walls_name = ros::package::getPath("scoutsim") + "/maps/" + |
| 100 | map_name + "_walls.bmp";
|
||
| 101 | ade1b7f9 | Alex | display_map_name = map_base_name; |
| 102 | |||
| 103 | wxBitmap lines_bitmap; |
||
| 104 | lines_bitmap.LoadFile(wxString::FromAscii(map_lines_name.c_str())); |
||
| 105 | lines_image = lines_bitmap.ConvertToImage(); |
||
| 106 | |||
| 107 | 7ffad595 | Alex | wxBitmap walls_bitmap; |
| 108 | walls_bitmap.LoadFile(wxString::FromAscii(map_walls_name.c_str())); |
||
| 109 | walls_image = walls_bitmap.ConvertToImage(); |
||
| 110 | |||
| 111 | 266ae7f2 | Alex Zirbel | clear(); |
| 112 | |||
| 113 | 144137a1 | Alex Zirbel | clear_srv = nh.advertiseService("clear",
|
| 114 | 4612f7e4 | Alex Zirbel | &SimFrame::clearCallback, this);
|
| 115 | 144137a1 | Alex Zirbel | reset_srv = nh.advertiseService("reset",
|
| 116 | 4612f7e4 | Alex Zirbel | &SimFrame::resetCallback, this);
|
| 117 | 144137a1 | Alex Zirbel | spawn_srv = nh.advertiseService("spawn",
|
| 118 | 4612f7e4 | Alex Zirbel | &SimFrame::spawnCallback, this);
|
| 119 | 144137a1 | Alex Zirbel | kill_srv = nh.advertiseService("kill",
|
| 120 | 4612f7e4 | Alex Zirbel | &SimFrame::killCallback, this);
|
| 121 | 266ae7f2 | Alex Zirbel | |
| 122 | 82f3f746 | Priya | // Subscribe and publisher wirless from robots
|
| 123 | 7ffad595 | Alex | wireless_receive = nh.advertise< ::messages::WirelessPacket>( |
| 124 | "/wireless/receive", 1000); |
||
| 125 | wireless_send = nh.subscribe("/wireless/send", 1000, |
||
| 126 | &SimFrame::wirelessCallback, this);
|
||
| 127 | 82f3f746 | Priya | |
| 128 | 266ae7f2 | Alex Zirbel | ROS_INFO("Starting scoutsim with node name %s",
|
| 129 | ros::this_node::getName().c_str()) ; |
||
| 130 | |||
| 131 | 2eaafff2 | Alex | wxMenu *menuFile = new wxMenu;
|
| 132 | menuFile->Append(ID_ABOUT, _("&About"));
|
||
| 133 | menuFile->AppendSeparator(); |
||
| 134 | menuFile->Append(ID_QUIT, _("E&xit"));
|
||
| 135 | |||
| 136 | wxMenu *menuSim = new wxMenu;
|
||
| 137 | menuSim->Append(ID_CLEAR, _("&Clear"));
|
||
| 138 | |||
| 139 | wxMenu *menuView = new wxMenu;
|
||
| 140 | menuView->Append(ID_MAP, _("&Map"));
|
||
| 141 | menuView->Append(ID_LINES, _("&Lines"));
|
||
| 142 | 7ffad595 | Alex | menuView->Append(ID_WALLS, _("&Walls"));
|
| 143 | 2eaafff2 | Alex | |
| 144 | wxMenuBar *menuBar = new wxMenuBar;
|
||
| 145 | menuBar->Append(menuFile, _("&File"));
|
||
| 146 | menuBar->Append(menuSim, _("&Sim"));
|
||
| 147 | menuBar->Append(menuView, _("&View"));
|
||
| 148 | |||
| 149 | SetMenuBar(menuBar); |
||
| 150 | |||
| 151 | 144137a1 | Alex Zirbel | width_in_meters = GetSize().GetWidth() / meter; |
| 152 | height_in_meters = GetSize().GetHeight() / meter; |
||
| 153 | spawnScout("", width_in_meters / 2.0, height_in_meters / 2.0, 0); |
||
| 154 | 266ae7f2 | Alex Zirbel | } |
| 155 | |||
| 156 | SimFrame::~SimFrame() |
||
| 157 | {
|
||
| 158 | 144137a1 | Alex Zirbel | delete update_timer;
|
| 159 | 266ae7f2 | Alex Zirbel | } |
| 160 | |||
| 161 | 4612f7e4 | Alex Zirbel | bool SimFrame::spawnCallback(scoutsim::Spawn::Request &req,
|
| 162 | scoutsim::Spawn::Response &res) |
||
| 163 | 266ae7f2 | Alex Zirbel | {
|
| 164 | std::string name = spawnScout(req.name, req.x, req.y, req.theta);
|
||
| 165 | if (name.empty())
|
||
| 166 | {
|
||
| 167 | ROS_ERROR("A scout named [%s] already exists", req.name.c_str());
|
||
| 168 | return false; |
||
| 169 | } |
||
| 170 | |||
| 171 | res.name = name; |
||
| 172 | |||
| 173 | return true; |
||
| 174 | } |
||
| 175 | |||
| 176 | bool SimFrame::killCallback(scoutsim::Kill::Request& req,
|
||
| 177 | scoutsim::Kill::Response&) |
||
| 178 | {
|
||
| 179 | 144137a1 | Alex Zirbel | M_Scout::iterator it = scouts.find(req.name); |
| 180 | if (it == scouts.end())
|
||
| 181 | 266ae7f2 | Alex Zirbel | {
|
| 182 | ROS_ERROR("Tried to kill scout [%s], which does not exist",
|
||
| 183 | req.name.c_str()); |
||
| 184 | return false; |
||
| 185 | } |
||
| 186 | |||
| 187 | 144137a1 | Alex Zirbel | scouts.erase(it); |
| 188 | 266ae7f2 | Alex Zirbel | |
| 189 | return true; |
||
| 190 | } |
||
| 191 | |||
| 192 | bool SimFrame::hasScout(const std::string& name) |
||
| 193 | {
|
||
| 194 | 144137a1 | Alex Zirbel | return scouts.find(name) != scouts.end();
|
| 195 | 266ae7f2 | Alex Zirbel | } |
| 196 | |||
| 197 | 9b3564f3 | Alex Zirbel | std::string SimFrame::spawnScout(const std::string& name, |
| 198 | float x, float y, float angle) |
||
| 199 | 266ae7f2 | Alex Zirbel | {
|
| 200 | std::string real_name = name;
|
||
| 201 | if (real_name.empty())
|
||
| 202 | {
|
||
| 203 | do
|
||
| 204 | {
|
||
| 205 | std::stringstream ss; |
||
| 206 | 144137a1 | Alex Zirbel | ss << "scout" << ++id_counter;
|
| 207 | 266ae7f2 | Alex Zirbel | real_name = ss.str(); |
| 208 | } while (hasScout(real_name));
|
||
| 209 | } |
||
| 210 | else
|
||
| 211 | {
|
||
| 212 | if (hasScout(real_name))
|
||
| 213 | {
|
||
| 214 | return ""; |
||
| 215 | } |
||
| 216 | } |
||
| 217 | |||
| 218 | ScoutPtr t(new Scout(ros::NodeHandle(real_name),
|
||
| 219 | 144137a1 | Alex Zirbel | scout_images[rand() % SCOUTSIM_NUM_SCOUTS], |
| 220 | 6639ce9c | viki | Vector2(x, y), &path_bitmap,angle)); |
| 221 | 144137a1 | Alex Zirbel | scouts[real_name] = t; |
| 222 | 266ae7f2 | Alex Zirbel | |
| 223 | ROS_INFO("Spawning scout [%s] at x=[%f], y=[%f], theta=[%f]",
|
||
| 224 | real_name.c_str(), x, y, angle); |
||
| 225 | |||
| 226 | return real_name;
|
||
| 227 | } |
||
| 228 | |||
| 229 | 2eaafff2 | Alex | void SimFrame::onQuit(wxCommandEvent& WXUNUSED(event))
|
| 230 | {
|
||
| 231 | Close(true);
|
||
| 232 | } |
||
| 233 | |||
| 234 | void SimFrame::onAbout(wxCommandEvent& WXUNUSED(event))
|
||
| 235 | {
|
||
| 236 | wxMessageBox(_("Scoutsim is the simulator the Colony Project's scout robot.\n"
|
||
| 237 | "\nThe Colony Project is a part of the Carnegie Mellon\n"
|
||
| 238 | "Robotics Club. Our goal is to use cooperative low-cost\n"
|
||
| 239 | "robots to solve challenging problems."),
|
||
| 240 | _("About Scoutsim"),
|
||
| 241 | wxOK | wxICON_INFORMATION, this );
|
||
| 242 | } |
||
| 243 | |||
| 244 | void SimFrame::onClear(wxCommandEvent& WXUNUSED(event))
|
||
| 245 | 266ae7f2 | Alex Zirbel | {
|
| 246 | 2eaafff2 | Alex | clear(); |
| 247 | } |
||
| 248 | 266ae7f2 | Alex Zirbel | |
| 249 | 2eaafff2 | Alex | void SimFrame::showMap(wxCommandEvent& WXUNUSED(event))
|
| 250 | {
|
||
| 251 | ade1b7f9 | Alex | display_map_name = map_base_name; |
| 252 | 2eaafff2 | Alex | clear(); |
| 253 | } |
||
| 254 | 266ae7f2 | Alex Zirbel | |
| 255 | 2eaafff2 | Alex | void SimFrame::showLines(wxCommandEvent& WXUNUSED(event))
|
| 256 | {
|
||
| 257 | ade1b7f9 | Alex | display_map_name = map_lines_name; |
| 258 | 2eaafff2 | Alex | clear(); |
| 259 | } |
||
| 260 | 7ffad595 | Alex | |
| 261 | void SimFrame::showWalls(wxCommandEvent& WXUNUSED(event))
|
||
| 262 | {
|
||
| 263 | display_map_name = map_walls_name; |
||
| 264 | clear(); |
||
| 265 | } |
||
| 266 | 2eaafff2 | Alex | |
| 267 | void SimFrame::clear()
|
||
| 268 | {
|
||
| 269 | path_dc.SetBackground(wxBrush(wxColour(100, 100, 100))); |
||
| 270 | 144137a1 | Alex Zirbel | path_dc.Clear(); |
| 271 | 2eaafff2 | Alex | |
| 272 | 6639ce9c | viki | sonar_dc.SetBackground(wxBrush(wxColour(255, 0, 0))); |
| 273 | sonar_dc.Clear(); |
||
| 274 | |||
| 275 | sonar_dc.SelectObject(path_bitmap); |
||
| 276 | |||
| 277 | 2eaafff2 | Alex | path_bitmap.LoadFile(wxString::FromAscii(display_map_name.c_str())); |
| 278 | path_dc.SelectObject(path_bitmap); |
||
| 279 | SetSize(wxSize(path_bitmap.GetWidth(), path_bitmap.GetHeight())); |
||
| 280 | 266ae7f2 | Alex Zirbel | } |
| 281 | |||
| 282 | void SimFrame::onUpdate(wxTimerEvent& evt)
|
||
| 283 | {
|
||
| 284 | ros::spinOnce(); |
||
| 285 | |||
| 286 | updateScouts(); |
||
| 287 | |||
| 288 | if (!ros::ok())
|
||
| 289 | {
|
||
| 290 | Close(); |
||
| 291 | } |
||
| 292 | } |
||
| 293 | |||
| 294 | void SimFrame::onPaint(wxPaintEvent& evt)
|
||
| 295 | {
|
||
| 296 | wxPaintDC dc(this);
|
||
| 297 | |||
| 298 | 144137a1 | Alex Zirbel | dc.DrawBitmap(path_bitmap, 0, 0, true); |
| 299 | 266ae7f2 | Alex Zirbel | |
| 300 | 144137a1 | Alex Zirbel | M_Scout::iterator it = scouts.begin(); |
| 301 | M_Scout::iterator end = scouts.end(); |
||
| 302 | 266ae7f2 | Alex Zirbel | for (; it != end; ++it)
|
| 303 | {
|
||
| 304 | it->second->paint(dc); |
||
| 305 | } |
||
| 306 | } |
||
| 307 | |||
| 308 | void SimFrame::updateScouts()
|
||
| 309 | {
|
||
| 310 | 144137a1 | Alex Zirbel | if (last_scout_update.isZero())
|
| 311 | 266ae7f2 | Alex Zirbel | {
|
| 312 | 144137a1 | Alex Zirbel | last_scout_update = ros::WallTime::now(); |
| 313 | 266ae7f2 | Alex Zirbel | return;
|
| 314 | } |
||
| 315 | |||
| 316 | 144137a1 | Alex Zirbel | if (frame_count % 3 == 0) |
| 317 | 266ae7f2 | Alex Zirbel | {
|
| 318 | 144137a1 | Alex Zirbel | path_image = path_bitmap.ConvertToImage(); |
| 319 | 266ae7f2 | Alex Zirbel | Refresh(); |
| 320 | } |
||
| 321 | |||
| 322 | 144137a1 | Alex Zirbel | M_Scout::iterator it = scouts.begin(); |
| 323 | M_Scout::iterator end = scouts.end(); |
||
| 324 | e3f69e61 | Alex | |
| 325 | world_state state; |
||
| 326 | state.canvas_width = width_in_meters; |
||
| 327 | state.canvas_height = height_in_meters; |
||
| 328 | |||
| 329 | 266ae7f2 | Alex Zirbel | for (; it != end; ++it)
|
| 330 | {
|
||
| 331 | 6639ce9c | viki | it->second->update(0.016, path_dc,sonar_dc, |
| 332 | a2e6bd4c | Alex | path_image, lines_image, walls_image, |
| 333 | 144137a1 | Alex Zirbel | path_dc.GetBackground().GetColour(), |
| 334 | 6639ce9c | viki | sonar_dc.GetBackground().GetColour(), |
| 335 | e3f69e61 | Alex | state); |
| 336 | 266ae7f2 | Alex Zirbel | } |
| 337 | |||
| 338 | c492be62 | Alex Zirbel | frame_count++; |
| 339 | 266ae7f2 | Alex Zirbel | } |
| 340 | |||
| 341 | bool SimFrame::clearCallback(std_srvs::Empty::Request&,
|
||
| 342 | std_srvs::Empty::Response&) |
||
| 343 | {
|
||
| 344 | ROS_INFO("Clearing scoutsim.");
|
||
| 345 | clear(); |
||
| 346 | return true; |
||
| 347 | } |
||
| 348 | |||
| 349 | bool SimFrame::resetCallback(std_srvs::Empty::Request&,
|
||
| 350 | std_srvs::Empty::Response&) |
||
| 351 | {
|
||
| 352 | ROS_INFO("Resetting scoutsim.");
|
||
| 353 | 144137a1 | Alex Zirbel | scouts.clear(); |
| 354 | id_counter = 0;
|
||
| 355 | spawnScout("", width_in_meters / 2.0, height_in_meters / 2.0, 0); |
||
| 356 | 266ae7f2 | Alex Zirbel | clear(); |
| 357 | return true; |
||
| 358 | } |
||
| 359 | |||
| 360 | 1d1281cc | Priya | void SimFrame::wirelessCallback(const ::messages::WirelessPacket::ConstPtr& msg) |
| 361 | 82f3f746 | Priya | {
|
| 362 | wireless_receive.publish(msg); |
||
| 363 | } |
||
| 364 | 266ae7f2 | Alex Zirbel | } |