0bcfff9210491f69630ab3ac62306932eb7db535
[ardour.git] / libs / ardour / ardour / presentation_info.h
1 /*
2     Copyright (C) 2016 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
20 #ifndef __libardour_presentation_info_h__
21 #define __libardour_presentation_info_h__
22
23 #include <iostream>
24 #include <string>
25
26 #include <stdint.h>
27
28 #include "pbd/signals.h"
29 #include "pbd/stateful.h"
30 #include "pbd/properties.h"
31
32 #include "ardour/libardour_visibility.h"
33
34 class XMLNode;
35
36 namespace ARDOUR {
37
38 namespace Properties {
39         LIBARDOUR_API extern PBD::PropertyDescriptor<uint32_t> order;
40         LIBARDOUR_API extern PBD::PropertyDescriptor<uint32_t> color;
41         LIBARDOUR_API extern PBD::PropertyDescriptor<bool> selected;
42         /* we use this; declared in region.cc */
43         LIBARDOUR_API extern PBD::PropertyDescriptor<bool> hidden;
44 }
45
46 class LIBARDOUR_API PresentationInfo : public PBD::Stateful
47 {
48   public:
49
50         /* a PresentationInfo object exists to share information between
51          * different user interfaces (e.g. GUI and a Mackie Control surface)
52          * about:
53          *
54          *     - ordering
55          *     - selection status
56          *     - visibility
57          *     - object identity
58          *
59          * ORDERING
60          *
61          * One UI takes control of ordering by setting the "order" value for
62          * the PresentationInfo component of every Stripable object. In Ardour,
63          * this is done by the GUI (mostly because it is very hard for the user
64          * to re-order things on a control surface).
65          *
66          * Ordering is a complex beast, however. Different user interfaces may
67          * display things in different ways. For example, the GUI of Ardour
68          * allows the user to mix busses in between tracks. A control surface
69          * may do the same, but may also allow the user to press a button that
70          * makes it show only busses, or only MIDI tracks. At that point, the
71          * ordering on the surface differs from the ordering in the GUI.
72          *
73          * There are several pathways for the order being set:
74          *
75          *   - object created during session loading from XML
76          *           - numeric order will be set during ::set_state(), based on
77          *           - type will be set during ctor call
78          *
79          *   - object created in response to user request
80          *              - numeric order will be set by Session, before adding
81          *                   to container.
82          *              - type set during ctor call
83          *
84          *
85          * OBJECT IDENTITY
86          *
87          * Control surfaces/protocols often need to be able to get a handle on
88          * an object identified only abstractly, such as the "5th audio track"
89          * or "the master out". A PresentationInfo object uniquely identifies
90          * all objects in this way through the combination of its _order member
91          * and part of its _flags member. The _flags member identifies the type
92          * of object, as well as selection/hidden status. The type may never
93          * change after construction (not strictly the constructor itself, but
94          * a more generalized notion of construction, as in "ready to use").
95          *
96          * VISIBILITY
97          *
98          * When an object is hidden, its _flags member will have the Hidden
99          * bit set.
100          *
101          *
102          */
103
104         enum Flag {
105                 /* Type information */
106                 AudioTrack = 0x1,
107                 MidiTrack = 0x2,
108                 AudioBus = 0x4,
109                 MidiBus = 0x8,
110                 VCA = 0x10,
111                 MasterOut = 0x20,
112                 MonitorOut = 0x40,
113                 Auditioner = 0x80,
114                 /* These are for sharing Stripable states between the GUI and other
115                  * user interfaces/control surfaces
116                  */
117                 Hidden = 0x100,
118                 /* single bit indicates that the group order is set */
119                 OrderSet = 0x400,
120
121                 /* special mask to delect out "state" bits */
122                 StatusMask = (Hidden),
123                 /* special mask to delect select type bits */
124                 TypeMask = (AudioBus|AudioTrack|MidiTrack|MidiBus|VCA|MasterOut|MonitorOut|Auditioner)
125         };
126
127         static const Flag AllStripables; /* mask to use for any route or VCA (but not auditioner) */
128         static const Flag AllRoutes; /* mask to use for any route include master+monitor, but not auditioner */
129         static const Flag Route;     /* mask for any route (bus or track */
130         static const Flag Track;     /* mask to use for any track */
131         static const Flag Bus;       /* mask to use for any bus */
132
133         typedef uint32_t order_t;
134         typedef uint32_t color_t;
135
136         PresentationInfo (Flag f);
137         PresentationInfo (order_t o, Flag f);
138         PresentationInfo (PresentationInfo const &);
139
140         static const order_t max_order;
141
142         PresentationInfo::Flag flags() const { return _flags; }
143         order_t  order() const { return _order; }
144         color_t  color() const { return _color; }
145
146         bool color_set() const;
147
148         void set_color (color_t);
149         void set_hidden (bool yn);
150         void set_flags (Flag f) { _flags = f; }
151
152         bool order_set() const { return _flags & OrderSet; }
153
154         int selection_cnt() const { return _selection_cnt; }
155
156         bool hidden() const { return _flags & Hidden; }
157         bool special(bool with_master = true) const { return _flags & ((with_master ? MasterOut : 0)|MonitorOut|Auditioner); }
158
159         bool flag_match (Flag f) const {
160                 /* no flags, match all */
161
162                 if (f == Flag (0)) {
163                         return true;
164                 }
165
166                 if (f & StatusMask) {
167                         /* status bits set, must match them */
168                         if ((_flags & StatusMask) != (f & StatusMask)) {
169                                 return false;
170                         }
171                 }
172
173                 /* Generic flags in f, match the right stuff */
174
175                 if (f == Bus && (_flags & Bus)) {
176                         /* some kind of bus */
177                         return true;
178                 }
179                 if (f == Track && (_flags & Track)) {
180                         /* some kind of track */
181                         return true;
182                 }
183                 if (f == Route && (_flags & Route)) {
184                         /* any kind of route, but not master, monitor in
185                            or auditioner.
186                          */
187                         return true;
188                 }
189
190                 if (f == AllRoutes && (_flags & AllRoutes)) {
191                         /* any kind of route, but not auditioner. Ask for that
192                            specifically.
193                         */
194                         return true;
195                 }
196
197                 if (f == AllStripables && (_flags & AllStripables)) {
198                         /* any kind of stripable, but not auditioner. Ask for that
199                            specifically.
200                         */
201                         return true;
202                 }
203
204                 /* check for any matching type bits.
205                  *
206                  * Do comparisoon without status mask or order set bits - we
207                  * already checked that above.
208                  */
209
210                 return ((f & TypeMask) & _flags);
211         }
212
213         int set_state (XMLNode const&, int);
214         XMLNode& get_state ();
215
216         bool operator==(PresentationInfo const& other) {
217                 return (_order == other.order()) && (_flags == other.flags());
218         }
219
220         bool operator!=(PresentationInfo const& other) {
221                 return (_order != other.order()) || (_flags != other.flags());
222         }
223
224         PresentationInfo& operator= (PresentationInfo const& other);
225
226         static Flag get_flags (XMLNode const& node);
227         static std::string state_node_name;
228
229         /* for things concerned about *any* PresentationInfo.
230          */
231
232         static PBD::Signal1<void,PBD::PropertyChange const &> Change;
233         static void send_static_change (const PBD::PropertyChange&);
234
235         static void make_property_quarks ();
236
237   protected:
238         friend class ChangeSuspender;
239         static void suspend_change_signal ();
240         static void unsuspend_change_signal ();
241
242   public:
243         class ChangeSuspender {
244           public:
245                 ChangeSuspender() {
246                         PresentationInfo::suspend_change_signal ();
247                 }
248                 ~ChangeSuspender() {
249                         PresentationInfo::unsuspend_change_signal ();
250                 }
251         };
252
253   protected:
254         friend class Stripable;
255         void set_order (order_t order);
256
257   private:
258         order_t _order;
259         Flag    _flags;
260         color_t _color;
261         int     _selection_cnt;
262
263         static PBD::PropertyChange _pending_static_changes;
264         static Glib::Threads::Mutex static_signal_lock;
265         static int _change_signal_suspended;
266
267         static int selection_counter;
268 };
269
270 }
271
272 std::ostream& operator<<(std::ostream& o, ARDOUR::PresentationInfo const& rid);
273
274 #endif /* __libardour_presentation_info_h__ */