Tempo line tweaks.
[ardour.git] / gtk2_ardour / tempo_lines.cc
1 /*
2     Copyright (C) 2002-2007 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 #include "pbd/compose.h"
21
22 #include "canvas/canvas.h"
23 #include "canvas/debug.h"
24
25 #include "tempo_lines.h"
26 #include "public_editor.h"
27 #include "rgb_macros.h"
28 #include "ui_config.h"
29
30 using namespace std;
31
32 TempoLines::TempoLines (ArdourCanvas::Container* group, double)
33         : lines (group, ArdourCanvas::LineSet::Vertical)
34 {
35         lines.set_extent (ArdourCanvas::COORD_MAX);
36 }
37
38 void
39 TempoLines::tempo_map_changed()
40 {
41         lines.clear ();
42 }
43
44 void
45 TempoLines::show ()
46 {
47         lines.show ();
48 }
49
50 void
51 TempoLines::hide ()
52 {
53         lines.hide ();
54 }
55
56 void
57 TempoLines::draw_ticks (std::vector<ARDOUR::TempoMap::BBTPoint>& grid,
58                         unsigned                                              divisions,
59                         framecnt_t                                            leftmost_frame,
60                         framecnt_t                                            frame_rate)
61 {
62         const uint32_t base = UIConfiguration::instance().color_mod("measure line beat", "measure line beat");
63
64         for (unsigned l = 1; l < divisions; ++l) {
65                 /* find the coarsest division level this tick falls on */
66                 unsigned level = divisions;
67                 for (unsigned d = divisions; d >= 4; d /= 2) {
68                         if (l % (divisions / d) == 0) {
69                                 level = d;
70                         }
71                 }
72                 /* draw line with alpha corresponding to coarsest level */
73                 const uint8_t    a = max(8, (int)rint(UINT_RGBA_A(base) / (0.8 * log2(level))));
74                 const uint32_t   c = UINT_RGBA_CHANGE_A(base, a);
75                 framepos_t f = 0;
76
77                 if (grid.begin()->c != 0.0) {
78                         const double beat_divisions = (l / ((double) divisions)) * (grid.begin()->tempo.note_type() / grid.begin()->meter.note_divisor());
79                         const double time_at_division = log (((grid.begin()->c * (beat_divisions)) /
80                                                            grid.begin()->tempo.beats_per_minute()) + 1) / grid.begin()->c;
81
82                         f = grid.begin()->frame + (framecnt_t) floor ((time_at_division * 60.0 * frame_rate) + 0.5);
83                 } else {
84                         const double fpb  = grid.begin()->tempo.frames_per_beat (frame_rate)
85                                 * (grid.begin()->tempo.note_type() / grid.begin()->meter.note_divisor());
86
87                         f = grid.begin()->frame + (l * (fpb / (double) divisions));
88                 }
89                 if (f > leftmost_frame) {
90                         lines.add (PublicEditor::instance().sample_to_pixel_unrounded (f), 1.0, c);
91                 }
92         }
93 }
94
95 void
96 TempoLines::draw (std::vector<ARDOUR::TempoMap::BBTPoint>& grid,
97                   unsigned                                              divisions,
98                   framecnt_t                                            leftmost_frame,
99                   framecnt_t                                            frame_rate)
100 {
101         std::vector<ARDOUR::TempoMap::BBTPoint>::const_iterator i;
102         double  beat_density;
103
104         uint32_t beats = 0;
105         uint32_t bars = 0;
106         uint32_t color;
107
108         bool all_bars = false;
109         /* get the first bar spacing */
110
111         i = grid.end();
112         i--;
113         bars = (*i).bar - (*grid.begin()).bar;
114
115         int32_t bar_mod = 4;
116
117         if (bars < distance (grid.begin(), grid.end()) - 1) {
118                 /* grid contains beats and bars */
119                 beats = distance (grid.begin(), grid.end()) - bars;
120         } else {
121                 /* grid contains only bars */
122                 beats = distance (grid.begin(), grid.end());
123
124                 if (i != grid.begin()) {
125                         const int32_t last_bar = (*i).bar;
126                         i--;
127                         bar_mod = (last_bar - (*i).bar) * 4;
128                 }
129
130                 all_bars = true;
131         }
132
133         double canvas_width_used = 1.0;
134         if (leftmost_frame < grid.front().frame) {
135                 const framecnt_t frame_distance = max ((framecnt_t) 1, grid.back().frame - grid.front().frame);
136                 canvas_width_used = 1.0 - ((grid.front().frame - leftmost_frame) / (double) (frame_distance + grid.front().frame));
137         }
138
139         beat_density = (beats * 10.0f) / (lines.canvas()->width() * canvas_width_used);
140
141         if (beat_density > 2.0f) {
142                 /* if the lines are too close together, they become useless */
143                 lines.clear ();
144                 return;
145         }
146
147         /* constrain divisions to a log2 factor to cap line density */
148         while (divisions > 3 && beat_density * divisions > 0.4) {
149                 divisions /= 2;
150         }
151
152         lines.clear ();
153         if (beat_density <= 0.12 && grid.begin() != grid.end() && grid.begin()->frame > 0 && !all_bars) {
154                 /* draw subdivisions of the beat before the first visible beat line XX this shouldn't happen now */
155                 std::vector<ARDOUR::TempoMap::BBTPoint> vec;
156                 vec.push_back (*i);
157                 draw_ticks (vec, divisions, leftmost_frame, frame_rate);
158         }
159
160         for (i = grid.begin(); i != grid.end(); ++i) {
161
162                 if ((*i).is_bar()) {
163                         /* keep all_bar beat density down */
164                         if (all_bars && beat_density > 0.3 && ((*i).bar % bar_mod) != 1) {
165                                 continue;
166                         }
167
168                         color = UIConfiguration::instance().color ("measure line bar");
169                 } else {
170                         if (beat_density > 0.3) {
171                                 continue; /* only draw beat lines if the gaps between beats are large. */
172                         }
173                         color = UIConfiguration::instance().color_mod ("measure line beat", "measure line beat");
174                 }
175
176                 ArdourCanvas::Coord xpos = PublicEditor::instance().sample_to_pixel_unrounded ((*i).frame);
177
178                 lines.add (xpos, 1.0, color);
179
180                 if (beat_density <= 0.12 && !all_bars) {
181                         /* draw subdivisions of this beat */
182                         std::vector<ARDOUR::TempoMap::BBTPoint> vec;
183                         vec.push_back (*i);
184                         draw_ticks (vec, divisions, leftmost_frame, frame_rate);
185                 }
186         }
187 }
188