Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
auto_load.hh
1//
2// YASE AutoLoad Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_AUTOLOAD_H
22#define YASE_AUTOLOAD_H
23
24#include <thread>
25#include "module.hh"
26#include "util.hh"
27
28namespace yase {
29
31
36 class AutoLoad : public Module {
37
38 public:
39
40 AutoLoad(string path);
41 ~AutoLoad();
42 void init();
43 void update();
44 void reload();
45 void associate(string category, string param, Module& module);
46 bool provides(string category, string param);
47
48 private:
49
50 json parameters;
51 string path;
52 vector<double> new_outputs;
53 std::mutex token;
54 std::thread * monitor;
55 bool active;
56
57 };
58
59}
60
61#endif
A parameter auto-loader that continually reloads a *.json file.
Definition auto_load.hh:36
void init()
Definition auto_load.cc:90
void update()
Definition auto_load.cc:96
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24