forked from ASD-ADF/ASD_Task_4
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.cpp
More file actions
91 lines (81 loc) · 1.58 KB
/
main.cpp
File metadata and controls
91 lines (81 loc) · 1.58 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
80
81
82
83
84
85
86
87
88
89
90
91
#include <iostream>
#include "list.h"
#include "player.h"
#include <conio.h>
using namespace std;
List L;
address P;
infotype x;
int n;
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!=8);
}
void displayMenu() {
cout<<"1. input new "<<endl
<<"2. view list"<<endl
<<"3. play first song"<<endl
<<"4. play next "<<endl
<<"5. play prev "<<endl
<<"6. play shuffle"<<endl
<<"7. play repeat"<<endl
<<"8. 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:
playPrev(P);
break;
case 6:
shuffleList(L);
case 7:
cout<<"How many times? "; cin>>n;
playRepeat(L, n);
case 8:
cout<<"thank you"<<endl;
break;
default :
cout<<"wrong input"<<endl;
}
}