fixes for destructive track offsets of various kinds; move from jack_nframes_t -...
[ardour.git] / gtk2_ardour / time_selection.cc
1 /*
2     Copyright (C) 2003-2004 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$
19 */
20
21 #include <algorithm>
22
23 #include <pbd/error.h>
24 #include <ardour/ardour.h>
25
26 #include "time_selection.h"
27
28 #include "i18n.h"
29
30 using namespace ARDOUR;
31 using namespace PBD;
32
33 AudioRange&
34 TimeSelection::operator[] (uint32_t which)
35 {
36         for (std::list<AudioRange>::iterator i = begin(); i != end(); ++i) {
37                 if ((*i).id == which) {
38                         return *i;
39                 }
40         }
41         fatal << string_compose (_("programming error: request for non-existent audio range (%1)!"), which) << endmsg;
42         /*NOTREACHED*/
43         return *(new AudioRange(0,0,0)); /* keep the compiler happy; never called */
44 }
45
46 bool
47 TimeSelection::consolidate ()
48 {
49         bool changed = false;
50
51   restart:
52         for (std::list<AudioRange>::iterator a = begin(); a != end(); ++a) {
53                 for (std::list<AudioRange>::iterator b = begin(); b != end(); ++b) {
54
55                         if (&(*a) == &(*b)) {
56                                 continue;
57                         }
58
59                         if ((*a).coverage ((*b).start, (*b).end) != OverlapNone) {
60                                 (*a).start = std::min ((*a).start, (*b).start);
61                                 (*a).end = std::max ((*a).end, (*b).end);
62                                 erase (b);
63                                 changed = true;
64                                 goto restart;
65                         }
66                 }
67         }
68
69         return changed;
70 }               
71
72 nframes_t 
73 TimeSelection::start ()
74 {
75         if (empty()) {
76                 return 0;
77         }
78
79         nframes_t first = max_frames;
80
81         for (std::list<AudioRange>::iterator i = begin(); i != end(); ++i) {
82                 if ((*i).start < first) {
83                         first = (*i).start;
84                 }
85         }
86         return first;
87 }
88
89 nframes_t 
90 TimeSelection::end_frame ()
91 {
92         nframes_t last = 0;
93
94         /* XXX make this work like RegionSelection: no linear search needed */
95
96         for (std::list<AudioRange>::iterator i = begin(); i != end(); ++i) {
97                 if ((*i).end > last) {
98                         last = (*i).end;
99                 }
100         }
101         return last;
102 }
103
104 nframes_t
105 TimeSelection::length()
106 {
107         return end_frame() - start() + 1;
108 }
109