TAMSVIZ
Visualization and annotation tool for ROS
node.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "node.h"
5 
6 #include "../core/interaction.h"
7 #include "../core/workspace.h"
8 #include "material.h"
9 
10 SceneNode::SceneNode() {}
11 
12 SceneNode::~SceneNode() {}
13 
14 void SceneNode::connect(const std::shared_ptr<SceneNode> &child) {
15  if (child->_has_parent) {
16  throw std::runtime_error("this scene node has already been added to a "
17  "different parent scene node");
18  }
19  std::lock_guard<std::mutex> lock(_mutex);
20  _children.push_back(child);
21  child->_has_parent = true;
22 }
23 
24 bool SceneNode::pick(uint32_t id) const {
25  for (auto &child : _render_list) {
26  if (child->pick(id)) {
27  return true;
28  }
29  }
30  return false;
31 }
32 
33 bool SceneNode::interact(const Interaction &interaction) {
34  for (auto &child : _render_list) {
35  if (child->interact(interaction)) {
36  return true;
37  }
38  }
39  return false;
40 }
41 
42 void SceneNode::renderSyncRecursive(const RenderSyncContext &c,
43  SceneContext &scene_context) {
44  if (!_visible) {
45  return;
46  }
47  auto context = c;
48  {
49  std::lock_guard<std::mutex> lock(_mutex);
50  if (!_frame.empty()) {
51  if (auto p =
52  _frame.pose(LockScope()->document()->display()->transformer)) {
53  context.pose = *p;
54  }
55  }
56  _frame_pose = context.pose;
57  context.pose = context.pose * _pose;
58  scene_context.nodes.push_back(shared_from_this());
59  }
60  renderSync(context);
61  _render_list.clear();
62  {
63  std::lock_guard<std::mutex> lock(_mutex);
64  for (auto it = _children.begin(); it != _children.end();) {
65  if (auto child = it->lock()) {
66  _render_list.push_back(child);
67  it++;
68  } else {
69  it = _children.erase(it);
70  }
71  }
72  }
73  for (auto &child : _render_list) {
74  child->renderSyncRecursive(context, scene_context);
75  }
76 }
77 
78 void SceneNode::renderSync(const RenderSyncContext &context) {}
79 
80 void SceneNode::renderAsync(const RenderAsyncContext &context) {}