TAMSVIZ
Visualization and annotation tool for ROS
material.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "material.h"
5 
6 #include "../core/log.h"
7 #include "mesh.h"
8 
9 Material::Material() { _alive = true; }
10 
11 Material::Material(float r, float g, float b, float a) {
12  _alive = true;
13  color().r() = r;
14  color().g() = g;
15  color().b() = b;
16  opacity() = a;
17 }
18 
19 Material::~Material() { _alive = false; }
20 
21 MaterialOverride::MaterialOverride() { _alive = true; }
22 
23 MaterialOverride::~MaterialOverride() { _alive = false; }
24 
25 static void syncTexture(std::shared_ptr<Texture> &texture,
26  const std::string &url, TextureType type) {
27  if (!url.empty()) {
28  if (!texture || texture->url() != url) {
29  texture = Texture::manager().load(url, type);
30  }
31  } else {
32  texture = nullptr;
33  }
34 }
35 
37  std::mutex _mutex;
38  size_t _counter = 1;
39  std::vector<uint32_t> _free;
40 
41 public:
42  uint32_t allocate() {
43  std::lock_guard<std::mutex> lock(_mutex);
44  if (_free.empty()) {
45  return _counter++;
46  } else {
47  auto id = _free.back();
48  _free.pop_back();
49  return id;
50  }
51  }
52  void release(uint32_t id) {
53  std::lock_guard<std::mutex> lock(_mutex);
54  _free.push_back(id);
55  }
56  static std::shared_ptr<MaterialIDFactory> instance() {
57  static auto instance = std::make_shared<MaterialIDFactory>();
58  return instance;
59  }
60 };
61 
62 MaterialRenderer::MaterialRenderer(
63  std::shared_ptr<const Material> material,
64  std::shared_ptr<const MaterialOverride> material_override) {
65  if (!material) {
66  throw std::invalid_argument("material");
67  }
68  _material = material;
69  _material_override = material_override;
70  _block.id = MaterialIDFactory::instance()->allocate();
71 }
72 
73 MaterialRenderer::~MaterialRenderer() {
74  MaterialIDFactory::instance()->release(_block.id);
75 }
76 
77 void MaterialRenderer::updateSync(const Material &material) {
78  if (!material._alive) {
79  throw std::runtime_error("material already destroyed");
80  }
81  _block.color = material.color().toLinearVector4f();
82  _block.color.w() = (float)material.opacity();
83  _block.roughness = (float)material.roughness();
84  _block.metallic = (float)material.metallic();
85  _color_texture_url = material.texture();
86  _normal_texture_url = material.normals();
87  if (!material._alive) {
88  throw std::runtime_error("material already destroyed");
89  }
90 }
91 
92 void MaterialRenderer::updateSync(const MaterialOverride &material_override) {
93  if (!material_override._alive) {
94  throw std::runtime_error("material override already destroyed");
95  }
96  if (material_override.color()) {
97  _block.color = material_override.material()->color().toLinearVector4f();
98  }
99  if (material_override.parameters()) {
100  _block.roughness = (float)material_override.material()->roughness();
101  _block.metallic = (float)material_override.material()->metallic();
102  }
103  _block.color.w() = (float)material_override.material()->opacity();
104  if (material_override.texture()) {
105  _color_texture_url = material_override.material()->texture();
106  }
107  if (material_override.normals()) {
108  _normal_texture_url = material_override.material()->normals();
109  }
110  if (!material_override._alive) {
111  throw std::runtime_error("material override already destroyed");
112  }
113 }
114 
115 void MaterialRenderer::renderAsync(const RenderAsyncContext &context) {
116  syncTexture(_color_texture, _color_texture_url, TextureType::Color);
117  syncTexture(_normal_texture, _normal_texture_url, TextureType::Normal);
118  _block.color_texture = _color_texture ? _color_texture->update() : 0;
119  _block.normal_texture = _normal_texture ? _normal_texture->update() : 0;
120  _block.transparent = ((_block.color.w() < 1.0) ||
121  (_color_texture && _color_texture->transparent()));
122 }
123 
124 void MaterialRenderer::renderSync(const RenderSyncContext &context) {
125  if (_material) {
126  updateSync(*_material);
127  if (_material_override) {
128  updateSync(*_material_override);
129  }
130  }
131 }