mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
36 lines
725 B
Plaintext
36 lines
725 B
Plaintext
//
|
|
// VLSoundSched.mm
|
|
// Vocalese
|
|
//
|
|
// Created by Matthias Neeracher on 10/7/06.
|
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "VLSoundSched.h"
|
|
#import "VLSoundOut.h"
|
|
|
|
class VLSS: public VLSoundScheduler {
|
|
virtual void Schedule(VLSoundEvent * what, float when);
|
|
};
|
|
|
|
void VLSS::Schedule(VLSoundEvent * what, float when)
|
|
{
|
|
[[VLSoundSched class] performSelector:@selector(performSoundEvent:)
|
|
withObject:[NSNumber numberWithUnsignedLong:(unsigned long)what]
|
|
afterDelay:when];
|
|
}
|
|
|
|
@implementation VLSoundSched
|
|
|
|
+ (void) setup
|
|
{
|
|
VLSoundOut::SetScheduler(new VLSS);
|
|
}
|
|
|
|
+ (void) performSoundEvent:(id)soundEvent
|
|
{
|
|
((VLSoundEvent *)[soundEvent unsignedLongValue])->Perform();
|
|
}
|
|
|
|
@end
|