forked from ASD-ADF/ASD_Task_4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
126 lines (105 loc) · 2.47 KB
/
Copy pathmain.cpp
File metadata and controls
126 lines (105 loc) · 2.47 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
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
#include "player.h"
List L;
address P;
infotype x;
int index_ID;
void menu();
void displayMenu();
void runMenu(int menu);
int main() {
index_ID = 0;
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);
//-----------------------------------------
// memanggil menu utama
//-----------------------------------------
menu();
return 0;
}
void menu() {
/**
* prosedur menu utama
*/
int pil;
do {
displayMenu();
cin>>pil;
runMenu(pil);
} while (pil!=5);
}
void displayMenu() {
/**
* prosedur menampilkan pilihan menu
* TODO : modifikasi menu sehingga juga menampilkan menu:
* - search song
* - play previous
* - play again the last song played
* - shuffle list
* - sort the song
* - play repeat all
*/
//-------------your code here-------------
cout<<"1. input new "<<endl
<<"2. view list "<<endl
<<"3. play first song "<<endl
<<"4. play next "<<endl
<<"5. search song "<<endl
<<"6. play previous "<<endl
<<"7. play again the last song played "<<endl
<<"8. shuffle list "<<endl
<<"9. sort the song "<<endl
<<"10. play repeat all "<<endl
<<"11. exit"<<endl;
cout<<"choose menu : ";
//----------------------------------------
}
void runMenu(int menu) {
/**
* prosedur memproses input pilihan menu dari user
* TODO : modifikasi menu sehingga juga memproses menu:
* - search song
* - play previous
* - play again the last song played
* - shuffle list
* - sort the song
* - play repeat all
*/
//-------------your code here-------------
switch(menu) {
case 1 :
cout<<"input new song : "<<endl;
inputNewSong(x);
x.ID = index_ID++;
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;
}
//----------------------------------------
}