Show selected MIDI track in editor mixer.
[ardour.git] / libs / ardour / ardour / chan_count.h
1 /*
2     Copyright (C) 2006 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     $Id: insert.cc 712 2006-07-28 01:08:57Z drobilla $
19 */
20
21 #ifndef __ardour_chan_count_h__
22 #define __ardour_chan_count_h__
23
24 #include <ardour/data_type.h>
25
26 namespace ARDOUR {
27
28
29 class ChanCount {
30 public:
31         ChanCount() { reset(); }
32         
33         // Convenience constructor for making single-typed streams (stereo, mono, etc)
34         ChanCount(DataType type, size_t channels)
35         {
36                 reset();
37                 set(type, channels);
38         }
39
40         void reset()
41         {
42                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
43                         _counts[(*t).to_index()] = 0;
44                 }
45         }
46         
47         // -1 is what to_index does.  inlined for speed.  this should maybe be changed..
48         inline size_t n_audio() const { return _counts[DataType::AUDIO-1]; }
49         inline size_t n_midi()  const { return _counts[DataType::MIDI-1]; }
50         
51         size_t n_total() const
52         {
53                 size_t ret = 0;
54                 for (size_t i=0; i < DataType::num_types; ++i)
55                         ret += _counts[i];
56
57                 return ret;
58         }
59
60         void   set(DataType type, size_t count) { _counts[type.to_index()] = count; }
61         size_t get(DataType type) const { return _counts[type.to_index()]; }
62
63         bool operator==(const ChanCount& other) const
64         {
65                 for (size_t i=0; i < DataType::num_types; ++i)
66                         if (_counts[i] != other._counts[i])
67                                 return false;
68
69                 return true;
70         }
71         
72         bool operator!=(const ChanCount& other) const
73         {
74                 return ! (*this == other);
75         }
76
77         bool operator<(const ChanCount& other) const
78         {
79                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
80                         if (_counts[(*t).to_index()] > other._counts[(*t).to_index()]) {
81                                 return false;
82                         }
83                 }
84                 return (*this != other);
85         }
86
87         bool operator<=(const ChanCount& other) const
88         {
89                 return ( (*this < other) || (*this == other) );
90         }
91         
92         bool operator>(const ChanCount& other) const
93         {
94                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
95                         if (_counts[(*t).to_index()] < other._counts[(*t).to_index()]) {
96                                 return false;
97                         }
98                 }
99                 return (*this != other);
100         }
101
102         bool operator>=(const ChanCount& other) const
103         {
104                 return ( (*this > other) || (*this == other) );
105         }
106
107         static const ChanCount INFINITE;
108         static const ChanCount ZERO;
109
110 private:
111         
112         size_t _counts[DataType::num_types];
113 };
114
115
116 } // namespace ARDOUR
117
118 #endif // __ardour_chan_count_h__
119