1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
* Copyright © 2017-2020 Wellington Wallace
*
* This file is part of PulseEffects.
*
* PulseEffects 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.
*
* PulseEffects 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 PulseEffects. If not, see <https://www.gnu.org/licenses/>.
*/
#include "gate_preset.hpp"
GatePreset::GatePreset()
: input_settings(Gio::Settings::create("com.github.wwmm.pulseeffects.gate",
"/com/github/wwmm/pulseeffects/sourceoutputs/gate/")),
output_settings(Gio::Settings::create("com.github.wwmm.pulseeffects.gate",
"/com/github/wwmm/pulseeffects/sinkinputs/gate/")) {}
void GatePreset::save(boost::property_tree::ptree& root,
const std::string& section,
const Glib::RefPtr<Gio::Settings>& settings) {
root.put(section + ".gate.state", settings->get_boolean("state"));
root.put(section + ".gate.detection", settings->get_string("detection"));
root.put(section + ".gate.stereo-link", settings->get_string("stereo-link"));
root.put(section + ".gate.range", settings->get_double("range"));
root.put(section + ".gate.attack", settings->get_double("attack"));
root.put(section + ".gate.release", settings->get_double("release"));
root.put(section + ".gate.threshold", settings->get_double("threshold"));
root.put(section + ".gate.ratio", settings->get_double("ratio"));
root.put(section + ".gate.knee", settings->get_double("knee"));
root.put(section + ".gate.input", settings->get_double("input"));
root.put(section + ".gate.makeup", settings->get_double("makeup"));
}
void GatePreset::load(const boost::property_tree::ptree& root,
const std::string& section,
const Glib::RefPtr<Gio::Settings>& settings) {
update_key<bool>(root, settings, "state", section + ".gate.state");
update_string_key(root, settings, "detection", section + ".gate.detection");
update_string_key(root, settings, "stereo-link", section + ".gate.stereo-link");
update_key<double>(root, settings, "range", section + ".gate.range");
update_key<double>(root, settings, "attack", section + ".gate.attack");
update_key<double>(root, settings, "release", section + ".gate.release");
update_key<double>(root, settings, "threshold", section + ".gate.threshold");
update_key<double>(root, settings, "ratio", section + ".gate.ratio");
update_key<double>(root, settings, "knee", section + ".gate.knee");
update_key<double>(root, settings, "input", section + ".gate.input");
update_key<double>(root, settings, "makeup", section + ".gate.makeup");
}
void GatePreset::write(PresetType preset_type, boost::property_tree::ptree& root) {
switch (preset_type) {
case PresetType::output:
save(root, "output", output_settings);
break;
case PresetType::input:
save(root, "input", input_settings);
break;
}
}
void GatePreset::read(PresetType preset_type, const boost::property_tree::ptree& root) {
switch (preset_type) {
case PresetType::output:
load(root, "output", output_settings);
break;
case PresetType::input:
load(root, "input", input_settings);
break;
}
}
|