2008-09-18 20:47:49 -04:00
|
|
|
/* This file is part of Evoral.
|
|
|
|
* Copyright (C) 2008 Dave Robillard <http://drobilla.net>
|
|
|
|
* Copyright (C) 2000-2008 Paul Davis
|
|
|
|
*
|
|
|
|
* Evoral 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.
|
|
|
|
*
|
|
|
|
* Evoral 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 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.,
|
|
|
|
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
#include <iostream>
|
2008-12-21 15:36:15 -05:00
|
|
|
#include "evoral/Note.hpp"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
namespace Evoral {
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-02-01 21:36:05 -05:00
|
|
|
template<typename T>
|
|
|
|
Note<T>::Note(uint8_t chan, T t, EventLength l, uint8_t n, uint8_t v)
|
2008-09-22 12:28:02 -04:00
|
|
|
// FIXME: types?
|
|
|
|
: _on_event(0xDE, t, 3, NULL, true)
|
|
|
|
, _off_event(0xAD, t + l, 3, NULL, true)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
assert(chan < 16);
|
|
|
|
|
|
|
|
_on_event.buffer()[0] = MIDI_CMD_NOTE_ON + chan;
|
|
|
|
_on_event.buffer()[1] = n;
|
|
|
|
_on_event.buffer()[2] = v;
|
|
|
|
|
|
|
|
_off_event.buffer()[0] = MIDI_CMD_NOTE_OFF + chan;
|
|
|
|
_off_event.buffer()[1] = n;
|
|
|
|
_off_event.buffer()[2] = 0x40;
|
|
|
|
|
|
|
|
assert(time() == t);
|
2008-09-22 12:28:02 -04:00
|
|
|
assert(length() == l);
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(note() == n);
|
|
|
|
assert(velocity() == v);
|
|
|
|
assert(_on_event.channel() == _off_event.channel());
|
|
|
|
assert(channel() == chan);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-01 21:36:05 -05:00
|
|
|
template<typename T>
|
|
|
|
Note<T>::Note(const Note<T>& copy)
|
2008-06-02 17:41:35 -04:00
|
|
|
: _on_event(copy._on_event, true)
|
|
|
|
, _off_event(copy._off_event, true)
|
|
|
|
{
|
|
|
|
assert(_on_event.buffer());
|
|
|
|
assert(_off_event.buffer());
|
|
|
|
/*
|
|
|
|
assert(copy._on_event.size == 3);
|
|
|
|
_on_event.buffer = _on_event_buffer;
|
|
|
|
memcpy(_on_event_buffer, copy._on_event_buffer, 3);
|
|
|
|
|
|
|
|
assert(copy._off_event.size == 3);
|
|
|
|
_off_event.buffer = _off_event_buffer;
|
|
|
|
memcpy(_off_event_buffer, copy._off_event_buffer, 3);
|
|
|
|
*/
|
|
|
|
|
|
|
|
assert(time() == copy.time());
|
|
|
|
assert(end_time() == copy.end_time());
|
|
|
|
assert(note() == copy.note());
|
|
|
|
assert(velocity() == copy.velocity());
|
2008-09-22 12:28:02 -04:00
|
|
|
assert(length() == copy.length());
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(_on_event.channel() == _off_event.channel());
|
|
|
|
assert(channel() == copy.channel());
|
|
|
|
}
|
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
|
2009-02-01 21:36:05 -05:00
|
|
|
template<typename T>
|
|
|
|
Note<T>::~Note()
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-01 21:36:05 -05:00
|
|
|
template<typename T>
|
|
|
|
const Note<T>&
|
|
|
|
Note<T>::operator=(const Note<T>& copy)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
_on_event = copy._on_event;
|
|
|
|
_off_event = copy._off_event;
|
|
|
|
|
|
|
|
assert(time() == copy.time());
|
|
|
|
assert(end_time() == copy.end_time());
|
|
|
|
assert(note() == copy.note());
|
|
|
|
assert(velocity() == copy.velocity());
|
2008-09-22 12:28:02 -04:00
|
|
|
assert(length() == copy.length());
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(_on_event.channel() == _off_event.channel());
|
|
|
|
assert(channel() == copy.channel());
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2009-02-01 21:36:05 -05:00
|
|
|
template class Note<double>;
|
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
} // namespace Evoral
|