/*** Olive - Non-Linear Video Editor Copyright (C) 2021 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 . ***/ #include "noise.h" namespace olive { const QString NoiseGeneratorNode::kColorInput = QStringLiteral("color_in"); const QString NoiseGeneratorNode::kStrengthInput = QStringLiteral("strength_in"); #define super Node NoiseGeneratorNode::NoiseGeneratorNode() { AddInput(kStrengthInput, NodeValue::kFloat, 20); AddInput(kColorInput, NodeValue::kBoolean, false); } Node* NoiseGeneratorNode::copy() const { return new NoiseGeneratorNode(); } QString NoiseGeneratorNode::Name() const { return tr("Noise"); } QString NoiseGeneratorNode::id() const { return QStringLiteral("org.olivevideoeditor.Olive.noise"); } QVector NoiseGeneratorNode::Category() const { return {kCategoryGenerator}; } QString NoiseGeneratorNode::Description() const { return tr("Generates noise patterns"); } void NoiseGeneratorNode::Retranslate() { super::Retranslate(); SetInputName(kStrengthInput, tr("Strength")); SetInputName(kColorInput, tr("Color")); } ShaderCode NoiseGeneratorNode::GetShaderCode(const QString& shader_id) const { Q_UNUSED(shader_id) return ShaderCode(FileFunctions::ReadFileAsString(":/shaders/noise.frag")); } void NoiseGeneratorNode::Value(const NodeValueRow &value, const NodeGlobals &globals, NodeValueTable *table) const { ShaderJob job; job.InsertValue(value); job.InsertValue(QStringLiteral("time_in"), NodeValue(NodeValue::kFloat, globals.time().in().toDouble(), this)); table->Push(NodeValue::kTexture, QVariant::fromValue(job), this); } }