summaryrefslogtreecommitdiff
path: root/libs/backends/wavesaudio/waves_midiport.cc
blob: aac5be06edba91953cb5f14e797ec9b0bd6a0520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
    Copyright (C) 2013 Waves Audio Ltd.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include "waves_midiport.h"
#include "waves_midi_event.h"

using namespace ARDOUR;

WavesMidiPort::WavesMidiPort (const std::string& port_name, PortFlags flags)
    : WavesDataPort (port_name, flags)
    , _midi_device (NULL)
    , _waves_midi_buffer (port_name)
{       
}

struct MidiEventSorter {
	bool operator() (const WavesMidiEvent* a, const WavesMidiEvent* b) {
		return *a < *b;
	}
};

void* 
WavesMidiPort::get_buffer (pframes_t nframes)
{
    if (is_input ()) {
		std::vector<WavesDataPort*>::const_iterator cit = get_connections ().begin ();
        if (cit != get_connections ().end ()) {
			_waves_midi_buffer.clear ();
			WavesMidiBuffer& target = _waves_midi_buffer;

			do	{
				/* In fact, the static casting to (const WavesMidiPort*) is not that safe.
				 * However, mixing the buffers is assumed in the time critical conditions.
				 * Base class WavesDataPort is supposed to provide enough consistentcy
				 * of the connections.
				 */
				target += ((const WavesMidiPort*)*cit)->const_buffer ();
			}while((++cit) != get_connections ().end ());

			std::sort (target.begin (), target.end (), MidiEventSorter());
		}
	}

    return &_waves_midi_buffer;
}

void
WavesMidiPort::_wipe_buffer()
{
	_waves_midi_buffer.clear ();
}