[Bf-blender-cvs] [087f8a78f80] master: Nodes: expose tree name and whether a node is a frame in node tree ref

Jacques Lucke noreply at git.blender.org
Fri Mar 19 22:39:58 CET 2021


Commit: 087f8a78f80220f0265ac9de73ce175fd537d13f
Author: Jacques Lucke
Date:   Fri Mar 19 22:33:43 2021 +0100
Branches: master
https://developer.blender.org/rB087f8a78f80220f0265ac9de73ce175fd537d13f

Nodes: expose tree name and whether a node is a frame in node tree ref

===================================================================

M	source/blender/nodes/NOD_node_tree_ref.hh

===================================================================

diff --git a/source/blender/nodes/NOD_node_tree_ref.hh b/source/blender/nodes/NOD_node_tree_ref.hh
index 9302f14c3a4..1ac281028df 100644
--- a/source/blender/nodes/NOD_node_tree_ref.hh
+++ b/source/blender/nodes/NOD_node_tree_ref.hh
@@ -177,6 +177,7 @@ class NodeRef : NonCopyable, NonMovable {
   bool is_group_input_node() const;
   bool is_group_output_node() const;
   bool is_muted() const;
+  bool is_frame() const;
 
   void *storage() const;
   template<typename T> T *storage() const;
@@ -242,6 +243,7 @@ class NodeTreeRef : NonCopyable, NonMovable {
   bool has_link_cycles() const;
 
   bNodeTree *btree() const;
+  StringRefNull name() const;
 
   std::string to_dot() const;
 
@@ -529,6 +531,11 @@ inline bool NodeRef::is_group_output_node() const
   return bnode_->type == NODE_GROUP_OUTPUT;
 }
 
+inline bool NodeRef::is_frame() const
+{
+  return bnode_->type == NODE_FRAME;
+}
+
 inline bool NodeRef::is_muted() const
 {
   return (bnode_->flag & NODE_MUTED) != 0;
@@ -632,4 +639,9 @@ inline bNodeTree *NodeTreeRef::btree() const
   return btree_;
 }
 
+inline StringRefNull NodeTreeRef::name() const
+{
+  return btree_->id.name + 2;
+}
+
 }  // namespace blender::nodes



More information about the Bf-blender-cvs mailing list