ContactSensor.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef _GAZEBO_SENSORS_CONTACTSENSOR_HH_
18 #define _GAZEBO_SENSORS_CONTACTSENSOR_HH_
19 
20 #include <map>
21 #include <string>
22 #include <memory>
23 
24 #include "gazebo/msgs/msgs.hh"
25 
26 #include "gazebo/sensors/Sensor.hh"
28 #include "gazebo/util/system.hh"
29 
30 namespace gazebo
31 {
34  namespace sensors
35  {
36  // Forward declare private data class
37  class ContactSensorPrivate;
38 
41 
46  {
48  public: ContactSensor();
49 
51  public: virtual ~ContactSensor();
52 
56  public: virtual void Load(const std::string &_worldName,
57  sdf::ElementPtr _sdf);
58 
61  public: virtual void Load(const std::string &_worldName);
62 
64  public: virtual void Init();
65 
66  // Documentation inherited
67  protected: virtual bool UpdateImpl(const bool _force);
68 
70  protected: virtual void Fini();
71 
74  public: unsigned int GetCollisionCount() const;
75 
79  public: std::string GetCollisionName(unsigned int _index) const;
80 
84  public: unsigned int GetCollisionContactCount(
85  const std::string &_collisionName) const;
86 
126  public: msgs::Contacts GetContacts() const GAZEBO_DEPRECATED(7.0);
127 
166  public: msgs::Contacts Contacts() const;
167 
172  public: std::map<std::string, physics::Contact> GetContacts(
173  const std::string &_collisionName) GAZEBO_DEPRECATED(7.0);
174 
178  public: std::map<std::string, physics::Contact> Contacts(
179  const std::string &_collisionName) const;
180 
181  // Documentation inherited.
182  public: virtual bool IsActive() const;
183 
185  private: void OnContacts(ConstContactsPtr &_msg);
186 
189  private: std::unique_ptr<ContactSensorPrivate> dataPtr;
190  };
192  }
193 }
194 #endif
#define GAZEBO_DEPRECATED(version)
Definition: CommonTypes.hh:48
Contact sensor.
Definition: ContactSensor.hh:45
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Base class for sensors.
Definition: Sensor.hh:50
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:59