2019-08-02 23:10:55 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008-2016 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2009-2017 Paul Davis <paul@linuxaudiosystems.com>
|
2009-10-14 12:10:01 -04:00
|
|
|
*
|
2019-08-02 23:10:55 -04:00
|
|
|
* 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.
|
2009-10-14 12:10:01 -04:00
|
|
|
*
|
2019-08-02 23:10:55 -04:00
|
|
|
* 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.
|
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.,
|
2019-08-02 23:10:55 -04:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-09-18 20:47:49 -04:00
|
|
|
*/
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2016-11-06 22:04:35 -05:00
|
|
|
#include <cassert>
|
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>
|
2014-11-24 07:51:54 -05:00
|
|
|
#ifndef COMPILER_MSVC
|
2019-10-25 15:13:51 -04:00
|
|
|
#include "evoral/Note.h"
|
2014-11-24 07:51:54 -05:00
|
|
|
#endif
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2017-09-24 12:03:54 -04:00
|
|
|
#include "temporal/beats.h"
|
2015-10-05 13:58: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)
|
2016-11-07 05:14:55 -05:00
|
|
|
: _on_event (MIDI_EVENT, t, 3, NULL, true)
|
|
|
|
, _off_event (MIDI_EVENT, 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
|
|
|
|
2014-11-22 04:05:42 -05:00
|
|
|
assert(time() == t);
|
|
|
|
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-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)
|
|
|
|
{
|
|
|
|
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
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-11-22 04:05:42 -05:00
|
|
|
assert(time() == copy.time());
|
|
|
|
assert(end_time() == copy.end_time());
|
|
|
|
assert(length() == copy.length());
|
2008-06-02 17:41:35 -04:00
|
|
|
assert(note() == copy.note());
|
|
|
|
assert(velocity() == copy.velocity());
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-09-24 12:03:54 -04:00
|
|
|
template class Note<Temporal::Beats>;
|
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
|
|
|
|