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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
#include <iostream>
#include <cctype>
#include "Library.hpp"
#include "Song.hpp"
using namespace std;
void menu();
char menuSelection();
void menuSwitch(char ch, Song& column);
void searchInAlbum(char album[]);
void searchInArtist(char artist[]);
void askSong(Library& newLibrary);
void processCString (const char input[], char inputStr[], int maxChar);
int main()
{
char ch;
char file[] = "songs.txt";
Song column(file);
menu();
ch = menuSelection();
while (ch != 'x' )
{
menuSwitch(ch, column);
menu();
ch = menuSelection();
}
column.outfile(file);
return 0;
}
//****************************************************************************************************************
/* o1a
MENU OPTIONS
*/
void menu()//
{
//cout << "This is: menu o1a" << endl;
cout << "A Add: " << endl;
cout << "V View: " << endl;
cout << "E Edit: " << endl;
cout << "R Search Artist: "<< endl;
cout << "L Search Album:" << endl;
cout << "X Exit: " << endl;
}
/* o1b
MENU SELECTION **********************************************************
*/
char menuSelection()//
{
//cout << "This is: menuSelection o1b" << endl;
char ch;
cout << "\nSelection: ";
cin >> ch;
cin.ignore(MAX, '\n');//<....................... take out
return tolower(ch);
}
/* o1c
SWITCH LOOP FOR MENU SELECTION **********************************************************
*/
void menuSwitch(char ch, Song& column)
{
Library library;
char album[MAX];
char artist[MAX];
char title[MAX];
char time[MAX];
//cout << "This is: menuSwitch o1c" << endl;
switch (ch)
{
case 'a':
askSong(library);
column.cleanLibrary(library);
break;
case 'v':
column.printLibrary();
break;
case 'e'://4
cout << "Which number do you want to delet: ";
break;
case 'r':
searchInArtist(artist);
if (column.searchArtist(artist, library))
{
library.getArtist(artist);
cout << "Is this the artist: "
<< artist << ", " << album << ", " << title << ", " << time << endl;
}
else
{
cout << "ERROR\n " << artist << "Was not foud \n\nTry again" << endl;
}
break;
case 'l':
searchInAlbum(album);
if (column.searchAlbum(album, library))
{
library.getAlbum(album);
cout << "Is this the artist: "
<< artist << ", " << album << ", " << title << ", " << time << endl;
}
else
{
cout << "ERROR\n " << album << "Was not foud \n\nTry again" << endl;
}
break;
default:
cout << "Bummer.... \n\n a,l,e,s\n try again: " << endl;
}
}
void askSong(Library& newLibrary)
{
char artist[MIN];
char album[MIN];
char title[MIN];
char time[MIN];
cout << "Please enter the following: ";
processCString("Artist: ", artist, MAX);
processCString("Album: ", album, MAX);
processCString("Title: ", title, MAX);
processCString("Time: ", time, MAX);
newLibrary.assignArtist(artist);
newLibrary.assignAlbum(album);
newLibrary.assignTitle(title);
newLibrary.assignTime(time);
cout << artist<< " " << album << " " << title << " " << time << endl;
}
void searchInArtist(char artist[])
{
processCString("Enter Artist: ", artist, MAX);
}
void searchInAlbum(char album[])
{
processCString( "Enter Album: ", album, MAX);
}
void processCString (const char input[], char inputStr[], int maxChar)
{
cout << input;
cin.get(inputStr, maxChar, '\n');
while(!cin)
{
cin.clear ();
cin.ignore (100, '\n');
cout << input;
cin.get(inputStr, maxChar, '\n');
}
cin.ignore (100, '\n');
}
|