2010-12-14 15:28:37 -05:00
|
|
|
/*
|
2019-08-02 23:10:55 -04:00
|
|
|
* Copyright (C) 2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2010-12-14 15:28:37 -05:00
|
|
|
|
|
|
|
#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
|
|
|
}
|