mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
Version 4.2.1
This commit is contained in:
committed by
Stephen Sinclair
parent
a6381b9d38
commit
2cbce2d8bd
@@ -1,6 +1,6 @@
|
||||
// rtsine.cpp STK tutorial program
|
||||
|
||||
#include "WaveLoop.h"
|
||||
#include "SineWave.h"
|
||||
#include "RtWvOut.h"
|
||||
|
||||
int main()
|
||||
@@ -8,27 +8,24 @@ int main()
|
||||
// Set the global sample rate before creating class instances.
|
||||
Stk::setSampleRate( 44100.0 );
|
||||
|
||||
WaveLoop *sine = 0;
|
||||
SineWave sine;
|
||||
RtWvOut *dac = 0;
|
||||
|
||||
try {
|
||||
// Define and load the sine wave file
|
||||
sine = new WaveLoop( "rawwaves/sinewave.raw", true );
|
||||
|
||||
// Define and open the default realtime output device for one-channel playback
|
||||
dac = new RtWvOut(1);
|
||||
}
|
||||
catch (StkError &) {
|
||||
goto cleanup;
|
||||
exit(0);
|
||||
}
|
||||
|
||||
sine->setFrequency(440.0);
|
||||
sine.setFrequency(440.0);
|
||||
|
||||
// Play the oscillator for 40000 samples
|
||||
int i;
|
||||
for ( i=0; i<40000; i++ ) {
|
||||
try {
|
||||
dac->tick( sine->tick() );
|
||||
dac->tick( sine.tick() );
|
||||
}
|
||||
catch (StkError &) {
|
||||
goto cleanup;
|
||||
@@ -36,7 +33,6 @@ int main()
|
||||
}
|
||||
|
||||
cleanup:
|
||||
delete sine;
|
||||
delete dac;
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user