Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_sunbeams.cc
| Show All 20 Lines | |||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #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" | ||||
| namespace blender::nodes { | namespace blender::nodes::node_composite_sunbeams_cc { | ||||
| static void cmp_node_sunbeams_declare(NodeDeclarationBuilder &b) | static void cmp_node_sunbeams_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_output<decl::Color>(N_("Image")); | b.add_output<decl::Color>(N_("Image")); | ||||
| } | } | ||||
| } // namespace blender::nodes | |||||
| static void init(bNodeTree *UNUSED(ntree), bNode *node) | static void init(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| { | { | ||||
| NodeSunBeams *data = MEM_cnew<NodeSunBeams>(__func__); | NodeSunBeams *data = MEM_cnew<NodeSunBeams>(__func__); | ||||
| data->source[0] = 0.5f; | data->source[0] = 0.5f; | ||||
| data->source[1] = 0.5f; | data->source[1] = 0.5f; | ||||
| node->storage = data; | node->storage = data; | ||||
| } | } | ||||
| static void node_composit_buts_sunbeams(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) | static void node_composit_buts_sunbeams(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) | ||||
| { | { | ||||
| uiItemR(layout, ptr, "source", UI_ITEM_R_SPLIT_EMPTY_NAME | UI_ITEM_R_EXPAND, "", ICON_NONE); | uiItemR(layout, ptr, "source", UI_ITEM_R_SPLIT_EMPTY_NAME | UI_ITEM_R_EXPAND, "", ICON_NONE); | ||||
| uiItemR(layout, | uiItemR(layout, | ||||
| ptr, | ptr, | ||||
| "ray_length", | "ray_length", | ||||
| UI_ITEM_R_SPLIT_EMPTY_NAME | UI_ITEM_R_SLIDER, | UI_ITEM_R_SPLIT_EMPTY_NAME | UI_ITEM_R_SLIDER, | ||||
| nullptr, | nullptr, | ||||
| ICON_NONE); | ICON_NONE); | ||||
| } | } | ||||
| } // namespace blender::nodes::node_composite_sunbeams_cc | |||||
| void register_node_type_cmp_sunbeams() | void register_node_type_cmp_sunbeams() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_composite_sunbeams_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_SUNBEAMS, "Sun Beams", NODE_CLASS_OP_FILTER, 0); | cmp_node_type_base(&ntype, CMP_NODE_SUNBEAMS, "Sun Beams", NODE_CLASS_OP_FILTER, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_sunbeams_declare; | ntype.declare = file_ns::cmp_node_sunbeams_declare; | ||||
| ntype.draw_buttons = node_composit_buts_sunbeams; | ntype.draw_buttons = file_ns::node_composit_buts_sunbeams; | ||||
| node_type_init(&ntype, init); | node_type_init(&ntype, file_ns::init); | ||||
| node_type_storage( | node_type_storage( | ||||
| &ntype, "NodeSunBeams", node_free_standard_storage, node_copy_standard_storage); | &ntype, "NodeSunBeams", node_free_standard_storage, node_copy_standard_storage); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||