TAMSVIZ
Visualization and annotation tool for ROS
document.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "event.h"
7 #include "object.h"
8 #include "serialization.h"
9 #include "snapshot.h"
10 #include "struct.h"
11 
12 #include <Eigen/Dense>
13 
14 class SceneContext;
16 
17 STRUCT_BEGIN(Eigen::Vector2d);
18 STRUCT_PROPERTY(x);
19 STRUCT_PROPERTY(y);
20 STRUCT_END();
21 
22 STRUCT_BEGIN(Eigen::Vector3d);
23 STRUCT_PROPERTY(x);
24 STRUCT_PROPERTY(y);
25 STRUCT_PROPERTY(z);
26 STRUCT_END();
27 
28 float srgbGamma2Linear(float srgb);
29 
30 struct Color4 {
31  DECLARE_STRUCT_PROPERTY(double, r, 0.8);
32  DECLARE_STRUCT_PROPERTY(double, g, 0.8);
33  DECLARE_STRUCT_PROPERTY(double, b, 0.8);
34  DECLARE_STRUCT_PROPERTY(double, a, 1.0);
35  inline Color4() {}
36  inline Color4(double r, double g, double b, double a = 1.0)
37  : _r(r), _g(g), _b(b), _a(a) {}
38  inline bool operator==(const Color4 &other) const {
39  return r() == other.r() && g() == other.g() && b() == other.b() &&
40  a() == other.a();
41  }
42  inline bool operator!=(const Color4 &other) const {
43  return !(*this == other);
44  }
45  Eigen::Vector4f toLinearVector4f() const;
46 };
47 STRUCT_BEGIN(Color4);
48 STRUCT_PROPERTY(r, min = 0, max = 1);
49 STRUCT_PROPERTY(g, min = 0, max = 1);
50 STRUCT_PROPERTY(b, min = 0, max = 1);
51 STRUCT_PROPERTY(a, min = 0, max = 1);
52 STRUCT_END();
53 
54 struct Color3 : Color4 {
55  inline Color3() {}
56  inline Color3(double r, double g, double b) : Color4(r, g, b) {}
57 };
58 STRUCT_BEGIN(Color3);
59 STRUCT_PROPERTY(r, min = 0, max = 1);
60 STRUCT_PROPERTY(g, min = 0, max = 1);
61 STRUCT_PROPERTY(b, min = 0, max = 1);
62 STRUCT_END();
63 
64 struct Orientation {
65  DECLARE_STRUCT_PROPERTY(double, yaw, 0.0);
66  DECLARE_STRUCT_PROPERTY(double, pitch, 0.0);
67  DECLARE_STRUCT_PROPERTY(double, roll, 0.0);
68  inline bool operator==(const Orientation &other) const {
69  return yaw() == other.yaw() && pitch() == other.pitch() &&
70  roll() == other.roll();
71  }
72  inline bool operator!=(const Orientation &other) const {
73  return !(*this == other);
74  }
75  Eigen::Isometry3d toIsometry3d() const;
76 };
77 STRUCT_BEGIN(Orientation);
78 STRUCT_PROPERTY(yaw, step_scale = 90);
79 STRUCT_PROPERTY(pitch, step_scale = 90);
80 STRUCT_PROPERTY(roll, step_scale = 90);
81 STRUCT_END();
82 
83 struct Pose {
84  DECLARE_STRUCT_PROPERTY(Eigen::Vector3d, position, Eigen::Vector3d::Zero());
85  DECLARE_STRUCT_PROPERTY(Orientation, orientation, Orientation());
86  inline bool operator==(const Pose &other) const {
87  return position() == other.position() &&
88  orientation() == other.orientation();
89  }
90  inline bool operator!=(const Pose &other) const { return !(*this == other); }
91  Eigen::Isometry3d toIsometry3d() const;
92  void fromIsometry3d(const Eigen::Isometry3d &pose);
93 };
94 STRUCT_BEGIN(Pose);
95 STRUCT_PROPERTY(position);
96 STRUCT_PROPERTY(orientation);
97 STRUCT_END();
98 
99 struct SizeVector3d : Eigen::Vector3d {
100  SizeVector3d() { setConstant(1.0); }
101  SizeVector3d(double sx, double sy, double sz) : Eigen::Vector3d(sx, sy, sz) {}
102 };
103 STRUCT_BEGIN(SizeVector3d);
104 STRUCT_PROPERTY(x, min = 1e-6);
105 STRUCT_PROPERTY(y, min = 1e-6);
106 STRUCT_PROPERTY(z, min = 1e-6);
107 STRUCT_END();
108 
109 struct SizeVector2d : Eigen::Vector2d {
110  SizeVector2d() { setConstant(1.0); }
111  SizeVector2d(double sx, double sy) : Eigen::Vector2d(sx, sy) {}
112 };
113 STRUCT_BEGIN(SizeVector2d);
114 STRUCT_PROPERTY(x, min = 1e-6);
115 STRUCT_PROPERTY(y, min = 1e-6);
116 STRUCT_END();
117 
118 class RenderList;
119 
121  Eigen::Affine3d pose = Eigen::Affine3d::Identity();
122  RenderList *render_list = nullptr;
123 };
125  RenderList *render_list = nullptr;
126 };
127 
128 class Interaction;
129 
130 struct Display : Object {
131 
132 protected:
133  Display();
134  virtual ~Display() {}
135 
136 public:
137  PROPERTY(std::string, name, "Display", hidden = true);
138  template <class F>
139  auto recurse(const F &f)
140  -> decltype(f(std::shared_ptr<Display>(), std::shared_ptr<Display>())) {
141 
142  forEachObject(
143  (void *)&f,
144  [](void *context, const Object *parent, const Object *child) {
145  auto p = parent ? std::dynamic_pointer_cast<Display>(
146  ((Object *)parent)->shared_from_this())
147  : nullptr;
148  if (auto c = child ? std::dynamic_pointer_cast<Display>(
149  ((Object *)child)->shared_from_this())
150  : nullptr) {
151  (*(F *)context)(p, c);
152  }
153  },
154  nullptr, this);
155  }
156  template <class F>
157  auto recurse(const F &f) -> decltype(f(std::shared_ptr<Display>())) {
158  forEachObject((void *)&f,
159  [](void *context, const Object *parent, const Object *child) {
160  auto *f = (F *)context;
161  if (auto c =
162  child ? std::dynamic_pointer_cast<Display>(
163  ((Object *)child)->shared_from_this())
164  : nullptr) {
165  (*(F *)context)(c);
166  }
167  },
168  nullptr, this);
169  }
170  virtual void renderSyncRecursive(const RenderSyncContext &context) {
171  renderSync(context);
172  }
173  virtual void renderSync(const RenderSyncContext &context) {}
174  virtual void renderAsync(const RenderAsyncContext &context) {}
175  virtual bool pick(uint32_t id) const { return false; }
176  virtual bool interact(const Interaction &interaction);
177  virtual void refreshRecursive();
178  virtual void refresh();
179 };
180 DECLARE_TYPE(Display, Object);
181 
183 protected:
184  DisplayGroupBase() {}
185 
186 public:
187  PROPERTY(std::vector<std::shared_ptr<Display>>, displays,
188  std::vector<std::shared_ptr<Display>>(), hidden = true);
189  virtual void renderSyncRecursive(const RenderSyncContext &context) override;
190  virtual void refreshRecursive();
191 };
192 DECLARE_TYPE(DisplayGroupBase, Display);
193 
194 struct Window : Object {
195 protected:
196  Window() {}
197 
198 public:
199  PROPERTY(std::string, name, "Window");
200 };
201 DECLARE_TYPE(Window, Object);
202 
204  PROPERTY(int, multiSampling, 4, min = 0, max = 16);
205  PROPERTY(int, sampleShading, 1, min = 0, max = 2);
206 };
207 DECLARE_TYPE(RenderingParameters, Object);
208 
209 class Transformer;
211 private:
212  static std::vector<std::string> _listFrames(const Property &);
213 
214 public:
215  std::shared_ptr<Transformer> transformer;
216  PROPERTY(std::string, fixedFrame, "world", list = &WorldDisplay::_listFrames);
217  PROPERTY(Color4, backgroundColor, Color4(0.3, 0.3, 0.3, 1.0));
218  PROPERTY(double, ambientLighting, 1.0, min = 0.0, max = 1.0);
219  PROPERTY(std::shared_ptr<RenderingParameters>, rendering,
220  std::make_shared<RenderingParameters>());
221  virtual void renderSync(const RenderSyncContext &context) override;
222  virtual void renderAsync(const RenderAsyncContext &context) override;
223  WorldDisplay();
224 };
225 DECLARE_TYPE(WorldDisplay, DisplayGroupBase);
226 
228 protected:
229  AnnotationBase() {}
230 
231 public:
232  PROPERTY(std::string, label, "");
233 };
234 DECLARE_TYPE(AnnotationBase, Object);
235 
236 struct TrackBase : Object {
237 protected:
238  TrackBase();
239 
240 public:
241  PROPERTY(double, color, 0.0, min = 0.0, max = 1.0, wrap = true);
242  PROPERTY(std::string, label, "Label");
243 };
244 DECLARE_TYPE(TrackBase, Object);
245 
246 struct Timeline : Object {
247  PROPERTY(std::vector<std::shared_ptr<TrackBase>>, tracks, {}, hidden = true);
248 };
249 DECLARE_TYPE(Timeline, Object);
250 
251 struct Document : Object {
252  std::string path;
253  PROPERTY(std::shared_ptr<Timeline>, timeline, std::make_shared<Timeline>());
254  PROPERTY(std::shared_ptr<Window>, window, nullptr);
255  PROPERTY(std::shared_ptr<WorldDisplay>, display,
256  std::make_shared<WorldDisplay>());
257 };
258 DECLARE_TYPE(Document, Object);
Definition: object.h:8
Definition: document.h:83