-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMusicLibrary.cpp
167 lines (142 loc) · 5.38 KB
/
MusicLibrary.cpp
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
#include <windows.h>
#include <mmsystem.h>
#include <iostream>
#include <string>
#pragma comment(lib, "winmm.lib")
#define CYAN "\033[36m" /* Cyan */
#define RESET "\033[0m"
using namespace std;
int main()
{
string forstop;
cout << CYAN << " ______________________________________________" << RESET << endl;
cout << CYAN << "| |" << RESET << endl;
cout << CYAN << "| Music Library |" << RESET << endl;
cout << CYAN << "|_____________________________________________|" << RESET << endl;
cout << CYAN << "| |" << RESET << endl;
cout << CYAN << "| 1. Gotye |" << RESET << endl;
cout << CYAN << "| 2. Dandelions |" << RESET << endl;
cout << CYAN << "| 3. Closer - The Chainsmokers ft. Halsey |" << RESET << endl;
cout << CYAN << "| 4. Bones |" << RESET << endl;
cout << CYAN << "| 5. Blinding Lights |" << RESET << endl;
cout << CYAN << "| 6. Beggin |" << RESET << endl;
cout << CYAN << "| 7. Arcade |" << RESET << endl;
cout << CYAN << "| 8. Exit |" << RESET << endl;
cout << CYAN << "|_____________________________________________|" << RESET << endl;
string wanna ="";
bool Is_quit = true;
while(Is_quit){
cout << "\nEnter Your Choice : ";
int Choice;
cin >> Choice;
cin.ignore(); // Clear the newline character from the input buffer
switch (Choice) {
case 1:
cout << "Playing Gotye\n";
PlaySound(TEXT("Gotye.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 2:
cout << "Playing Dandelions\n";
PlaySound(TEXT("Dandelions.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 3:
cout << "Playing Closer - The Chainsmokers ft. Halsey\n";
PlaySound(TEXT("Closer - The Chainsmokers ft. Halsey.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 4:
cout << "Playing Bones\n";
PlaySound(TEXT("Bones.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 5:
cout << "Playing Blinding Lights\n";
PlaySound(TEXT("Blinding Lights.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 6:
cout << "Playing Beggin\n";
PlaySound(TEXT("Beggin.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 7:
cout << "Playing Arcade\n";
PlaySound(TEXT("Arcade.wav"), NULL, SND_FILENAME | SND_ASYNC | SND_LOOP);
getline(cin, forstop);
PlaySound(0, 0, 0);
cout << "Stopped Music \n";
cout<<"\nDo you want to Quit? (Yes/No) : ";
cin>>wanna;
if(wanna == "Yes")
Is_quit = false;
else if(wanna == "No")
Is_quit = true;
else cout << "\nInvalid Choice..."<<endl;
break;
case 8:
cout << "\nExiting...\n";
Is_quit = false;
break;
default:
cout << "\nInvalid Output!!!" << endl;
break;
}
}
return 0;
}