2008-09-18 20:47:49 -04:00
|
|
|
/* This file is part of Evoral.
|
2011-04-06 11:00:16 -04:00
|
|
|
* Copyright (C) 2008 David Robillard <http://drobilla.net>
|
2008-09-18 20:47:49 -04:00
|
|
|
* Copyright (C) 2000-2008 Paul Davis
|
2009-10-14 12:10:01 -04:00
|
|
|
*
|
2008-09-18 20:47:49 -04:00
|
|
|
* 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.
|
2009-10-14 12:10:01 -04:00
|
|
|
*
|
2008-09-18 20:47:49 -04:00
|
|
|
* 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.
|
2009-10-14 12:10:01 -04:00
|
|
|
*
|
2008-09-18 20:47:49 -04:00
|
|
|
* 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>
|
2009-05-03 22:15:16 -04:00
|
|
|
#include <limits>
|
2010-07-20 12:27:34 -04:00
|
|
|
#include <glib.h>
|
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-10 17:06:56 -05:00
|
|
|
template<typename Time>
|
2009-02-14 18:41:05 -05:00
|
|
|
Note<Time>::Note(uint8_t chan, Time t, Time l, uint8_t n, uint8_t v)
|
2008-09-22 12:28:02 -04:00
|
|
|
// FIXME: types?
|
2011-11-22 19:17:31 -05:00
|
|
|
: _on_event (0xDE, t, 3, NULL, true)
|
2010-07-20 12:27:34 -04:00
|
|
|
, _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;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
_off_event.buffer()[0] = MIDI_CMD_NOTE_OFF + chan;
|
|
|
|
_off_event.buffer()[1] = n;
|
|
|
|
_off_event.buffer()[2] = 0x40;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(time() == t);
|
2009-09-14 12:01:32 -04:00
|
|
|
assert(musical_time_equal (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-10 17:06:56 -05:00
|
|
|
template<typename Time>
|
|
|
|
Note<Time>::Note(const Note<Time>& copy)
|
2011-11-22 19:17:31 -05:00
|
|
|
: _on_event(copy._on_event, true)
|
2008-06-02 17:41:35 -04:00
|
|
|
, _off_event(copy._off_event, true)
|
|
|
|
{
|
2011-11-22 19:17:31 -05:00
|
|
|
set_id (copy.id());
|
2010-07-20 12:27:34 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(_on_event.buffer());
|
|
|
|
assert(_off_event.buffer());
|
|
|
|
/*
|
2011-11-22 19:17:31 -05:00
|
|
|
assert(copy._on_event.size == 3);
|
|
|
|
_on_event.buffer = _on_event_buffer;
|
|
|
|
memcpy(_on_event_buffer, copy._on_event_buffer, 3);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-11-22 19:17:31 -05:00
|
|
|
assert(copy._off_event.size == 3);
|
|
|
|
_off_event.buffer = _off_event_buffer;
|
|
|
|
memcpy(_off_event_buffer, copy._off_event_buffer, 3);
|
2008-06-02 17:41:35 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2009-02-10 17:06:56 -05:00
|
|
|
template<typename Time>
|
|
|
|
Note<Time>::~Note()
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-07-20 12:27:34 -04:00
|
|
|
template<typename Time> void
|
|
|
|
Note<Time>::set_id (event_id_t id)
|
|
|
|
{
|
2011-11-22 19:17:31 -05:00
|
|
|
_on_event.set_id (id);
|
|
|
|
_off_event.set_id (id);
|
2010-07-20 12:27:34 -04:00
|
|
|
}
|
|
|
|
|
2009-02-10 17:06:56 -05:00
|
|
|
template<typename Time>
|
|
|
|
const Note<Time>&
|
2009-09-06 14:11:55 -04:00
|
|
|
Note<Time>::operator=(const Note<Time>& other)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2009-09-06 14:11:55 -04:00
|
|
|
_on_event = other._on_event;
|
|
|
|
_off_event = other._off_event;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-09-06 14:11:55 -04:00
|
|
|
assert(time() == other.time());
|
|
|
|
assert(end_time() == other.end_time());
|
|
|
|
assert(note() == other.note());
|
|
|
|
assert(velocity() == other.velocity());
|
|
|
|
assert(length() == other.length());
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(_on_event.channel() == _off_event.channel());
|
2009-09-06 14:11:55 -04:00
|
|
|
assert(channel() == other.channel());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2009-08-26 23:09:30 -04:00
|
|
|
template class Note<Evoral::MusicalTime>;
|
2009-02-01 21:36:05 -05:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
} // namespace Evoral
|
2009-08-26 23:09:30 -04:00
|
|
|
|