-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlayThatTune.java
More file actions
55 lines (48 loc) · 2.08 KB
/
Copy pathPlayThatTune.java
File metadata and controls
55 lines (48 loc) · 2.08 KB
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
/*************************************************************************
* Compilation: javac PlayThatTune.java
* Execution: java PlayThatTune < input.txt
* Dependencies: StdAudio.java StdAudio.java
*
* This is a data-driven program that plays pure tones from
* the notes on the chromatic scale, specified on standard input
* by their distance from concert A.
*
* % java PlayThatTune < elise.txt
*
*
* Data files
* ----------
* http://www.cs.princeton.edu/introcs/21function/elise.txt
* http://www.cs.princeton.edu/introcs/21function/99luftballons.txt
* http://www.cs.princeton.edu/introcs/21function/freebird.txt
* http://www.cs.princeton.edu/introcs/21function/Ascale.txt
* http://www.cs.princeton.edu/introcs/21function/National_Anthem.txt
* http://www.cs.princeton.edu/introcs/21function/looney.txt
* http://www.cs.princeton.edu/introcs/21function/StairwayToHeaven.txt
* http://www.cs.princeton.edu/introcs/21function/entertainer.txt
* http://www.cs.princeton.edu/introcs/21function/old-nassau.txt
* http://www.cs.princeton.edu/introcs/21function/arabesque.txt
* http://www.cs.princeton.edu/introcs/21function/firstcut.txt
* http://www.cs.princeton.edu/introcs/21function/tomsdiner.txt
*
*************************************************************************/
public class PlayThatTune {
public static void main(String[] args) {
// repeat as long as there are more integers to read in
while (!StdIn.isEmpty()) {
// read in the pitch, where 0 = Concert A (A4)
int pitch = StdIn.readInt();
// read in duration in seconds
double duration = StdIn.readDouble();
// build sine wave with desired frequency
double hz = 440 * Math.pow(2, pitch / 12.0);
int N = (int) (StdAudio.SAMPLE_RATE * duration);
double[] a = new double[N+1];
for (int i = 0; i <= N; i++) {
a[i] = Math.sin(2 * Math.PI * i * hz / StdAudio.SAMPLE_RATE);
}
// play it using standard audio
StdAudio.play(a);
}
}
}