-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestApp.cpp
111 lines (87 loc) · 1.25 KB
/
TestApp.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
#include "stdafx.h"
#include <iostream>
#include "bass.h"
#include <iomanip>
#include <string>
#include <fstream>
#include "Header.h"
#include <Windows.h>
#include <cstdlib>
using namespace std;
int main()
{
string r;
int ce;
library obj;
bool b;
system("Color f0");
int a;
Loading();
do
{
int choice = 0;
LoginMenu(&a);
if (a == 1)
signUp();
else if (a == 2){
signIn(&choice);
if (choice == 1)
break;
}
else
{
cout << "Invalid Entry Try again Later.....";
getchar();
getchar();
}
} while (true);
do
{
string v = "1";
system("cls");
MainMenu(&a);
if (a == 1)
{
infoAccount();
}
else if (a == 2){
obj.Display();
cout << "\n\n\t\t\tEnter Song number to play:";
cin >> ce;
if (ce != 0)
{
do
{
r = locate(ce);
if (r != "\0")
Play(r,&v);
}
while (v!="0");
}
}
else if (a == 3)
{
for (int i = 1; i < 11; i++){
r = locate(i);
if (r != "non")
Play(r,&v);
if (v == "0")
break;
}
}
else if (a == 4){
search();
}
else if (a == 5)
{
obj.Add();
}
else if (a == 6){
break;
}
else
{
cout << "\n\t\t\tInvalid Entry.........\n\t\t\tPlease Try Again";
}
} while (true);
}