6 #include "../core/interaction.h" 7 #include "../core/workspace.h" 10 SceneNode::SceneNode() {}
12 SceneNode::~SceneNode() {}
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");
19 std::lock_guard<std::mutex> lock(_mutex);
20 _children.push_back(child);
21 child->_has_parent =
true;
24 bool SceneNode::pick(uint32_t
id)
const {
25 for (
auto &child : _render_list) {
26 if (child->pick(
id)) {
33 bool SceneNode::interact(
const Interaction &interaction) {
34 for (
auto &child : _render_list) {
35 if (child->interact(interaction)) {
49 std::lock_guard<std::mutex> lock(_mutex);
50 if (!_frame.empty()) {
52 _frame.pose(
LockScope()->document()->display()->transformer)) {
56 _frame_pose = context.pose;
57 context.pose = context.pose * _pose;
58 scene_context.nodes.push_back(shared_from_this());
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);
69 it = _children.erase(it);
73 for (
auto &child : _render_list) {
74 child->renderSyncRecursive(context, scene_context);