Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
sample.hh
1//
2// YASE Sample 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_SAMPLE_H
22#define YASE_SAMPLE_H
23
24#include "yase.hh"
25#include "AudioFile.h"
26
27namespace yase {
28
30
49 class Sample : public Module {
50
51 public:
52
53 Sample(string path);
54 void init();
55 void update();
56 void trigger();
57 void stop();
58 inline int size() { return length; }
59
60 private:
61
62 int left, right, amplitude;
63 int n, length;
64 bool active;
65 AudioFile<double> audioFile;
66 int num_channels;
67
68 };
69
70}
71
72#endif
An abstract base class for modules.
Definition module.hh:39
A module that can be used to play a sample stored as a .wav file.
Definition sample.hh:49
void init()
Definition sample.cc:55
void trigger()
Trigger the sample to play. It needs to have been added to a container first.
Definition sample.cc:51
void stop()
Stop playing the sample.
Definition sample.cc:77
void update()
Definition sample.cc:59
Definition additive_saw.cc:24