forked from nauvalwali/Task_4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
79 lines (69 loc) · 1.32 KB
/
main.cpp
File metadata and controls
79 lines (69 loc) · 1.32 KB
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
#include <iostream>
#include "list.h"
#include "player.h"
#include <conio.h>
using namespace std;
List L;
address P;
infotype x;
void menu();
void displayMenu();
void runMenu(int menu);
int main() {
cout << "Hello world!" << endl;
createList(L);
// example of data initialization
x.ID = 1;
x.location = "";
x.name = "clapping.wav";
P = alokasi(x);
insertFirst(L,P);
x.ID = 2;
x.location = "";
x.name = "airpump2.wav";
P = alokasi(x);
insertFirst(L,P);
menu();
return 0;
}
void menu() {
int pil;
do {
displayMenu();
cin>>pil;
runMenu(pil);
} while (pil!=5);
}
void displayMenu() {
cout<<"1. input new "<<endl
<<"2. view list"<<endl
<<"3. play first song"<<endl
<<"4. play next "<<endl
<<"5. exit"<<endl;
cout<<"choose menu : ";
}
void runMenu(int menu) {
switch(menu) {
case 1 :
cout<<"input new song : "<<endl;
inputNewSong(x);
P = alokasi(x);
insertFirst(L,P);
break;
case 2:
printInfo(L);
break;
case 3 :
P = First(L);
playSong(P);
break;
case 4:
playNext(P);
break;
case 5:
cout<<"thank you"<<endl;
break;
default :
cout<<"wrong input"<<endl;
}
}