8 #include "serialization.h" 12 #include <Eigen/Dense> 17 STRUCT_BEGIN(Eigen::Vector2d);
22 STRUCT_BEGIN(Eigen::Vector3d);
28 float srgbGamma2Linear(
float srgb);
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);
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() &&
42 inline bool operator!=(
const Color4 &other)
const {
43 return !(*
this == other);
45 Eigen::Vector4f toLinearVector4f()
const;
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);
56 inline Color3(
double r,
double g,
double b) :
Color4(r, g, b) {}
59 STRUCT_PROPERTY(r, min = 0, max = 1);
60 STRUCT_PROPERTY(g, min = 0, max = 1);
61 STRUCT_PROPERTY(b, min = 0, max = 1);
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();
72 inline bool operator!=(
const Orientation &other)
const {
73 return !(*
this == other);
75 Eigen::Isometry3d toIsometry3d()
const;
78 STRUCT_PROPERTY(yaw, step_scale = 90);
79 STRUCT_PROPERTY(pitch, step_scale = 90);
80 STRUCT_PROPERTY(roll, step_scale = 90);
84 DECLARE_STRUCT_PROPERTY(Eigen::Vector3d, position, Eigen::Vector3d::Zero());
86 inline bool operator==(
const Pose &other)
const {
87 return position() == other.position() &&
88 orientation() == other.orientation();
90 inline bool operator!=(
const Pose &other)
const {
return !(*
this == other); }
91 Eigen::Isometry3d toIsometry3d()
const;
92 void fromIsometry3d(
const Eigen::Isometry3d &pose);
95 STRUCT_PROPERTY(position);
96 STRUCT_PROPERTY(orientation);
101 SizeVector3d(
double sx,
double sy,
double sz) : Eigen::Vector3d(sx, sy, sz) {}
104 STRUCT_PROPERTY(x, min = 1e-6);
105 STRUCT_PROPERTY(y, min = 1e-6);
106 STRUCT_PROPERTY(z, min = 1e-6);
111 SizeVector2d(
double sx,
double sy) : Eigen::Vector2d(sx, sy) {}
114 STRUCT_PROPERTY(x, min = 1e-6);
115 STRUCT_PROPERTY(y, min = 1e-6);
121 Eigen::Affine3d pose = Eigen::Affine3d::Identity();
137 PROPERTY(std::string, name,
"Display", hidden =
true);
139 auto recurse(
const F &f)
140 -> decltype(f(std::shared_ptr<Display>(), std::shared_ptr<Display>())) {
144 [](
void *context,
const Object *parent,
const Object *child) {
145 auto p = parent ? std::dynamic_pointer_cast<
Display>(
146 ((
Object *)parent)->shared_from_this())
148 if (
auto c = child ? std::dynamic_pointer_cast<Display>(
149 ((
Object *)child)->shared_from_this())
151 (*(F *)context)(p, c);
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;
162 child ? std::dynamic_pointer_cast<Display>(
163 ((
Object *)child)->shared_from_this())
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();
187 PROPERTY(std::vector<std::shared_ptr<Display>>, displays,
188 std::vector<std::shared_ptr<Display>>(), hidden =
true);
190 virtual void refreshRecursive();
199 PROPERTY(std::string, name,
"Window");
204 PROPERTY(
int, multiSampling, 4, min = 0, max = 16);
205 PROPERTY(
int, sampleShading, 1, min = 0, max = 2);
212 static std::vector<std::string> _listFrames(
const Property &);
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>());
232 PROPERTY(std::string, label,
"");
241 PROPERTY(
double, color, 0.0, min = 0.0, max = 1.0, wrap =
true);
242 PROPERTY(std::string, label,
"Label");
247 PROPERTY(std::vector<std::shared_ptr<TrackBase>>, tracks, {}, hidden =
true);
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>());