Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / scoutsim / src / sim_frame.h @ e3f69e61

History | View | Annotate | Download (3.96 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

    
52
#include <ros/ros.h>
53

    
54
#include <std_srvs/Empty.h>
55
#include <scoutsim/Spawn.h>
56
#include <scoutsim/Kill.h>
57
#include <map>
58

    
59
#include "scout.h"
60
#include "scoutsim_internal.h"
61

    
62
#define SCOUTSIM_NUM_SCOUTS 1
63

    
64
namespace scoutsim
65
{
66
    class SimFrame : public wxFrame
67
    {
68
        public:
69
            SimFrame(wxWindow* parent);
70
            ~SimFrame();
71

    
72
            std::string spawnScout(const std::string& name,
73
                    float x, float y, float angle);
74

    
75
        private:
76
            void onUpdate(wxTimerEvent& evt);
77
            void onPaint(wxPaintEvent& evt);
78

    
79
            void updateScouts();
80
            void clear();
81
            bool hasScout(const std::string& name);
82

    
83
            bool clearCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
84
            bool resetCallback(std_srvs::Empty::Request&, std_srvs::Empty::Response&);
85
            bool spawnCallback(Spawn::Request&, Spawn::Response&);
86
            bool killCallback(Kill::Request&, Kill::Response&);
87

    
88
            ros::NodeHandle nh;
89
            wxTimer* update_timer;
90
            wxBitmap path_bitmap;
91
            wxImage path_image;
92
            wxMemoryDC path_dc;
93

    
94
            uint64_t frame_count;
95

    
96
            ros::WallTime last_scout_update;
97

    
98
            ros::ServiceServer clear_srv;
99
            ros::ServiceServer reset_srv;
100
            ros::ServiceServer spawn_srv;
101
            ros::ServiceServer kill_srv;
102

    
103
            typedef std::map<std::string, ScoutPtr> M_Scout;
104
            M_Scout scouts;
105
            uint32_t id_counter;
106

    
107
            wxImage scout_images[SCOUTSIM_NUM_SCOUTS];
108

    
109
            float meter;
110
            float width_in_meters;
111
            float height_in_meters;
112
    };
113

    
114
}