aacff8894ce182bf5c33586e8e50744134424550
[ardour.git] / libs / panners / vbap / vbap.h
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __libardour_vbap_h__
20 #define __libardour_vbap_h__
21
22 #include <string>
23 #include <map>
24
25 #include "pbd/cartesian.h"
26
27 #include "ardour/panner.h"
28 #include "ardour/panner_shell.h"
29 #include "ardour/vbap_speakers.h"
30
31 namespace ARDOUR {
32
33 class Speakers;
34 class Pannable;
35
36 class VBAPanner : public Panner 
37
38 public:
39         VBAPanner (boost::shared_ptr<Pannable>, Speakers& s);
40         ~VBAPanner ();
41
42         void configure_io (const ChanCount& in, const ChanCount& /* ignored - we use Speakers */);
43         ChanCount in() const;
44         ChanCount out() const;
45
46         static Panner* factory (boost::shared_ptr<Pannable>, Speakers& s);
47
48         void do_distribute (BufferSet& ibufs, BufferSet& obufs, gain_t gain_coeff, pframes_t nframes);
49         void do_distribute_automated (BufferSet& ibufs, BufferSet& obufs,
50                                       framepos_t start, framepos_t end, pframes_t nframes, pan_t** buffers);
51
52         void set_azimuth_elevation (double azimuth, double elevation);
53
54         XMLNode& state (bool full_state);
55         XMLNode& get_state ();
56         int set_state (const XMLNode&, int version);
57
58         boost::shared_ptr<AutomationControl> azimuth_control (uint32_t signal);
59         boost::shared_ptr<AutomationControl> evelation_control (uint32_t signal);
60
61         std::string describe_parameter (Evoral::Parameter param);
62
63 private:
64         struct Signal {
65             PBD::AngularVector direction;
66             double gains[3];
67             double desired_gains[3];
68             int    outputs[3];
69             int    desired_outputs[3];
70             boost::shared_ptr<AutomationControl> azimuth_control;
71             boost::shared_ptr<AutomationControl> elevation_control;
72
73             Signal (Session&, VBAPanner&, uint32_t which);
74         };
75
76         std::vector<Signal*> _signals;
77         bool                _dirty;
78         VBAPSpeakers&       _speakers;
79         
80         void compute_gains (double g[3], int ls[3], int azi, int ele);
81
82         void do_distribute_one (AudioBuffer& src, BufferSet& obufs, gain_t gain_coeff, pframes_t nframes, uint32_t which);
83         void do_distribute_one_automated (AudioBuffer& src, BufferSet& obufs,
84                                           framepos_t start, framepos_t end, pframes_t nframes, 
85                                           pan_t** buffers, uint32_t which);
86 };
87
88 } /* namespace */
89
90 #endif /* __libardour_vbap_h__ */