Homework 8: Guitar
Learning Goals
- Extend a known Data Structure (Queue), to create a new, special-purpose Data Structure (BoundedQueue)
- Use this special-purpose Data Structure in an simulation of a guitar playing music
Exercise: While My Guitar Gently Weeps
In this exercise, you will learn how to simulate the plucking of a guitar string with the Karplus-Strong algorithm. Play the video below to see a visualization of the algorithm. If your browser won’t play the video below, you can right-click on it and save it to your Desktop to play it from there.
When a guitar string is plucked, the string vibrates and creates sound. The length of the string determines its fundamental frequency of vibration. We model a guitar string by sampling its displacement (a real number between -1/2 and +1/2) at N equally spaced points (in time), where N equals the sampling rate (44,100) divided by the fundamental frequency (rounding the quotient up to the nearest integer).
Plucking the string. The excitation of the string contains energy at any frequency. We simulate the excitation with white noise: set each of the N displacements to a random real number between -1/2 and +1/2.
The resulting vibrations. After the string is plucked, the string vibrates. The pluck causes a displacement which spreads wave-like over time. The Karplus-Strong algorithm simulates this vibration by maintaining a bounded-queue of the N samples: the algorithm repeatedly dequeues the first sample from the bounded queue and enqueues the average of the dequeued sample and the front sample in the queue, scaled by an energy decay factor of 0.994.
Task 0
Download this starting code that will allow you to complete the tasks below.
Task 1
Write a BoundedQueue.java class that implements a bounded queue ADT. A bounded queue is a queue with a maximum capacity: no elements can be enqueued when the queue is full to its capacity. The BoundedQueue class should inherit from the javafoundations.CircularArrayQueue
class, given in the starting code.
Your BoundedQueue.java file should contain implementations for the following methods:
- A constructor that takes an integer argument, which is the capacity of the bounded queue
- A predicate
isFull()
that indicates whether the bounded queue is at capacity or not - An
enqueue()
method that overrides thejavafoundations.CircularArrayQueue
’senqueue()
method so that it only enqueues an element if the queue is not at capacity.
You should not add any more instance methods to this class implementation. But, of course, you should be providing evidence of testing your implementation in the main()
.
Make sure you test this class before continuing to the next task.
Task 2
Write a GuitarString
class that models a vibrating guitar string according to the following contract:
-
public GuitarString(double frequency);
The constructor creates a guitar string of the given frequency, using a sampling rate of 44,100. It initializes a bounded queue of the desired capacity N (sampling rate divided by the frequency, rounded up to the nearest integer), and fills the bounded queue with N zeros to model a guitar string at rest. -
public void pluck();
The pluck() method replaces the N samples in the bounded queue with N random values between -0.5 and +0.5: -
public double sample();
The sample() method returns the value of the item at the front of the bounded queue: -
public void tic();
The tic() method applies the Karplus-Strong algorithm, i.e., it deletes the sample at the front of the bounded queue and adds to the end of the bounded queue the average of the deleted sample and the sample at the front of the bounded queue, multiplied by the energy decay factor of 0.994:
Task 3
Now you should be ready to test your code from the previous tasks. Compile and run the provided GuitarHeroine application. If you have successfully completed the previous tasks, then when you run the application, a window should appear as follows:
Now, you can make sweet music. By pressing any of the keys on your computer keyboard corresponding to the notes as illustrated in the piano keyboard image, you can simulate plucking a guitar string for that note (make sure that your computer’s sound is not muted).
What to submit
In Gradescope submit the following files:
- The
BoundedQueue.java
file - Your testing transcript (
BoundedQueue.txt
) for BoundedQueue class - The
GuitarString.java
file
Submission Checklist
- You submitted all
.java
files and all.txt
files. - Your files are named exactly as in the homework specification, including file extensions.
- You tested every possible pathway in your code.
- You signed every class (or file) with
@author
and@version
, accompanied by a description of what the class does. - You wrote javadoc for every function, which includes
@param
and@return
. - You wrote inline comments explaining the logic of your code.