2024-02-13 14:22:49 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ardour/midi_region.h"
|
|
|
|
#include "ardour/midi_source.h"
|
2024-06-26 00:59:14 -04:00
|
|
|
#include "ardour/midi_track.h"
|
|
|
|
#include "ardour/triggerbox.h"
|
2024-02-13 14:22:49 -05:00
|
|
|
|
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
|
|
|
|
#include "canvas/debug.h"
|
|
|
|
|
|
|
|
#include "editing_context.h"
|
|
|
|
#include "editor_drag.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "midi_cue_view.h"
|
2024-08-30 14:31:20 -04:00
|
|
|
#include "midi_cue_velocity.h"
|
|
|
|
#include "velocity_display.h"
|
2024-02-13 14:22:49 -05:00
|
|
|
|
|
|
|
#include "pbd/i18n.h"
|
|
|
|
|
|
|
|
using namespace Gtkmm2ext;
|
|
|
|
|
|
|
|
MidiCueView::MidiCueView (std::shared_ptr<ARDOUR::MidiTrack> mt,
|
2024-06-26 00:59:14 -04:00
|
|
|
std::shared_ptr<ARDOUR::MidiRegion> region,
|
|
|
|
uint32_t slot_index,
|
2024-02-13 14:22:49 -05:00
|
|
|
ArdourCanvas::Item& parent,
|
|
|
|
EditingContext& ec,
|
|
|
|
MidiViewBackground& bg,
|
|
|
|
uint32_t basic_color)
|
|
|
|
: MidiView (mt, parent, ec, bg, basic_color)
|
2024-08-30 14:31:20 -04:00
|
|
|
, velocity_base (nullptr)
|
|
|
|
, velocity_display (nullptr)
|
2024-06-26 00:59:14 -04:00
|
|
|
, _slot_index (slot_index)
|
2024-02-13 14:22:49 -05:00
|
|
|
{
|
|
|
|
CANVAS_DEBUG_NAME (_note_group, X_("note group for MIDI cue"));
|
|
|
|
|
2024-02-22 12:37:09 -05:00
|
|
|
/* Containers don't get canvas events, so we need an invisible rect
|
|
|
|
* that will. It will be resized as needed sothat it always covers the
|
|
|
|
* entire canvas/view.
|
|
|
|
*/
|
|
|
|
|
2024-02-13 14:22:49 -05:00
|
|
|
event_rect = new ArdourCanvas::Rectangle (&parent);
|
|
|
|
event_rect->set (ArdourCanvas::Rect (0.0, 0.0, ArdourCanvas::COORD_MAX, 10.));
|
|
|
|
event_rect->Event.connect (sigc::mem_fun (*this, &MidiCueView::canvas_event));
|
|
|
|
event_rect->set_fill (false);
|
|
|
|
event_rect->set_outline (false);
|
2024-08-25 15:07:06 -04:00
|
|
|
CANVAS_DEBUG_NAME (event_rect, "cue event rect");
|
2024-02-13 14:22:49 -05:00
|
|
|
|
|
|
|
_note_group->raise_to_top ();
|
2024-06-11 17:14:03 -04:00
|
|
|
|
2024-08-30 14:31:20 -04:00
|
|
|
automation_group = new ArdourCanvas::Rectangle (&parent);
|
|
|
|
CANVAS_DEBUG_NAME (automation_group, "cue automation group");
|
|
|
|
|
|
|
|
velocity_base = new ArdourCanvas::Rectangle (&parent);
|
|
|
|
velocity_display = new MidiCueVelocityDisplay (editing_context(), midi_context(), *this, *velocity_base, 0x312244ff);
|
|
|
|
|
2024-06-11 17:14:03 -04:00
|
|
|
set_extensible (true);
|
2024-06-26 00:59:14 -04:00
|
|
|
set_region (region);
|
2024-02-13 14:22:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::set_height (double h)
|
|
|
|
{
|
2024-08-30 14:31:20 -04:00
|
|
|
double note_area_height = ceil (h / 2.);
|
|
|
|
double velocity_height = ceil ((h - note_area_height) / 2.);
|
|
|
|
double automation_height = h - note_area_height - velocity_height;
|
|
|
|
|
|
|
|
event_rect->set (ArdourCanvas::Rect (0.0, 0.0, ArdourCanvas::COORD_MAX, note_area_height));
|
|
|
|
midi_context().set_size (ArdourCanvas::COORD_MAX, note_area_height);
|
|
|
|
velocity_base->set (ArdourCanvas::Rect (0., note_area_height, ArdourCanvas::COORD_MAX, note_area_height + velocity_height));
|
|
|
|
automation_group->set (ArdourCanvas::Rect (0., note_area_height + velocity_height, ArdourCanvas::COORD_MAX, note_area_height + velocity_height + automation_height));
|
|
|
|
|
2024-08-25 15:38:41 -04:00
|
|
|
view_changed ();
|
2024-02-13 14:22:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ArdourCanvas::Item*
|
|
|
|
MidiCueView::drag_group () const
|
|
|
|
{
|
2024-02-14 19:52:54 -05:00
|
|
|
return event_rect;
|
2024-02-13 14:22:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MidiCueView::canvas_event (GdkEvent* ev)
|
|
|
|
{
|
|
|
|
return MidiView::canvas_group_event (ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MidiCueView::scroll (GdkEventScroll* ev)
|
|
|
|
{
|
|
|
|
if (_editing_context.drags()->active()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier) ||
|
|
|
|
Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier)) {
|
|
|
|
|
|
|
|
switch (ev->direction) {
|
|
|
|
case GDK_SCROLL_UP:
|
|
|
|
_editing_context.reset_zoom (_editing_context.get_current_zoom() / 2);
|
|
|
|
return true;
|
|
|
|
case GDK_SCROLL_DOWN:
|
|
|
|
_editing_context.reset_zoom (_editing_context.get_current_zoom() * 2);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return MidiView::scroll (ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::set_samples_per_pixel (double spp)
|
|
|
|
{
|
|
|
|
std::shared_ptr<Temporal::TempoMap> map;
|
|
|
|
Temporal::timecnt_t duration;
|
|
|
|
|
|
|
|
if (_midi_region) {
|
|
|
|
duration = Temporal::timecnt_t (_midi_region->midi_source()->length().beats());
|
|
|
|
map.reset (new Temporal::TempoMap (Temporal::Tempo (120, 4), Temporal::Meter (4, 4)));
|
|
|
|
} else {
|
|
|
|
duration = Temporal::timecnt_t (Temporal::Beats (4, 0));
|
|
|
|
map.reset (new Temporal::TempoMap (Temporal::Tempo (120, 4), Temporal::Meter (4, 4)));
|
|
|
|
}
|
|
|
|
|
|
|
|
EditingContext::TempoMapScope tms (_editing_context, map);
|
|
|
|
|
|
|
|
reset_width_dependent_items (_editing_context.duration_to_pixels (duration));
|
|
|
|
}
|
2024-06-22 00:19:28 -04:00
|
|
|
|
2024-08-30 14:31:20 -04:00
|
|
|
void
|
|
|
|
MidiCueView::clear_ghost_events ()
|
|
|
|
{
|
|
|
|
if (velocity_display) {
|
|
|
|
velocity_display->clear ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::ghosts_model_changed ()
|
|
|
|
{
|
|
|
|
if (velocity_display) {
|
|
|
|
velocity_display->clear ();
|
|
|
|
for (auto & ev : _events) {
|
|
|
|
velocity_display->add_note (ev.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::ghosts_view_changed ()
|
|
|
|
{
|
|
|
|
if (velocity_display) {
|
|
|
|
velocity_display->redisplay();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::ghost_remove_note (NoteBase* nb)
|
|
|
|
{
|
|
|
|
if (velocity_display) {
|
|
|
|
velocity_display->remove_note (nb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::ghost_add_note (NoteBase* nb)
|
|
|
|
{
|
|
|
|
if (velocity_display) {
|
|
|
|
velocity_display->add_note (nb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiCueView::ghost_sync_selection (NoteBase* nb)
|
|
|
|
{
|
|
|
|
if (velocity_display) {
|
|
|
|
velocity_display->note_selected (nb);
|
|
|
|
}
|
|
|
|
}
|