Remove over 500 unnecessary includes (including 54 of session.h).
[ardour.git] / gtk2_ardour / note_player.cc
1 /*
2     Copyright (C) 2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <sigc++/bind.h>
20 #include <glibmm/main.h>
21
22 #include "ardour/midi_track.h"
23
24 #include "note_player.h"
25
26 using namespace ARDOUR;
27 using namespace std;
28
29 NotePlayer::NotePlayer (boost::shared_ptr<MidiTrack> mt)
30         : track (mt)
31 {
32 }
33
34 void
35 NotePlayer::add (boost::shared_ptr<NoteType> note)
36 {
37         notes.push_back (note);
38 }
39
40 void
41 NotePlayer::clear ()
42 {
43         off ();
44         notes.clear ();
45 }
46
47 void
48 NotePlayer::play ()
49 {
50         for (Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
51                 track->write_immediate_event ((*n)->on_event().size(), (*n)->on_event().buffer());
52         }
53
54         /* note: if there is more than 1 note, we will silence them all at the same time
55          */
56
57         const uint32_t note_length_ms = 100;
58
59         Glib::signal_timeout().connect (sigc::bind (sigc::ptr_fun (&NotePlayer::_off), this),
60                                         note_length_ms, G_PRIORITY_DEFAULT);
61 }
62
63 bool
64 NotePlayer::_off (NotePlayer* np)
65 {
66         np->off ();
67         delete np;
68         return false;
69 }
70
71 void
72 NotePlayer::off ()
73 {
74         for (Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
75                 track->write_immediate_event ((*n)->off_event().size(), (*n)->off_event().buffer());
76         }
77 }