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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <climits>
|
2008-12-13 10:18:32 -05:00
|
|
|
#include <string.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
#include <cairo.h>
|
2005-11-28 23:41:15 -05:00
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "ardour/panner.h"
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "panner2d.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "gui_thread.h"
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
2005-09-25 16:33:00 -04:00
|
|
|
using namespace sigc;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Panner2d::Target::Target (float xa, float ya, const char *txt)
|
2008-12-13 10:18:32 -05:00
|
|
|
: x (xa, 0.0, 1.0, 0.01, 0.1)
|
|
|
|
, y (ya, 0.0, 1.0, 0.01, 0.1)
|
|
|
|
, azimuth (M_PI/2.0, 0.0, 2.0 * M_PI, 0.1, 0.5)
|
|
|
|
, text (txt ? strdup (txt) : 0)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
azimuth.set_value ((random() / (double) INT_MAX) * (2.0 * M_PI));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Panner2d::Target::~Target ()
|
2009-10-14 12:10:01 -04:00
|
|
|
{
|
2005-09-25 14:42:24 -04:00
|
|
|
if (text) {
|
|
|
|
free (text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
void
|
|
|
|
Panner2d::Target::set_text (const char* txt)
|
|
|
|
{
|
|
|
|
if (text) {
|
|
|
|
free (text);
|
|
|
|
}
|
|
|
|
text = strdup (txt);
|
|
|
|
}
|
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
Panner2d::Panner2d (boost::shared_ptr<Panner> p, int32_t h)
|
2007-02-27 12:22:47 -05:00
|
|
|
: panner (p), width (0), height (h)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
allow_x = false;
|
|
|
|
allow_y = false;
|
|
|
|
allow_target = false;
|
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
panner->StateChanged.connect (mem_fun(*this, &Panner2d::handle_state_change));
|
|
|
|
panner->Changed.connect (mem_fun(*this, &Panner2d::handle_position_change));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
drag_target = 0;
|
2005-09-25 16:33:00 -04:00
|
|
|
set_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::POINTER_MOTION_MASK);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Panner2d::~Panner2d()
|
|
|
|
{
|
|
|
|
for (Targets::iterator i = targets.begin(); i != targets.end(); ++i) {
|
|
|
|
delete i->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::reset (uint32_t n_inputs)
|
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
Targets::size_type existing_pucks = pucks.size();
|
|
|
|
|
|
|
|
/* pucks */
|
|
|
|
|
|
|
|
while (pucks.size() < n_inputs) {
|
|
|
|
add_puck ("", 0.0, 0.0);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
while (pucks.size() > n_inputs) {
|
|
|
|
pucks.erase (pucks.begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Targets::iterator x = pucks.begin(); x != pucks.end(); ++x) {
|
|
|
|
(*x).second->visible = false;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
switch (n_inputs) {
|
|
|
|
case 0:
|
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case 1:
|
2008-12-13 10:18:32 -05:00
|
|
|
pucks[0]->set_text ("");
|
|
|
|
pucks[0]->x.set_value (0.0);
|
|
|
|
pucks[0]->y.set_value (0.5);
|
|
|
|
pucks[0]->visible = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case 2:
|
2008-12-13 10:18:32 -05:00
|
|
|
pucks[0]->set_text ("R");
|
|
|
|
pucks[0]->visible = true;
|
|
|
|
pucks[1]->set_text ("L");
|
|
|
|
if (existing_pucks < 2) {
|
|
|
|
pucks[1]->x.set_value (0.25f);
|
|
|
|
pucks[1]->y.set_value (0.5f);
|
|
|
|
}
|
|
|
|
pucks[1]->visible = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
default:
|
|
|
|
for (uint32_t i = 0; i < n_inputs; ++i) {
|
|
|
|
char buf[64];
|
|
|
|
snprintf (buf, sizeof (buf), "%" PRIu32, i);
|
2008-12-13 10:18:32 -05:00
|
|
|
pucks[i]->set_text (buf);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (existing_pucks < i) {
|
|
|
|
float x, y;
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
panner->streampanner (i).get_position (x, y);
|
2008-12-13 10:18:32 -05:00
|
|
|
pucks[i]->x.set_value (x);
|
|
|
|
pucks[i]->y.set_value (y);
|
|
|
|
}
|
|
|
|
|
|
|
|
pucks[i]->visible = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* add all outputs */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
while (targets.size() < panner->nouts()) {
|
2008-12-13 10:18:32 -05:00
|
|
|
add_target (0.0, 0.0);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
while (targets.size() > panner->nouts()) {
|
2008-12-13 10:18:32 -05:00
|
|
|
targets.erase (targets.begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Targets::iterator x = targets.begin(); x != targets.end(); ++x) {
|
|
|
|
(*x).second->visible = false;
|
|
|
|
}
|
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
for (uint32_t n = 0; n < panner->nouts(); ++n) {
|
2008-12-13 10:18:32 -05:00
|
|
|
char buf[16];
|
|
|
|
|
|
|
|
snprintf (buf, sizeof (buf), "%d", n+1);
|
|
|
|
targets[n]->set_text (buf);
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
targets[n]->x.set_value (panner->output(n).x);
|
|
|
|
targets[n]->y.set_value (panner->output(n).y);
|
2008-12-13 10:18:32 -05:00
|
|
|
targets[n]->visible = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
allow_x_motion (true);
|
|
|
|
allow_y_motion (true);
|
|
|
|
allow_target_motion (true);
|
2008-12-13 10:18:32 -05:00
|
|
|
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
|
|
|
|
Gtk::Adjustment&
|
|
|
|
Panner2d::azimuth (uint32_t which)
|
|
|
|
{
|
|
|
|
assert (which < pucks.size());
|
|
|
|
return pucks[which]->azimuth;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-20 14:50:38 -04:00
|
|
|
Panner2d::on_size_allocate (Gtk::Allocation& alloc)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2005-10-06 00:59:20 -04:00
|
|
|
width = alloc.get_width();
|
|
|
|
height = alloc.get_height();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (height > 100) {
|
|
|
|
width -= 20;
|
|
|
|
height -= 20;
|
|
|
|
}
|
|
|
|
|
2005-09-25 22:48:59 -04:00
|
|
|
DrawingArea::on_size_allocate (alloc);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Panner2d::add_puck (const char* text, float x, float y)
|
|
|
|
{
|
|
|
|
Target* puck = new Target (x, y, text);
|
|
|
|
|
|
|
|
pair<int,Target *> newpair;
|
|
|
|
newpair.first = pucks.size();
|
|
|
|
newpair.second = puck;
|
|
|
|
|
|
|
|
pucks.insert (newpair);
|
|
|
|
puck->visible = true;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Panner2d::add_target (float x, float y)
|
|
|
|
{
|
|
|
|
Target *target = new Target (x, y, "");
|
|
|
|
|
|
|
|
pair<int,Target *> newpair;
|
|
|
|
newpair.first = targets.size();
|
|
|
|
newpair.second = target;
|
|
|
|
|
|
|
|
targets.insert (newpair);
|
|
|
|
target->visible = true;
|
|
|
|
queue_draw ();
|
|
|
|
|
|
|
|
return newpair.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::drop_targets ()
|
|
|
|
{
|
|
|
|
for (Targets::iterator i = targets.begin(); i != targets.end(); ) {
|
|
|
|
|
|
|
|
Targets::iterator tmp;
|
|
|
|
|
|
|
|
tmp = i;
|
|
|
|
++tmp;
|
|
|
|
|
|
|
|
delete i->second;
|
|
|
|
targets.erase (i);
|
|
|
|
|
|
|
|
i = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::remove_target (int which)
|
|
|
|
{
|
|
|
|
Targets::iterator i = targets.find (which);
|
|
|
|
|
|
|
|
if (i != targets.end()) {
|
|
|
|
delete i->second;
|
|
|
|
targets.erase (i);
|
|
|
|
queue_draw ();
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::handle_state_change ()
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
ENSURE_GUI_THREAD(mem_fun(*this, &Panner2d::handle_state_change));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
void
|
|
|
|
Panner2d::handle_position_change ()
|
|
|
|
{
|
|
|
|
uint32_t n;
|
|
|
|
ENSURE_GUI_THREAD(mem_fun(*this, &Panner2d::handle_position_change));
|
|
|
|
|
|
|
|
for (n = 0; n < pucks.size(); ++n) {
|
|
|
|
float x, y;
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
panner->streampanner(n).get_position (x, y);
|
2008-12-13 10:18:32 -05:00
|
|
|
pucks[n]->x.set_value (x);
|
|
|
|
pucks[n]->y.set_value (y);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (n = 0; n < targets.size(); ++n) {
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
targets[n]->x.set_value (panner->output(n).x);
|
|
|
|
targets[n]->y.set_value (panner->output(n).y);
|
2008-12-13 10:18:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
|
|
|
Panner2d::move_target (int which, float x, float y)
|
|
|
|
{
|
|
|
|
Targets::iterator i = targets.find (which);
|
|
|
|
Target *target;
|
|
|
|
|
|
|
|
if (!allow_target) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != targets.end()) {
|
|
|
|
target = i->second;
|
2008-12-13 10:18:32 -05:00
|
|
|
target->x.set_value (x);
|
|
|
|
target->y.set_value (y);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
queue_draw ();
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::move_puck (int which, float x, float y)
|
|
|
|
{
|
|
|
|
Targets::iterator i = pucks.find (which);
|
|
|
|
Target *target;
|
|
|
|
|
|
|
|
if (i != pucks.end()) {
|
|
|
|
target = i->second;
|
2008-12-13 10:18:32 -05:00
|
|
|
target->x.set_value (x);
|
|
|
|
target->y.set_value (y);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
queue_draw ();
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::show_puck (int which)
|
|
|
|
{
|
|
|
|
Targets::iterator i = pucks.find (which);
|
|
|
|
|
|
|
|
if (i != pucks.end()) {
|
|
|
|
Target* puck = i->second;
|
|
|
|
if (!puck->visible) {
|
|
|
|
puck->visible = true;
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::hide_puck (int which)
|
|
|
|
{
|
|
|
|
Targets::iterator i = pucks.find (which);
|
|
|
|
|
|
|
|
if (i != pucks.end()) {
|
|
|
|
Target* puck = i->second;
|
|
|
|
if (!puck->visible) {
|
|
|
|
puck->visible = false;
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::show_target (int which)
|
|
|
|
{
|
|
|
|
Targets::iterator i = targets.find (which);
|
|
|
|
if (i != targets.end()) {
|
|
|
|
if (!i->second->visible) {
|
|
|
|
i->second->visible = true;
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::hide_target (int which)
|
|
|
|
{
|
|
|
|
Targets::iterator i = targets.find (which);
|
|
|
|
if (i != targets.end()) {
|
|
|
|
if (i->second->visible) {
|
|
|
|
i->second->visible = false;
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Panner2d::Target *
|
|
|
|
Panner2d::find_closest_object (gdouble x, gdouble y, int& which, bool& is_puck) const
|
|
|
|
{
|
|
|
|
gdouble efx, efy;
|
2008-12-13 10:18:32 -05:00
|
|
|
gdouble cx, cy;
|
2005-09-25 14:42:24 -04:00
|
|
|
Target *closest = 0;
|
|
|
|
Target *candidate;
|
|
|
|
float distance;
|
|
|
|
float best_distance = FLT_MAX;
|
|
|
|
int pwhich;
|
|
|
|
|
|
|
|
efx = x/width;
|
|
|
|
efy = y/height;
|
|
|
|
which = 0;
|
|
|
|
pwhich = 0;
|
|
|
|
is_puck = false;
|
|
|
|
|
|
|
|
for (Targets::const_iterator i = targets.begin(); i != targets.end(); ++i, ++which) {
|
|
|
|
candidate = i->second;
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cx = candidate->x.get_value();
|
|
|
|
cy = candidate->y.get_value();
|
|
|
|
|
|
|
|
distance = sqrt ((cx - efx) * (cx - efx) +
|
|
|
|
(cy - efy) * (cy - efy));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (distance < best_distance) {
|
|
|
|
closest = candidate;
|
|
|
|
best_distance = distance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Targets::const_iterator i = pucks.begin(); i != pucks.end(); ++i, ++pwhich) {
|
|
|
|
candidate = i->second;
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cx = candidate->x.get_value();
|
|
|
|
cy = candidate->y.get_value();
|
|
|
|
|
|
|
|
distance = sqrt ((cx - efx) * (cx - efx) +
|
|
|
|
(cy - efy) * (cy - efy));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (distance < best_distance) {
|
|
|
|
closest = candidate;
|
|
|
|
best_distance = distance;
|
|
|
|
is_puck = true;
|
|
|
|
which = pwhich;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return closest;
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-06 00:59:20 -04:00
|
|
|
bool
|
2005-09-25 22:48:59 -04:00
|
|
|
Panner2d::on_motion_notify_event (GdkEventMotion *ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
gint x, y;
|
|
|
|
GdkModifierType state;
|
|
|
|
|
|
|
|
if (ev->is_hint) {
|
|
|
|
gdk_window_get_pointer (ev->window, &x, &y, &state);
|
|
|
|
} else {
|
|
|
|
x = (int) floor (ev->x);
|
|
|
|
y = (int) floor (ev->y);
|
|
|
|
state = (GdkModifierType) ev->state;
|
|
|
|
}
|
2008-12-13 10:18:32 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return handle_motion (x, y, state);
|
|
|
|
}
|
2008-12-13 10:18:32 -05:00
|
|
|
bool
|
|
|
|
Panner2d::on_expose_event (GdkEventExpose *event)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
gint x, y;
|
|
|
|
float fx, fy;
|
|
|
|
cairo_t* cr;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cr = gdk_cairo_create (get_window()->gobj());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_set_line_width (cr, 1.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_rectangle (cr, event->area.x, event->area.y, event->area.width, event->area.height);
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
if (!panner->bypassed()) {
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_set_source_rgba (cr, 0.1, 0.1, 0.1, 1.0);
|
|
|
|
} else {
|
|
|
|
cairo_set_source_rgba (cr, 0.1, 0.1, 0.1, 0.2);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_fill_preserve (cr);
|
|
|
|
cairo_clip (cr);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (height > 100) {
|
|
|
|
cairo_translate (cr, 10.0, 10.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_set_source_rgb (cr, 0.0, 0.1, 0.7);
|
|
|
|
cairo_move_to (cr, 0.5, height/2.0+0.5);
|
|
|
|
cairo_line_to (cr, height+0.5, height/2+0.5);
|
|
|
|
cairo_stroke (cr);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_move_to (cr, height/2+0.5, 0.5);
|
|
|
|
cairo_line_to (cr, height/2+0.5, height+0.5);
|
|
|
|
cairo_stroke (cr);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_arc (cr, height/2, height/2, height/2, 0, 2.0 * M_PI);
|
|
|
|
cairo_stroke (cr);
|
2005-11-24 22:36:42 -05:00
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
if (!panner->bypassed()) {
|
2008-12-13 10:18:32 -05:00
|
|
|
float arc_radius;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_select_font_face (cr, "sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (height < 100) {
|
|
|
|
cairo_set_font_size (cr, 10);
|
|
|
|
arc_radius = 2.0;
|
|
|
|
} else {
|
|
|
|
cairo_set_font_size (cr, 16);
|
|
|
|
arc_radius = 4.0;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
for (Targets::iterator i = pucks.begin(); i != pucks.end(); ++i) {
|
|
|
|
|
|
|
|
Target* puck = i->second;
|
|
|
|
|
|
|
|
if (puck->visible) {
|
|
|
|
/* redraw puck */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
fx = min (puck->x.get_value(), 1.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
fx = max (fx, -1.0f);
|
|
|
|
x = (gint) floor (width * fx - 4);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
fy = min (puck->y.get_value(), 1.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
fy = max (fy, -1.0f);
|
|
|
|
y = (gint) floor (height * fy - 4);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_arc (cr, x, y, arc_radius, 0, 2.0 * M_PI);
|
|
|
|
cairo_set_source_rgb (cr, 0.8, 0.2, 0.1);
|
|
|
|
cairo_close_path (cr);
|
|
|
|
cairo_fill (cr);
|
2005-11-24 22:36:42 -05:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
/* arrow */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (height > 100.0f) {
|
|
|
|
|
|
|
|
float endx, endy;
|
|
|
|
endx = x;
|
|
|
|
endy = y;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_save (cr);
|
|
|
|
cairo_translate (cr, x, y);
|
|
|
|
cairo_rotate (cr, puck->azimuth.get_value());
|
|
|
|
|
|
|
|
/* horizontal left-to-right line (rotation will rotate it, duh) */
|
|
|
|
|
|
|
|
endx = 30.0;
|
|
|
|
endy = 0.0;
|
|
|
|
|
|
|
|
/* stem */
|
|
|
|
cairo_set_line_width (cr, 4.0);
|
|
|
|
cairo_move_to (cr, 0.0, 0.0);
|
|
|
|
cairo_line_to (cr, endx, endy);
|
|
|
|
cairo_stroke (cr);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
/* arrow head */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_move_to (cr, endx - 10.0, endy + 10.0);
|
|
|
|
cairo_line_to (cr, endx, endy);
|
|
|
|
cairo_line_to (cr, endx - 10.0, endy - 10.0);
|
|
|
|
cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
|
|
|
|
cairo_stroke (cr);
|
|
|
|
|
|
|
|
cairo_restore (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
cairo_move_to (cr, x + 6, y + 6);
|
|
|
|
cairo_show_text (cr, puck->text);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* redraw any visible targets */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
int n = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
for (Targets::iterator i = targets.begin(); i != targets.end(); ++i) {
|
|
|
|
Target *target = i->second;
|
2008-12-13 10:18:32 -05:00
|
|
|
char buf[256];
|
|
|
|
++n;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (target->visible) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
fx = min (target->x.get_value(), 1.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
fx = max (fx, -1.0f);
|
2008-12-13 10:18:32 -05:00
|
|
|
x = (gint) floor (width * fx);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
fy = min (target->y.get_value(), 1.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
fy = max (fy, -1.0f);
|
2008-12-13 10:18:32 -05:00
|
|
|
y = (gint) floor (height * fy);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
snprintf (buf, sizeof (buf), "%d", n);
|
|
|
|
|
|
|
|
cairo_set_source_rgb (cr, 0.0, 0.8, 0.1);
|
|
|
|
cairo_rectangle (cr, x-2, y-2, 4, 4);
|
|
|
|
cairo_fill (cr);
|
|
|
|
cairo_move_to (cr, x+6, y+6);
|
|
|
|
cairo_show_text (cr, buf);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
cairo_destroy (cr);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-10-06 00:59:20 -04:00
|
|
|
bool
|
2005-09-25 22:48:59 -04:00
|
|
|
Panner2d::on_button_press_event (GdkEventButton *ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
GdkModifierType state;
|
|
|
|
|
|
|
|
if (ev->type == GDK_2BUTTON_PRESS && ev->button == 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
2008-12-13 10:18:32 -05:00
|
|
|
case 2:
|
2005-09-25 14:42:24 -04:00
|
|
|
drag_target = find_closest_object (ev->x, ev->y, drag_index, drag_is_puck);
|
2008-12-13 10:18:32 -05:00
|
|
|
drag_x = (int) floor (ev->x);
|
|
|
|
drag_y = (int) floor (ev->y);
|
2005-09-25 14:42:24 -04:00
|
|
|
state = (GdkModifierType) ev->state;
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
return handle_motion (drag_x, drag_y, state);
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
2008-12-13 10:18:32 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-10-06 00:59:20 -04:00
|
|
|
bool
|
2005-09-25 22:48:59 -04:00
|
|
|
Panner2d::on_button_release_event (GdkEventButton *ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
gint x, y;
|
|
|
|
GdkModifierType state;
|
|
|
|
bool ret = false;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
x = (int) floor (ev->x);
|
|
|
|
y = (int) floor (ev->y);
|
|
|
|
state = (GdkModifierType) ev->state;
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
if (drag_is_puck && (Keyboard::modifier_state_contains (state, Keyboard::TertiaryModifier))) {
|
2008-12-13 10:18:32 -05:00
|
|
|
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
for (Targets::iterator i = pucks.begin(); i != pucks.end(); ++i) {
|
2009-01-30 15:18:31 -05:00
|
|
|
//Target* puck = i->second;
|
2008-12-13 10:18:32 -05:00
|
|
|
|
|
|
|
/* XXX DO SOMETHING TO SET PUCK BACK TO "normal" */
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
queue_draw ();
|
|
|
|
PuckMoved (-1);
|
2008-12-13 10:18:32 -05:00
|
|
|
ret = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
ret = handle_motion (x, y, state);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
drag_target = 0;
|
|
|
|
break;
|
2008-12-13 10:18:32 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case 2:
|
2008-12-13 10:18:32 -05:00
|
|
|
x = (int) floor (ev->x);
|
|
|
|
y = (int) floor (ev->y);
|
|
|
|
state = (GdkModifierType) ev->state;
|
|
|
|
|
|
|
|
if (drag_is_puck && (Keyboard::modifier_state_contains (state, Keyboard::TertiaryModifier))) {
|
|
|
|
toggle_bypass ();
|
|
|
|
ret = true;
|
|
|
|
} else {
|
|
|
|
ret = handle_motion (x, y, state);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
drag_target = 0;
|
|
|
|
break;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
case 3:
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
return ret;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
gint
|
|
|
|
Panner2d::handle_motion (gint evx, gint evy, GdkModifierType state)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
if (drag_target == 0) {
|
|
|
|
return false;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if ((state & (GDK_BUTTON1_MASK|GDK_BUTTON2_MASK)) == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
int x, y;
|
|
|
|
bool need_move = false;
|
|
|
|
|
|
|
|
if (!drag_is_puck && !allow_target) {
|
|
|
|
cerr << "dip = " << drag_is_puck << " at = " << allow_target << endl;
|
|
|
|
return true;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (state & GDK_BUTTON1_MASK && !(state & GDK_BUTTON2_MASK)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (allow_x || !drag_is_puck) {
|
|
|
|
float new_x;
|
|
|
|
x = min (evx, width - 1);
|
|
|
|
x = max (x, 0);
|
|
|
|
new_x = (float) x / (width - 1);
|
|
|
|
if (new_x != drag_target->x.get_value()) {
|
|
|
|
drag_target->x.set_value (new_x);
|
|
|
|
need_move = true;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (allow_y || drag_is_puck) {
|
|
|
|
float new_y;
|
|
|
|
y = min (evy, height - 1);
|
|
|
|
y = max (y, 0);
|
|
|
|
new_y = (float) y / (height - 1);
|
|
|
|
if (new_y != drag_target->y.get_value()) {
|
|
|
|
drag_target->y.set_value (new_y);
|
|
|
|
need_move = true;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (need_move) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
if (drag_is_puck) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
panner->streampanner(drag_index).set_position (
|
|
|
|
drag_target->x.get_value(), drag_target->y.get_value(), false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
TargetMoved (drag_index);
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
queue_draw ();
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
|
|
|
|
} else if ((state & GDK_BUTTON2_MASK) && !(state & GDK_BUTTON1_MASK)) {
|
|
|
|
|
|
|
|
if (!drag_is_puck) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xdelta = drag_x - evx;
|
|
|
|
int ydelta = drag_x - evy;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
drag_target->azimuth.set_value (drag_target->azimuth.get_value() + (2 * M_PI) * ((float)ydelta)/height * ((float) -xdelta)/height);
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::toggle_bypass ()
|
|
|
|
{
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
panner->set_bypassed (!panner->bypassed());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::allow_x_motion (bool yn)
|
|
|
|
{
|
|
|
|
allow_x = yn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::allow_target_motion (bool yn)
|
|
|
|
{
|
|
|
|
allow_target = yn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Panner2d::allow_y_motion (bool yn)
|
|
|
|
{
|
|
|
|
allow_y = yn;
|
|
|
|
}
|
|
|
|
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
Panner2dWindow::Panner2dWindow (boost::shared_ptr<Panner> p, int32_t h, uint32_t inputs)
|
2008-12-13 10:18:32 -05:00
|
|
|
: widget (p, h)
|
|
|
|
, reset_button (_("Reset"))
|
|
|
|
, bypass_button (_("Bypass"))
|
|
|
|
, mute_button (_("Mute"))
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
widget.set_name ("MixerPanZone");
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
set_title (_("Panner"));
|
|
|
|
widget.set_size_request (h, h);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
button_box.set_spacing (6);
|
|
|
|
button_box.pack_start (reset_button, false, false);
|
|
|
|
button_box.pack_start (bypass_button, false, false);
|
|
|
|
button_box.pack_start (mute_button, false, false);
|
|
|
|
|
|
|
|
spinner_box.set_spacing (6);
|
|
|
|
left_side.set_spacing (6);
|
|
|
|
|
|
|
|
left_side.pack_start (button_box, false, false);
|
|
|
|
left_side.pack_start (spinner_box, false, false);
|
|
|
|
|
|
|
|
reset_button.show ();
|
|
|
|
bypass_button.show ();
|
|
|
|
mute_button.show ();
|
|
|
|
button_box.show ();
|
|
|
|
spinner_box.show ();
|
|
|
|
left_side.show ();
|
|
|
|
|
|
|
|
hpacker.set_spacing (6);
|
|
|
|
hpacker.set_border_width (12);
|
|
|
|
hpacker.pack_start (widget, false, false);
|
|
|
|
hpacker.pack_start (left_side, false, false);
|
|
|
|
hpacker.show ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
add (hpacker);
|
|
|
|
reset (inputs);
|
|
|
|
widget.show ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
void
|
|
|
|
Panner2dWindow::reset (uint32_t n_inputs)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-13 10:18:32 -05:00
|
|
|
widget.reset (n_inputs);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
while (spinners.size() < n_inputs) {
|
|
|
|
spinners.push_back (new Gtk::SpinButton (widget.azimuth (spinners.size())));
|
|
|
|
spinner_box.pack_start (*spinners.back(), false, false);
|
|
|
|
spinners.back()->set_digits (4);
|
|
|
|
spinners.back()->show ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-12-13 10:18:32 -05:00
|
|
|
while (spinners.size() > n_inputs) {
|
|
|
|
spinner_box.remove (*spinners.back());
|
|
|
|
delete spinners.back();
|
|
|
|
spinners.erase (--spinners.end());
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|