Blender V4.3
COM_FlipNode.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#include "COM_FlipNode.h"
6
7#include "COM_FlipOperation.h"
8
9namespace blender::compositor {
10
11FlipNode::FlipNode(bNode *editor_node) : Node(editor_node)
12{
13 /* pass */
14}
15
17 const CompositorContext & /*context*/) const
18{
19 NodeInput *input_socket = this->get_input_socket(0);
20 NodeOutput *output_socket = this->get_output_socket(0);
21 FlipOperation *operation = new FlipOperation();
22 switch (this->get_bnode()->custom1) {
23 case 0: /* TODO: I didn't find any constants in the old implementation,
24 * should I introduce them. */
25 operation->setFlipX(true);
26 operation->setFlipY(false);
27 break;
28 case 1:
29 operation->setFlipX(false);
30 operation->setFlipY(true);
31 break;
32 case 2:
33 operation->setFlipX(true);
34 operation->setFlipY(true);
35 break;
36 }
37
38 converter.add_operation(operation);
39 converter.map_input_socket(input_socket, operation->get_input_socket(0));
40 converter.map_output_socket(output_socket, operation->get_output_socket(0));
41}
42
43} // namespace blender::compositor
Overall context of the compositor.
FlipNode(bNode *editor_node)
void convert_to_operations(NodeConverter &converter, const CompositorContext &context) const override
convert node to operation
void map_output_socket(NodeOutput *node_socket, NodeOperationOutput *operation_socket)
void add_operation(NodeOperation *operation)
void map_input_socket(NodeInput *node_socket, NodeOperationInput *operation_socket)
NodeInput are sockets that can receive data/input.
Definition COM_Node.h:191
NodeOperationOutput * get_output_socket(unsigned int index=0)
NodeOperationInput * get_input_socket(unsigned int index)
NodeOutput are sockets that can send data/input.
Definition COM_Node.h:239
NodeOutput * get_output_socket(unsigned int index=0) const
Definition COM_Node.cc:85
NodeInput * get_input_socket(unsigned int index) const
Definition COM_Node.cc:90
const bNode * get_bnode() const
get the reference to the SDNA bNode struct
Definition COM_Node.h:65