summaryrefslogtreecommitdiffstats
path: root/arts/midi/audiosync_impl.cc
blob: a75992c63b810eb848af5718c9296c0d21f4194a (plain)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
    /*

    Copyright (C) 2001-2002 Stefan Westerfeld
                            stefan@space.twc.de

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.
  
    This library 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
    Library General Public License for more details.
   
    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.

    */

#include "audiosync_impl.h"
#include "midisyncgroup_impl.h"
#include "audiotimer.h"
#include "audiosubsys.h"
#include "timestampmath.h"

#undef AUDIO_DEBUG_DRIFT

using namespace std;
using namespace Arts;

namespace Arts {
	static list<AudioSync_impl *> audioSyncImplList;
}

void AudioSync_impl::AudioSyncEvent::execute()
{
	list<SynthModule>::iterator i;

	for(i = startModules.begin(); i != startModules.end(); i++)
		i->start();

	for(i = stopModules.begin(); i != stopModules.end(); i++)
		i->stop();
}

AudioSync_impl::AudioSync_impl()
	: newEvent(new AudioSyncEvent), syncGroup(0)
{
	syncOffset = TimeStamp(0,0);

	timer = AudioTimer::subscribe();
	timer->addCallback(this);

	audioSyncImplList.push_back(this);
}

AudioSync_impl::~AudioSync_impl()
{
	delete newEvent;

	while(!events.empty())
	{
		delete events.front();
		events.pop_front();
	}

	if(syncGroup)
	{
		syncGroup->audioSyncDied(this);
		syncGroup = 0;
	}
	audioSyncImplList.remove(this);
	timer->removeCallback(this);
	timer->unsubscribe();
}

TimeStamp AudioSync_impl::time()
{
	if(syncGroup)
		return syncGroup->time();
	else
		return audioTime();
}

TimeStamp AudioSync_impl::playTime()
{
	if(syncGroup)
		return syncGroup->playTime();
	else
		return audioPlayTime();
}

TimeStamp AudioSync_impl::audioTime()
{
	return timer->time();
}

TimeStamp AudioSync_impl::audioPlayTime()
{
	double delay = AudioSubSystem::the()->outputDelay();

	TimeStamp time = audioTime();
	timeStampDec(time,timeStampFromDouble(delay));
	return time;
}

TimeStamp AudioSync_impl::clientTime()
{
	TimeStamp time = audioTime();
	timeStampDec(time, syncOffset);
	return time;
}

void AudioSync_impl::queueStart(SynthModule synthModule)
{
	newEvent->startModules.push_back(synthModule);
}

void AudioSync_impl::queueStop(SynthModule synthModule)
{
	newEvent->stopModules.push_back(synthModule);
}

void AudioSync_impl::execute()
{
	newEvent->execute();
	newEvent->startModules.clear();
	newEvent->stopModules.clear();
}

void AudioSync_impl::executeAt(const TimeStamp& timeStamp)
{
	newEvent->time = timeStamp;
	if(syncGroup)
		timeStampInc(newEvent->time, syncOffset);

	events.push_back(newEvent);

	newEvent = new AudioSyncEvent;
}

void AudioSync_impl::updateTime()
{
	TimeStamp now = audioTime();
	list<AudioSyncEvent*>::iterator i;

	i = events.begin();
	while(i != events.end())
	{	
		AudioSyncEvent *event = *i;
		TimeStamp& eventTime = event->time;

		if( now.sec > eventTime.sec
				|| ((now.sec == eventTime.sec) && (now.usec > eventTime.usec)))
		{
			event->execute();
			delete event;
			i = events.erase(i);
		}
		else
		{
			i++;
		}
	}
}

void AudioSync_impl::setSyncGroup(MidiSyncGroup_impl *newSyncGroup)
{
	syncGroup = newSyncGroup;
}

void AudioSync_impl::synchronizeTo(const TimeStamp& time)
{
#ifdef AUDIO_DEBUG_DRIFT
	TimeStamp drift = syncOffset;			// debug drift
#endif

	syncOffset = audioPlayTime();
	timeStampDec(syncOffset, time);

#ifdef AUDIO_DEBUG_DRIFT
	timeStampDec(drift, syncOffset);		// debug drift
	printf("SYNC DRIFT %30s %30s: %f\n",
				"AudioSync", "AudioSync", timeStampToDouble(drift));
#endif
}

AudioSync_impl *AudioSync_impl::tqfind(AudioSync audioSync)
{
	list<AudioSync_impl *>::iterator i;

	for(i = audioSyncImplList.begin(); i != audioSyncImplList.end(); i++)
	{
		if((*i)->_isEqual(audioSync._base()))
			return (*i);
	}
	return 0;
}

namespace Arts { REGISTER_IMPLEMENTATION(AudioSync_impl); }