APCS/06 Stacks _ Queues/04 Song Queue/SongQueue.java
Rushil Umaretiya 3fc3554899 initial commit
2020-12-04 22:00:49 -05:00

162 lines
5.3 KiB
Java

// Name: B6-24
// Date: 1/8/20
import java.io.*;
import java.util.*;
public class SongQueue
{
private static Scanner keyboard; //use this global Scanner for this lab only
private static Queue<String> songQueue;
public static void main(String[] args) throws Exception
{
keyboard = new Scanner(System.in);
songQueue = readPlayList();
// System.out.println(songQueue); //not allowed
System.out.println("Your music queue: " + queueAsString());
String prompt = "Add song (A), Play song (P), Delete song (D), Quit (Q): ";
String str = "";
do{
System.out.print(prompt);
str = keyboard.nextLine().toUpperCase();
processRequest( str );
System.out.println();
}while(!str.equals("Q"));
}
/* reads the file "songs.txt". Extracts the song's title
and stores it in a queue.
@return the queue of songs
*/
public static Queue<String> readPlayList() throws IOException
{
Scanner infile = new Scanner (new File("songs.txt"));
Queue<String> q = new LinkedList<String>();
while (infile.hasNextLine())
q.add(infile.nextLine().split(" - ")[0]);
return q;
}
/* processes the character codes A, P, D, Q, a, p, d, q.
"A" prompts the user to enter the name of the song,
adds it to the queue, and displays the whole queue
after "Your music queue: " . Do not add the same song twice.
"P" plays the song, if one exists, by displaying
"Now playing: " and its title and then removing it from the queue.
If there is nothing play, the program displays "Empty queue!"
"D" displays the queue, prompts the user by showing
"Delete which song (exact match)?" and will either delete the
song and display the queue or show "Error: Song not in list."
"Q" displays "No more music for you today. Goodbye!"
and ends the program.
@param str - the character code
*/
public static void processRequest(String str)
{
str = str.toLowerCase();
switch(str) {
case "a":
System.out.print("Song Name: ");
String song = keyboard.nextLine();
if (!songQueue.contains(song));
songQueue.add(song);
break;
case "p":
if (songQueue.isEmpty())
System.out.println("Empty queue!");
else
System.out.println("Now Playing: " + songQueue.remove());
System.out.println("Your music queue: " + queueAsString());
break;
case "d":
if(songQueue.isEmpty())
System.out.println("Error: No songs in queue!");
System.out.println(queueAsString());
System.out.print("Delete which song (exact match)?");
String del = keyboard.nextLine();
if (!songQueue.contains(del))
System.out.println("Error: Song not in list." );
else {
Queue<String> temp = new LinkedList<>();
while (!songQueue.isEmpty()) {
if (!songQueue.peek().equals(del))
temp.add(songQueue.peek());
songQueue.remove();
}
while (!temp.isEmpty())
songQueue.add(temp.remove());
}
System.out.println("Your music queue: " + queueAsString());
break;
case "q":
System.out.println("No more music for you today. Goodbye!");
break;
default:
System.out.println("Error: Invalid Input");
}
}
/* returns the songs in the queue, separated by commas.
*/
public static String queueAsString()
{
Queue<String> temp = new LinkedList<>();
String str = "";
while (!songQueue.isEmpty()) {
str += songQueue.peek() + ", ";
temp.add(songQueue.remove());
}
while (!temp.isEmpty())
songQueue.add(temp.remove());
return str.substring(0, str.length() - 2);
}
/* standard accessor method.
*/
public static Queue<String> getQueue()
{
return songQueue;
}
}
/*********************************************
Your music queue: Really Love, Uptown Funk, Thinking Out Loud, Alright, Traveller, Shallow
Add song (A), Play song (P), Delete song (D), Quit (Q): p
Now playing: Really Love
Your music queue: Uptown Funk, Thinking Out Loud, Alright, Traveller, Shallow
Add song (A), Play song (P), Delete song (D), Quit (Q): x
Invalid. Try again.
Add song (A), Play song (P), Delete song (D), Quit (Q): d
Your music queue: Uptown Funk, Thinking Out Loud, Alright, Traveller, Shallow
Delete which song (exact match)? xxx
Error: Song not in list.
Your music queue: Uptown Funk, Thinking Out Loud, Alright, Traveller, Shallow
Add song (A), Play song (P), Delete song (D), Quit (Q): d
Your music queue: Uptown Funk, Thinking Out Loud, Alright, Traveller, Shallow
Delete which song (exact match)? Alright
Your music queue: Uptown Funk, Thinking Out Loud, Traveller, Shallow
Add song (A), Play song (P), Delete song (D), Quit (Q): q
No more music for you today. Goodbye!
**********************************************/