TAMSVIZ
Visualization and annotation tool for ROS
text.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "frame.h"
7 #include "mesh.h"
8 
9 class Material;
10 class MaterialRenderer;
11 class Texture;
12 class RenderOptions;
13 class Mesh;
14 
15 class TextRenderer : public SceneNode {
16  std::shared_ptr<Material> _material;
17  std::shared_ptr<MaterialRenderer> _material_renderer;
18  std::shared_ptr<Texture> _texture;
19  std::shared_ptr<Mesh> _mesh;
20  std::string _text;
21  Watcher _watcher;
22  Eigen::Affine3d _parent_pose = Eigen::Affine3d::Identity();
23  bool _view_facing = true;
24  double _size = 1.0;
25  Eigen::Vector2d _offset = Eigen::Vector2d::Zero();
26 
27 public:
28  void viewFacing(bool v) { _view_facing = v; }
29  bool viewFacing() const { return _view_facing; }
30  const std::string &text() const { return _text; }
31  void text(const std::string &text) { _text = text; }
32  TextRenderer(const std::shared_ptr<Material> &material = nullptr);
33  virtual void renderSync(const RenderSyncContext &context) override;
34  virtual void renderAsync(const RenderAsyncContext &context) override;
35  virtual bool pick(uint32_t id) const override;
36  void size(double s) { _size = s; }
37  double size() const { return _size; }
38  void offset(const Eigen::Vector2d &offset) { _offset = offset; }
39  const Eigen::Vector2d &offset() const { return _offset; }
40 };
41 
42 class TextDisplay : public FrameDisplayBase {
43  std::shared_ptr<TextRenderer> _renderer;
44  std::shared_ptr<Material> _material = std::make_shared<Material>();
45 
46 public:
47  PROPERTY(std::string, text, "Text");
48  PROPERTY(Color3, color, Color3(1, 1, 1));
49  PROPERTY(double, opacity, 1.0, min = 0.0, max = 1.0);
50  PROPERTY(double, size, 0.1, min = 0);
51  PROPERTY(bool, viewFacing, true);
52  PROPERTY(Eigen::Vector2d, offset, Eigen::Vector2d::Zero());
53  TextDisplay();
54  virtual void renderSync(const RenderSyncContext &context) override;
55 };
56 DECLARE_TYPE(TextDisplay, MeshDisplayBase);
Definition: mesh.h:49
Definition: node.h:20
Definition: watcher.h:8