2010-12-14 15:28:37 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002-2010 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
option) any later version.
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 15:28:37 -05:00
|
|
|
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 Lesser General Public
|
|
|
|
License for more details.
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 15:28:37 -05:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cmath>
|
2011-04-22 20:02:58 -04:00
|
|
|
#include <cassert>
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2017-09-24 12:03:54 -04:00
|
|
|
#include "temporal/bbt_time.h"
|
2010-12-14 15:28:37 -05:00
|
|
|
|
|
|
|
using namespace Timecode;
|
|
|
|
|
2012-01-06 11:39:40 -05:00
|
|
|
/* This defines the smallest division of a "beat".
|
2011-12-19 14:44:43 -05:00
|
|
|
|
|
|
|
The number is intended to have as many integer factors as possible so that
|
|
|
|
1/Nth divisions are integer numbers of ticks.
|
|
|
|
|
2012-01-06 11:39:40 -05:00
|
|
|
1920 has many factors, though going up to 3840 gets a couple more.
|
2017-09-13 17:12:51 -04:00
|
|
|
|
2017-09-24 12:03:54 -04:00
|
|
|
This needs to match Temporal::Beats::PPQN
|
2011-12-19 14:44:43 -05:00
|
|
|
*/
|
|
|
|
|
2012-01-06 11:39:40 -05:00
|
|
|
const double BBT_Time::ticks_per_beat = 1920.0;
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2017-09-13 17:12:51 -04:00
|
|
|
BBT_Offset::BBT_Offset (double dbeats)
|
2010-12-14 15:28:37 -05:00
|
|
|
{
|
2016-12-21 15:57:39 -05:00
|
|
|
/* NOTE: this does not construct a BBT time in a canonical form,
|
|
|
|
in that beats may be a very large number, and bars will
|
2017-09-13 17:12:51 -04:00
|
|
|
always be zero. Hence ... it's a BBT_Offset
|
2016-12-21 15:57:39 -05:00
|
|
|
*/
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2011-04-22 20:02:58 -04:00
|
|
|
assert (dbeats >= 0);
|
|
|
|
|
2016-12-21 15:57:39 -05:00
|
|
|
bars = 0;
|
|
|
|
beats = lrint (floor (dbeats));
|
|
|
|
ticks = lrint (floor (BBT_Time::ticks_per_beat * fmod (dbeats, 1.0)));
|
2010-12-14 15:28:37 -05:00
|
|
|
}
|