World.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2017 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 SDF_WORLD_HH_
18 #define SDF_WORLD_HH_
19 
20 #include <memory>
21 #include <optional>
22 #include <string>
23 #include <gz/math/SphericalCoordinates.hh>
24 #include <gz/math/Vector3.hh>
25 #include <gz/utils/ImplPtr.hh>
26 
27 #include "sdf/Atmosphere.hh"
28 #include "sdf/Element.hh"
29 #include "sdf/Gui.hh"
30 #include "sdf/OutputConfig.hh"
31 #include "sdf/ParserConfig.hh"
32 #include "sdf/Plugin.hh"
33 #include "sdf/Scene.hh"
34 #include "sdf/Types.hh"
35 #include "sdf/sdf_config.h"
36 #include "sdf/system_util.hh"
37 
38 namespace sdf
39 {
40  // Inline bracket to help doxygen filtering.
41  inline namespace SDF_VERSION_NAMESPACE {
42  //
43 
44  // Forward declare private data class.
45  class Actor;
46  class Frame;
47  class InterfaceModel;
48  class Joint;
49  class Light;
50  class Model;
51  class ParserConfig;
52  class Physics;
53  class NestedInclude;
54  struct PoseRelativeToGraph;
55  struct FrameAttachedToGraph;
56  template <typename T> class ScopedGraph;
57 
59  {
61  public: World();
62 
69  public: Errors Load(ElementPtr _sdf);
70 
78  public: Errors Load(sdf::ElementPtr _sdf, const ParserConfig &_config);
79 
84  public: Errors ValidateGraphs() const;
85 
88  public: std::string Name() const;
89 
92  public: void SetName(const std::string &_name);
93 
98  public: std::string AudioDevice() const;
99 
104  public: void SetAudioDevice(const std::string &_device);
105 
110  public: gz::math::Vector3d WindLinearVelocity() const;
111 
116  public: void SetWindLinearVelocity(const gz::math::Vector3d &_wind);
117 
123  public: gz::math::Vector3d Gravity() const;
124 
128  public: void SetGravity(const gz::math::Vector3d &_gravity);
129 
136  public: gz::math::Vector3d MagneticField() const;
137 
144  public: void SetMagneticField(const gz::math::Vector3d &_mag);
145 
148  public: const gz::math::SphericalCoordinates *
149  SphericalCoordinates() const;
150 
153  public: void SetSphericalCoordinates(
154  const gz::math::SphericalCoordinates &_coord);
155 
161  public: uint64_t ModelCount() const;
162 
169  public: const Model *ModelByIndex(const uint64_t _index) const;
170 
177  public: Model *ModelByIndex(uint64_t _index);
178 
186  public: const Model *ModelByName(const std::string &_name) const;
187 
195  public: Model *ModelByName(const std::string &_name);
196 
202  public: bool ModelNameExists(const std::string &_name) const;
203 
208  public: bool AddModel(const Model &_model);
209 
214  public: bool AddActor(const Actor &_actor);
215 
220  public: bool AddJoint(const Joint &_joint);
221 
226  public: bool AddLight(const Light &_light);
227 
232  public: bool AddPhysics(const Physics &_physics);
233 
238  public: bool AddFrame(const Frame &_frame);
239 
241  public: void ClearModels();
242 
244  public: void ClearActors();
245 
247  public: void ClearJoints();
248 
250  public: void ClearLights();
251 
253  public: void ClearPhysics();
254 
256  public: void ClearFrames();
257 
260  public: uint64_t ActorCount() const;
261 
267  public: const Actor *ActorByIndex(const uint64_t _index) const;
268 
274  public: Actor *ActorByIndex(uint64_t _index);
275 
279  public: bool ActorNameExists(const std::string &_name) const;
280 
286  public: uint64_t FrameCount() const;
287 
295  public: const Frame *FrameByIndex(const uint64_t _index) const;
296 
304  public: Frame *FrameByIndex(uint64_t _index);
305 
312  public: const Frame *FrameByName(const std::string &_name) const;
313 
320  public: Frame *FrameByName(const std::string &_name);
321 
327  public: bool FrameNameExists(const std::string &_name) const;
328 
331  public: uint64_t JointCount() const;
332 
338  public: const Joint *JointByIndex(uint64_t _index) const;
339 
345  public: Joint *JointByIndex(uint64_t _index);
346 
353  public: const Joint *JointByName(const std::string &_name) const;
354 
361  public: Joint *JointByName(const std::string &_name);
362 
366  public: bool JointNameExists(const std::string &_name) const;
367 
370  public: uint64_t LightCount() const;
371 
377  public: const Light *LightByIndex(const uint64_t _index) const;
378 
384  public: Light *LightByIndex(uint64_t _index);
385 
389  public: bool LightNameExists(const std::string &_name) const;
390 
395  public: const sdf::Atmosphere *Atmosphere() const;
396 
399  public: void SetAtmosphere(const sdf::Atmosphere &_atmosphere);
400 
405  public: const sdf::Gui *Gui() const;
406 
409  public: void SetGui(const sdf::Gui &_gui);
410 
415  public: const sdf::Scene *Scene() const;
416 
419  public: void SetScene(const sdf::Scene &_scene);
420 
425  public: sdf::ElementPtr Element() const;
426 
429  public: uint64_t PhysicsCount() const;
430 
437  public: const Physics *PhysicsByIndex(const uint64_t _index) const;
438 
445  public: Physics *PhysicsByIndex(uint64_t _index);
446 
449  public: const Physics *PhysicsDefault() const;
450 
454  public: bool PhysicsNameExists(const std::string &_name) const;
455 
460  public: uint64_t InterfaceModelCount() const;
461 
468  public: std::shared_ptr<const InterfaceModel> InterfaceModelByIndex(
469  const uint64_t _index) const;
470 
478  public: const NestedInclude* InterfaceModelNestedIncludeByIndex(
479  const uint64_t _index) const;
480 
487  public: sdf::ElementPtr ToElement(
488  const OutputConfig &_config = OutputConfig::GlobalConfig()) const;
489 
499  public: bool NameExistsInFrameAttachedToGraph(
500  const std::string &_name) const;
501 
505  public: const sdf::Plugins &Plugins() const;
506 
510  public: sdf::Plugins &Plugins();
511 
513  public: void ClearPlugins();
514 
517  public: void AddPlugin(const Plugin &_plugin);
518 
523  private: void SetPoseRelativeToGraph(
525 
530  private: void SetFrameAttachedToGraph(
532 
535  friend class Root;
536 
538  GZ_UTILS_IMPL_PTR(dataPtr)
539  };
540  }
541 }
542 #endif
sdf::SDF_VERSION_NAMESPACE::OutputConfig
This class contains configuration options for SDF output.
Definition: OutputConfig.hh:58
Gui.hh
sdf::SDF_VERSION_NAMESPACE::Model
Definition: Model.hh:54
Scene.hh
sdf
namespace for Simulation Description Format parser
Definition: Actor.hh:34
sdf::SDF_VERSION_NAMESPACE::Physics
The physics element specifies the type and properties of a dynamics engine.
Definition: Physics.hh:36
sdf::SDF_VERSION_NAMESPACE::Frame
A Frame element descibes the properties associated with an explicit frame defined in a Model or World...
Definition: Frame.hh:42
ParserConfig.hh
Types.hh
sdf_config.h
SDFORMAT_VISIBLE
#define SDFORMAT_VISIBLE
Definition: system_util.hh:25
sdf::SDF_VERSION_NAMESPACE::ParserConfig
This class contains configuration options for the libsdformat parser.
Definition: ParserConfig.hh:84
sdf::SDF_VERSION_NAMESPACE::Plugin
Definition: Plugin.hh:45
sdf::SDF_VERSION_NAMESPACE::Atmosphere
The Atmosphere class contains information about an atmospheric model and related parameters such as t...
Definition: Atmosphere.hh:45
sdf::SDF_VERSION_NAMESPACE::Light
Provides a description of a light source.
Definition: Light.hh:63
sdf::SDF_VERSION_NAMESPACE::Joint
Definition: Joint.hh:85
sdf::SDF_VERSION_NAMESPACE::Scene
Definition: Scene.hh:33
sdf::SDF_VERSION_NAMESPACE::Element
class GZ_SDFORMAT_VISIBLE Element
Definition: Element.hh:50
sdf::SDF_VERSION_NAMESPACE::Root
Root class that acts as an entry point to the SDF document model.
Definition: Root.hh:57
sdf::SDF_VERSION_NAMESPACE::Actor
Provides a description of an actor.
Definition: Actor.hh:191
sdf::SDF_VERSION_NAMESPACE::Errors
std::vector< Error > Errors
A vector of Error.
Definition: Types.hh:80
sdf::SDF_VERSION_NAMESPACE::ScopedGraph
Definition: Collision.hh:40
OutputConfig.hh
sdf::SDF_VERSION_NAMESPACE::NestedInclude
Contains the necessary information about an included model file for custom model parsers to be able t...
Definition: InterfaceElements.hh:45
sdf::SDF_VERSION_NAMESPACE::OutputConfig::GlobalConfig
static OutputConfig & GlobalConfig()
Mutable access to a singleton OutputConfig that serves as the global OutputConfig object for all pars...
system_util.hh
Plugin.hh
sdf::SDF_VERSION_NAMESPACE::Plugins
std::vector< Plugin > Plugins
A vector of Plugin.
Definition: Plugin.hh:196
sdf::SDF_VERSION_NAMESPACE::World
Definition: World.hh:58
Atmosphere.hh
sdf::SDF_VERSION_NAMESPACE::Gui
Definition: Gui.hh:31
sdf::SDF_VERSION_NAMESPACE::ElementPtr
std::shared_ptr< Element > ElementPtr
Definition: Element.hh:54
Element.hh