Differential D13523 Diff 46102 source/blender/nodes/composite/nodes/node_composite_planetrackdeform.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_planetrackdeform.cc
| Show All 15 Lines | |||||
| * The Original Code is Copyright (C) 2013 Blender Foundation. | * The Original Code is Copyright (C) 2013 Blender Foundation. | ||||
| * All rights reserved. | * All rights reserved. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "RNA_access.h" | |||||
| #include "UI_interface.h" | |||||
| #include "UI_resources.h" | |||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| namespace blender::nodes { | namespace blender::nodes { | ||||
| static void cmp_node_planetrackdeform_declare(NodeDeclarationBuilder &b) | static void cmp_node_planetrackdeform_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Color>(N_("Image")); | b.add_input<decl::Color>(N_("Image")); | ||||
| b.add_output<decl::Color>(N_("Image")); | b.add_output<decl::Color>(N_("Image")); | ||||
| b.add_output<decl::Float>(N_("Plane")); | b.add_output<decl::Float>(N_("Plane")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| static void init(bNodeTree *UNUSED(ntree), bNode *node) | static void init(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| { | { | ||||
| NodePlaneTrackDeformData *data = (NodePlaneTrackDeformData *)MEM_callocN( | NodePlaneTrackDeformData *data = (NodePlaneTrackDeformData *)MEM_callocN( | ||||
| sizeof(NodePlaneTrackDeformData), "node plane track deform data"); | sizeof(NodePlaneTrackDeformData), "node plane track deform data"); | ||||
| data->motion_blur_samples = 16; | data->motion_blur_samples = 16; | ||||
| data->motion_blur_shutter = 0.5f; | data->motion_blur_shutter = 0.5f; | ||||
| node->storage = data; | node->storage = data; | ||||
| } | } | ||||
| static void node_composit_buts_planetrackdeform(uiLayout *layout, bContext *C, PointerRNA *ptr) | |||||
| { | |||||
| bNode *node = (bNode *)ptr->data; | |||||
| NodePlaneTrackDeformData *data = (NodePlaneTrackDeformData *)node->storage; | |||||
| uiTemplateID(layout, | |||||
| C, | |||||
| ptr, | |||||
| "clip", | |||||
| nullptr, | |||||
| "CLIP_OT_open", | |||||
| nullptr, | |||||
| UI_TEMPLATE_ID_FILTER_ALL, | |||||
| false, | |||||
| nullptr); | |||||
| if (node->id) { | |||||
| MovieClip *clip = (MovieClip *)node->id; | |||||
| MovieTracking *tracking = &clip->tracking; | |||||
| MovieTrackingObject *object; | |||||
| uiLayout *col; | |||||
| PointerRNA tracking_ptr; | |||||
| RNA_pointer_create(&clip->id, &RNA_MovieTracking, tracking, &tracking_ptr); | |||||
| col = uiLayoutColumn(layout, false); | |||||
| uiItemPointerR(col, ptr, "tracking_object", &tracking_ptr, "objects", "", ICON_OBJECT_DATA); | |||||
| object = BKE_tracking_object_get_named(tracking, data->tracking_object); | |||||
| if (object) { | |||||
| PointerRNA object_ptr; | |||||
| RNA_pointer_create(&clip->id, &RNA_MovieTrackingObject, object, &object_ptr); | |||||
| uiItemPointerR( | |||||
| col, ptr, "plane_track_name", &object_ptr, "plane_tracks", "", ICON_ANIM_DATA); | |||||
| } | |||||
| else { | |||||
| uiItemR(layout, ptr, "plane_track_name", 0, "", ICON_ANIM_DATA); | |||||
| } | |||||
| } | |||||
| uiItemR(layout, ptr, "use_motion_blur", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | |||||
| if (data->flag & CMP_NODEFLAG_PLANETRACKDEFORM_MOTION_BLUR) { | |||||
| uiItemR(layout, ptr, "motion_blur_samples", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | |||||
| uiItemR(layout, ptr, "motion_blur_shutter", UI_ITEM_R_SPLIT_EMPTY_NAME, nullptr, ICON_NONE); | |||||
| } | |||||
| } | |||||
| void register_node_type_cmp_planetrackdeform() | void register_node_type_cmp_planetrackdeform() | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base( | cmp_node_type_base( | ||||
| &ntype, CMP_NODE_PLANETRACKDEFORM, "Plane Track Deform", NODE_CLASS_DISTORT, 0); | &ntype, CMP_NODE_PLANETRACKDEFORM, "Plane Track Deform", NODE_CLASS_DISTORT, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_planetrackdeform_declare; | ntype.declare = blender::nodes::cmp_node_planetrackdeform_declare; | ||||
| ntype.draw_buttons = node_composit_buts_planetrackdeform; | |||||
| node_type_init(&ntype, init); | node_type_init(&ntype, init); | ||||
| node_type_storage( | node_type_storage( | ||||
| &ntype, "NodePlaneTrackDeformData", node_free_standard_storage, node_copy_standard_storage); | &ntype, "NodePlaneTrackDeformData", node_free_standard_storage, node_copy_standard_storage); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||