13
0
livetrax/libs/surfaces/push2/track_mix.cc
Paul Davis b35518e212 switch from boost::{shared,weak}_ptr to std::{shared,weak}_ptr
This is mostly a simple lexical search+replace but the absence of operator< for
std::weak_ptr<T> leads to some complications, particularly with Evoral::Sequence
and ExportPortChannel.
2023-03-24 14:19:15 -06:00

642 lines
16 KiB
C++

/*
* Copyright (C) 2016-2018 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2016-2018 Robin Gareus <robin@gareus.org>
*
* 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 <cairomm/region.h>
#include <pangomm/layout.h>
#include "pbd/compose.h"
#include "pbd/convert.h"
#include "pbd/debug.h"
#include "pbd/failed_constructor.h"
#include "pbd/file_utils.h"
#include "pbd/search_path.h"
#include "pbd/enumwriter.h"
#include "midi++/parser.h"
#include "temporal/time.h"
#include "temporal/bbt_time.h"
#include "ardour/async_midi_port.h"
#include "ardour/audioengine.h"
#include "ardour/debug.h"
#include "ardour/dsp_filter.h"
#include "ardour/filesystem_paths.h"
#include "ardour/midiport_manager.h"
#include "ardour/midi_track.h"
#include "ardour/midi_port.h"
#include "ardour/monitor_control.h"
#include "ardour/meter.h"
#include "ardour/session.h"
#include "ardour/solo_isolate_control.h"
#include "ardour/solo_safe_control.h"
#include "ardour/tempo.h"
#include "gtkmm2ext/gui_thread.h"
#include "gtkmm2ext/rgb_macros.h"
#include "canvas/box.h"
#include "canvas/line.h"
#include "canvas/meter.h"
#include "canvas/rectangle.h"
#include "canvas/text.h"
#include "canvas/types.h"
#include "canvas.h"
#include "knob.h"
#include "level_meter.h"
#include "push2.h"
#include "track_mix.h"
#include "utils.h"
#include "pbd/i18n.h"
#ifdef __APPLE__
#define Rect ArdourCanvas::Rect
#endif
using namespace ARDOUR;
using namespace PBD;
using namespace Glib;
using namespace ArdourSurface;
using namespace ArdourCanvas;
TrackMixLayout::TrackMixLayout (Push2& p, Session & s, std::string const & name)
: Push2Layout (p, s, name)
{
Pango::FontDescription fd ("Sans 10");
_bg = new ArdourCanvas::Rectangle (this);
_bg->set (Rect (0, 0, display_width(), display_height()));
_bg->set_fill_color (_p2.get_color (Push2::DarkBackground));
_upper_line = new Line (this);
_upper_line->set (Duple (0, 22.5), Duple (display_width(), 22.5));
_upper_line->set_outline_color (_p2.get_color (Push2::LightBackground));
for (int n = 0; n < 8; ++n) {
Text* t;
if (n < 4) {
t = new Text (this);
t->set_font_description (fd);
t->set_color (_p2.get_color (Push2::ParameterName));
t->set_position ( Duple (10 + (n*Push2Canvas::inter_button_spacing()), 2));
_upper_text.push_back (t);
}
t = new Text (this);
t->set_font_description (fd);
t->set_color (_p2.get_color (Push2::ParameterName));
t->set_position (Duple (10 + (n*Push2Canvas::inter_button_spacing()), 140));
_lower_text.push_back (t);
switch (n) {
case 0:
_upper_text[n]->set (_("Track Volume"));
_lower_text[n]->set (_("Mute"));
break;
case 1:
_upper_text[n]->set (_("Track Pan"));
_lower_text[n]->set (_("Solo"));
break;
case 2:
_upper_text[n]->set (_("Track Width"));
_lower_text[n]->set (_("Rec-enable"));
break;
case 3:
_upper_text[n]->set (_("Track Trim"));
_lower_text[n]->set (_("In"));
break;
case 4:
_lower_text[n]->set (_("Disk"));
break;
case 5:
_lower_text[n]->set (_("Solo Iso"));
break;
case 6:
_lower_text[n]->set (_("Solo Lock"));
break;
case 7:
_lower_text[n]->set (_(""));
break;
}
_knobs[n] = new Push2Knob (_p2, this);
_knobs[n]->set_position (Duple (60 + (Push2Canvas::inter_button_spacing()*n), 95));
_knobs[n]->set_radius (25);
}
_name_text = new Text (this);
_name_text->set_font_description (fd);
_name_text->set_position (Duple (10 + (4*Push2Canvas::inter_button_spacing()), 2));
_meter = new LevelMeter (_p2, this, 300, ArdourCanvas::Meter::Horizontal);
_meter->set_position (Duple (10 + (4 * Push2Canvas::inter_button_spacing()), 30));
Pango::FontDescription fd2 ("Sans 18");
_bbt_text = new Text (this);
_bbt_text->set_font_description (fd2);
_bbt_text->set_color (_p2.get_color (Push2::LightBackground));
_bbt_text->set_position (Duple (10 + (4 * Push2Canvas::inter_button_spacing()), 60));
_minsec_text = new Text (this);
_minsec_text->set_font_description (fd2);
_minsec_text->set_color (_p2.get_color (Push2::LightBackground));
_minsec_text->set_position (Duple (10 + (4 * Push2Canvas::inter_button_spacing()), 90));
}
TrackMixLayout::~TrackMixLayout ()
{
for (int n = 0; n < 8; ++n) {
delete _knobs[n];
}
}
void
TrackMixLayout::show ()
{
Push2::ButtonID lower_buttons[] = { Push2::Lower1, Push2::Lower2, Push2::Lower3, Push2::Lower4,
Push2::Lower5, Push2::Lower6, Push2::Lower7, Push2::Lower8 };
for (size_t n = 0; n < sizeof (lower_buttons) / sizeof (lower_buttons[0]); ++n) {
std::shared_ptr<Push2::Button> b = _p2.button_by_id (lower_buttons[n]);
b->set_color (Push2::LED::DarkGray);
b->set_state (Push2::LED::OneShot24th);
_p2.write (b->state_msg());
}
show_state ();
Container::show ();
}
void
TrackMixLayout::hide ()
{
}
void
TrackMixLayout::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
{
Container::render (area, context);
}
void
TrackMixLayout::button_upper (uint32_t n)
{
}
void
TrackMixLayout::button_lower (uint32_t n)
{
if (!_stripable) {
return;
}
MonitorChoice mc;
switch (n) {
case 0:
if (_stripable->mute_control()) {
_stripable->mute_control()->set_value (!_stripable->mute_control()->get_value(), PBD::Controllable::UseGroup);
}
break;
case 1:
if (_stripable->solo_control()) {
_session.set_control (_stripable->solo_control(), !_stripable->solo_control()->self_soloed(), PBD::Controllable::UseGroup);
}
break;
case 2:
if (_stripable->rec_enable_control()) {
_stripable->rec_enable_control()->set_value (!_stripable->rec_enable_control()->get_value(), PBD::Controllable::UseGroup);
}
break;
case 3:
if (_stripable->monitor_control()) {
mc = _stripable->monitoring_control()->monitoring_choice();
switch (mc) {
case MonitorInput:
_stripable->monitoring_control()->set_value (MonitorAuto, PBD::Controllable::UseGroup);
break;
default:
_stripable->monitoring_control()->set_value (MonitorInput, PBD::Controllable::UseGroup);
break;
}
}
break;
case 4:
mc = _stripable->monitoring_control()->monitoring_choice();
switch (mc) {
case MonitorDisk:
_stripable->monitoring_control()->set_value (MonitorAuto, PBD::Controllable::UseGroup);
break;
default:
_stripable->monitoring_control()->set_value (MonitorDisk, PBD::Controllable::UseGroup);
break;
}
break;
case 5:
if (_stripable->solo_isolate_control()) {
_stripable->solo_isolate_control()->set_value (!_stripable->solo_isolate_control()->get_value(), PBD::Controllable::UseGroup);
}
break;
case 6:
if (_stripable->solo_safe_control()) {
_stripable->solo_safe_control()->set_value (!_stripable->solo_safe_control()->get_value(), PBD::Controllable::UseGroup);
}
break;
case 7:
/* nothing here */
break;
}
}
void
TrackMixLayout::button_left ()
{
_p2.access_action ("Editor/select-prev-route");
}
void
TrackMixLayout::button_right ()
{
_p2.access_action ("Editor/select-next-route");
}
void
TrackMixLayout::simple_control_change (std::shared_ptr<AutomationControl> ac, Push2::ButtonID bid)
{
if (!ac || !parent()) {
return;
}
std::shared_ptr<Push2::Button> b = _p2.button_by_id (bid);
if (!b) {
return;
}
if (ac->get_value()) {
b->set_color (_selection_color);
} else {
b->set_color (Push2::LED::DarkGray);
}
b->set_state (Push2::LED::OneShot24th);
_p2.write (b->state_msg());
}
void
TrackMixLayout::solo_mute_change ()
{
if (!_stripable) {
return;
}
std::shared_ptr<Push2::Button> b = _p2.button_by_id (Push2::Lower2);
if (b) {
std::shared_ptr<SoloControl> sc = _stripable->solo_control();
if (sc) {
if (sc->soloed_by_self_or_masters()) {
b->set_color (_selection_color);
b->set_state (Push2::LED::OneShot24th);
} else if (sc->soloed_by_others_upstream() || sc->soloed_by_others_downstream()) {
b->set_color (_selection_color);
b->set_state (Push2::LED::Blinking8th);
} else {
b->set_color (Push2::LED::DarkGray);
b->set_state (Push2::LED::OneShot24th);
}
} else {
b->set_color (Push2::LED::DarkGray);
b->set_state (Push2::LED::OneShot24th);
}
_p2.write (b->state_msg());
}
b = _p2.button_by_id (Push2::Lower1);
if (b) {
std::shared_ptr<MuteControl> mc = _stripable->mute_control();
if (mc) {
if (mc->muted_by_self_or_masters()) {
b->set_color (_selection_color);
b->set_state (Push2::LED::OneShot24th);
} else if (mc->muted_by_others_soloing()) {
b->set_color (_selection_color);
b->set_state (Push2::LED::Blinking8th);
} else {
b->set_color (Push2::LED::DarkGray);
b->set_state (Push2::LED::OneShot24th);
}
} else {
b->set_color (Push2::LED::DarkGray);
b->set_state (Push2::LED::OneShot24th);
}
_p2.write (b->state_msg());
}
}
void
TrackMixLayout::rec_enable_change ()
{
if (!_stripable) {
return;
}
simple_control_change (_stripable->rec_enable_control(), Push2::Lower3);
}
void
TrackMixLayout::solo_iso_change ()
{
if (!_stripable) {
return;
}
simple_control_change (_stripable->solo_isolate_control(), Push2::Lower6);
}
void
TrackMixLayout::solo_safe_change ()
{
if (!_stripable) {
return;
}
simple_control_change (_stripable->solo_safe_control(), Push2::Lower7);
}
void
TrackMixLayout::monitoring_change ()
{
if (!_stripable) {
return;
}
if (!_stripable->monitoring_control()) {
return;
}
std::shared_ptr<Push2::Button> b1 = _p2.button_by_id (Push2::Lower4);
std::shared_ptr<Push2::Button> b2 = _p2.button_by_id (Push2::Lower5);
uint8_t b1_color;
uint8_t b2_color;
MonitorChoice mc = _stripable->monitoring_control()->monitoring_choice ();
switch (mc) {
case MonitorAuto:
b1_color = Push2::LED::DarkGray;
b2_color = Push2::LED::DarkGray;
break;
case MonitorInput:
b1_color = _selection_color;
b2_color = Push2::LED::DarkGray;
break;
case MonitorDisk:
b1_color = Push2::LED::DarkGray;
b2_color = _selection_color;
break;
case MonitorCue:
b1_color = _selection_color;
b2_color = _selection_color;
break;
default:
return; /* stupid compilers */
}
b1->set_color (b1_color);
b1->set_state (Push2::LED::OneShot24th);
_p2.write (b1->state_msg());
b2->set_color (b2_color);
b2->set_state (Push2::LED::OneShot24th);
_p2.write (b2->state_msg());
}
void
TrackMixLayout::show_state ()
{
if (_stripable) {
name_changed ();
color_changed ();
solo_mute_change ();
rec_enable_change ();
solo_iso_change ();
solo_safe_change ();
monitoring_change ();
_meter->set_meter (_stripable->peak_meter ().get());
} else {
_meter->set_meter (0);
}
}
void
TrackMixLayout::set_stripable (std::shared_ptr<Stripable> s)
{
_stripable_connections.drop_connections ();
_stripable = s;
if (_stripable) {
_stripable->DropReferences.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::drop_stripable, this), &_p2);
_stripable->PropertyChanged.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::stripable_property_change, this, _1), &_p2);
_stripable->presentation_info().PropertyChanged.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::stripable_property_change, this, _1), &_p2);
_stripable->solo_control()->Changed.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::solo_mute_change, this), &_p2);
_stripable->mute_control()->Changed.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::solo_mute_change, this), &_p2);
_stripable->solo_isolate_control()->Changed.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::solo_iso_change, this), &_p2);
_stripable->solo_safe_control()->Changed.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::solo_safe_change, this), &_p2);
if (_stripable->rec_enable_control()) {
_stripable->rec_enable_control()->Changed.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::rec_enable_change, this), &_p2);
}
if (_stripable->monitoring_control()) {
_stripable->monitoring_control()->Changed.connect (_stripable_connections, invalidator (*this), boost::bind (&TrackMixLayout::monitoring_change, this), &_p2);
}
_knobs[0]->set_controllable (_stripable->gain_control());
_knobs[1]->set_controllable (_stripable->pan_azimuth_control());
_knobs[1]->add_flag (Push2Knob::ArcToZero);
_knobs[2]->set_controllable (_stripable->pan_width_control());
_knobs[3]->set_controllable (_stripable->trim_control());
_knobs[3]->add_flag (Push2Knob::ArcToZero);
_knobs[4]->set_controllable (std::shared_ptr<AutomationControl>());
_knobs[5]->set_controllable (std::shared_ptr<AutomationControl>());
_knobs[6]->set_controllable (std::shared_ptr<AutomationControl>());
_knobs[7]->set_controllable (std::shared_ptr<AutomationControl>());
}
show_state ();
}
void
TrackMixLayout::drop_stripable ()
{
_stripable_connections.drop_connections ();
_stripable.reset ();
}
void
TrackMixLayout::name_changed ()
{
if (_stripable) {
_name_text->set (_stripable->name());
/* right justify */
Duple pos;
pos.y = _name_text->position().y;
pos.x = display_width() - 10 - _name_text->width();
_name_text->set_position (pos);
}
}
void
TrackMixLayout::color_changed ()
{
if (!parent()) {
return;
}
Gtkmm2ext::Color rgba = _stripable->presentation_info().color();
_selection_color = _p2.get_color_index (rgba);
_name_text->set_color (rgba);
for (int n = 0; n < 8; ++n) {
_knobs[n]->set_text_color (rgba);
_knobs[n]->set_arc_start_color (rgba);
_knobs[n]->set_arc_end_color (rgba);
}
}
void
TrackMixLayout::stripable_property_change (PropertyChange const& what_changed)
{
if (what_changed.contains (Properties::color)) {
color_changed ();
}
if (what_changed.contains (Properties::name)) {
name_changed ();
}
}
void
TrackMixLayout::strip_vpot (int n, int delta)
{
std::shared_ptr<Controllable> ac = _knobs[n]->controllable();
if (ac) {
ac->set_value (ac->get_value() + ((2.0/64.0) * delta), PBD::Controllable::UseGroup);
}
}
void
TrackMixLayout::strip_vpot_touch (int n, bool touching)
{
std::shared_ptr<AutomationControl> ac = _knobs[n]->controllable();
if (ac) {
const timepos_t now (_session.audible_sample());
if (touching) {
ac->start_touch (now);
} else {
ac->stop_touch (now);
}
}
}
void
TrackMixLayout::update_meters ()
{
if (!_stripable) {
return;
}
_meter->update_meters ();
}
void
TrackMixLayout::update_clocks ()
{
samplepos_t pos = _session.audible_sample();
bool negative = false;
if (pos < 0) {
pos = -pos;
negative = true;
}
char buf[16];
Temporal::BBT_Time BBT = Temporal::TempoMap::fetch()->bbt_at (timepos_t (pos));
#define BBT_BAR_CHAR "|"
if (negative) {
snprintf (buf, sizeof (buf), "-%03" PRIu32 BBT_BAR_CHAR "%02" PRIu32 BBT_BAR_CHAR "%04" PRIu32,
BBT.bars, BBT.beats, BBT.ticks);
} else {
snprintf (buf, sizeof (buf), " %03" PRIu32 BBT_BAR_CHAR "%02" PRIu32 BBT_BAR_CHAR "%04" PRIu32,
BBT.bars, BBT.beats, BBT.ticks);
}
_bbt_text->set (buf);
samplecnt_t left;
int hrs;
int mins;
int secs;
int millisecs;
const double sample_rate = _session.sample_rate ();
left = pos;
hrs = (int) floor (left / (sample_rate * 60.0f * 60.0f));
left -= (samplecnt_t) floor (hrs * sample_rate * 60.0f * 60.0f);
mins = (int) floor (left / (sample_rate * 60.0f));
left -= (samplecnt_t) floor (mins * sample_rate * 60.0f);
secs = (int) floor (left / (float) sample_rate);
left -= (samplecnt_t) floor ((double)(secs * sample_rate));
millisecs = floor (left * 1000.0 / (float) sample_rate);
if (negative) {
snprintf (buf, sizeof (buf), "-%02" PRId32 ":%02" PRId32 ":%02" PRId32 ".%03" PRId32, hrs, mins, secs, millisecs);
} else {
snprintf (buf, sizeof (buf), " %02" PRId32 ":%02" PRId32 ":%02" PRId32 ".%03" PRId32, hrs, mins, secs, millisecs);
}
_minsec_text->set (buf);
}