2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include <ardour/io.h>
|
|
|
|
#include <ardour/route.h>
|
|
|
|
#include <ardour/route_group.h>
|
|
|
|
#include <ardour/session.h>
|
|
|
|
#include <ardour/session_route.h>
|
|
|
|
#include <ardour/dB.h>
|
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/fastmeter.h>
|
|
|
|
#include <gtkmm2ext/stop_signal.h>
|
|
|
|
#include <gtkmm2ext/barcontroller.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <midi++/manager.h>
|
|
|
|
#include <pbd/fastlog.h>
|
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "gain_meter.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "logmeter.h"
|
|
|
|
#include "gui_thread.h"
|
2005-11-24 09:59:36 -05:00
|
|
|
#include "keyboard.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include <ardour/session.h>
|
|
|
|
#include <ardour/route.h>
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 17:19:23 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-09-25 17:19:23 -04:00
|
|
|
using namespace sigc;
|
2006-03-12 13:21:48 -05:00
|
|
|
using namespace std;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
sigc::signal<void> GainMeter::ResetAllPeakDisplays;
|
|
|
|
sigc::signal<void,RouteGroup*> GainMeter::ResetGroupPeakDisplays;
|
2006-03-14 21:04:30 -05:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf> GainMeter::slider;
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> GainMeter::rail;
|
2006-03-12 13:21:48 -05:00
|
|
|
map<string,Glib::RefPtr<Gdk::Pixmap> > GainMeter::metric_pixmaps;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
GainMeter::setup_slider_pix ()
|
|
|
|
{
|
2006-03-14 21:04:30 -05:00
|
|
|
string path = ARDOUR::find_data_file("vslider02_slider.xpm", "pixmaps");
|
|
|
|
if (path.empty()) {
|
|
|
|
error << _("cannot find images for fader slider") << endmsg;
|
2005-09-25 14:42:24 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2006-03-14 21:04:30 -05:00
|
|
|
slider = Gdk::Pixbuf::create_from_file (path);
|
|
|
|
|
|
|
|
path = ARDOUR::find_data_file("vslider02_rail.xpm", "pixmaps");
|
|
|
|
if (path.empty()) {
|
|
|
|
error << _("cannot find images for fader rail") << endmsg;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
rail = Gdk::Pixbuf::create_from_file (path);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
GainMeter::GainMeter (IO& io, Session& s)
|
|
|
|
: _io (io),
|
|
|
|
_session (s),
|
|
|
|
gain_slider (0),
|
|
|
|
// 0.781787 is the value needed for gain to be set to 0.
|
|
|
|
gain_adjustment (0.781787, 0.0, 1.0, 0.01, 0.1),
|
|
|
|
gain_display (&gain_adjustment, "MixerStripGainDisplay"),
|
2006-05-19 13:29:05 -04:00
|
|
|
gain_automation_style_button (""),
|
|
|
|
gain_automation_state_button ("")
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
{
|
2006-03-14 21:04:30 -05:00
|
|
|
if (slider == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
setup_slider_pix ();
|
|
|
|
}
|
|
|
|
|
|
|
|
ignore_toggle = false;
|
|
|
|
meter_menu = 0;
|
|
|
|
|
2006-03-14 21:04:30 -05:00
|
|
|
gain_slider = manage (new VSliderController (slider, rail,
|
2005-09-25 14:42:24 -04:00
|
|
|
&gain_adjustment,
|
|
|
|
& _io.midi_gain_control(),
|
|
|
|
false));
|
|
|
|
|
2005-09-26 14:24:59 -04:00
|
|
|
gain_slider->signal_button_press_event().connect (mem_fun(*this, &GainMeter::start_gain_touch));
|
|
|
|
gain_slider->signal_button_release_event().connect (mem_fun(*this, &GainMeter::end_gain_touch));
|
2005-09-25 14:42:24 -04:00
|
|
|
gain_slider->set_name ("MixerGainMeter");
|
|
|
|
|
|
|
|
if (_session.midi_port()) {
|
|
|
|
_io.set_midi_to_gain_function (slider_position_to_gain);
|
|
|
|
_io.set_gain_to_midi_function (gain_to_slider_position);
|
|
|
|
}
|
|
|
|
|
|
|
|
gain_display.set_print_func (_gain_printer, this);
|
|
|
|
|
|
|
|
gain_display_box.set_spacing (2);
|
2006-04-24 18:45:19 -04:00
|
|
|
set_size_request_to_display_given_text (gain_display_frame, "-86.g", 2, 6); /* note the descender */
|
2005-09-25 17:19:23 -04:00
|
|
|
gain_display_frame.set_shadow_type (Gtk::SHADOW_IN);
|
2005-09-25 14:42:24 -04:00
|
|
|
gain_display_frame.set_name ("BaseFrame");
|
|
|
|
gain_display_frame.add (gain_display);
|
2005-12-18 08:19:02 -05:00
|
|
|
gain_display_box.pack_start (gain_display_frame, Gtk::PACK_SHRINK);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
peak_display.set_name ("MixerStripPeakDisplay");
|
|
|
|
peak_display.add (peak_display_label);
|
2006-04-24 18:45:19 -04:00
|
|
|
set_size_request_to_display_given_text (peak_display_frame, "-86.g", 2, 6); /* note the descender */
|
2005-09-25 17:19:23 -04:00
|
|
|
peak_display_frame.set_shadow_type (Gtk::SHADOW_IN);
|
2005-09-25 14:42:24 -04:00
|
|
|
peak_display_frame.set_name ("BaseFrame");
|
|
|
|
peak_display_frame.add (peak_display);
|
|
|
|
max_peak = minus_infinity();
|
|
|
|
peak_display_label.set_text (_("-inf"));
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
meter_metric_area.set_size_request (25, -1);
|
2005-09-25 14:42:24 -04:00
|
|
|
meter_metric_area.set_name ("MeterMetricsStrip");
|
|
|
|
|
|
|
|
meter_packer.set_spacing (2);
|
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
gain_automation_style_button.set_name ("MixerAutomationModeButton");
|
|
|
|
gain_automation_state_button.set_name ("MixerAutomationPlaybackButton");
|
|
|
|
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (gain_automation_state_button, _("Fader automation mode"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (gain_automation_style_button, _("Fader automation type"));
|
|
|
|
|
|
|
|
gain_automation_style_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
gain_automation_state_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_automation_state_button.set_size_request(15, 15);
|
|
|
|
gain_automation_style_button.set_size_request(15, 15);
|
2006-05-21 06:11:59 -04:00
|
|
|
|
2006-05-21 09:21:25 -04:00
|
|
|
fader_vbox = manage (new Gtk::VBox());
|
|
|
|
fader_vbox->set_spacing (0);
|
|
|
|
fader_vbox->pack_start (*gain_slider, false, false, 0);
|
|
|
|
|
2006-05-22 07:12:26 -04:00
|
|
|
hbox.set_spacing (0);
|
|
|
|
hbox.pack_start (*fader_vbox, false, false, 2);
|
|
|
|
|
2006-05-24 18:43:15 -04:00
|
|
|
set_width(Narrow);
|
|
|
|
|
2006-05-21 09:21:25 -04:00
|
|
|
Route* r;
|
|
|
|
|
|
|
|
if ((r = dynamic_cast<Route*> (&_io)) != 0) {
|
2006-05-22 07:12:26 -04:00
|
|
|
/*
|
|
|
|
if we don't have a route (if we're the click),
|
|
|
|
pack some route-dependent stuff.
|
|
|
|
*/
|
|
|
|
|
|
|
|
gain_display_box.pack_end (peak_display_frame, Gtk::PACK_SHRINK);
|
|
|
|
|
|
|
|
hbox.pack_start (meter_packer, true, false);
|
|
|
|
|
|
|
|
using namespace Menu_Helpers;
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Off"),
|
2006-05-21 09:21:25 -04:00
|
|
|
bind (mem_fun (&_io, &IO::set_gain_automation_state), (AutoState) Off)));
|
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Play"),
|
|
|
|
bind (mem_fun (&_io, &IO::set_gain_automation_state), (AutoState) Play)));
|
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Write"),
|
|
|
|
bind (mem_fun (&_io, &IO::set_gain_automation_state), (AutoState) Write)));
|
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Touch"),
|
|
|
|
bind (mem_fun (&_io, &IO::set_gain_automation_state), (AutoState) Touch)));
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2006-05-21 09:21:25 -04:00
|
|
|
gain_astyle_menu.items().push_back (MenuElem (_("Trim")));
|
|
|
|
gain_astyle_menu.items().push_back (MenuElem (_("Abs")));
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2006-05-21 09:21:25 -04:00
|
|
|
gain_astate_menu.set_name ("ArdourContextMenu");
|
|
|
|
gain_astyle_menu.set_name ("ArdourContextMenu");
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2006-05-21 09:21:25 -04:00
|
|
|
gain_automation_style_button.signal_button_press_event().connect (mem_fun(*this, &GainMeter::gain_automation_style_button_event), false);
|
|
|
|
gain_automation_state_button.signal_button_press_event().connect (mem_fun(*this, &GainMeter::gain_automation_state_button_event), false);
|
|
|
|
|
|
|
|
r->gain_automation_curve().automation_state_changed.connect (mem_fun(*this, &GainMeter::gain_automation_state_changed));
|
|
|
|
r->gain_automation_curve().automation_style_changed.connect (mem_fun(*this, &GainMeter::gain_automation_style_changed));
|
|
|
|
fader_vbox->pack_start (gain_automation_state_button, false, false, 0);
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2006-05-21 09:21:25 -04:00
|
|
|
gain_automation_state_changed ();
|
|
|
|
}
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
set_spacing (4);
|
2006-02-13 11:08:32 -05:00
|
|
|
|
2005-12-18 08:19:02 -05:00
|
|
|
pack_start (gain_display_box, Gtk::PACK_SHRINK);
|
|
|
|
pack_start (hbox, Gtk::PACK_SHRINK);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
_io.gain_changed.connect (mem_fun(*this, &GainMeter::gain_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-26 14:24:59 -04:00
|
|
|
meter_metric_area.signal_expose_event().connect (mem_fun(*this, &GainMeter::meter_metrics_expose));
|
2005-10-09 01:03:29 -04:00
|
|
|
gain_adjustment.signal_value_changed().connect (mem_fun(*this, &GainMeter::gain_adjusted));
|
2005-09-26 14:24:59 -04:00
|
|
|
peak_display.signal_button_release_event().connect (mem_fun(*this, &GainMeter::peak_button_release));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
_session.MeterHoldChanged.connect (mem_fun(*this, &GainMeter::meter_hold_changed));
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
gain_changed (0);
|
|
|
|
update_gain_sensitive ();
|
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
ResetAllPeakDisplays.connect (mem_fun(*this, &GainMeter::reset_peak_display));
|
|
|
|
ResetGroupPeakDisplays.connect (mem_fun(*this, &GainMeter::reset_group_peak_display));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::set_width (Width w)
|
|
|
|
{
|
|
|
|
switch (w) {
|
|
|
|
case Wide:
|
|
|
|
peak_display_frame.show_all();
|
|
|
|
break;
|
|
|
|
case Narrow:
|
|
|
|
peak_display_frame.hide_all();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
_width = w;
|
|
|
|
setup_meters ();
|
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
Glib::RefPtr<Gdk::Pixmap>
|
|
|
|
GainMeter::render_metrics (Gtk::Widget& w)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-03-12 13:21:48 -05:00
|
|
|
Glib::RefPtr<Gdk::Window> win (w.get_window());
|
|
|
|
Glib::RefPtr<Gdk::GC> fg_gc (w.get_style()->get_fg_gc (Gtk::STATE_NORMAL));
|
|
|
|
Glib::RefPtr<Gdk::GC> bg_gc (w.get_style()->get_bg_gc (Gtk::STATE_NORMAL));
|
2005-09-25 14:42:24 -04:00
|
|
|
gint x, y, width, height, depth;
|
2006-03-12 13:21:48 -05:00
|
|
|
int db_points[] = { -50, -40, -20, -30, -10, -3, 0, 4 };
|
2005-09-25 14:42:24 -04:00
|
|
|
char buf[32];
|
|
|
|
|
2005-11-12 17:07:07 -05:00
|
|
|
win->get_geometry (x, y, width, height, depth);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
Glib::RefPtr<Gdk::Pixmap> pixmap = Gdk::Pixmap::create (win, width, height);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
metric_pixmaps[w.get_name()] = pixmap;
|
|
|
|
|
|
|
|
pixmap->draw_rectangle (bg_gc, true, 0, 0, width, height);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
Glib::RefPtr<Pango::Layout> layout = w.create_pango_layout("");
|
2006-01-28 08:33:54 -05:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
for (uint32_t i = 0; i < sizeof (db_points)/sizeof (db_points[0]); ++i) {
|
2006-01-28 08:33:54 -05:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
float fraction = log_meter (db_points[i]);
|
|
|
|
gint pos = height - (gint) floor (height * fraction);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
snprintf (buf, sizeof (buf), "%d", abs (db_points[i]));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-01-28 08:33:54 -05:00
|
|
|
layout->set_text (buf);
|
2006-04-20 14:14:00 -04:00
|
|
|
|
|
|
|
/* we want logical extents, not ink extents here */
|
|
|
|
|
|
|
|
int width, height;
|
|
|
|
layout->get_pixel_size (width, height);
|
2006-01-28 08:33:54 -05:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
pixmap->draw_line (fg_gc, 0, pos, 4, pos);
|
2006-04-20 14:14:00 -04:00
|
|
|
pixmap->draw_layout (fg_gc, 6, pos - (height/2), layout);
|
2006-03-12 13:21:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return pixmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_metrics_expose (GdkEventExpose *ev)
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Window> win (meter_metric_area.get_window());
|
|
|
|
Glib::RefPtr<Gdk::GC> fg_gc (meter_metric_area.get_style()->get_fg_gc (Gtk::STATE_NORMAL));
|
|
|
|
Glib::RefPtr<Gdk::GC> bg_gc (meter_metric_area.get_style()->get_bg_gc (Gtk::STATE_NORMAL));
|
|
|
|
GdkRectangle base_rect;
|
|
|
|
GdkRectangle draw_rect;
|
|
|
|
gint x, y, width, height, depth;
|
|
|
|
|
|
|
|
win->get_geometry (x, y, width, height, depth);
|
|
|
|
|
|
|
|
base_rect.width = width;
|
|
|
|
base_rect.height = height;
|
|
|
|
base_rect.x = 0;
|
|
|
|
base_rect.y = 0;
|
|
|
|
|
|
|
|
Glib::RefPtr<Gdk::Pixmap> pixmap;
|
|
|
|
std::map<string,Glib::RefPtr<Gdk::Pixmap> >::iterator i = metric_pixmaps.find (meter_metric_area.get_name());
|
|
|
|
|
|
|
|
if (i == metric_pixmaps.end()) {
|
|
|
|
pixmap = render_metrics (meter_metric_area);
|
|
|
|
} else {
|
|
|
|
pixmap = i->second;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
gdk_rectangle_intersect (&ev->area, &base_rect, &draw_rect);
|
|
|
|
win->draw_rectangle (bg_gc, true, draw_rect.x, draw_rect.y, draw_rect.width, draw_rect.height);
|
|
|
|
win->draw_drawable (bg_gc, pixmap, draw_rect.x, draw_rect.y, draw_rect.x, draw_rect.y, draw_rect.width, draw_rect.height);
|
|
|
|
|
2006-01-28 08:33:54 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
GainMeter::~GainMeter ()
|
|
|
|
{
|
|
|
|
if (meter_menu) {
|
|
|
|
delete meter_menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (vector<MeterInfo>::iterator i = meters.begin(); i != meters.end(); i++) {
|
|
|
|
if ((*i).meter) {
|
|
|
|
delete (*i).meter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::update_meters ()
|
|
|
|
{
|
|
|
|
vector<MeterInfo>::iterator i;
|
|
|
|
uint32_t n;
|
|
|
|
float peak;
|
|
|
|
char buf[32];
|
|
|
|
|
|
|
|
for (n = 0, i = meters.begin(); i != meters.end(); ++i, ++n) {
|
2006-06-15 18:31:13 -04:00
|
|
|
if ((*i).packed) {
|
|
|
|
peak = _io.peak_input_power (n);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-04-09 23:54:00 -04:00
|
|
|
(*i).meter->set (log_meter (peak), peak);
|
2006-06-15 18:31:13 -04:00
|
|
|
|
|
|
|
if (peak > max_peak) {
|
|
|
|
max_peak = peak;
|
|
|
|
/* set peak display */
|
|
|
|
if (max_peak <= -200.0f) {
|
|
|
|
peak_display_label.set_text (_("-inf"));
|
|
|
|
} else {
|
|
|
|
snprintf (buf, sizeof(buf), "%.1f", max_peak);
|
|
|
|
peak_display_label.set_text (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max_peak >= 0.0f) {
|
|
|
|
peak_display.set_name ("MixerStripPeakDisplayPeak");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::meter_hold_changed()
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
ENSURE_GUI_THREAD(mem_fun(*this, &GainMeter::meter_hold_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
vector<MeterInfo>::iterator i;
|
|
|
|
uint32_t n;
|
|
|
|
|
|
|
|
for (n = 0, i = meters.begin(); i != meters.end(); ++i, ++n) {
|
|
|
|
|
|
|
|
(*i).meter->set_hold_count ((uint32_t) floor(_session.meter_hold()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::hide_all_meters ()
|
|
|
|
{
|
|
|
|
bool remove_metric_area = false;
|
|
|
|
|
|
|
|
for (vector<MeterInfo>::iterator i = meters.begin(); i != meters.end(); ++i) {
|
|
|
|
if ((*i).packed) {
|
|
|
|
remove_metric_area = true;
|
|
|
|
meter_packer.remove (*((*i).meter));
|
|
|
|
(*i).packed = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remove_metric_area) {
|
|
|
|
if (meter_metric_area.get_parent()) {
|
|
|
|
meter_packer.remove (meter_metric_area);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::setup_meters ()
|
|
|
|
{
|
|
|
|
uint32_t nmeters = _io.n_outputs();
|
|
|
|
guint16 width;
|
|
|
|
|
|
|
|
hide_all_meters ();
|
|
|
|
|
|
|
|
Route* r;
|
|
|
|
|
|
|
|
if ((r = dynamic_cast<Route*> (&_io)) != 0) {
|
|
|
|
|
|
|
|
switch (r->meter_point()) {
|
|
|
|
case MeterPreFader:
|
|
|
|
case MeterInput:
|
|
|
|
nmeters = r->n_inputs();
|
|
|
|
break;
|
|
|
|
case MeterPostFader:
|
|
|
|
nmeters = r->n_outputs();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
nmeters = _io.n_outputs();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmeters == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmeters <= 2) {
|
|
|
|
width = regular_meter_width;
|
|
|
|
} else {
|
|
|
|
width = thin_meter_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (meters.size() < nmeters) {
|
|
|
|
meters.push_back (MeterInfo());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t n = 0; n < nmeters; ++n) {
|
|
|
|
if (meters[n].width != width) {
|
|
|
|
delete meters[n].meter;
|
|
|
|
meters[n].meter = new FastMeter ((uint32_t) floor (_session.meter_hold()), width, FastMeter::Vertical);
|
|
|
|
meters[n].width = width;
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
meters[n].meter->add_events (Gdk::BUTTON_RELEASE_MASK);
|
2005-11-12 17:07:07 -05:00
|
|
|
meters[n].meter->signal_button_release_event().connect (bind (mem_fun(*this, &GainMeter::meter_button_release), n));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-12-18 08:19:02 -05:00
|
|
|
meter_packer.pack_start (*meters[n].meter, Gtk::PACK_SHRINK);
|
2005-09-25 14:42:24 -04:00
|
|
|
meters[n].meter->show_all ();
|
|
|
|
meters[n].packed = true;
|
|
|
|
}
|
2006-03-12 13:21:48 -05:00
|
|
|
|
|
|
|
if (_width == Wide) {
|
|
|
|
meter_packer.pack_start (meter_metric_area, Gtk::PACK_SHRINK);
|
|
|
|
meter_metric_area.show_all ();
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::peak_button_release (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
/* reset peak label */
|
|
|
|
|
|
|
|
if (ev->button == 1 && Keyboard::modifier_state_equals (ev->state, Keyboard::Control|Keyboard::Shift)) {
|
|
|
|
ResetAllPeakDisplays ();
|
|
|
|
} else if (ev->button == 1 && Keyboard::modifier_state_equals (ev->state, Keyboard::Control)) {
|
|
|
|
Route* r;
|
|
|
|
if ((r = dynamic_cast<Route*> (&_io)) != 0) {
|
|
|
|
ResetGroupPeakDisplays (r->mix_group());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reset_peak_display ();
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::reset_peak_display ()
|
|
|
|
{
|
|
|
|
max_peak = minus_infinity();
|
2006-05-19 13:29:05 -04:00
|
|
|
peak_display_label.set_text (_("-Inf"));
|
|
|
|
peak_display.set_name ("Mixerstrippeakdisplay");
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::reset_group_peak_display (RouteGroup* group)
|
|
|
|
{
|
|
|
|
Route* r;
|
|
|
|
if ((r = dynamic_cast<Route*> (&_io)) != 0) {
|
|
|
|
if (group == r->mix_group()) {
|
|
|
|
reset_peak_display ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_button_release (GdkEventButton* ev, uint32_t which)
|
|
|
|
{
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
meters[which].meter->clear();
|
|
|
|
max_peak = minus_infinity();
|
|
|
|
peak_display_label.set_text (_("-inf"));
|
|
|
|
peak_display.set_name ("MixerStripPeakDisplay");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
// popup_meter_menu (ev);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::popup_meter_menu (GdkEventButton *ev)
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
if (meter_menu == 0) {
|
|
|
|
meter_menu = new Gtk::Menu;
|
|
|
|
MenuList& items = meter_menu->items();
|
|
|
|
|
|
|
|
items.push_back (MenuElem ("-inf .. +0dBFS"));
|
|
|
|
items.push_back (MenuElem ("-10dB .. +0dBFS"));
|
|
|
|
items.push_back (MenuElem ("-4 .. +0dBFS"));
|
|
|
|
items.push_back (SeparatorElem());
|
|
|
|
items.push_back (MenuElem ("-inf .. -2dBFS"));
|
|
|
|
items.push_back (MenuElem ("-10dB .. -2dBFS"));
|
|
|
|
items.push_back (MenuElem ("-4 .. -2dBFS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
meter_menu->popup (1, ev->time);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::_gain_printer (char buf[32], Gtk::Adjustment& adj, void *arg)
|
|
|
|
{
|
|
|
|
static_cast<GainMeter *>(arg)->gain_printer (buf, adj);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::gain_printer (char buf[32], Gtk::Adjustment& adj)
|
|
|
|
{
|
|
|
|
float v = adj.get_value();
|
|
|
|
|
|
|
|
if (v == 0.0) {
|
|
|
|
strcpy (buf, _("-inf"));
|
|
|
|
} else {
|
|
|
|
snprintf (buf, 32, "%.1f", coefficient_to_dB (slider_position_to_gain (v)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::gain_adjusted ()
|
|
|
|
{
|
|
|
|
if (!ignore_toggle) {
|
|
|
|
_io.set_gain (slider_position_to_gain (gain_adjustment.get_value()), this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::effective_gain_display ()
|
|
|
|
{
|
|
|
|
gfloat value = gain_to_slider_position (_io.effective_gain());
|
|
|
|
|
|
|
|
if (gain_adjustment.get_value() != value) {
|
|
|
|
ignore_toggle = true;
|
|
|
|
gain_adjustment.set_value (value);
|
|
|
|
ignore_toggle = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::gain_changed (void *src)
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (mem_fun(*this, &GainMeter::effective_gain_display));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-12-24 08:07:36 -05:00
|
|
|
GainMeter::set_meter_strip_name (const char * name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
meter_metric_area.set_name (name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-12-24 08:07:36 -05:00
|
|
|
GainMeter::set_fader_name (const char * name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
gain_slider->set_name (name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::update_gain_sensitive ()
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
static_cast<Gtkmm2ext::SliderController*>(gain_slider)->set_sensitive (!(_io.gain_automation_state() & Play));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static MeterPoint
|
|
|
|
next_meter_point (MeterPoint mp)
|
|
|
|
{
|
|
|
|
switch (mp) {
|
|
|
|
case MeterInput:
|
|
|
|
return MeterPreFader;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MeterPreFader:
|
|
|
|
return MeterPostFader;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MeterPostFader:
|
|
|
|
return MeterInput;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
|
|
|
return MeterInput;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_press(GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
Route* _route;
|
|
|
|
|
|
|
|
wait_for_release = false;
|
|
|
|
|
|
|
|
if ((_route = dynamic_cast<Route*>(&_io)) == 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ignore_toggle) {
|
|
|
|
|
|
|
|
if (Keyboard::is_context_menu_event (ev)) {
|
|
|
|
|
|
|
|
// no menu at this time.
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (ev->button == 2) {
|
|
|
|
|
|
|
|
// ctrl-button2 click is the midi binding click
|
|
|
|
// button2-click is "momentary"
|
|
|
|
|
|
|
|
if (!Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::Control))) {
|
|
|
|
wait_for_release = true;
|
|
|
|
old_meter_point = _route->meter_point ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->button == 1 || ev->button == 2) {
|
|
|
|
|
|
|
|
if (Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::Control|Keyboard::Shift))) {
|
|
|
|
|
|
|
|
/* ctrl-shift-click applies change to all routes */
|
|
|
|
|
|
|
|
_session.foreach_route (this, &GainMeter::set_meter_point, next_meter_point (_route->meter_point()));
|
|
|
|
|
|
|
|
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::Control)) {
|
|
|
|
|
|
|
|
/* ctrl-click: solo mix group.
|
|
|
|
ctrl-button2 is MIDI learn.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ev->button == 1) {
|
|
|
|
set_mix_group_meter_point (*_route, next_meter_point (_route->meter_point()));
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* click: solo this route */
|
|
|
|
|
|
|
|
_route->set_meter_point (next_meter_point (_route->meter_point()), this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_release(GdkEventButton* ev)
|
|
|
|
{
|
2006-03-12 13:21:48 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if(!ignore_toggle){
|
|
|
|
if (wait_for_release){
|
|
|
|
wait_for_release = false;
|
|
|
|
set_meter_point (*(dynamic_cast<Route*>(&_io)), old_meter_point);
|
|
|
|
}
|
|
|
|
}
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::set_meter_point (Route& route, MeterPoint mp)
|
|
|
|
{
|
|
|
|
route.set_meter_point (mp, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::set_mix_group_meter_point (Route& route, MeterPoint mp)
|
|
|
|
{
|
|
|
|
RouteGroup* mix_group;
|
|
|
|
|
|
|
|
if((mix_group = route.mix_group()) != 0){
|
|
|
|
mix_group->apply (&Route::set_meter_point, mp, this);
|
|
|
|
} else {
|
|
|
|
route.set_meter_point (mp, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::meter_point_clicked ()
|
|
|
|
{
|
|
|
|
Route* r;
|
|
|
|
|
|
|
|
if ((r = dynamic_cast<Route*> (&_io)) != 0) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::start_gain_touch (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
_io.start_gain_touch ();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::end_gain_touch (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
_io.end_gain_touch ();
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::gain_automation_state_button_event (GdkEventButton *ev)
|
|
|
|
{
|
|
|
|
if (ev->type == GDK_BUTTON_RELEASE) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
gain_astate_menu.popup (1, ev->time);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::gain_automation_style_button_event (GdkEventButton *ev)
|
|
|
|
{
|
|
|
|
if (ev->type == GDK_BUTTON_RELEASE) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
gain_astyle_menu.popup (1, ev->time);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
GainMeter::astate_string (AutoState state)
|
|
|
|
{
|
|
|
|
return _astate_string (state, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
GainMeter::short_astate_string (AutoState state)
|
|
|
|
{
|
|
|
|
return _astate_string (state, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
GainMeter::_astate_string (AutoState state, bool shrt)
|
|
|
|
{
|
|
|
|
string sstr;
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case Off:
|
2006-05-22 07:12:26 -04:00
|
|
|
sstr = (shrt ? "O" : _("O"));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Play:
|
|
|
|
sstr = (shrt ? "P" : _("P"));
|
|
|
|
break;
|
|
|
|
case Touch:
|
|
|
|
sstr = (shrt ? "T" : _("T"));
|
|
|
|
break;
|
|
|
|
case Write:
|
|
|
|
sstr = (shrt ? "W" : _("W"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
GainMeter::astyle_string (AutoStyle style)
|
|
|
|
{
|
|
|
|
return _astyle_string (style, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
GainMeter::short_astyle_string (AutoStyle style)
|
|
|
|
{
|
|
|
|
return _astyle_string (style, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
GainMeter::_astyle_string (AutoStyle style, bool shrt)
|
|
|
|
{
|
|
|
|
if (style & Trim) {
|
|
|
|
return _("Trim");
|
|
|
|
} else {
|
|
|
|
/* XXX it might different in different languages */
|
|
|
|
|
|
|
|
return (shrt ? _("Abs") : _("Abs"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::gain_automation_style_changed ()
|
|
|
|
{
|
2006-05-22 07:12:26 -04:00
|
|
|
// Route* _route = dynamic_cast<Route*>(&_io);
|
2006-05-19 13:29:05 -04:00
|
|
|
switch (_width) {
|
|
|
|
case Wide:
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_automation_style_button.set_label (astyle_string(_io.gain_automation_curve().automation_style()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_automation_style_button.set_label (short_astyle_string(_io.gain_automation_curve().automation_style()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeter::gain_automation_state_changed ()
|
|
|
|
{
|
|
|
|
ENSURE_GUI_THREAD(mem_fun(*this, &GainMeter::gain_automation_state_changed));
|
2006-05-22 07:12:26 -04:00
|
|
|
//Route* _route = dynamic_cast<Route*>(&_io);
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
bool x;
|
|
|
|
|
|
|
|
switch (_width) {
|
|
|
|
case Wide:
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_automation_state_button.set_label (astate_string(_io.gain_automation_curve().automation_state()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_automation_state_button.set_label (short_astate_string(_io.gain_automation_curve().automation_state()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-05-22 07:12:26 -04:00
|
|
|
x = (_io.gain_automation_state() != Off);
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
if (gain_automation_state_button.get_active() != x) {
|
|
|
|
ignore_toggle = true;
|
|
|
|
gain_automation_state_button.set_active (x);
|
|
|
|
ignore_toggle = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
update_gain_sensitive ();
|
|
|
|
|
|
|
|
/* start watching automation so that things move */
|
|
|
|
|
|
|
|
gain_watching.disconnect();
|
|
|
|
|
|
|
|
if (x) {
|
|
|
|
gain_watching = ARDOUR_UI::RapidScreenUpdate.connect (mem_fun (*this, &GainMeter::effective_gain_display));
|
|
|
|
}
|
|
|
|
}
|