All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RenderTypes.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2014 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 _RENDERTYPES_HH_
18 #define _RENDERTYPES_HH_
19 
20 #include <boost/shared_ptr.hpp>
21 #include "gazebo/util/system.hh"
22 
25 #define GZ_VISIBILITY_ALL 0x0FFFFFFF
26 
29 #define GZ_VISIBILITY_SELECTION 0x10000000
30 
33 #define GZ_VISIBILITY_GUI 0x00000001
34 
37 #define GZ_VISIBILITY_SELECTABLE 0x00000002
38 
39 namespace gazebo
40 {
41  namespace rendering
42  {
43  class Scene;
44  class Light;
45  class Camera;
46  class UserCamera;
47  class DepthCamera;
48  class GpuLaser;
49  class DynamicLines;
50  class Visual;
51  class LaserVisual;
52  class SonarVisual;
53  class WrenchVisual;
54  class CameraVisual;
55  class JointVisual;
56  class AxisVisual;
57  class ArrowVisual;
58  class ContactVisual;
59  class COMVisual;
60  class RFIDVisual;
61  class RFIDTagVisual;
62  class WindowManager;
63  class SelectionObj;
64 
67  typedef boost::shared_ptr<Scene> ScenePtr;
68 
71  typedef boost::shared_ptr<Light> LightPtr;
72 
75  typedef boost::shared_ptr<Camera> CameraPtr;
76 
79  typedef boost::shared_ptr<UserCamera> UserCameraPtr;
80 
83  typedef boost::shared_ptr<DepthCamera> DepthCameraPtr;
84 
87  typedef boost::shared_ptr<GpuLaser> GpuLaserPtr;
88 
91  typedef boost::shared_ptr<DynamicLines> DynamicLinesPtr;
92 
95  typedef boost::shared_ptr<Visual> VisualPtr;
96 
99  typedef boost::shared_ptr<LaserVisual> LaserVisualPtr;
100 
103  typedef boost::shared_ptr<SonarVisual> SonarVisualPtr;
104 
107  typedef boost::shared_ptr<WrenchVisual> WrenchVisualPtr;
108 
111  typedef boost::shared_ptr<CameraVisual> CameraVisualPtr;
112 
115  typedef boost::shared_ptr<JointVisual> JointVisualPtr;
116 
119  typedef boost::shared_ptr<ContactVisual> ContactVisualPtr;
120 
123  typedef boost::shared_ptr<ArrowVisual> ArrowVisualPtr;
124 
127  typedef boost::shared_ptr<AxisVisual> AxisVisualPtr;
128 
131  typedef boost::shared_ptr<COMVisual> COMVisualPtr;
132 
135  typedef boost::shared_ptr<RFIDVisual> RFIDVisualPtr;
136 
139  typedef boost::shared_ptr<RFIDTagVisual> RFIDTagVisualPtr;
140 
143  typedef boost::shared_ptr<WindowManager> WindowManagerPtr;
144 
147  typedef boost::shared_ptr<SelectionObj> SelectionObjPtr;
148 
152  {
155 
158 
162 
165 
169 
173 
176  };
177  }
178 }
179 #endif