Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
sequencer.hh
1//
2// YASE Sequencer 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_SEQUENCER_H
22#define YASE_SEQUENCER_H
23
24#include <vector>
25#include "event.hh"
26#include "yase.hh"
27
28namespace yase {
29
31
39 class Sequencer : public Module {
40
41 typedef void (Sequencer::*UpdateFunction)();
42 static const int DOWN = 0;
43 static const int UP = 1;
44
45 public:
46
47 Sequencer();
48 ~Sequencer();
49
50 void init();
51 void update();
52
53 void keydown(const Event &e);
54 void keyup(const Event &e);
55 void insert_rest();
56
57 void reset();
58 void record();
59 void stop();
60 void play();
61 void clear();
62
63 void allocate(int n);
64 void set(int index, int note);
65 bool is_rest(int index);
66 void rest(int index);
67
68 void decrease_duration(double amount);
69 void increase_duration(double amount);
70
71 bool is_playing();
72
73 private:
74
75 vector<Event *> sequence;
76 int step, mode;
77 double t, period, prev_clock;
78 int duration, clock;
79 bool tick;
80
81 UpdateFunction update_fcn;
82
83 void recording();
84 void playing();
85 void idle();
86
87 };
88
89}
90
91#endif
Contains MIDI event information.
Definition event.hh:32
An abstract base class for modules.
Definition module.hh:39
A general purpose sequencers.
Definition sequencer.hh:39
void clear()
Clear the sequence, erasing all events.
Definition sequencer.cc:157
void update()
Definition sequencer.cc:55
void stop()
Stop the sequencer playing.
Definition sequencer.cc:135
bool is_rest(int index)
Definition sequencer.cc:210
bool is_playing()
Returns true if the sequencer is playing (because of a previous call to play())
Definition sequencer.cc:226
void init()
Definition sequencer.cc:46
void decrease_duration(double amount)
Definition sequencer.cc:170
void increase_duration(double amount)
Definition sequencer.cc:181
void keydown(const Event &e)
Definition sequencer.cc:104
void reset()
Reset the sequence counter to the beginning of the sequence.
Definition sequencer.cc:125
void allocate(int n)
Definition sequencer.cc:190
void play()
Definition sequencer.cc:148
void rest(int index)
Definition sequencer.cc:216
void record()
Put the sequencer into record mode so it will respond to calls to keydown()
Definition sequencer.cc:130
void insert_rest()
Insert a rest onto the end of the sequence.
Definition sequencer.cc:118
void keyup(const Event &e)
Definition sequencer.cc:112
void set(int index, int note)
Definition sequencer.cc:199
Definition additive_saw.cc:24