2003-06-24 08:44:02 +00:00
|
|
|
/*
|
|
|
|
|
* RageSoundDriver_QT.cpp
|
|
|
|
|
* stepmania
|
|
|
|
|
*
|
|
|
|
|
* Created by Steve Checkoway on Mon Jun 23 2003.
|
|
|
|
|
* Copyright (c) 2003 Steve Checkoway. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
|
#include "RageSoundDriver_QT.h"
|
2003-07-28 10:42:20 +00:00
|
|
|
#include "RageSoundManager.h"
|
|
|
|
|
#include "RageSound.h"
|
2003-06-24 08:44:02 +00:00
|
|
|
#include "RageLog.h"
|
2003-07-28 10:42:20 +00:00
|
|
|
#include "RageThreads.h"
|
2003-06-24 08:44:02 +00:00
|
|
|
#include <QuickTime/QuickTime.h>
|
2003-07-09 08:27:27 +00:00
|
|
|
#include <queue>
|
|
|
|
|
#include <vector>
|
2003-07-28 10:42:20 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <sys/types.h>
|
2003-06-24 08:44:02 +00:00
|
|
|
|
2003-08-04 11:22:33 +00:00
|
|
|
const unsigned numchannels = 2;
|
2003-08-08 09:03:30 +00:00
|
|
|
const unsigned samplesize = 2 * numchannels;
|
2003-08-10 00:43:18 +00:00
|
|
|
const unsigned samples = 2048;
|
2003-08-08 09:03:30 +00:00
|
|
|
const long halfsamples = long(samples / 2);
|
|
|
|
|
const long twicesamples = long(samples * 2);
|
2003-06-24 13:23:30 +00:00
|
|
|
const unsigned freq = 44100;
|
2003-08-08 09:03:30 +00:00
|
|
|
const unsigned buffersize = samples * samplesize;
|
|
|
|
|
const unsigned initialSounds = 10;
|
2003-08-04 11:22:33 +00:00
|
|
|
|
|
|
|
|
#if defined(DEBUG)
|
|
|
|
|
#define TEST_ERR(err, func) \
|
2003-08-08 09:03:30 +00:00
|
|
|
CHECKPOINT; \
|
2003-08-04 11:22:33 +00:00
|
|
|
if (__builtin_expect(err, noErr)) \
|
2003-08-10 00:43:18 +00:00
|
|
|
RageException::Throw(#func " failed with error: %d at %s:%d", err, __FILE__, __LINE__)
|
2003-08-04 11:22:33 +00:00
|
|
|
#else
|
2003-08-08 09:03:30 +00:00
|
|
|
#define TEST_ERR(err, func) CHECKPOINT
|
2003-08-04 11:22:33 +00:00
|
|
|
#endif
|
2003-06-24 08:44:02 +00:00
|
|
|
|
2003-08-08 09:03:30 +00:00
|
|
|
typedef struct soundInfo
|
|
|
|
|
{
|
2003-07-28 10:42:20 +00:00
|
|
|
RageSound *snd;
|
2003-08-10 00:43:18 +00:00
|
|
|
//Movie movie;
|
|
|
|
|
//Track track;
|
2003-07-28 10:42:20 +00:00
|
|
|
long stopPos;
|
2003-08-10 00:43:18 +00:00
|
|
|
//long lastPos;
|
|
|
|
|
bool stopping;
|
|
|
|
|
//long totalMediaSamples;
|
|
|
|
|
//SoundDescriptionHandle sndDescHdl;
|
|
|
|
|
//short dataRefIndices[4];
|
|
|
|
|
|
|
|
|
|
soundInfo() { snd=NULL; stopPos=0; stopping=false; }
|
|
|
|
|
//static soundInfo **MakeSoundInfoHdl();
|
|
|
|
|
//static void DisposeSoundInfoHdl(soundInfo **sHdl);
|
|
|
|
|
//void Reset();
|
|
|
|
|
void DisposeSampleReferences(Media media, short index);
|
|
|
|
|
//void GetData();
|
2003-07-28 10:42:20 +00:00
|
|
|
} *soundInfoPtr, **soundInfoHdl;
|
2003-07-09 08:27:27 +00:00
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
/*soundInfoHdl soundInfo::MakeSoundInfoHdl()
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
2003-07-28 10:42:20 +00:00
|
|
|
soundInfoHdl sHdl = (soundInfoHdl)NewHandle(sizeof(soundInfo));
|
2003-08-04 11:22:33 +00:00
|
|
|
OSStatus err = MemError();
|
|
|
|
|
TEST_ERR(err, NewHandle);
|
|
|
|
|
HLock(Handle(sHdl));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, HLock);
|
2003-07-28 10:42:20 +00:00
|
|
|
soundInfoPtr s = *sHdl;
|
2003-07-09 08:27:27 +00:00
|
|
|
|
2003-08-08 09:03:30 +00:00
|
|
|
s->movie = NewMovie(newMovieActive);
|
2003-08-04 11:22:33 +00:00
|
|
|
err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, NewMovie);
|
2003-08-08 09:03:30 +00:00
|
|
|
SetMovieTimeScale(s->movie, freq);
|
2003-08-04 11:22:33 +00:00
|
|
|
err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, SetMovieTimeScale);
|
|
|
|
|
|
2003-08-08 09:03:30 +00:00
|
|
|
s->track = NewMovieTrack(s->movie, 0, 0, kFullVolume);
|
2003-08-04 11:22:33 +00:00
|
|
|
err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, NewMovieTrack);
|
|
|
|
|
|
2003-08-08 09:03:30 +00:00
|
|
|
s->sndDescHdl = (SoundDescriptionHandle)NewHandleClear(sizeof(SoundDescription));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, NewHandleClear);
|
|
|
|
|
HLock(Handle(s->sndDescHdl));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, HLock);
|
|
|
|
|
SoundDescriptionPtr sndDescPtr = *s->sndDescHdl;
|
|
|
|
|
sndDescPtr->descSize = sizeof(SoundDescription);
|
|
|
|
|
sndDescPtr->dataFormat = k16BitBigEndianFormat;
|
|
|
|
|
sndDescPtr->numChannels = numchannels;
|
|
|
|
|
sndDescPtr->sampleSize = samplesize * 8 / numchannels;
|
|
|
|
|
sndDescPtr->sampleRate = freq << 16;
|
|
|
|
|
HUnlock(Handle(s->sndDescHdl));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, HUnlock);
|
2003-08-04 11:22:33 +00:00
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
bzero(s->dataRefIndices, 8);
|
2003-08-08 09:03:30 +00:00
|
|
|
s->Reset();
|
|
|
|
|
HUnlock(Handle(sHdl));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, HUnlock);
|
|
|
|
|
return sHdl;
|
2003-07-28 10:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
2003-08-08 09:03:30 +00:00
|
|
|
void soundInfo::DisposeSoundInfoHdl(soundInfoHdl sHdl)
|
|
|
|
|
{
|
|
|
|
|
HLock(Handle(sHdl));
|
|
|
|
|
soundInfoPtr s = soundInfoPtr(*sHdl);
|
|
|
|
|
|
|
|
|
|
s->Reset();
|
|
|
|
|
DisposeHandle(Handle(s->sndDescHdl));
|
|
|
|
|
DisposeMovieTrack(s->track);
|
|
|
|
|
DisposeMovie(s->movie);
|
|
|
|
|
HUnlock(Handle(sHdl));
|
|
|
|
|
DisposeHandle(Handle(sHdl));
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
2003-08-08 09:03:30 +00:00
|
|
|
|
|
|
|
|
/* Make sure that the Handle to this data is locked before calling this method. */
|
2003-08-10 00:43:18 +00:00
|
|
|
/*void soundInfo::Reset()
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
Media media = GetTrackMedia(track);
|
|
|
|
|
|
|
|
|
|
if (media)
|
|
|
|
|
{
|
2003-08-10 00:43:18 +00:00
|
|
|
this->DisposeSampleReferences(media, 0);
|
|
|
|
|
this->DisposeSampleReferences(media, 1);
|
|
|
|
|
this->DisposeSampleReferences(media, 2);
|
2003-08-08 09:03:30 +00:00
|
|
|
DisposeTrackMedia(media);
|
|
|
|
|
}
|
2003-08-10 00:43:18 +00:00
|
|
|
//dataRefIndices[3] = 0;
|
2003-08-08 09:03:30 +00:00
|
|
|
stopPos = 0;
|
|
|
|
|
lastPos = 0;
|
2003-08-10 00:43:18 +00:00
|
|
|
//snd = NULL;
|
2003-08-08 09:03:30 +00:00
|
|
|
GoToBeginningOfMovie(movie);
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
2003-08-08 09:03:30 +00:00
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
static short dataRefIndices[4];
|
|
|
|
|
static SoundDescriptionHandle sndDescHdl;
|
|
|
|
|
|
|
|
|
|
//void soundInfo::DisposeSampleReferences(Media media, short index)
|
|
|
|
|
void DisposeSampleReferences(Media media, short index)
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
2003-08-10 00:43:18 +00:00
|
|
|
ASSERT(index <= 2 && index >= 0);
|
2003-08-08 09:03:30 +00:00
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
if (!dataRefIndices[index])
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Handle dataRef;
|
|
|
|
|
OSType dataRefType;
|
|
|
|
|
long dataRefAttributes;
|
|
|
|
|
OSErr err = GetMediaDataRef(media, dataRefIndices[index], &dataRef, &dataRefType, &dataRefAttributes);
|
|
|
|
|
TEST_ERR(err, GetMediaDataRef);
|
|
|
|
|
ASSERT(dataRefType == HandleDataHandlerSubType);
|
|
|
|
|
ASSERT(!(dataRefAttributes & dataRefWasNotResolved));
|
|
|
|
|
HLock(dataRef);
|
|
|
|
|
Handle sndHdl;
|
|
|
|
|
memcpy(&sndHdl, *dataRef, sizeof(Handle));
|
|
|
|
|
DisposeHandle(sndHdl);
|
|
|
|
|
HUnlock(dataRef);
|
|
|
|
|
DisposeHandle(dataRef);
|
|
|
|
|
dataRefIndices[index] = 0;
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure that the Handle to this data is locked before calling this method. */
|
2003-08-10 00:43:18 +00:00
|
|
|
/*inline void soundInfo::GetData()
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
char buffer[buffersize];
|
|
|
|
|
unsigned got = snd->GetPCM(buffer, buffersize, lastPos);
|
|
|
|
|
|
|
|
|
|
if (got < buffersize)
|
|
|
|
|
{
|
|
|
|
|
stopPos = got / samplesize + lastPos;
|
|
|
|
|
if (got == 0)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
lastPos += samples;
|
|
|
|
|
|
|
|
|
|
Handle sndHdl;
|
|
|
|
|
PtrToHand(buffer, &sndHdl, got);
|
2003-08-10 00:43:18 +00:00
|
|
|
OSErr err = MemError();
|
|
|
|
|
TEST_ERR(err, PtrToHand);
|
2003-08-08 09:03:30 +00:00
|
|
|
Handle dataRef;
|
|
|
|
|
PtrToHand(&sndHdl, &dataRef, sizeof(Handle));
|
2003-08-10 00:43:18 +00:00
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, PtrToHand);
|
2003-08-08 09:03:30 +00:00
|
|
|
Media media = GetTrackMedia(track);
|
2003-08-10 00:43:18 +00:00
|
|
|
bool insert;
|
2003-08-08 09:03:30 +00:00
|
|
|
|
|
|
|
|
if (media)
|
|
|
|
|
{
|
|
|
|
|
short index;
|
|
|
|
|
err = AddMediaDataRef(media, &index, dataRef, HandleDataHandlerSubType);
|
|
|
|
|
TEST_ERR(err, AddMediaDataRef);
|
2003-08-10 00:43:18 +00:00
|
|
|
ASSERT(index);
|
|
|
|
|
dataRefIndices[dataRefIndices[3] % 3] = index;
|
|
|
|
|
insert = false;
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
media = NewTrackMedia(track, SoundMediaType, freq, dataRef, HandleDataHandlerSubType);
|
2003-08-10 00:43:18 +00:00
|
|
|
OSErr err = GetMoviesError();
|
2003-08-08 09:03:30 +00:00
|
|
|
TEST_ERR(err, NewTrackMedia);
|
2003-08-10 00:43:18 +00:00
|
|
|
dataRefIndices[0] = 1;
|
|
|
|
|
insert = true;
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
BeginMediaEdits(media);
|
|
|
|
|
AddMediaSample(media, sndHdl, 0, got, 1, SampleDescriptionHandle(sndDescHdl), samples, 0, NULL);
|
|
|
|
|
EndMediaEdits(media);
|
|
|
|
|
CHECKPOINT;
|
2003-08-10 00:43:18 +00:00
|
|
|
if (insert)
|
|
|
|
|
InsertMediaIntoTrack(track, -1, lastPos - samples, got / samplesize, 0x00010000);
|
2003-08-08 09:03:30 +00:00
|
|
|
CHECKPOINT;
|
|
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
if (++dataRefIndices[3] > 3)
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
2003-08-10 00:43:18 +00:00
|
|
|
SetMovieActiveSegment(movie, (dataRefIndices[3] - 2) * samples, twicesamples);
|
|
|
|
|
DisposeSampleReferences(media, dataRefIndices[3] % 3);
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
static void CallBack(QTCallBack cb, long refCon)
|
|
|
|
|
{
|
2003-08-08 09:03:30 +00:00
|
|
|
LockMutex L(SOUNDMAN->lock);
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
soundInfoHdl sHdl = soundInfoHdl(refCon);
|
|
|
|
|
HLock(Handle(sHdl));
|
|
|
|
|
soundInfoPtr s = *sHdl;
|
|
|
|
|
long timeToCall;
|
|
|
|
|
|
|
|
|
|
s->GetData();
|
|
|
|
|
if (!cb)
|
|
|
|
|
{
|
|
|
|
|
StartMovie(s->movie);
|
|
|
|
|
cb = NewCallBack(GetMovieTimeBase(s->movie), callBackAtTime);
|
|
|
|
|
timeToCall = halfsamples;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
timeToCall = s->lastPos - halfsamples;
|
|
|
|
|
if (!s->stopPos)
|
|
|
|
|
CallMeWhen(cb, CallBack, long(sHdl), triggerTimeFwd, timeToCall, freq);
|
|
|
|
|
|
|
|
|
|
HUnlock(Handle(sHdl));
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
2003-08-08 09:03:30 +00:00
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
//static vector<soundInfoHdl> playingSounds;
|
|
|
|
|
//static queue<soundInfoHdl> freeSounds;
|
|
|
|
|
static vector<soundInfoPtr> sounds;
|
|
|
|
|
static long lastPos;
|
|
|
|
|
static Movie movie;
|
|
|
|
|
static Track track;
|
|
|
|
|
|
|
|
|
|
static void CallBack(QTCallBack cb, long refCon)
|
|
|
|
|
{
|
|
|
|
|
#pragma unused(refCon)
|
|
|
|
|
while (!SOUNDMAN)
|
|
|
|
|
SDL_Delay(10);
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
|
|
|
|
static SoundMixBuffer mix;
|
|
|
|
|
char buffer[buffersize];
|
|
|
|
|
|
|
|
|
|
bzero(buffer, buffersize);
|
|
|
|
|
for (unsigned i=0; i<sounds.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
if (sounds[i]->stopping)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
unsigned got = sounds[i]->snd->GetPCM(buffer, buffersize, lastPos);
|
|
|
|
|
|
|
|
|
|
mix.write((SInt16 *)buffer, got / 2);
|
|
|
|
|
if (got < buffersize)
|
|
|
|
|
{
|
|
|
|
|
sounds[i]->stopping = true;
|
|
|
|
|
sounds[i]->stopPos = lastPos + got / samplesize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lastPos += samples;
|
|
|
|
|
|
|
|
|
|
mix.read((SInt16 *)buffer);
|
|
|
|
|
Handle sndHdl;
|
|
|
|
|
PtrToHand(buffer, &sndHdl, buffersize);
|
|
|
|
|
OSErr err = MemError();
|
|
|
|
|
TEST_ERR(err, PtrToHand);
|
|
|
|
|
Handle dataRef;
|
|
|
|
|
PtrToHand(&sndHdl, &dataRef, sizeof(Handle));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, PtrToHand);
|
|
|
|
|
Media media = GetTrackMedia(track);
|
|
|
|
|
bool insert;
|
|
|
|
|
|
|
|
|
|
if (media)
|
|
|
|
|
{
|
|
|
|
|
short index;
|
|
|
|
|
err = AddMediaDataRef(media, &index, dataRef, HandleDataHandlerSubType);
|
|
|
|
|
TEST_ERR(err, AddMediaDataRef);
|
|
|
|
|
ASSERT(index);
|
|
|
|
|
dataRefIndices[dataRefIndices[3] % 3] = index;
|
|
|
|
|
insert = false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
media = NewTrackMedia(track, SoundMediaType, freq, dataRef, HandleDataHandlerSubType);
|
|
|
|
|
OSErr err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, NewTrackMedia);
|
|
|
|
|
dataRefIndices[0] = 1;
|
|
|
|
|
insert = true;
|
|
|
|
|
}
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
BeginMediaEdits(media);
|
|
|
|
|
AddMediaSample(media, sndHdl, 0, samples, 1, SampleDescriptionHandle(sndDescHdl), samples, 0, NULL);
|
|
|
|
|
EndMediaEdits(media);
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
if (insert)
|
|
|
|
|
InsertMediaIntoTrack(track, -1, lastPos - samples, samples, 0x00010000);
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
|
|
|
|
|
if (++dataRefIndices[3] > 3)
|
|
|
|
|
{
|
|
|
|
|
SetMovieActiveSegment(movie, (dataRefIndices[3] - 2) * samples, twicesamples);
|
|
|
|
|
DisposeSampleReferences(media, dataRefIndices[3] % 3);
|
|
|
|
|
}
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
|
|
|
|
|
long timeToCall;
|
|
|
|
|
if (!cb)
|
|
|
|
|
{
|
|
|
|
|
StartMovie(movie);
|
|
|
|
|
cb = NewCallBack(GetMovieTimeBase(movie), callBackAtTime);
|
|
|
|
|
timeToCall = halfsamples;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
timeToCall = lastPos - halfsamples;
|
|
|
|
|
CallMeWhen(cb, CallBack, 0, triggerTimeFwd, timeToCall, freq);
|
|
|
|
|
}
|
2003-08-08 09:03:30 +00:00
|
|
|
|
|
|
|
|
RageSound_QT::RageSound_QT()
|
|
|
|
|
{
|
2003-08-10 00:43:18 +00:00
|
|
|
/*playingSounds.reserve(initialSounds);
|
2003-08-08 09:03:30 +00:00
|
|
|
for (unsigned i=0; i<initialSounds; ++i)
|
|
|
|
|
{
|
|
|
|
|
soundInfoHdl sHdl = soundInfo::MakeSoundInfoHdl();
|
|
|
|
|
freeSounds.push(sHdl);
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
|
|
|
|
lastPos = 0;
|
|
|
|
|
bzero(dataRefIndices, 8);
|
|
|
|
|
|
|
|
|
|
movie = NewMovie(newMovieActive);
|
|
|
|
|
OSErr err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, NewMovie);
|
|
|
|
|
SetMovieTimeScale(movie, freq);
|
|
|
|
|
err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, SetMovieTimeScale);
|
|
|
|
|
|
|
|
|
|
track = NewMovieTrack(movie, 0, 0, kFullVolume);
|
|
|
|
|
err = GetMoviesError();
|
|
|
|
|
TEST_ERR(err, NewMovieTrack);
|
|
|
|
|
|
|
|
|
|
HLock(Handle(sndDescHdl));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, HLock);
|
|
|
|
|
|
|
|
|
|
SoundDescriptionPtr sndDescPtr = *sndDescHdl;
|
|
|
|
|
sndDescPtr->descSize = sizeof(SoundDescription);
|
|
|
|
|
sndDescPtr->dataFormat = k16BitBigEndianFormat;
|
|
|
|
|
sndDescPtr->numChannels = numchannels;
|
|
|
|
|
sndDescPtr->sampleSize = samplesize * 8 / numchannels;
|
|
|
|
|
sndDescPtr->sampleRate = freq << 16;
|
|
|
|
|
HUnlock(Handle(sndDescHdl));
|
|
|
|
|
err = MemError();
|
|
|
|
|
TEST_ERR(err, HUnlock);
|
|
|
|
|
|
|
|
|
|
/* Start the Movie */
|
|
|
|
|
CallBack(NULL, 0);
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RageSound_QT::~RageSound_QT()
|
|
|
|
|
{
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
2003-08-10 00:43:18 +00:00
|
|
|
/*while (!playingSounds.empty())
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
soundInfoHdl &sHdl = playingSounds.back();
|
|
|
|
|
soundInfo::DisposeSoundInfoHdl(sHdl);
|
|
|
|
|
playingSounds.pop_back();
|
|
|
|
|
}
|
|
|
|
|
while (!freeSounds.empty())
|
|
|
|
|
{
|
|
|
|
|
soundInfoHdl &sHdl = freeSounds.front();
|
|
|
|
|
soundInfo::DisposeSoundInfoHdl(sHdl);
|
|
|
|
|
freeSounds.pop();
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
|
|
|
|
while (!sounds.empty())
|
|
|
|
|
{
|
|
|
|
|
soundInfoPtr s = sounds.back();
|
|
|
|
|
s->snd->StopPlaying();
|
|
|
|
|
sounds.pop_back();
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RageSound_QT::StartMixing(RageSound *snd)
|
|
|
|
|
{
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
LOG->Trace("StartMixing()");
|
2003-08-10 00:43:18 +00:00
|
|
|
/*soundInfoHdl sHdl;
|
2003-08-08 09:03:30 +00:00
|
|
|
if (freeSounds.empty())
|
|
|
|
|
sHdl = soundInfo::MakeSoundInfoHdl();
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sHdl = freeSounds.front();
|
|
|
|
|
freeSounds.pop();
|
|
|
|
|
}
|
|
|
|
|
(*sHdl)->snd = snd;
|
|
|
|
|
playingSounds.push_back(sHdl);
|
2003-08-10 00:43:18 +00:00
|
|
|
CallBack(NULL, long(sHdl));*/
|
|
|
|
|
soundInfoPtr s = new soundInfo;
|
|
|
|
|
s->snd = snd;
|
|
|
|
|
sounds.push_back(s);
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RageSound_QT::StopMixing(RageSound *snd)
|
|
|
|
|
{
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
|
|
|
|
CHECKPOINT;
|
|
|
|
|
LOG->Trace("StopMixing");
|
|
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
/*for (vector<soundInfoHdl>::iterator iter=playingSounds.begin(); iter<playingSounds.end(); ++iter)
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
soundInfoHdl sHdl = *iter;
|
|
|
|
|
|
|
|
|
|
if ((*sHdl)->snd != snd)
|
|
|
|
|
continue;
|
|
|
|
|
HLock(Handle(sHdl));
|
|
|
|
|
|
|
|
|
|
soundInfoPtr s = *sHdl;
|
|
|
|
|
|
|
|
|
|
StopMovie(s->movie);
|
|
|
|
|
s->Reset();
|
|
|
|
|
playingSounds.erase(iter);
|
|
|
|
|
freeSounds.push(sHdl);
|
|
|
|
|
HUnlock(Handle(sHdl));
|
|
|
|
|
return;
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
|
|
|
|
for (unsigned i=0; i<sounds.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
if (sounds[i]->snd != snd)
|
|
|
|
|
continue;
|
|
|
|
|
sounds.erase(sounds.begin()+i);
|
|
|
|
|
return;
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG->Warn("A sound could not be stopped because it was not being played.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RageSound_QT::Update(float delta)
|
|
|
|
|
{
|
|
|
|
|
#pragma unused (delta)
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
|
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
/*vector<soundInfoHdl> snds = playingSounds;
|
|
|
|
|
for (vector<soundInfoHdl>::iterator iter=snds.begin(); iter<snds.end(); ++iter)
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
soundInfoHdl sHdl = *iter;
|
|
|
|
|
|
|
|
|
|
HLock(Handle(sHdl));
|
2003-08-10 00:43:18 +00:00
|
|
|
OSErr err = MemError();
|
|
|
|
|
TEST_ERR(err, HLock);
|
2003-08-08 09:03:30 +00:00
|
|
|
if (IsMovieDone((*sHdl)->movie))
|
|
|
|
|
(*sHdl)->snd->StopPlaying();
|
|
|
|
|
else
|
|
|
|
|
HUnlock(Handle(sHdl));
|
|
|
|
|
CHECKPOINT;
|
2003-08-10 00:43:18 +00:00
|
|
|
}*/
|
|
|
|
|
vector<soundInfoPtr> snds = sounds;
|
|
|
|
|
for (unsigned i=0; i<snds.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
if (!snds[i]->stopping)
|
|
|
|
|
continue;
|
|
|
|
|
if (GetPosition(snds[i]->snd) < snds[i]->stopPos)
|
|
|
|
|
continue;
|
|
|
|
|
snds[i]->snd->StopPlaying();
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int RageSound_QT::GetPosition(const RageSound *snd) const
|
|
|
|
|
{
|
|
|
|
|
LockMutex L(SOUNDMAN->lock);
|
|
|
|
|
|
2003-08-10 00:43:18 +00:00
|
|
|
/*for (vector<soundInfoHdl>::iterator iter=playingSounds.begin(); iter<playingSounds.end(); ++iter)
|
2003-08-08 09:03:30 +00:00
|
|
|
{
|
|
|
|
|
soundInfoHdl sHdl = *iter;
|
|
|
|
|
|
|
|
|
|
if ((*sHdl)->snd == snd)
|
|
|
|
|
return GetMovieTime((*sHdl)->movie, NULL);
|
|
|
|
|
}
|
2003-08-10 00:43:18 +00:00
|
|
|
RageException::Throw("Can't get the position of a sound that isn't playing");*/
|
|
|
|
|
return GetMovieTime(movie, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RageSound_QT::GetPlayLatency() const
|
|
|
|
|
{
|
|
|
|
|
return float(halfsamples / 2) / freq;
|
|
|
|
|
//return 0;
|
2003-08-08 09:03:30 +00:00
|
|
|
}
|