Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
sampler.hh
1//
2// YASE Sampler 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_SAMPLER_H
22#define YASE_SAMPLER_H
23
24#include "yase.hh"
25
26namespace yase {
27
29
55 class Sampler : public Module {
56
57 public:
58
59 const int BUFFER_LENGTH = SAMPLE_RATE; // one second of data
60
61 Sampler(string path);
62
63 void init();
64 void update();
65
66 Sampler &record();
67 Sampler &stop();
68 Sampler &write();
69
70 private:
71
72 vector<double *> buffers;
73 string path;
74 int index, signal;
75 bool active;
76
77 };
78
79}
80
81#endif
An abstract base class for modules.
Definition module.hh:39
Record a sample.
Definition sampler.hh:55
Sampler & write()
Definition sampler.cc:69
void update()
Definition sampler.cc:40
void init()
Definition sampler.cc:36
Sampler & record()
Turn on the Sampler so that it records its input.
Definition sampler.cc:52
Sampler & stop()
Turn off the Sample so that it stops recording.
Definition sampler.cc:60
#define SAMPLE_RATE
The sample rate of everything in yase.
Definition globals.hh:32
Definition additive_saw.cc:24