Ignition Gazebo

API Reference

6.0.0~pre1
src/systems/physics/Physics.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018 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 IGNITION_GAZEBO_SYSTEMS_PHYSICS_HH_
18 #define IGNITION_GAZEBO_SYSTEMS_PHYSICS_HH_
19 
20 #include <memory>
21 #include <unordered_map>
22 #include <utility>
23 #include <ignition/physics/FindFeatures.hh>
24 #include <ignition/physics/RequestFeatures.hh>
25 
26 // Features need to be defined ahead of entityCast
27 #include <ignition/physics/BoxShape.hh>
28 #include <ignition/physics/CapsuleShape.hh>
29 #include <ignition/physics/CylinderShape.hh>
30 #include <ignition/physics/EllipsoidShape.hh>
31 #include <ignition/physics/ForwardStep.hh>
32 #include <ignition/physics/FrameSemantics.hh>
33 #include <ignition/physics/FreeGroup.hh>
34 #include <ignition/physics/FixedJoint.hh>
35 #include <ignition/physics/GetContacts.hh>
36 #include <ignition/physics/GetBoundingBox.hh>
37 #include <ignition/physics/Joint.hh>
38 #include <ignition/physics/Link.hh>
39 #include <ignition/physics/RemoveEntities.hh>
40 #include <ignition/physics/Shape.hh>
41 #include <ignition/physics/SphereShape.hh>
42 #include <ignition/physics/World.hh>
43 #include <ignition/physics/mesh/MeshShape.hh>
44 #include <ignition/physics/sdf/ConstructCollision.hh>
45 #include <ignition/physics/sdf/ConstructJoint.hh>
46 #include <ignition/physics/sdf/ConstructLink.hh>
47 #include <ignition/physics/sdf/ConstructModel.hh>
48 #include <ignition/physics/sdf/ConstructNestedModel.hh>
49 #include <ignition/physics/sdf/ConstructWorld.hh>
50 
51 #include <ignition/gazebo/config.hh>
53 
54 namespace ignition
55 {
56 namespace gazebo
57 {
58 // Inline bracket to help doxygen filtering.
59 inline namespace IGNITION_GAZEBO_VERSION_NAMESPACE {
60 namespace systems
61 {
62  // Forward declarations.
63  class PhysicsPrivate;
64 
67  class Physics:
68  public System,
69  public ISystemConfigure,
70  public ISystemUpdate
71  {
73  public: explicit Physics();
74 
76  public: ~Physics() override;
77 
78  // Documentation inherited
79  public: void Configure(const Entity &_entity,
82  EventManager &_eventMgr) final;
83 
85  public: void Update(const UpdateInfo &_info,
86  EntityComponentManager &_ecm) final;
87 
89  private: std::unique_ptr<PhysicsPrivate> dataPtr;
90  };
91 }
92 }
93 }
94 }
95 #endif
Interface for a system that uses the Update phase.
Definition: System.hh:112
Information passed to systems on the update callback.
Definition: Types.hh:38
The EntityComponentManager constructs, deletes, and returns components and entities. A component can be of any class which inherits from components::BaseComponent.
Definition: EntityComponentManager.hh:66
The EventManager is used to send/receive notifications of simulator events.
Definition: EventManager.hh:54
Interface for a system that implements optional configuration.
Definition: System.hh:88
Base class for a System.
Definition: src/systems/physics/Physics.hh:67
This library is part of the Ignition Robotics project.
uint64_t Entity
An Entity identifies a single object in simulation such as a model, link, or light. At its core, an Entity is just an identifier.
Definition: Entity.hh:59
Component< sdf::Physics, class PhysicsTag, serializers::PhysicsSerializer > Physics
A component type that contains the physics properties of the World entity.
Definition: include/ignition/gazebo/components/Physics.hh:50
Base class for a System.
Definition: System.hh:73