Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
buffer.hh
1//
2// YASE Buffer 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_BUFFER_H
22#define YASE_BUFFER_H
23
24#include "yase.hh"
25#include "ring_buffer.hh"
26
27namespace yase {
28
29 template<int n> class Buffer : public Module {
30
31 public:
32
33 typedef tuple<long int, array<double, n>> ElementType;
34
35 Buffer(int size) : ring_buffer(size) {
36
37 for ( int i=0; i<n; i++ ) {
38 add_input("signal_" + std::to_string(i));
39 }
40
41 }
42
43 Buffer(int size, std::array<string,3> input_names) : ring_buffer(size) {
44
45 for ( int i=0; i<n; i++ ) {
46 add_input(input_names[i]);
47 }
48
49 }
50
51 void init() {
52 count = 0;
53 }
54
55 void update() {
56 std::get<0>(data) = count++;
57 for ( int i=0; i<n; i++ ) {
58 std::get<1>(data)[i] = inputs[i];
59 }
60 ring_buffer.write(&data, 1);
61 }
62
63 int get_buffered_output(ElementType * result, int max) {
64 return ring_buffer.read(result, max);
65 }
66
67 private:
68
69 int size, signal;
70 unsigned long int count;
71 RingBuffer<ElementType> ring_buffer;
72 ElementType data;
73
74 };
75
76}
77
78#endif
Definition buffer.hh:29
void update()
Definition buffer.hh:55
void init()
Definition buffer.hh:51
An abstract base class for modules.
Definition module.hh:39
int add_input(string name)
Definition module.cc:33
Definition additive_saw.cc:24