TAMSVIZ
Visualization and annotation tool for ROS
renderlist.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "renderlist.h"
5 
6 #include "../core/log.h"
7 #include "mesh.h"
8 
9 void RenderList::push(const MaterialBlock &material) {
10  _materials.push_back(material);
11 }
12 
13 void RenderList::push(const std::shared_ptr<Mesh> &mesh,
14  const RenderOptions &options) {
15  RenderCommand command;
16  command.options = options;
17  if (mesh->transparent()) {
18  command.options.transparent = true;
19  }
20  command.vertex_array_object = mesh->vertexArrayObject();
21  if (!mesh->data().indices.empty()) {
22  command.element_count = mesh->data().indices.size();
23  command.indexed = true;
24  } else {
25  command.element_count = mesh->data().positions.size();
26  command.indexed = false;
27  }
28  command.material_index = _materials.size() - 1;
29  _commands.push_back(command);
30 }
31 
32 void RenderList::push(const InstanceBlock &instance) {
33  auto &command = _commands.back();
34  if (command.instance_count == 0) {
35  command.first_instance = _instances.size();
36  command.instance_count = 1;
37  } else {
38  command.instance_count++;
39  }
40  _instances.push_back(instance);
41 }
42 
43 void RenderList::clear() {
44  _materials.clear();
45  _instances.clear();
46  _commands.clear();
47  _lights.clear();
48 }