TAMSVIZ
Visualization and annotation tool for ROS
material.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "../core/document.h"
7 
8 #include "../render/renderlist.h"
9 #include "../render/texture.h"
10 
11 struct Material : Object {
12  bool _alive = false;
13  PROPERTY(Color3, color, Color3());
14  PROPERTY(double, opacity, 1.0, min = 0, max = 1);
15  PROPERTY(double, roughness, 0.4, min = 0, max = 1);
16  PROPERTY(double, metallic, 0.0, min = 0, max = 1);
17  PROPERTY(std::string, texture, "");
18  PROPERTY(std::string, normals, "");
19  Material();
20  Material(float r, float g, float b, float a = 1);
21  ~Material();
22 };
23 DECLARE_TYPE(Material, Object);
24 
26  bool _alive = false;
27  PROPERTY(bool, color, false);
28  PROPERTY(bool, parameters, false);
29  PROPERTY(bool, texture, false);
30  PROPERTY(bool, normals, false);
31  PROPERTY(std::shared_ptr<Material>, material, std::make_shared<Material>());
34 };
35 DECLARE_TYPE(MaterialOverride, Object);
36 
38 private:
39  std::shared_ptr<const Material> _material;
40  std::shared_ptr<const MaterialOverride> _material_override;
41  MaterialBlock _block;
42  std::string _color_texture_url, _normal_texture_url;
43  std::shared_ptr<Texture> _color_texture, _normal_texture;
44  void updateSync(const Material &material);
45  void updateSync(const MaterialOverride &material_override);
46 
47 public:
48  MaterialRenderer(const MaterialRenderer &) = delete;
49  MaterialRenderer &operator=(const MaterialRenderer &) = delete;
51  std::shared_ptr<const Material> material,
52  std::shared_ptr<const MaterialOverride> material_override = nullptr);
54  void renderSync(const RenderSyncContext &context);
55  void renderAsync(const RenderAsyncContext &context);
56  const MaterialBlock &block() const { return _block; }
57  MaterialBlock &block() { return _block; }
58  bool pick(uint32_t id) const { return _block.id == id; }
59  uint32_t id() const { return _block.id; }
60 };
Definition: object.h:8