Cleanup: convert camelCase naming to snake_case in Compositor
To convert old code to the current convention and use a single code style.
This commit is contained in:
@@ -24,79 +24,85 @@
|
||||
|
||||
namespace blender::compositor {
|
||||
|
||||
TransformNode::TransformNode(bNode *editorNode) : Node(editorNode)
|
||||
TransformNode::TransformNode(bNode *editor_node) : Node(editor_node)
|
||||
{
|
||||
/* pass */
|
||||
}
|
||||
|
||||
void TransformNode::convertToOperations(NodeConverter &converter,
|
||||
const CompositorContext &context) const
|
||||
void TransformNode::convert_to_operations(NodeConverter &converter,
|
||||
const CompositorContext &context) const
|
||||
{
|
||||
NodeInput *imageInput = this->getInputSocket(0);
|
||||
NodeInput *xInput = this->getInputSocket(1);
|
||||
NodeInput *yInput = this->getInputSocket(2);
|
||||
NodeInput *angleInput = this->getInputSocket(3);
|
||||
NodeInput *scaleInput = this->getInputSocket(4);
|
||||
NodeInput *image_input = this->get_input_socket(0);
|
||||
NodeInput *x_input = this->get_input_socket(1);
|
||||
NodeInput *y_input = this->get_input_socket(2);
|
||||
NodeInput *angle_input = this->get_input_socket(3);
|
||||
NodeInput *scale_input = this->get_input_socket(4);
|
||||
|
||||
switch (context.get_execution_model()) {
|
||||
case eExecutionModel::Tiled: {
|
||||
ScaleRelativeOperation *scaleOperation = new ScaleRelativeOperation();
|
||||
converter.addOperation(scaleOperation);
|
||||
ScaleRelativeOperation *scale_operation = new ScaleRelativeOperation();
|
||||
converter.add_operation(scale_operation);
|
||||
|
||||
RotateOperation *rotateOperation = new RotateOperation();
|
||||
rotateOperation->setDoDegree2RadConversion(false);
|
||||
converter.addOperation(rotateOperation);
|
||||
RotateOperation *rotate_operation = new RotateOperation();
|
||||
rotate_operation->set_do_degree2_rad_conversion(false);
|
||||
converter.add_operation(rotate_operation);
|
||||
|
||||
TranslateOperation *translateOperation = new TranslateOperation();
|
||||
converter.addOperation(translateOperation);
|
||||
TranslateOperation *translate_operation = new TranslateOperation();
|
||||
converter.add_operation(translate_operation);
|
||||
|
||||
SetSamplerOperation *sampler = new SetSamplerOperation();
|
||||
sampler->setSampler((PixelSampler)this->getbNode()->custom1);
|
||||
converter.addOperation(sampler);
|
||||
sampler->set_sampler((PixelSampler)this->get_bnode()->custom1);
|
||||
converter.add_operation(sampler);
|
||||
|
||||
converter.mapInputSocket(imageInput, sampler->getInputSocket(0));
|
||||
converter.addLink(sampler->getOutputSocket(), scaleOperation->getInputSocket(0));
|
||||
converter.mapInputSocket(scaleInput, scaleOperation->getInputSocket(1));
|
||||
converter.mapInputSocket(scaleInput, scaleOperation->getInputSocket(2)); // xscale = yscale
|
||||
converter.map_input_socket(image_input, sampler->get_input_socket(0));
|
||||
converter.add_link(sampler->get_output_socket(), scale_operation->get_input_socket(0));
|
||||
converter.map_input_socket(scale_input, scale_operation->get_input_socket(1));
|
||||
converter.map_input_socket(scale_input,
|
||||
scale_operation->get_input_socket(2)); // xscale = yscale
|
||||
|
||||
converter.addLink(scaleOperation->getOutputSocket(), rotateOperation->getInputSocket(0));
|
||||
converter.mapInputSocket(angleInput, rotateOperation->getInputSocket(1));
|
||||
converter.add_link(scale_operation->get_output_socket(),
|
||||
rotate_operation->get_input_socket(0));
|
||||
converter.map_input_socket(angle_input, rotate_operation->get_input_socket(1));
|
||||
|
||||
converter.addLink(rotateOperation->getOutputSocket(), translateOperation->getInputSocket(0));
|
||||
converter.mapInputSocket(xInput, translateOperation->getInputSocket(1));
|
||||
converter.mapInputSocket(yInput, translateOperation->getInputSocket(2));
|
||||
converter.add_link(rotate_operation->get_output_socket(),
|
||||
translate_operation->get_input_socket(0));
|
||||
converter.map_input_socket(x_input, translate_operation->get_input_socket(1));
|
||||
converter.map_input_socket(y_input, translate_operation->get_input_socket(2));
|
||||
|
||||
converter.mapOutputSocket(getOutputSocket(), translateOperation->getOutputSocket());
|
||||
converter.map_output_socket(get_output_socket(), translate_operation->get_output_socket());
|
||||
break;
|
||||
}
|
||||
case eExecutionModel::FullFrame: {
|
||||
ScaleRelativeOperation *scaleOperation = new ScaleRelativeOperation();
|
||||
converter.addOperation(scaleOperation);
|
||||
ScaleRelativeOperation *scale_operation = new ScaleRelativeOperation();
|
||||
converter.add_operation(scale_operation);
|
||||
|
||||
RotateOperation *rotateOperation = new RotateOperation();
|
||||
rotateOperation->setDoDegree2RadConversion(false);
|
||||
converter.addOperation(rotateOperation);
|
||||
RotateOperation *rotate_operation = new RotateOperation();
|
||||
rotate_operation->set_do_degree2_rad_conversion(false);
|
||||
converter.add_operation(rotate_operation);
|
||||
|
||||
TranslateOperation *translateOperation = new TranslateCanvasOperation();
|
||||
converter.addOperation(translateOperation);
|
||||
TranslateOperation *translate_operation = new TranslateCanvasOperation();
|
||||
converter.add_operation(translate_operation);
|
||||
|
||||
PixelSampler sampler = (PixelSampler)this->getbNode()->custom1;
|
||||
scaleOperation->setSampler(sampler);
|
||||
rotateOperation->set_sampler(sampler);
|
||||
scaleOperation->set_scale_canvas_max_size(context.get_render_size());
|
||||
PixelSampler sampler = (PixelSampler)this->get_bnode()->custom1;
|
||||
scale_operation->set_sampler(sampler);
|
||||
rotate_operation->set_sampler(sampler);
|
||||
scale_operation->set_scale_canvas_max_size(context.get_render_size());
|
||||
|
||||
converter.mapInputSocket(imageInput, scaleOperation->getInputSocket(0));
|
||||
converter.mapInputSocket(scaleInput, scaleOperation->getInputSocket(1));
|
||||
converter.mapInputSocket(scaleInput, scaleOperation->getInputSocket(2)); // xscale = yscale
|
||||
converter.map_input_socket(image_input, scale_operation->get_input_socket(0));
|
||||
converter.map_input_socket(scale_input, scale_operation->get_input_socket(1));
|
||||
converter.map_input_socket(scale_input,
|
||||
scale_operation->get_input_socket(2)); // xscale = yscale
|
||||
|
||||
converter.addLink(scaleOperation->getOutputSocket(), rotateOperation->getInputSocket(0));
|
||||
converter.mapInputSocket(angleInput, rotateOperation->getInputSocket(1));
|
||||
converter.add_link(scale_operation->get_output_socket(),
|
||||
rotate_operation->get_input_socket(0));
|
||||
converter.map_input_socket(angle_input, rotate_operation->get_input_socket(1));
|
||||
|
||||
converter.addLink(rotateOperation->getOutputSocket(), translateOperation->getInputSocket(0));
|
||||
converter.mapInputSocket(xInput, translateOperation->getInputSocket(1));
|
||||
converter.mapInputSocket(yInput, translateOperation->getInputSocket(2));
|
||||
converter.add_link(rotate_operation->get_output_socket(),
|
||||
translate_operation->get_input_socket(0));
|
||||
converter.map_input_socket(x_input, translate_operation->get_input_socket(1));
|
||||
converter.map_input_socket(y_input, translate_operation->get_input_socket(2));
|
||||
|
||||
converter.mapOutputSocket(getOutputSocket(), translateOperation->getOutputSocket());
|
||||
converter.map_output_socket(get_output_socket(), translate_operation->get_output_socket());
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user