|
Blender V5.0
|
Namespaces | |
| namespace | detail |
| namespace | ops |
| namespace | ui |
Classes | |
| struct | SocketItemsAccessorDefaults |
| struct | SocketItemsRef |
Functions | |
| template<typename Accessor> | |
| bNode * | find_node_by_item (bNodeTree &ntree, const typename Accessor::ItemT &item) |
| template<typename Accessor> | |
| Accessor::ItemT * | find_item_by_identifier (bNode &node, const StringRef identifier) |
| template<typename Accessor> | |
| void | destruct_array (bNode &node) |
| template<typename Accessor> | |
| void | clear (bNode &node) |
| template<typename Accessor> | |
| void | copy_array (const bNode &src_node, bNode &dst_node) |
| template<typename Accessor> | |
| std::string | get_validated_name (const StringRef name) |
| template<typename Accessor> | |
| void | set_item_name_and_make_unique (bNode &node, typename Accessor::ItemT &item, const char *value) |
| template<typename Accessor> | |
| Accessor::ItemT * | add_item_with_socket_type_and_name (bNodeTree &ntree, bNode &node, const eNodeSocketDatatype socket_type, const char *name, std::optional< int > dimensions=std::nullopt) |
| template<typename Accessor> | |
| Accessor::ItemT * | add_item_with_name (bNode &node, const char *name) |
| template<typename Accessor> | |
| Accessor::ItemT * | add_item (bNode &node) |
| template<typename Accessor> | |
| std::string | get_socket_identifier (const typename Accessor::ItemT &item, const eNodeSocketInOut in_out) |
| std::optional< eNodeSocketDatatype > | get_socket_item_type_to_add (const eNodeSocketDatatype linked_type, const FunctionRef< bool(eNodeSocketDatatype type)> is_supported) |
| template<typename Accessor> | |
| bool | try_add_item_via_extend_socket (bNodeTree &ntree, bNode &extend_node, bNodeSocket &extend_socket, bNode &storage_node, bNodeLink &link, typename Accessor::ItemT **r_new_item=nullptr) |
| template<typename Accessor> | |
| bool | try_add_item_via_any_extend_socket (bNodeTree &ntree, bNode &extend_node, bNode &storage_node, bNodeLink &link, const std::optional< StringRef > socket_identifier=std::nullopt, typename Accessor::ItemT **r_new_item=nullptr) |
| template<typename Accessor> | |
| void | blend_write (BlendWriter *writer, const bNode &node) |
| template<typename Accessor> | |
| void | blend_read_data (BlendDataReader *reader, bNode &node) |
Some nodes have a dynamic number of sockets (e.g. simulation input/output). These nodes store an array of items in their bNode->storage (e.g. NodeSimulationItem). Different nodes have slightly different storage requirements, but a lot of the logic is still the same between nodes. This file implements various shared functionality that can be used by different nodes to deal with these item arrays.
In order to use the functions, one has to implement an "accessor" which tells the shared code how to deal with specific item arrays. Different functions have different requirements for the accessor. It's easiest to just look at existing accessors like SimulationItemsAccessor and RepeatItemsAccessor and to implement the same methods.
|
inline |
Add a new item at the end.
Definition at line 256 of file NOD_socket_items.hh.
References blender::nodes::socket_items::detail::add_item_to_array().
Referenced by blender::nodes::socket_items::ops::add_item(), and try_add_item_via_extend_socket().
|
inline |
Add a new item at the end with the given name.
Definition at line 245 of file NOD_socket_items.hh.
References blender::nodes::socket_items::detail::add_item_to_array(), and name.
Referenced by blender::nodes::socket_items::ops::add_item(), blender::nodes::node_geo_menu_switch_cc::node_init(), and try_add_item_via_extend_socket().
|
inline |
Add a new item at the end with the given socket type and name. The optional dimensions argument can be provided for types that support multiple possible dimensions like Vector. It is expected to be in the range [2, 4] and if not provided, 3 should be assumed.
Definition at line 219 of file NOD_socket_items.hh.
References blender::nodes::socket_items::detail::add_item_to_array(), BLI_assert, ELEM, name, SOCK_VECTOR, bNodeTree::type, and UNUSED_VARS_NDEBUG.
Referenced by blender::nodes::socket_items::ops::add_item(), blender::ed::space_node::viewer_linking::ensure_geometry_nodes_viewer_has_non_geometry_socket(), blender::ed::space_node::viewer_linking::ensure_geometry_nodes_viewer_starts_with_geometry_socket(), blender::nodes::node_geo_field_to_grid_cc::node_gather_link_search_ops(), blender::nodes::node_geo_attribute_capture_cc::node_gather_link_searches(), blender::nodes::node_geo_bake_cc::node_gather_link_searches(), blender::nodes::node_geo_combine_bundle_cc::node_gather_link_searches(), blender::nodes::node_geo_evaluate_closure_cc::node_gather_link_searches(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_gather_link_searches(), blender::nodes::node_geo_separate_bundle_cc::node_gather_link_searches(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_gather_link_searches(), blender::nodes::node_geo_viewer_cc::node_gather_link_searches(), blender::nodes::sync_sockets_closure(), blender::nodes::sync_sockets_combine_bundle(), blender::nodes::sync_sockets_evaluate_closure(), blender::nodes::sync_sockets_separate_bundle(), and try_add_item_via_extend_socket().
|
inline |
Definition at line 24 of file NOD_socket_items_blend.hh.
References BLO_read_struct_array_with_size(), blender::nodes::socket_items::SocketItemsRef< T >::items, and blender::nodes::socket_items::SocketItemsRef< T >::items_num.
Referenced by blender::nodes::node_composite_file_output_cc::node_blend_read(), blender::nodes::node_fn_format_string_cc::node_blend_read(), blender::nodes::node_geo_attribute_capture_cc::node_blend_read(), blender::nodes::node_geo_bake_cc::node_blend_read(), blender::nodes::node_geo_closure_cc::output_node::node_blend_read(), blender::nodes::node_geo_combine_bundle_cc::node_blend_read(), blender::nodes::node_geo_evaluate_closure_cc::node_blend_read(), blender::nodes::node_geo_field_to_grid_cc::node_blend_read(), blender::nodes::node_geo_foreach_geometry_element_cc::output_node::node_blend_read(), blender::nodes::node_geo_index_switch_cc::node_blend_read(), blender::nodes::node_geo_menu_switch_cc::node_blend_read(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_blend_read(), blender::nodes::node_geo_separate_bundle_cc::node_blend_read(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_blend_read(), and blender::nodes::node_geo_viewer_cc::node_blend_read().
|
inline |
Definition at line 13 of file NOD_socket_items_blend.hh.
References BLO_write_struct_array_by_id(), blender::nodes::socket_items::SocketItemsRef< T >::items, blender::nodes::socket_items::SocketItemsRef< T >::items_num, and blender::dna::sdna_struct_id_get().
Referenced by blender::nodes::node_composite_file_output_cc::node_blend_write(), blender::nodes::node_fn_format_string_cc::node_blend_write(), blender::nodes::node_geo_attribute_capture_cc::node_blend_write(), blender::nodes::node_geo_bake_cc::node_blend_write(), blender::nodes::node_geo_closure_cc::output_node::node_blend_write(), blender::nodes::node_geo_combine_bundle_cc::node_blend_write(), blender::nodes::node_geo_evaluate_closure_cc::node_blend_write(), blender::nodes::node_geo_field_to_grid_cc::node_blend_write(), blender::nodes::node_geo_foreach_geometry_element_cc::output_node::node_blend_write(), blender::nodes::node_geo_index_switch_cc::node_blend_write(), blender::nodes::node_geo_menu_switch_cc::node_blend_write(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_blend_write(), blender::nodes::node_geo_separate_bundle_cc::node_blend_write(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_blend_write(), and blender::nodes::node_geo_viewer_cc::node_blend_write().
|
inline |
Removes all items from the node.
Definition at line 102 of file NOD_socket_items.hh.
References blender::nodes::socket_items::SocketItemsRef< T >::active_index, destruct_array(), and blender::nodes::socket_items::SocketItemsRef< T >::items_num.
Referenced by blender::nodes::node_geo_foreach_geometry_element_cc::output_node::node_gather_link_searches(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_gather_link_searches(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_gather_link_searches(), blender::nodes::sync_sockets_closure(), blender::nodes::sync_sockets_combine_bundle(), blender::nodes::sync_sockets_evaluate_closure(), and blender::nodes::sync_sockets_separate_bundle().
|
inline |
Copy the items from the storage of the source node to the storage of the destination node.
Definition at line 113 of file NOD_socket_items.hh.
References i, blender::nodes::socket_items::SocketItemsRef< T >::items, blender::nodes::socket_items::SocketItemsRef< T >::items_num, and MEM_calloc_arrayN().
Referenced by blender::nodes::node_composite_file_output_cc::node_copy_storage(), blender::nodes::node_fn_format_string_cc::node_copy_storage(), blender::nodes::node_geo_attribute_capture_cc::node_copy_storage(), blender::nodes::node_geo_bake_cc::node_copy_storage(), blender::nodes::node_geo_closure_cc::output_node::node_copy_storage(), blender::nodes::node_geo_combine_bundle_cc::node_copy_storage(), blender::nodes::node_geo_evaluate_closure_cc::node_copy_storage(), blender::nodes::node_geo_field_to_grid_cc::node_copy_storage(), blender::nodes::node_geo_foreach_geometry_element_cc::output_node::node_copy_storage(), blender::nodes::node_geo_index_switch_cc::node_copy_storage(), blender::nodes::node_geo_menu_switch_cc::node_copy_storage(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_copy_storage(), blender::nodes::node_geo_separate_bundle_cc::node_copy_storage(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_copy_storage(), and blender::nodes::node_geo_viewer_cc::node_copy_storage().
|
inline |
Destruct all the items and the free the array itself.
Definition at line 88 of file NOD_socket_items.hh.
References i, blender::nodes::socket_items::SocketItemsRef< T >::items, blender::nodes::socket_items::SocketItemsRef< T >::items_num, and MEM_SAFE_FREE.
Referenced by clear(), blender::nodes::node_composite_file_output_cc::node_free_storage(), blender::nodes::node_fn_format_string_cc::node_free_storage(), blender::nodes::node_geo_attribute_capture_cc::node_free_storage(), blender::nodes::node_geo_bake_cc::node_free_storage(), blender::nodes::node_geo_closure_cc::output_node::node_free_storage(), blender::nodes::node_geo_combine_bundle_cc::node_free_storage(), blender::nodes::node_geo_evaluate_closure_cc::node_free_storage(), blender::nodes::node_geo_field_to_grid_cc::node_free_storage(), blender::nodes::node_geo_foreach_geometry_element_cc::output_node::node_free_storage(), blender::nodes::node_geo_index_switch_cc::node_free_storage(), blender::nodes::node_geo_menu_switch_cc::node_free_storage(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_free_storage(), blender::nodes::node_geo_separate_bundle_cc::node_free_storage(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_free_storage(), and blender::nodes::node_geo_viewer_cc::node_free_storage().
|
inline |
Find the item with the given identifier.
Definition at line 72 of file NOD_socket_items.hh.
References i.
Referenced by blender::ed::space_node::viewer_linking::finalize_viewer_link().
|
inline |
Iterates over the node tree to find the node that this item belongs to.
Definition at line 58 of file NOD_socket_items.hh.
|
inline |
Definition at line 265 of file NOD_socket_items.hh.
References SOCK_IN.
Referenced by try_add_item_via_extend_socket().
|
inline |
Definition at line 279 of file NOD_socket_items.hh.
References SOCK_RGBA, and SOCK_VECTOR.
Referenced by try_add_item_via_extend_socket().
|
inline |
Enforce constraints on the name of the item.
Definition at line 128 of file NOD_socket_items.hh.
References name.
Referenced by set_item_name_and_make_unique().
|
inline |
Changes the name of an existing item and makes sure that the name is unique among other the other items in the same array.
Definition at line 143 of file NOD_socket_items.hh.
References BLI_assert, BLI_strdup(), BLI_uniquename_cb(), get_validated_name(), MEM_SAFE_FREE, name, blender::bke::node_static_socket_label(), and unique_name().
Referenced by blender::nodes::MenuSwitchItemsAccessor::init_with_name(), blender::nodes::BakeItemsAccessor::init_with_socket_type_and_name(), blender::nodes::CaptureAttributeItemsAccessor::init_with_socket_type_and_name(), blender::nodes::ClosureInputItemsAccessor::init_with_socket_type_and_name(), blender::nodes::ClosureOutputItemsAccessor::init_with_socket_type_and_name(), blender::nodes::CombineBundleItemsAccessor::init_with_socket_type_and_name(), blender::nodes::EvaluateClosureInputItemsAccessor::init_with_socket_type_and_name(), blender::nodes::EvaluateClosureOutputItemsAccessor::init_with_socket_type_and_name(), blender::nodes::FieldToGridItemsAccessor::init_with_socket_type_and_name(), blender::nodes::FileOutputItemsAccessor::init_with_socket_type_and_name(), blender::nodes::ForeachGeometryElementGenerationItemsAccessor::init_with_socket_type_and_name(), blender::nodes::ForeachGeometryElementInputItemsAccessor::init_with_socket_type_and_name(), blender::nodes::ForeachGeometryElementMainItemsAccessor::init_with_socket_type_and_name(), blender::nodes::FormatStringItemsAccessor::init_with_socket_type_and_name(), blender::nodes::GeoViewerItemsAccessor::init_with_socket_type_and_name(), blender::nodes::RepeatItemsAccessor::init_with_socket_type_and_name(), blender::nodes::SeparateBundleItemsAccessor::init_with_socket_type_and_name(), blender::nodes::SimulationItemsAccessor::init_with_socket_type_and_name(), and blender::ed::space_node::viewer_linking::node_link_viewer_get_socket().
|
inlinenodiscard |
Allow the item array to be extended from any extend-socket in the node.
Definition at line 375 of file NOD_socket_items.hh.
References bNodeLink::fromnode, bNodeLink::fromsock, bNodeSocket::identifier, bNodeSocket::idname, STREQ, bNodeLink::tonode, bNodeLink::tosock, and try_add_item_via_extend_socket().
Referenced by blender::nodes::node_composite_file_output_cc::node_insert_link(), blender::nodes::node_fn_format_string_cc::node_insert_link(), blender::nodes::node_geo_attribute_capture_cc::node_insert_link(), blender::nodes::node_geo_bake_cc::node_insert_link(), blender::nodes::node_geo_closure_cc::input_node::node_insert_link(), blender::nodes::node_geo_closure_cc::output_node::node_insert_link(), blender::nodes::node_geo_combine_bundle_cc::node_insert_link(), blender::nodes::node_geo_evaluate_closure_cc::node_insert_link(), blender::nodes::node_geo_field_to_grid_cc::node_insert_link(), blender::nodes::node_geo_foreach_geometry_element_cc::input_node::node_insert_link(), blender::nodes::node_geo_foreach_geometry_element_cc::output_node::node_insert_link(), blender::nodes::node_geo_index_switch_cc::node_insert_link(), blender::nodes::node_geo_menu_switch_cc::node_insert_link(), blender::nodes::node_geo_repeat_cc::repeat_input_node::node_insert_link(), blender::nodes::node_geo_repeat_cc::repeat_output_node::node_insert_link(), blender::nodes::node_geo_separate_bundle_cc::node_insert_link(), blender::nodes::node_geo_simulation_cc::sim_input_node::node_insert_link(), blender::nodes::node_geo_simulation_cc::sim_output_node::node_insert_link(), and blender::nodes::node_geo_viewer_cc::node_insert_link().
|
inlinenodiscard |
Check if the link connects to the extend_socket. If yes, create a new item for the linked socket, update the node and then change the link to point to the new socket.
Definition at line 300 of file NOD_socket_items.hh.
References add_item(), add_item_with_name(), add_item_with_socket_type_and_name(), BKE_ntree_update_tag_node_property(), bNodeLink::fromsock, get_socket_identifier(), get_socket_item_type_to_add(), bNodeSocket::name, name, blender::bke::node_find_socket(), SOCK_IN, SOCK_OUT, SOCK_VECTOR, bNodeLink::tosock, bNodeSocket::type, bNodeTree::type, and blender::nodes::update_node_declaration_and_sockets().
Referenced by try_add_item_via_any_extend_socket().