Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask C/C++ Expert


Home >> C/C++

problem 1) prepare a simple music player with playlist capabilities. You will require to be able to load in “music library” (a song list) of songs on the computer, and then permit the user to create playlist of those songs to play. A playlist is the list of songs which must be played. The order of list determines the order in which the songs must be played. One song file can be on given playlist multiple times.

To implement this functionality you should first create song class to extend the mediaItem class which is included in the supplied source. The mediaItem class has the ability to get and set the location of a .wav (audio) file and then play, pause, and stop that file. Your new class must be a child class (derived class) of mediaItem which extends its functionality to being able to store the artist name and song title with the song.

Ensure to implement your artist name and song title variables as private members of the class with get( ) and set ( ) functions to manipulate them. Add any more functions to your derived class that you see fit. Make it your own. You inherited it.
Next you must create an array or a vector of the new class you have created of length MAX_SONGS.

You will need to read in the text file that describes all the songs we are using (as describeed in the loadSongList function below) into this array. This will be your array representing your music library. You will also need to make the array of integers to store a playlist for the user. The playlist array must be the array of pointers (integers which are the array index of songs) of length MAX_PLAYLIST. These pointers must point to a song in your music library (a song list). This indirection will allow you manipulate the array pointers, while leaving your master music library array as a static structure.

You must implement the following functions in your file to make the program work:

i) bool loadSongList(string filename)

INPUTS: a string containing a path to a file to open. This value is returned from the user's selection in the open file dialog.
OUTPUTS: a boolean indicating whether or not the file could be opened correctly. This function should open a file containing a formatted list of song data. This data should be in the following format:

An integer indicating the total number of songs
An Artist
A song Title
The file's location on disk
(repeat these three the number of times indicated)
So for ex:
2 Beastie Boys
Brass Monkey
./songs/Brass_Monkey.wav Paul Simon
You Can Call Me Al
./songs/Call_Me_Al.wav

Note that each field is delimited by a newline character (\n) there CAN BE WHITESPACE in the fields! You should read all of this data into an array or a vector of song objects you create as described above.

ii) int getNumberOfSongsInSongList( )

INPUTS: NONE
OUTPUTS: An integer indicating the number of songs that are currently loaded into your song object array or vector.

iii) string getSongNameFromSongList(int songNum)

INPUTS: Integer indicating which song object (via its index in your song object array or vector)
OUTPUTS: NONE

This function must return a string in the format of: "Artist - Song Title" which corresponds to the specified song in your song list.

iv) string getSongNameFromPlaylist(int playlistSpot)

INPUTS: An integer indicating which song to return (via its spot in the playlist)
OUTPUTS: NONE

This function must return a string in the format of: "Artist - Song Title" that corresponds to the specified song in your playlist. Note that this is NOT the same thing as getSongNameFromSongList. This function is returning the song data that corresponds to the passed in spot in your playlist. As the playlist is a list of indexes in the array or vector, you will need to follow the index in the designated spot to the actual song requested.

v) void addSongToPlaylist(int songNum)

INPUTS: Integer indicating which song from the song list to add to the playlist
OUTPUTS: NONE

You must add the index to the song from your song list indicated in the argument, to your playlist array or vector.

vi) int getNumberOfSongsInPlaylist()

INPUTS: NONE
OUTPUTS: Return an integer indicating the number of songs currently in the playlist.

vii) void removeSongFromPlaylist(int playlistSpot)

INPUTS: An integer corresponding to which spot in the playlist has a song which requires to be removed
OUTPUTS: NONE

You must remove the song indicated from your playlist. Note: This doesn’t mean delete it from the song list/media library as well. Just the playlist. Again, indirection.

viii) void clearPlaylist()

INPUTS: NONE
OUTPUTS: NONE

You must reset the playlist to empty, i.e., it must be reset to contain no songs.

ix) void moveSongUpInPlaylist(int playlistSpot)

INPUTS: Integer indicating that spot in the playlist has a song which requires to be moved up.
OUTPUTS: NONE

You must swap the song indicated with the spot in the playlist above it (if there is a song above it to swap with).

x) void moveSongDownInPlaylist(int playlistSpot)

INPUTS: Integer indicating that spot in the playlist has a song which requires to be moved down.
OUTPUTS: NONE

You must swap the song indicated with the spot in the playlist below it (if there is a song below it to swap with).

xi) void playSongFromPlaylist(int playlistSpot)

INPUTS: An integer indicating which spot in the playlist has a song which requires to be played.
OUTPUTS: NONE

You must call the playMedia() function that the song specified, inherited from the mediaItem class.

xii) void pauseSongFromPlaylist(int playlistSpot)

INPUTS: An integer indicating which spot in the playlist has a song which requires to be paused.
OUTPUTS: NONE
You must call the pauseMedia() function that the song specified, inherited from mediaItem class.

xiii) void stopSongFromPlaylist(int playlistSpot)

INPUTS: An integer indicating which spot in the playlist has a song that needs to be stopped.
OUTPUTS: NONE

You must call the stopMedia() function that the song specified, inherited from the mediaItem class.

Take note of the globals.h file. You will also notice the variable SHOW_DEBUG_CONSOLE. It may be useful to see output from cout or any other standard I/O function. If you set this variable to true, you will see a console started in addition to the program GUI. You can output things here if you find it helpful.

C/C++, Programming

  • Category:- C/C++
  • Reference No.:- M95666

Have any Question?


Related Questions in C/C++

Project - space race part a console Project - Space Race Part A: Console Implementation

Project - Space Race Part A: Console Implementation INTRODUCTION This assignment aims to give you a real problem-solving experience, similar to what you might encounter in the workplace. You have been hired to complete a ...

There are several ways to calculate the pulse width of a

There are several ways to calculate the pulse width of a digital input signal. One method is to directly read the input pin and another method (more efficient) is to use a timer and pin change interrupt. Function startTi ...

Why do researcher drop the ewaste and where does it end

Why do researcher drop the ewaste and where does it end up?

Question 1find the minimum and maximum of a list of numbers

Question: 1. Find the Minimum and Maximum of a List of Numbers: 10 points File: find_min_max.cpp Write a program that reads some number of integers from the user and finds the minimum and maximum numbers in this list. Th ...

1 implement the binary search tree bst in c using the node

1. Implement the Binary Search Tree (BST) in C++, using the Node class template provided below. Please read the provided helper methods in class BST, especially for deleteValue(), make sure you get a fully understanding ...

Assignment word matchingwhats a six-letter word that has an

Assignment: Word Matching What's a six-letter word that has an e as its first, third, and fifth letter? Can you find an anagram of pine grave. Or how about a word that starts and ends with ant (other than ant itself, of ...

Assign ment - genetic algorithmin this assignment you will

ASSIGN MENT - GENETIC ALGORITHM In this assignment, you will use your C programming skills to build a simple Genetic Algorithm. DESCRIPTION OF THE PROGRAM - CORE REQUIREMENTS - REQ1: Command-line arguments The user of yo ...

What are the legal requirements with which websites must

What are the legal requirements with which websites must comply in order to meet the needs of persons with disabilities? Why is maximizing accessibility important to everyone?

Software development fundamentals assignment 1 -details amp

Software Development Fundamentals Assignment 1 - Details & Problems - In this assignment, you are required to answer the short questions, identify error in the code, give output of the code and develop three C# Console P ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As