Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / scoutsim / src / sim_frame.h @ a2e6bd4c

History | View | Annotate | Download (4.87 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 266ae7f2 Alex Zirbel
53
#include <ros/ros.h>
54
55
#include <std_srvs/Empty.h>
56
#include <scoutsim/Spawn.h>
57
#include <scoutsim/Kill.h>
58
#include <map>
59
60
#include "scout.h"
61 e3f69e61 Alex
#include "scoutsim_internal.h"
62 1d1281cc Priya
#include "messages/WirelessPacket.h"
63 266ae7f2 Alex Zirbel
64 a8480867 Alex Zirbel
#define SCOUTSIM_NUM_SCOUTS 1
65 2eaafff2 Alex
#define ID_ABOUT 1
66
#define ID_QUIT 2
67
#define ID_CLEAR 3
68
#define ID_MAP 4
69
#define ID_LINES 5
70 7ffad595 Alex
#define ID_WALLS 6
71 266ae7f2 Alex Zirbel
72
namespace scoutsim
73
{
74
    class SimFrame : public wxFrame
75
    {
76
        public:
77 2eaafff2 Alex
            SimFrame(wxWindow* parent, std::string map_name);
78 266ae7f2 Alex Zirbel
            ~SimFrame();
79
80
            std::string spawnScout(const std::string& name,
81
                    float x, float y, float angle);
82
83 2eaafff2 Alex
            void onQuit(wxCommandEvent& event);
84
            void onAbout(wxCommandEvent& event);
85
            void onClear(wxCommandEvent& event);
86
            void showMap(wxCommandEvent& event);
87
            void showLines(wxCommandEvent& event);
88 7ffad595 Alex
            void showWalls(wxCommandEvent& event);
89 2eaafff2 Alex
90
            DECLARE_EVENT_TABLE()
91
92 266ae7f2 Alex Zirbel
        private:
93
            void onUpdate(wxTimerEvent& evt);
94
            void onPaint(wxPaintEvent& evt);
95
96
            void updateScouts();
97
            void clear();
98
            bool hasScout(const std::string& name);
99
100
            bool clearCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
101
            bool resetCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
102 4612f7e4 Alex Zirbel
            bool spawnCallback(Spawn::Request&, Spawn::Response&);
103
            bool killCallback(Kill::Request&, Kill::Response&);
104 266ae7f2 Alex Zirbel
105 1d1281cc Priya
            void wirelessCallback(const messages::WirelessPacket::ConstPtr& msg);
106 82f3f746 Priya
107
            ros::Subscriber wireless_send;
108
            ros::Publisher wireless_receive;
109
110 144137a1 Alex Zirbel
            ros::NodeHandle nh;
111
            wxTimer* update_timer;
112
            wxBitmap path_bitmap;
113
            wxImage path_image;
114 ade1b7f9 Alex
            wxImage lines_image;
115 7ffad595 Alex
            wxImage walls_image;
116 144137a1 Alex Zirbel
            wxMemoryDC path_dc;
117 266ae7f2 Alex Zirbel
118 144137a1 Alex Zirbel
            uint64_t frame_count;
119 266ae7f2 Alex Zirbel
120 144137a1 Alex Zirbel
            ros::WallTime last_scout_update;
121 266ae7f2 Alex Zirbel
122 144137a1 Alex Zirbel
            ros::ServiceServer clear_srv;
123
            ros::ServiceServer reset_srv;
124
            ros::ServiceServer spawn_srv;
125
            ros::ServiceServer kill_srv;
126 266ae7f2 Alex Zirbel
127
            typedef std::map<std::string, ScoutPtr> M_Scout;
128 144137a1 Alex Zirbel
            M_Scout scouts;
129
            uint32_t id_counter;
130 266ae7f2 Alex Zirbel
131 144137a1 Alex Zirbel
            wxImage scout_images[SCOUTSIM_NUM_SCOUTS];
132 266ae7f2 Alex Zirbel
133 144137a1 Alex Zirbel
            float meter;
134
            float width_in_meters;
135
            float height_in_meters;
136 2eaafff2 Alex
137 ade1b7f9 Alex
            std::string map_base_name;
138
            std::string map_lines_name;
139 7ffad595 Alex
            std::string map_walls_name;
140 2eaafff2 Alex
            std::string display_map_name;
141 266ae7f2 Alex Zirbel
    };
142
143
}