The macro defined namespaces confused the hell out of lupdate and more or less broke translations permanently. Looks like the only way we can do it is to have a hardcoded namespace, which goes against my instinct, but honestly how likely is it that we'll change the namespace anyway (I guess forks might want to do it, but that's their problem ;) )
122 lines
2.9 KiB
C++
122 lines
2.9 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2020 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 "trigonometry.h"
|
|
|
|
namespace olive {
|
|
|
|
TrigonometryNode::TrigonometryNode()
|
|
{
|
|
method_in_ = new NodeInput(QStringLiteral("method_in"), NodeParam::kCombo);
|
|
method_in_->set_connectable(false);
|
|
method_in_->set_is_keyframable(false);
|
|
AddInput(method_in_);
|
|
|
|
x_in_ = new NodeInput(QStringLiteral("x_in"), NodeParam::kFloat, 0.0);
|
|
AddInput(x_in_);
|
|
}
|
|
|
|
olive::Node *olive::TrigonometryNode::copy() const
|
|
{
|
|
return new TrigonometryNode();
|
|
}
|
|
|
|
QString TrigonometryNode::Name() const
|
|
{
|
|
return tr("Trigonometry");
|
|
}
|
|
|
|
QString TrigonometryNode::id() const
|
|
{
|
|
return QStringLiteral("org.olivevideoeditor.Olive.trigonometry");
|
|
}
|
|
|
|
QVector<Node::CategoryID> TrigonometryNode::Category() const
|
|
{
|
|
return {kCategoryMath};
|
|
}
|
|
|
|
QString TrigonometryNode::Description() const
|
|
{
|
|
return tr("Perform a trigonometry operation on a value.");
|
|
}
|
|
|
|
void TrigonometryNode::Retranslate()
|
|
{
|
|
QStringList strings = {tr("Sine"),
|
|
tr("Cosine"),
|
|
tr("Tangent"),
|
|
QString(),
|
|
tr("Inverse Sine"),
|
|
tr("Inverse Cosine"),
|
|
tr("Inverse Tangent"),
|
|
QString(),
|
|
tr("Hyperbolic Sine"),
|
|
tr("Hyperbolic Cosine"),
|
|
tr("Hyperbolic Tangent")};
|
|
|
|
method_in_->set_combobox_strings(strings);
|
|
|
|
method_in_->set_name(tr("Method"));
|
|
}
|
|
|
|
NodeValueTable TrigonometryNode::Value(NodeValueDatabase &value) const
|
|
{
|
|
float x = value[x_in_].Take(NodeParam::kFloat).toFloat();
|
|
|
|
NodeValueTable table = value.Merge();
|
|
|
|
switch (static_cast<Operation>(method_in_->get_standard_value().toInt())) {
|
|
case kOpSine:
|
|
x = qSin(x);
|
|
break;
|
|
case kOpCosine:
|
|
x = qCos(x);
|
|
break;
|
|
case kOpTangent:
|
|
x = qTan(x);
|
|
break;
|
|
case kOpArcSine:
|
|
x = qAsin(x);
|
|
break;
|
|
case kOpArcCosine:
|
|
x = qAcos(x);
|
|
break;
|
|
case kOpArcTangent:
|
|
x = qAtan(x);
|
|
break;
|
|
case kOpHypSine:
|
|
x = std::sinh(x);
|
|
break;
|
|
case kOpHypCosine:
|
|
x = std::cosh(x);
|
|
break;
|
|
case kOpHypTangent:
|
|
x = std::tanh(x);
|
|
break;
|
|
}
|
|
|
|
table.Push(NodeParam::kFloat, x, this);
|
|
|
|
return table;
|
|
}
|
|
|
|
}
|