Made plugin input/output counts multi-typed (towards MIDI plugins, instruments, etc).
[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         inline void set_audio(size_t a) { _counts[DataType::AUDIO-1] = a; }
51         inline void set_midi(size_t m)  { _counts[DataType::MIDI-1] = m; }
52         
53         size_t n_total() const
54         {
55                 size_t ret = 0;
56                 for (size_t i=0; i < DataType::num_types; ++i)
57                         ret += _counts[i];
58
59                 return ret;
60         }
61
62         void   set(DataType type, size_t count) { _counts[type.to_index()] = count; }
63         size_t get(DataType type) const { return _counts[type.to_index()]; }
64
65         bool operator==(const ChanCount& other) const
66         {
67                 for (size_t i=0; i < DataType::num_types; ++i)
68                         if (_counts[i] != other._counts[i])
69                                 return false;
70
71                 return true;
72         }
73         
74         bool operator!=(const ChanCount& other) const
75         {
76                 return ! (*this == other);
77         }
78
79         bool operator<(const ChanCount& other) const
80         {
81                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
82                         if (_counts[(*t).to_index()] > other._counts[(*t).to_index()]) {
83                                 return false;
84                         }
85                 }
86                 return (*this != other);
87         }
88
89         bool operator<=(const ChanCount& other) const
90         {
91                 return ( (*this < other) || (*this == other) );
92         }
93         
94         bool operator>(const ChanCount& other) const
95         {
96                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
97                         if (_counts[(*t).to_index()] < other._counts[(*t).to_index()]) {
98                                 return false;
99                         }
100                 }
101                 return (*this != other);
102         }
103
104         bool operator>=(const ChanCount& other) const
105         {
106                 return ( (*this > other) || (*this == other) );
107         }
108
109         static const ChanCount INFINITE;
110         static const ChanCount ZERO;
111
112 private:
113         
114         size_t _counts[DataType::num_types];
115 };
116
117
118 } // namespace ARDOUR
119
120 #endif // __ardour_chan_count_h__
121