/*** 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 . ***/ #include "shakeeffect.h" #include #include #include #include #include "ui/labelslider.h" #include "ui/collapsiblewidget.h" #include "project/clip.h" #include "project/sequence.h" #include "panels/timeline.h" #include "debug.h" ShakeEffect::ShakeEffect(Clip* c, const EffectMeta *em) : Effect(c, em) { enable_coords = true; EffectRow* intensity_row = add_row(tr("Intensity")); intensity_val = intensity_row->add_field(EFFECT_FIELD_DOUBLE, "intensity"); intensity_val->set_double_minimum_value(0); EffectRow* rotation_row = add_row(tr("Rotation")); rotation_val = rotation_row->add_field(EFFECT_FIELD_DOUBLE, "rotation"); rotation_val->set_double_minimum_value(0); EffectRow* frequency_row = add_row(tr("Frequency")); frequency_val = frequency_row->add_field(EFFECT_FIELD_DOUBLE, "frequency"); frequency_val->set_double_minimum_value(0); // set defaults intensity_val->set_double_default_value(25); rotation_val->set_double_default_value(10); frequency_val->set_double_default_value(5); const auto limit = std::numeric_limits::max(); for (int i=0;i(this->randomNumber()) / limit; } } void ShakeEffect::process_coords(double timecode, GLTextureCoords& coords, int) { int lim = RANDOM_VAL_SIZE/6; double multiplier = intensity_val->get_double_value(timecode)/lim; double rotmult = rotation_val->get_double_value(timecode)/lim/10; double x = timecode * frequency_val->get_double_value(timecode); double xoff = 0; double yoff = 0; double rotoff = 0; for (int i=0;i