2010-12-28 13:43:22 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010 Paul Davis
|
|
|
|
Author: Carl Hetherington <cth@carlh.net>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtkmm/stock.h>
|
|
|
|
#include <gtkmm/table.h>
|
2012-06-11 18:59:35 -04:00
|
|
|
|
2012-06-02 09:02:01 -04:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2012-06-11 18:59:35 -04:00
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
#include "gtkmm2ext/utils.h"
|
2012-06-11 18:59:35 -04:00
|
|
|
|
2012-06-02 09:02:01 -04:00
|
|
|
#include "ardour/midi_patch_manager.h"
|
2010-12-28 13:43:22 -05:00
|
|
|
#include "ardour/beats_frames_converter.h"
|
2012-06-11 18:59:35 -04:00
|
|
|
#include "ardour/instrument_info.h"
|
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
#include "patch_change_dialog.h"
|
2012-06-12 00:05:10 -04:00
|
|
|
#include "gui_thread.h"
|
2012-06-11 18:59:35 -04:00
|
|
|
|
2011-04-22 23:34:42 -04:00
|
|
|
#include "i18n.h"
|
2010-12-28 13:43:22 -05:00
|
|
|
|
2012-06-02 09:02:01 -04:00
|
|
|
using namespace std;
|
2010-12-28 13:43:22 -05:00
|
|
|
using namespace Gtk;
|
2012-06-04 21:03:36 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2010-12-28 13:43:22 -05:00
|
|
|
|
2011-07-28 09:27:04 -04:00
|
|
|
/** @param tc If non-0, a time converter for this patch change. If 0, time control will be desensitized */
|
2010-12-28 13:43:22 -05:00
|
|
|
PatchChangeDialog::PatchChangeDialog (
|
|
|
|
const ARDOUR::BeatsFramesConverter* tc,
|
|
|
|
ARDOUR::Session* session,
|
|
|
|
Evoral::PatchChange<Evoral::MusicalTime> const & patch,
|
2012-06-11 18:59:35 -04:00
|
|
|
ARDOUR::InstrumentInfo& info,
|
2010-12-28 13:43:22 -05:00
|
|
|
const Gtk::BuiltinStockID& ok
|
|
|
|
)
|
|
|
|
: ArdourDialog (_("Patch Change"), true)
|
|
|
|
, _time_converter (tc)
|
2012-06-11 18:59:35 -04:00
|
|
|
, _info (info)
|
2011-11-17 17:49:13 -05:00
|
|
|
, _time (X_("patchchangetime"), true, "", true, false)
|
2010-12-28 13:43:22 -05:00
|
|
|
, _channel (*manage (new Adjustment (1, 1, 16, 1, 4)))
|
|
|
|
, _program (*manage (new Adjustment (1, 1, 128, 1, 16)))
|
|
|
|
, _bank (*manage (new Adjustment (1, 1, 16384, 1, 64)))
|
2012-06-02 09:02:01 -04:00
|
|
|
, _ignore_signals (false)
|
2010-12-28 13:43:22 -05:00
|
|
|
{
|
|
|
|
Table* t = manage (new Table (4, 2));
|
2011-07-28 09:27:04 -04:00
|
|
|
Label* l;
|
2010-12-28 13:43:22 -05:00
|
|
|
t->set_spacings (6);
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
if (_time_converter) {
|
2011-07-28 09:27:04 -04:00
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
l = manage (left_aligned_label (_("Time")));
|
2010-12-28 13:43:22 -05:00
|
|
|
t->attach (*l, 0, 1, r, r + 1);
|
|
|
|
t->attach (_time, 1, 2, r, r + 1);
|
|
|
|
++r;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
_time.set_session (session);
|
|
|
|
_time.set_mode (AudioClock::BBT);
|
|
|
|
_time.set (_time_converter->to (patch.time ()), true);
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
l = manage (left_aligned_label (_("Patch Bank")));
|
2012-06-02 09:02:01 -04:00
|
|
|
t->attach (*l, 0, 1, r, r + 1);
|
|
|
|
t->attach (_bank_combo, 1, 2, r, r + 1);
|
|
|
|
++r;
|
|
|
|
|
|
|
|
_bank_combo.signal_changed().connect (sigc::mem_fun (*this, &PatchChangeDialog::bank_combo_changed));
|
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
l = manage (left_aligned_label (_("Patch")));
|
2012-06-02 09:02:01 -04:00
|
|
|
t->attach (*l, 0, 1, r, r + 1);
|
|
|
|
t->attach (_patch_combo, 1, 2, r, r + 1);
|
|
|
|
++r;
|
|
|
|
|
|
|
|
_patch_combo.signal_changed().connect (sigc::mem_fun (*this, &PatchChangeDialog::patch_combo_changed));
|
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
l = manage (left_aligned_label (_("Channel")));
|
2011-07-28 09:27:04 -04:00
|
|
|
t->attach (*l, 0, 1, r, r + 1);
|
|
|
|
t->attach (_channel, 1, 2, r, r + 1);
|
|
|
|
++r;
|
2012-06-02 09:02:01 -04:00
|
|
|
|
2011-07-28 09:27:04 -04:00
|
|
|
_channel.set_value (patch.channel() + 1);
|
2012-06-02 09:02:01 -04:00
|
|
|
_channel.signal_changed().connect (sigc::mem_fun (*this, &PatchChangeDialog::channel_changed));
|
2011-07-28 09:27:04 -04:00
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
l = manage (left_aligned_label (_("Program")));
|
2010-12-28 13:43:22 -05:00
|
|
|
t->attach (*l, 0, 1, r, r + 1);
|
|
|
|
t->attach (_program, 1, 2, r, r + 1);
|
|
|
|
++r;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
_program.set_value (patch.program () + 1);
|
2012-06-02 09:02:01 -04:00
|
|
|
_program.signal_changed().connect (sigc::mem_fun (*this, &PatchChangeDialog::program_changed));
|
2010-12-28 13:43:22 -05:00
|
|
|
|
2012-06-04 21:03:36 -04:00
|
|
|
l = manage (left_aligned_label (_("Bank")));
|
2010-12-28 13:43:22 -05:00
|
|
|
t->attach (*l, 0, 1, r, r + 1);
|
|
|
|
t->attach (_bank, 1, 2, r, r + 1);
|
|
|
|
++r;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
_bank.set_value (patch.bank() + 1);
|
2012-06-02 09:02:01 -04:00
|
|
|
_bank.signal_changed().connect (sigc::mem_fun (*this, &PatchChangeDialog::bank_changed));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
get_vbox()->add (*t);
|
|
|
|
|
|
|
|
add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
|
|
|
add_button (ok, RESPONSE_ACCEPT);
|
|
|
|
set_default_response (RESPONSE_ACCEPT);
|
|
|
|
|
2012-06-02 09:02:01 -04:00
|
|
|
fill_bank_combo ();
|
|
|
|
set_active_bank_combo ();
|
|
|
|
bank_combo_changed ();
|
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
_info.Changed.connect (_info_changed_connection, invalidator (*this),
|
|
|
|
boost::bind (&PatchChangeDialog::instrument_info_changed, this), gui_context());
|
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
show_all ();
|
|
|
|
}
|
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
void
|
|
|
|
PatchChangeDialog::instrument_info_changed ()
|
|
|
|
{
|
|
|
|
_bank_combo.clear ();
|
|
|
|
_patch_combo.clear ();
|
|
|
|
fill_bank_combo ();
|
|
|
|
fill_patch_combo ();
|
|
|
|
}
|
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
Evoral::PatchChange<Evoral::MusicalTime>
|
|
|
|
PatchChangeDialog::patch () const
|
|
|
|
{
|
|
|
|
Evoral::MusicalTime t = 0;
|
2011-07-28 09:27:04 -04:00
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
if (_time_converter) {
|
|
|
|
t = _time_converter->from (_time.current_time ());
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 13:43:22 -05:00
|
|
|
return Evoral::PatchChange<Evoral::MusicalTime> (
|
|
|
|
t,
|
|
|
|
_channel.get_value_as_int() - 1,
|
|
|
|
_program.get_value_as_int() - 1,
|
|
|
|
_bank.get_value_as_int() - 1
|
|
|
|
);
|
|
|
|
}
|
2012-06-02 09:02:01 -04:00
|
|
|
|
|
|
|
/** Fill the bank_combo according to the current _channel */
|
|
|
|
void
|
|
|
|
PatchChangeDialog::fill_bank_combo ()
|
|
|
|
{
|
2012-06-11 18:59:35 -04:00
|
|
|
boost::shared_ptr<MIDI::Name::ChannelNameSet> cns = _info.get_patches (_channel.get_value_as_int() - 1);
|
2012-06-02 09:02:01 -04:00
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
if (!cns) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-11 18:59:35 -04:00
|
|
|
for (MIDI::Name::ChannelNameSet::PatchBanks::const_iterator i = cns->patch_banks().begin(); i != cns->patch_banks().end(); ++i) {
|
2012-06-02 09:02:01 -04:00
|
|
|
string n = (*i)->name ();
|
|
|
|
boost::replace_all (n, "_", " ");
|
2012-06-02 10:50:09 -04:00
|
|
|
_bank_combo.append_text (n);
|
2012-06-02 09:02:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the active value of the bank_combo, and _current_patch_bank, from the contents of _bank */
|
|
|
|
void
|
|
|
|
PatchChangeDialog::set_active_bank_combo ()
|
|
|
|
{
|
|
|
|
_current_patch_bank.reset ();
|
|
|
|
|
2012-06-11 18:59:35 -04:00
|
|
|
boost::shared_ptr<MIDI::Name::ChannelNameSet> cns = _info.get_patches (_channel.get_value_as_int() - 1);
|
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
if (!cns) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-11 18:59:35 -04:00
|
|
|
for (MIDI::Name::ChannelNameSet::PatchBanks::const_iterator i = cns->patch_banks().begin(); i != cns->patch_banks().end(); ++i) {
|
2012-06-02 09:02:01 -04:00
|
|
|
|
|
|
|
string n = (*i)->name ();
|
|
|
|
boost::replace_all (n, "_", " ");
|
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
if ((*i)->number() == _bank.get_value () - 1) {
|
2012-06-02 09:02:01 -04:00
|
|
|
_current_patch_bank = *i;
|
|
|
|
_ignore_signals = true;
|
|
|
|
_bank_combo.set_active_text (n);
|
|
|
|
_ignore_signals = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ignore_signals = true;
|
|
|
|
_bank_combo.set_active (-1);
|
|
|
|
_ignore_signals = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Update _current_patch_bank and reflect the current value of
|
|
|
|
* bank_combo in the rest of the dialog.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
PatchChangeDialog::bank_combo_changed ()
|
|
|
|
{
|
|
|
|
if (_ignore_signals) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_current_patch_bank.reset ();
|
|
|
|
|
2012-06-11 18:59:35 -04:00
|
|
|
boost::shared_ptr<MIDI::Name::ChannelNameSet> cns = _info.get_patches (_channel.get_value_as_int() - 1);
|
2012-06-02 09:02:01 -04:00
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
if (!cns) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-11 18:59:35 -04:00
|
|
|
for (MIDI::Name::ChannelNameSet::PatchBanks::const_iterator i = cns->patch_banks().begin(); i != cns->patch_banks().end(); ++i) {
|
2012-06-02 09:02:01 -04:00
|
|
|
string n = (*i)->name ();
|
|
|
|
boost::replace_all (n, "_", " ");
|
|
|
|
if (n == _bank_combo.get_active_text()) {
|
|
|
|
_current_patch_bank = *i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-02 10:53:34 -04:00
|
|
|
if (_current_patch_bank == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-02 09:02:01 -04:00
|
|
|
/* Reflect */
|
|
|
|
|
|
|
|
fill_patch_combo ();
|
|
|
|
set_active_patch_combo ();
|
|
|
|
|
2012-06-12 00:05:10 -04:00
|
|
|
_ignore_signals = true;
|
|
|
|
_bank.set_value (_current_patch_bank->number() + 1);
|
|
|
|
_ignore_signals = false;
|
2012-06-02 09:02:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Fill the contents of the patch combo */
|
|
|
|
void
|
|
|
|
PatchChangeDialog::fill_patch_combo ()
|
|
|
|
{
|
|
|
|
_patch_combo.clear ();
|
|
|
|
|
|
|
|
if (_current_patch_bank == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MIDI::Name::PatchBank::PatchNameList& patches = _current_patch_bank->patch_name_list ();
|
|
|
|
for (MIDI::Name::PatchBank::PatchNameList::const_iterator j = patches.begin(); j != patches.end(); ++j) {
|
|
|
|
string n = (*j)->name ();
|
|
|
|
boost::replace_all (n, "_", " ");
|
2012-06-02 10:50:09 -04:00
|
|
|
_patch_combo.append_text (n);
|
2012-06-02 09:02:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the active value of the patch combo from the value of the _program entry */
|
|
|
|
void
|
|
|
|
PatchChangeDialog::set_active_patch_combo ()
|
|
|
|
{
|
|
|
|
if (_ignore_signals) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_current_patch_bank == 0) {
|
|
|
|
_ignore_signals = true;
|
|
|
|
_patch_combo.set_active (-1);
|
|
|
|
_ignore_signals = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MIDI::Name::PatchBank::PatchNameList& patches = _current_patch_bank->patch_name_list ();
|
|
|
|
for (MIDI::Name::PatchBank::PatchNameList::const_iterator j = patches.begin(); j != patches.end(); ++j) {
|
|
|
|
string n = (*j)->name ();
|
|
|
|
boost::replace_all (n, "_", " ");
|
|
|
|
|
|
|
|
MIDI::Name::PatchPrimaryKey const & key = (*j)->patch_primary_key ();
|
|
|
|
if (key.program_number == _program.get_value() - 1) {
|
|
|
|
_ignore_signals = true;
|
|
|
|
_patch_combo.set_active_text (n);
|
|
|
|
_ignore_signals = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ignore_signals = true;
|
|
|
|
_patch_combo.set_active (-1);
|
|
|
|
_ignore_signals = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set _program from the current state of _patch_combo */
|
|
|
|
void
|
|
|
|
PatchChangeDialog::patch_combo_changed ()
|
|
|
|
{
|
|
|
|
if (_ignore_signals || _current_patch_bank == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MIDI::Name::PatchBank::PatchNameList& patches = _current_patch_bank->patch_name_list ();
|
2012-06-12 00:05:10 -04:00
|
|
|
|
2012-06-02 09:02:01 -04:00
|
|
|
for (MIDI::Name::PatchBank::PatchNameList::const_iterator j = patches.begin(); j != patches.end(); ++j) {
|
|
|
|
string n = (*j)->name ();
|
|
|
|
boost::replace_all (n, "_", " ");
|
2012-06-12 00:05:10 -04:00
|
|
|
std::cerr << "Looking for " << n << " vs " << _patch_combo.get_active_text() << std::endl;
|
2012-06-02 09:02:01 -04:00
|
|
|
if (n == _patch_combo.get_active_text ()) {
|
|
|
|
_ignore_signals = true;
|
2012-06-12 00:05:10 -04:00
|
|
|
std::cerr << " reset pgm number to " << (int) (*j)->program_number() << std::endl;
|
|
|
|
_program.set_value ((*j)->program_number() + 1);
|
2012-06-02 09:02:01 -04:00
|
|
|
_ignore_signals = false;
|
2012-06-12 00:05:10 -04:00
|
|
|
break;
|
2012-06-02 09:02:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChangeDialog::channel_changed ()
|
|
|
|
{
|
|
|
|
fill_bank_combo ();
|
|
|
|
set_active_bank_combo ();
|
|
|
|
fill_patch_combo ();
|
|
|
|
set_active_patch_combo ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChangeDialog::program_changed ()
|
|
|
|
{
|
|
|
|
if (_ignore_signals) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_active_patch_combo ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChangeDialog::bank_changed ()
|
|
|
|
{
|
|
|
|
if (_ignore_signals) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_active_bank_combo ();
|
|
|
|
fill_patch_combo ();
|
|
|
|
set_active_patch_combo ();
|
|
|
|
}
|
|
|
|
|