2007-06-27 18:06:35 -04:00
|
|
|
#define __STDC_FORMAT_MACROS 1
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2009-05-20 09:28:30 -04:00
|
|
|
#include <iomanip>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/latent.h"
|
2007-06-27 18:06:35 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
|
|
|
|
#include "latency_gui.h"
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace Gtkmm2ext;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
|
|
|
|
|
|
|
static const gchar *_unit_strings[] = {
|
|
|
|
N_("sample"),
|
|
|
|
N_("msec"),
|
|
|
|
N_("period"),
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<std::string> LatencyGUI::unit_strings;
|
|
|
|
|
2009-05-20 09:28:30 -04:00
|
|
|
std::string
|
2009-06-21 22:00:25 -04:00
|
|
|
LatencyBarController::get_label (int&)
|
2007-06-27 18:06:35 -04:00
|
|
|
{
|
2009-06-21 22:00:25 -04:00
|
|
|
double const nframes = _latency_gui->adjustment.get_value();
|
2009-05-20 09:28:30 -04:00
|
|
|
std::stringstream s;
|
2007-06-27 18:06:35 -04:00
|
|
|
|
2009-06-21 22:00:25 -04:00
|
|
|
if (nframes < (_latency_gui->sample_rate / 1000.0)) {
|
2009-05-20 09:28:30 -04:00
|
|
|
s << ((nframes64_t) rint (nframes)) << " samples";
|
2007-06-27 18:06:35 -04:00
|
|
|
} else {
|
2009-06-21 22:00:25 -04:00
|
|
|
s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " msecs";
|
2007-06-27 18:06:35 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-20 09:28:30 -04:00
|
|
|
return s.str ();
|
2007-06-27 18:06:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LatencyGUI::LatencyGUI (Latent& l, nframes64_t sr, nframes64_t psz)
|
|
|
|
: _latent (l),
|
|
|
|
initial_value (_latent.signal_latency()),
|
|
|
|
sample_rate (sr),
|
|
|
|
period_size (psz),
|
2008-09-10 11:03:30 -04:00
|
|
|
ignored (new PBD::IgnorableControllable()),
|
2007-06-27 18:06:35 -04:00
|
|
|
/* max 1 second, step by frames, page by msecs */
|
|
|
|
adjustment (initial_value, 0.0, sample_rate, 1.0, sample_rate / 1000.0f),
|
2009-06-21 22:00:25 -04:00
|
|
|
bc (adjustment, this),
|
2009-05-04 13:49:28 -04:00
|
|
|
reset_button (_("Reset"))
|
2007-06-27 18:06:35 -04:00
|
|
|
{
|
|
|
|
Widget* w;
|
|
|
|
|
|
|
|
if (unit_strings.empty()) {
|
|
|
|
unit_strings = I18N (_unit_strings);
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
set_popdown_strings (units_combo, unit_strings);
|
2007-06-27 18:06:35 -04:00
|
|
|
units_combo.set_active_text (unit_strings.front());
|
|
|
|
|
|
|
|
w = manage (new Image (Stock::ADD, ICON_SIZE_BUTTON));
|
|
|
|
w->show ();
|
|
|
|
plus_button.add (*w);
|
|
|
|
w = manage (new Image (Stock::REMOVE, ICON_SIZE_BUTTON));
|
|
|
|
w->show ();
|
|
|
|
minus_button.add (*w);
|
|
|
|
|
|
|
|
hbox1.pack_start (bc, true, true);
|
|
|
|
|
|
|
|
hbox2.set_homogeneous (false);
|
|
|
|
hbox2.set_spacing (12);
|
|
|
|
hbox2.pack_start (reset_button);
|
|
|
|
hbox2.pack_start (minus_button);
|
|
|
|
hbox2.pack_start (plus_button);
|
|
|
|
hbox2.pack_start (units_combo, true, true);
|
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
minus_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*this, &LatencyGUI::change_latency_from_button), -1));
|
|
|
|
plus_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*this, &LatencyGUI::change_latency_from_button), 1));
|
|
|
|
reset_button.signal_clicked().connect (sigc::mem_fun (*this, &LatencyGUI::reset));
|
2007-06-27 18:06:35 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &LatencyGUI::finish));
|
2007-06-27 18:06:35 -04:00
|
|
|
|
|
|
|
bc.set_size_request (-1, 25);
|
|
|
|
bc.set_style (BarController::LeftToRight);
|
|
|
|
bc.set_use_parent (true);
|
|
|
|
bc.set_name (X_("PluginSlider"));
|
|
|
|
|
|
|
|
set_spacing (12);
|
|
|
|
pack_start (hbox1, true, true);
|
|
|
|
pack_start (hbox2, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LatencyGUI::finish ()
|
|
|
|
{
|
|
|
|
nframes64_t new_value = (nframes64_t) adjustment.get_value();
|
|
|
|
if (new_value != initial_value) {
|
|
|
|
_latent.set_user_latency (new_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LatencyGUI::reset ()
|
|
|
|
{
|
|
|
|
_latent.set_user_latency (0);
|
|
|
|
adjustment.set_value (initial_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LatencyGUI::refresh ()
|
|
|
|
{
|
|
|
|
initial_value = _latent.signal_latency();
|
|
|
|
adjustment.set_value (initial_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LatencyGUI::change_latency_from_button (int dir)
|
|
|
|
{
|
|
|
|
Glib::ustring unitstr = units_combo.get_active_text();
|
2008-02-01 22:57:35 -05:00
|
|
|
double shift = 0.0;
|
2007-06-27 18:06:35 -04:00
|
|
|
|
|
|
|
if (unitstr == unit_strings[0]) {
|
|
|
|
shift = 1;
|
|
|
|
} else if (unitstr == unit_strings[1]) {
|
|
|
|
shift = (sample_rate / 1000.0);
|
|
|
|
} else if (unitstr == unit_strings[2]) {
|
|
|
|
shift = period_size;
|
|
|
|
} else {
|
|
|
|
fatal << string_compose (_("programming error: %1 (%2)"), X_("illegal string in latency GUI units combo"), unitstr)
|
|
|
|
<< endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir > 0) {
|
|
|
|
adjustment.set_value (adjustment.get_value() + shift);
|
|
|
|
} else {
|
|
|
|
adjustment.set_value (adjustment.get_value() - shift);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LatencyDialog::LatencyDialog (const Glib::ustring& title, Latent& l, nframes64_t sr, nframes64_t psz)
|
|
|
|
: ArdourDialog (title, false, true),
|
|
|
|
lwidget (l, sr, psz)
|
|
|
|
{
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
get_vbox()->pack_start (lwidget);
|
|
|
|
add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
|
|
|
add_button (Stock::APPLY, RESPONSE_REJECT);
|
|
|
|
add_button (Stock::OK, RESPONSE_ACCEPT);
|
|
|
|
|
|
|
|
show_all ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
while (true) {
|
|
|
|
int ret = run ();
|
|
|
|
|
|
|
|
switch (ret) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RESPONSE_REJECT:
|
|
|
|
lwidget.finish ();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|