2007-08-05 17:31:02 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2002-2007 Paul Davis
|
2007-08-05 17:31:02 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-02-12 15:14:19 -05:00
|
|
|
#include "pbd/compose.h"
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/canvas.h"
|
|
|
|
#include "canvas/debug.h"
|
2014-02-12 15:14:19 -05:00
|
|
|
|
2007-08-05 17:31:02 -04:00
|
|
|
#include "ardour_ui.h"
|
2014-02-12 15:14:19 -05:00
|
|
|
#include "public_editor.h"
|
2015-01-07 08:37:20 -05:00
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "tempo_lines.h"
|
2007-08-05 17:31:02 -04:00
|
|
|
|
2008-09-23 18:23:39 -04:00
|
|
|
using namespace std;
|
|
|
|
|
2014-06-22 11:41:05 -04:00
|
|
|
TempoLines::TempoLines (ArdourCanvas::Container* group, double)
|
2014-06-09 15:39:57 -04:00
|
|
|
: lines (group, ArdourCanvas::LineSet::Vertical)
|
2007-08-05 17:31:02 -04:00
|
|
|
{
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.set_extent (ArdourCanvas::COORD_MAX);
|
2008-09-23 18:23:39 -04:00
|
|
|
}
|
2007-08-05 17:31:02 -04:00
|
|
|
|
2008-09-23 18:23:39 -04:00
|
|
|
void
|
|
|
|
TempoLines::tempo_map_changed()
|
|
|
|
{
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.clear ();
|
2007-08-05 17:31:02 -04:00
|
|
|
}
|
|
|
|
|
2008-09-23 18:23:39 -04:00
|
|
|
void
|
|
|
|
TempoLines::show ()
|
|
|
|
{
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.show ();
|
2008-09-23 18:23:39 -04:00
|
|
|
}
|
2007-08-05 17:31:02 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
TempoLines::hide ()
|
|
|
|
{
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.hide ();
|
2007-08-05 17:31:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-07 08:37:20 -05:00
|
|
|
TempoLines::draw_ticks (const ARDOUR::TempoMap::BBTPointList::const_iterator& b,
|
2015-01-07 19:05:21 -05:00
|
|
|
unsigned divisions,
|
2015-01-07 08:37:20 -05:00
|
|
|
framecnt_t leftmost_frame,
|
|
|
|
framecnt_t frame_rate)
|
|
|
|
{
|
2015-01-07 19:05:21 -05:00
|
|
|
const double fpb = b->tempo->frames_per_beat(frame_rate);
|
|
|
|
const uint32_t base = ARDOUR_UI::config()->color_mod("measure line beat", "measure line beat");
|
2015-01-07 08:37:20 -05:00
|
|
|
|
|
|
|
for (unsigned l = 1; l < divisions; ++l) {
|
|
|
|
/* find the coarsest division level this tick falls on */
|
|
|
|
unsigned level = divisions;
|
|
|
|
for (unsigned d = divisions; d >= 4; d /= 2) {
|
|
|
|
if (l % (divisions / d) == 0) {
|
|
|
|
level = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* draw line with alpha corresponding to coarsest level */
|
2015-01-08 21:10:54 -05:00
|
|
|
const uint8_t a = max(8, (int)rint(UINT_RGBA_A(base) / (0.8 * log2(level))));
|
2015-01-07 19:05:21 -05:00
|
|
|
const uint32_t c = UINT_RGBA_CHANGE_A(base, a);
|
2015-01-07 08:37:20 -05:00
|
|
|
const framepos_t f = b->frame + (l * (fpb / (double)divisions));
|
|
|
|
if (f > leftmost_frame) {
|
|
|
|
lines.add (PublicEditor::instance().sample_to_pixel_unrounded (f), 1.0, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TempoLines::draw (const ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
|
|
|
|
const ARDOUR::TempoMap::BBTPointList::const_iterator& end,
|
2015-01-07 19:05:21 -05:00
|
|
|
unsigned divisions,
|
2015-01-07 08:37:20 -05:00
|
|
|
framecnt_t leftmost_frame,
|
|
|
|
framecnt_t frame_rate)
|
2007-08-05 17:31:02 -04:00
|
|
|
{
|
2012-01-03 13:43:58 -05:00
|
|
|
ARDOUR::TempoMap::BBTPointList::const_iterator i;
|
2013-04-04 18:45:27 -04:00
|
|
|
double beat_density;
|
2007-08-05 17:31:02 -04:00
|
|
|
|
|
|
|
uint32_t beats = 0;
|
|
|
|
uint32_t bars = 0;
|
|
|
|
uint32_t color;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-08-05 17:31:02 -04:00
|
|
|
/* get the first bar spacing */
|
|
|
|
|
2012-01-03 13:43:58 -05:00
|
|
|
i = end;
|
2007-08-05 17:31:02 -04:00
|
|
|
i--;
|
2013-04-21 15:06:09 -04:00
|
|
|
bars = (*i).bar - (*begin).bar;
|
2012-01-03 13:43:58 -05:00
|
|
|
beats = distance (begin, end) - bars;
|
2007-08-05 17:31:02 -04:00
|
|
|
|
2014-06-09 15:39:57 -04:00
|
|
|
beat_density = (beats * 10.0f) / lines.canvas()->width();
|
2007-08-05 17:31:02 -04:00
|
|
|
|
2015-01-08 21:10:13 -05:00
|
|
|
if (beat_density > 2.0f) {
|
2008-09-23 18:23:39 -04:00
|
|
|
/* if the lines are too close together, they become useless */
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.clear ();
|
2007-08-05 17:31:02 -04:00
|
|
|
return;
|
|
|
|
}
|
2008-09-23 10:36:26 -04:00
|
|
|
|
2015-01-07 19:05:21 -05:00
|
|
|
/* constrain divisions to a log2 factor to cap line density */
|
|
|
|
while (divisions > 3 && beat_density * divisions > 0.4) {
|
|
|
|
divisions /= 2;
|
|
|
|
}
|
|
|
|
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.clear ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2015-01-10 19:38:37 -05:00
|
|
|
if (beat_density <= 0.12 && begin != end && begin->frame > 0) {
|
2015-01-07 08:37:20 -05:00
|
|
|
/* draw subdivisions of the beat before the first visible beat line */
|
|
|
|
ARDOUR::TempoMap::BBTPointList::const_iterator prev = begin;
|
|
|
|
--prev;
|
2015-01-07 19:05:21 -05:00
|
|
|
draw_ticks(prev, divisions, leftmost_frame, frame_rate);
|
2015-01-07 08:37:20 -05:00
|
|
|
}
|
|
|
|
|
2012-01-03 13:43:58 -05:00
|
|
|
for (i = begin; i != end; ++i) {
|
2007-08-05 17:31:02 -04:00
|
|
|
|
2012-01-03 21:49:01 -05:00
|
|
|
if ((*i).is_bar()) {
|
2014-12-14 16:15:38 -05:00
|
|
|
color = ARDOUR_UI::config()->color ("measure line bar");
|
2012-01-01 23:04:14 -05:00
|
|
|
} else {
|
2014-06-18 11:52:21 -04:00
|
|
|
if (beat_density > 0.3) {
|
2012-01-01 23:04:14 -05:00
|
|
|
continue; /* only draw beat lines if the gaps between beats are large. */
|
2008-09-23 18:23:39 -04:00
|
|
|
}
|
2014-12-15 10:22:22 -05:00
|
|
|
color = ARDOUR_UI::config()->color_mod ("measure line beat", "measure line beat");
|
2012-01-01 23:04:14 -05:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-02-12 15:14:19 -05:00
|
|
|
ArdourCanvas::Coord xpos = PublicEditor::instance().sample_to_pixel_unrounded ((*i).frame);
|
2013-04-21 15:06:09 -04:00
|
|
|
|
2014-06-09 15:39:57 -04:00
|
|
|
lines.add (xpos, 1.0, color);
|
2015-01-07 08:37:20 -05:00
|
|
|
|
2015-01-10 19:38:37 -05:00
|
|
|
if (beat_density <= 0.12) {
|
2015-01-07 08:37:20 -05:00
|
|
|
/* draw subdivisions of this beat */
|
2015-01-07 19:05:21 -05:00
|
|
|
draw_ticks(i, divisions, leftmost_frame, frame_rate);
|
2015-01-07 08:37:20 -05:00
|
|
|
}
|
2008-09-23 18:23:39 -04:00
|
|
|
}
|
2007-08-05 17:31:02 -04:00
|
|
|
}
|
2008-09-23 18:23:39 -04:00
|
|
|
|