2010-12-14 15:28:37 -05:00
|
|
|
/*
|
2020-07-23 13:21:53 -04:00
|
|
|
Copyright (C) 2002-2010 Paul Davis
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2020-07-23 13:21:53 -04:00
|
|
|
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.
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2020-07-23 13:21:53 -04: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.
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2020-07-23 13:21:53 -04: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.
|
|
|
|
*/
|
2011-12-19 14:44:43 -05:00
|
|
|
|
2020-07-23 13:21:53 -04:00
|
|
|
#include <cmath>
|
|
|
|
#include <cassert>
|
2017-09-13 17:12:51 -04:00
|
|
|
|
2020-07-23 13:21:53 -04:00
|
|
|
#include "temporal/bbt_time.h"
|
2023-05-05 20:55:27 -04:00
|
|
|
#include "temporal/bbt_argument.h"
|
2011-12-19 14:44:43 -05:00
|
|
|
|
2020-07-23 13:21:53 -04:00
|
|
|
using namespace Temporal;
|
2010-12-14 15:28:37 -05:00
|
|
|
|
2023-02-13 18:46:54 -05:00
|
|
|
int64_t
|
|
|
|
BBT_Time::as_integer () const
|
|
|
|
{
|
|
|
|
/* up to 256 beats in a bar, 4095 ticks in a beat,
|
|
|
|
and whatever is left for bars (a lot!)
|
|
|
|
*/
|
|
|
|
return (((int64_t) bars)<<20)|(beats<<12)|ticks;
|
|
|
|
}
|
|
|
|
|
|
|
|
BBT_Time
|
|
|
|
BBT_Time::from_integer (int64_t v)
|
|
|
|
{
|
|
|
|
int32_t B = v>>20;
|
|
|
|
int32_t b = (v>>12) & 0xff;
|
|
|
|
int32_t t= v & 0xfff;
|
|
|
|
return BBT_Time (B, b, t);
|
|
|
|
}
|
|
|
|
|
2022-08-03 12:59:29 -04:00
|
|
|
BBT_Time
|
|
|
|
BBT_Time::round_up_to_bar() const
|
|
|
|
{
|
|
|
|
if (ticks == 0 && beats == 1) {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
BBT_Time b = round_up_to_beat ();
|
|
|
|
if (b.beats > 1) {
|
|
|
|
b.bars += 1;
|
|
|
|
b.beats = 1;
|
|
|
|
}
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
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;
|
2022-07-05 00:01:25 -04:00
|
|
|
beats = (int32_t) lrint (floor (dbeats));
|
|
|
|
ticks = (int32_t) lrint (floor (Temporal::ticks_per_beat * fmod (dbeats, 1.0)));
|
2020-07-23 13:21:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream&
|
|
|
|
std::operator<< (std::ostream& o, Temporal::BBT_Time const & bbt)
|
|
|
|
{
|
|
|
|
o << bbt.bars << '|' << bbt.beats << '|' << bbt.ticks;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream&
|
|
|
|
std::operator<< (std::ostream& o, const Temporal::BBT_Offset& bbt)
|
|
|
|
{
|
|
|
|
o << bbt.bars << '|' << bbt.beats << '|' << bbt.ticks;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::istream&
|
|
|
|
std::operator>>(std::istream& i, Temporal::BBT_Offset& bbt)
|
|
|
|
{
|
|
|
|
int32_t B, b, t;
|
|
|
|
char skip_pipe_char;
|
|
|
|
|
|
|
|
i >> B;
|
|
|
|
i >> skip_pipe_char;
|
|
|
|
i >> b;
|
|
|
|
i >> skip_pipe_char;
|
|
|
|
i >> t;
|
|
|
|
|
2021-09-01 00:33:33 -04:00
|
|
|
bbt = Temporal::BBT_Offset (B, b, t);
|
2020-07-23 13:21:53 -04:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::istream&
|
|
|
|
std::operator>>(std::istream& i, Temporal::BBT_Time& bbt)
|
|
|
|
{
|
|
|
|
int32_t B, b, t;
|
|
|
|
char skip_pipe_char;
|
|
|
|
|
|
|
|
i >> B;
|
|
|
|
i >> skip_pipe_char;
|
|
|
|
i >> b;
|
|
|
|
i >> skip_pipe_char;
|
|
|
|
i >> t;
|
|
|
|
|
|
|
|
bbt = Temporal::BBT_Time (B, b, t);
|
|
|
|
|
|
|
|
return i;
|
2010-12-14 15:28:37 -05:00
|
|
|
}
|
2023-05-05 20:55:27 -04:00
|
|
|
|
|
|
|
/* define this here to avoid adding another .cc file for just this operator */
|
|
|
|
|
|
|
|
std::ostream&
|
|
|
|
std::operator<< (std::ostream& o, Temporal::BBT_Argument const & bbt)
|
|
|
|
{
|
|
|
|
o << '@' << bbt.reference() << ':' << bbt.bars << '|' << bbt.beats << '|' << bbt.ticks;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|