Files
oak-editor/app/node/distort/transform/transform.cpp
T
itsmattkc 4d96ac9e39 don't police data type connections between nodes
Nodes were previously written to be "strongly typed" in that a parameter's
"type" enforced whether it could be connected to another. All code related
to that has now been removed since not only is it hard to maintain and
likely unnecessary, it's possible the nodes will work differently later on
anyway.
2019-10-25 00:44:14 +11:00

107 lines
2.6 KiB
C++

/***
Olive - Non-Linear Video Editor
Copyright (C) 2019 Olive Team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#include "transform.h"
#include <QMatrix4x4>
#include <QVector2D>
TransformDistort::TransformDistort()
{
position_input_ = new NodeInput("pos_in");
position_input_->set_data_type(NodeParam::kVec2);
AddParameter(position_input_);
rotation_input_ = new NodeInput("rot_in");
rotation_input_->set_data_type(NodeParam::kFloat);
AddParameter(rotation_input_);
scale_input_ = new NodeInput("scale_in");
scale_input_->set_data_type(NodeParam::kVec2);
scale_input_->set_value(QVector2D(100.0f, 100.0f));
AddParameter(scale_input_);
anchor_input_ = new NodeInput("anchor_in");
anchor_input_->set_data_type(NodeParam::kVec2);
AddParameter(anchor_input_);
matrix_output_ = new NodeOutput("matrix_out");
AddParameter(matrix_output_);
}
QString TransformDistort::Name()
{
return tr("Transform");
}
QString TransformDistort::id()
{
return "org.olivevideoeditor.Olive.transform";
}
QString TransformDistort::Category()
{
return tr("Distort");
}
QString TransformDistort::Description()
{
return tr("Apply transformations to position, rotation, and scale.");
}
NodeOutput *TransformDistort::matrix_output()
{
return matrix_output_;
}
void TransformDistort::Retranslate()
{
position_input_->set_name(tr("Position"));
rotation_input_->set_name(tr("Rotation"));
scale_input_->set_name(tr("Scale"));
anchor_input_->set_name(tr("Anchor Point"));
}
QVariant TransformDistort::Value(NodeOutput *output, const rational &in, const rational &out)
{
Q_UNUSED(out)
if (output == matrix_output_) {
QMatrix4x4 mat;
// Position translate
QVector2D pos = position_input_->get_value(in).value<QVector2D>();
mat.translate(pos);
// Rotation
mat.rotate(rotation_input_->get_value(in).toFloat(), 0, 0, 1);
// Scale
mat.scale(scale_input_->get_value(in).value<QVector2D>()*0.01f);
// Anchor Point
mat.translate(-anchor_input_->get_value(in).value<QVector2D>());
return mat;
}
return 0;
}