Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_vecBlur.cc
| Show All 22 Lines | |||||
| #include "UI_interface.h" | #include "UI_interface.h" | ||||
| #include "UI_resources.h" | #include "UI_resources.h" | ||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** VECTOR BLUR ******************** */ | /* **************** VECTOR BLUR ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes::node_composite_vecBlur_cc { | ||||
| static void cmp_node_vec_blur_declare(NodeDeclarationBuilder &b) | static void cmp_node_vec_blur_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Color>(N_("Image")).default_value({1.0f, 1.0f, 1.0f, 1.0f}); | b.add_input<decl::Color>(N_("Image")).default_value({1.0f, 1.0f, 1.0f, 1.0f}); | ||||
| b.add_input<decl::Float>(N_("Z")).default_value(0.0f).min(0.0f).max(1.0f); | b.add_input<decl::Float>(N_("Z")).default_value(0.0f).min(0.0f).max(1.0f); | ||||
| b.add_input<decl::Vector>(N_("Speed")) | b.add_input<decl::Vector>(N_("Speed")) | ||||
| .default_value({0.0f, 0.0f, 0.0f}) | .default_value({0.0f, 0.0f, 0.0f}) | ||||
| .min(0.0f) | .min(0.0f) | ||||
| .max(1.0f) | .max(1.0f) | ||||
| .subtype(PROP_VELOCITY); | .subtype(PROP_VELOCITY); | ||||
| b.add_output<decl::Color>(N_("Image")); | b.add_output<decl::Color>(N_("Image")); | ||||
| } | } | ||||
| } // namespace blender::nodes | /* custom1: iterations, custom2: max_speed (0 = no_limit). */ | ||||
| static void node_composit_init_vecblur(bNodeTree *UNUSED(ntree), bNode *node) | static void node_composit_init_vecblur(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| { | { | ||||
| NodeBlurData *nbd = MEM_cnew<NodeBlurData>(__func__); | NodeBlurData *nbd = MEM_cnew<NodeBlurData>(__func__); | ||||
| node->storage = nbd; | node->storage = nbd; | ||||
| nbd->samples = 32; | nbd->samples = 32; | ||||
| nbd->fac = 1.0f; | nbd->fac = 1.0f; | ||||
| } | } | ||||
| static void node_composit_buts_vecblur(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) | static void node_composit_buts_vecblur(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) | ||||
| { | { | ||||
| uiLayout *col; | uiLayout *col; | ||||
| col = uiLayoutColumn(layout, false); | col = uiLayoutColumn(layout, false); | ||||
| uiItemR(col, ptr, "samples", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | uiItemR(col, ptr, "samples", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | ||||
| uiItemR(col, ptr, "factor", UI_ITEM_R_SPLIT_EMPTY_NAME, IFACE_("Blur"), ICON_NONE); | uiItemR(col, ptr, "factor", UI_ITEM_R_SPLIT_EMPTY_NAME, IFACE_("Blur"), ICON_NONE); | ||||
| col = uiLayoutColumn(layout, true); | col = uiLayoutColumn(layout, true); | ||||
| uiItemL(col, IFACE_("Speed:"), ICON_NONE); | uiItemL(col, IFACE_("Speed:"), ICON_NONE); | ||||
| uiItemR(col, ptr, "speed_min", UI_ITEM_R_SPLIT_EMPTY_NAME, IFACE_("Min"), ICON_NONE); | uiItemR(col, ptr, "speed_min", UI_ITEM_R_SPLIT_EMPTY_NAME, IFACE_("Min"), ICON_NONE); | ||||
| uiItemR(col, ptr, "speed_max", UI_ITEM_R_SPLIT_EMPTY_NAME, IFACE_("Max"), ICON_NONE); | uiItemR(col, ptr, "speed_max", UI_ITEM_R_SPLIT_EMPTY_NAME, IFACE_("Max"), ICON_NONE); | ||||
| uiItemR(layout, ptr, "use_curved", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | uiItemR(layout, ptr, "use_curved", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | ||||
| } | } | ||||
| } // namespace blender::nodes::node_composite_vecBlur_cc | |||||
| /* custom1: iterations, custom2: max_speed (0 = no_limit). */ | /* custom1: iterations, custom2: max_speed (0 = no_limit). */ | ||||
| void register_node_type_cmp_vecblur() | void register_node_type_cmp_vecblur() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_composite_vecBlur_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_VECBLUR, "Vector Blur", NODE_CLASS_OP_FILTER, 0); | cmp_node_type_base(&ntype, CMP_NODE_VECBLUR, "Vector Blur", NODE_CLASS_OP_FILTER, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_vec_blur_declare; | ntype.declare = file_ns::cmp_node_vec_blur_declare; | ||||
| ntype.draw_buttons = node_composit_buts_vecblur; | ntype.draw_buttons = file_ns::node_composit_buts_vecblur; | ||||
| node_type_init(&ntype, node_composit_init_vecblur); | node_type_init(&ntype, file_ns::node_composit_init_vecblur); | ||||
| node_type_storage( | node_type_storage( | ||||
| &ntype, "NodeBlurData", node_free_standard_storage, node_copy_standard_storage); | &ntype, "NodeBlurData", node_free_standard_storage, node_copy_standard_storage); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||