-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMidiTime.h
153 lines (123 loc) · 2.99 KB
/
MidiTime.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
* MidiTime.h - declaration of class MidiTime which provides data type for
* position- and length-variables
*
* Copyright (c) 2004-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
*
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
*
* 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 (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/
#ifndef _MIDI_TIME_H
#define _MIDI_TIME_H
#include "lmms_basics.h"
#include "export.h"
const int DefaultTicksPerTact = 192;
const int DefaultStepsPerTact = 16;
const int DefaultBeatsPerTact = DefaultTicksPerTact / DefaultStepsPerTact;
class EXPORT MidiTime
{
public:
MidiTime( const tact_t tact, const tick_t ticks ) :
m_ticks( tact * s_ticksPerTact + ticks )
{
}
MidiTime( const tick_t ticks = 0 ) :
m_ticks( ticks )
{
}
MidiTime( const MidiTime& time ) :
m_ticks( time.m_ticks )
{
}
MidiTime toNearestTact() const
{
if( m_ticks % s_ticksPerTact >= s_ticksPerTact/2 )
{
return ( getTact() + 1 ) * s_ticksPerTact;
}
return getTact() * s_ticksPerTact;
}
MidiTime& operator=( const MidiTime& time )
{
m_ticks = time.m_ticks;
return *this;
}
MidiTime& operator+=( const MidiTime& time )
{
m_ticks += time.m_ticks;
return *this;
}
MidiTime& operator-=( const MidiTime& time )
{
m_ticks -= time.m_ticks;
return *this;
}
tact_t getTact() const
{
return m_ticks / s_ticksPerTact;
}
tact_t nextFullTact() const
{
if( m_ticks % s_ticksPerTact == 0 )
{
return m_ticks / s_ticksPerTact;
}
return m_ticks / s_ticksPerTact + 1;
}
void setTicks( tick_t ticks )
{
m_ticks = ticks;
}
tick_t getTicks() const
{
return m_ticks;
}
operator int() const
{
return m_ticks;
}
// calculate number of frame that are needed this time
f_cnt_t frames( const float framesPerTick ) const
{
if( m_ticks >= 0 )
{
return static_cast<f_cnt_t>( m_ticks * framesPerTick );
}
return 0;
}
static MidiTime fromFrames( const f_cnt_t frames, const float framesPerTick )
{
return MidiTime( static_cast<int>( frames / framesPerTick ) );
}
static tick_t ticksPerTact()
{
return s_ticksPerTact;
}
static int stepsPerTact()
{
return qMax( 1, ticksPerTact() / DefaultBeatsPerTact );
}
static void setTicksPerTact( tick_t _tpt )
{
s_ticksPerTact = _tpt;
}
private:
tick_t m_ticks;
static tick_t s_ticksPerTact;
} ;
#endif