TAMSVIZ
Visualization and annotation tool for ROS
renderlist.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "opengl.h"
7 
8 #include <memory>
9 #include <vector>
10 
11 #include <Eigen/Dense>
12 
13 class Mesh;
14 
15 struct CameraBlock {
16  Eigen::Matrix4f view_matrix = Eigen::Matrix4f::Identity();
17  Eigen::Matrix4f projection_matrix = Eigen::Matrix4f::Identity();
18  static constexpr uint32_t SampleShadingFlag = 1;
19  static constexpr uint32_t TransparentSampleShadingFlag = 2;
20  uint32_t flags = 0;
21 };
22 
23 enum class LightType : uint32_t {
24  Ambient = 0,
25  Directional = 1,
26  Point = 2,
27  Spot = 3,
28  ViewSpace = (1 << 20),
29 };
30 
31 struct LightBlock {
32  Eigen::Matrix4f pose = Eigen::Matrix4f::Identity();
33  Eigen::Vector3f color = Eigen::Vector3f::Zero();
34  uint32_t type = 0;
35  Eigen::Vector3f position = Eigen::Vector3f::Zero();
36  float softness = 1.0f;
37 };
38 
40  LightBlock light_array[16];
41  uint32_t light_count = 0;
42 };
43 
44 struct MaterialBlock {
45  Eigen::Vector4f color = Eigen::Vector4f(1, 1, 1, 1);
46  float roughness = 0.5f;
47  float metallic = 0.0f;
48  uint32_t color_texture = 0;
49  uint32_t normal_texture = 0;
50  uint32_t id = 0;
51  uint32_t flags = 0;
52  uint8_t transparent = false;
53 };
54 
55 struct InstanceBlock {
56  Eigen::Vector4f pose_x = Eigen::Vector4f(1, 0, 0, 0),
57  pose_y = Eigen::Vector4f(0, 1, 0, 0),
58  pose_z = Eigen::Vector4f(0, 0, 1, 0);
59  inline void setPose(const Eigen::Matrix4f &matrix) {
60  pose_x = matrix.row(0);
61  pose_y = matrix.row(1);
62  pose_z = matrix.row(2);
63  }
64  inline void setPose(const Eigen::Isometry3d &pose) {
65  setPose(pose.matrix().cast<float>());
66  }
67  inline void setPose(const Eigen::Affine3d &pose) {
68  setPose(pose.matrix().cast<float>());
69  }
70 };
71 
72 struct RenderOptions {
73  GLuint primitive_type = GL_TRIANGLES;
74  bool transparent = false;
75  bool double_sided = false;
76  // bool colors_linear = true;
77  float point_size = 1;
78 };
79 
80 struct RenderCommand {
81  RenderOptions options;
82  GLuint vertex_array_object = 0;
83  size_t element_count = 0;
84  size_t first_instance = 0;
85  size_t instance_count = 0;
86  size_t material_index = 0;
87  bool indexed = false;
88 };
89 
90 class RenderList {
91  std::vector<MaterialBlock, Eigen::aligned_allocator<MaterialBlock>>
92  _materials;
93  std::vector<InstanceBlock, Eigen::aligned_allocator<InstanceBlock>>
94  _instances;
95  std::vector<RenderCommand> _commands;
96  std::vector<LightBlock, Eigen::aligned_allocator<LightBlock>> _lights;
97 
98 public:
99  void push(const MaterialBlock &material);
100  void push(const std::shared_ptr<Mesh> &mesh, const RenderOptions &options);
101  void push(const InstanceBlock &instance);
102 
103  inline void push(const MaterialBlock &material,
104  const std::shared_ptr<Mesh> &mesh,
105  const InstanceBlock &instance,
106  const RenderOptions &options = RenderOptions()) {
107  push(material);
108  push(mesh, options);
109  push(instance);
110  }
111 
112  template <class IT>
113  inline void push(const MaterialBlock &material,
114  const std::shared_ptr<Mesh> &mesh, const IT &instance_begin,
115  const IT &instance_end,
116  const RenderOptions &options = RenderOptions()) {
117  push(material);
118  push(mesh, options);
119  for (auto &instance = instance_begin; instance != instance_end;
120  ++instance) {
121  push(mesh, *instance);
122  }
123  }
124 
125  inline void push(const LightBlock &light) { _lights.push_back(light); }
126 
127  void clear();
128 
129  friend class Renderer;
130 };
Definition: mesh.h:49