-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtempCodeRunnerFile.cpp
More file actions
237 lines (228 loc) · 6.39 KB
/
tempCodeRunnerFile.cpp
File metadata and controls
237 lines (228 loc) · 6.39 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include "ticket.cpp"
using namespace std;
void displayMainMenu() {
cout << "\n--------------------CINEMA MANAGEMENY SYSTEM--------------------\n" << endl;
cout << "1. Movie Management" << endl;
cout << "2. Screening Management" << endl;
cout << "3. Hall Management" << endl;
cout << "4. Ticket Management" << endl;
cout << "5. Customer Management" << endl;
cout << "6. Exit" << endl;
cout << "Enter your choice: ";
}
void movieManagementMenu(vector<Movie> &movies) {
Movie m;
cout << "Movie Management Menu\n" << endl;
cout << "1. Add Movie" << endl;
cout << "2. View Movies" << endl;
cout << "3. Search Movie" << endl;
cout<<"4. Delete Movie"<<endl;
cout << "5. Back" << endl;
cout << "Enter your choice: ";
int choice;
cin >> choice;
switch (choice) {
case 1:
cin.ignore();
m.addMovie();
movies.push_back(m);
break;
case 2:
Movie::viewMovie(movies);
break;
case 3:
Movie::searchMovie(movies);
break;
case 4:
Movie::deleteMovie(movies);
case 5:
displayMainMenu();
break;
default:
cout << "Invalid choice!" << endl;
break;
}
}
void screeningManagementMenu(vector <Screening> &screenings) {
Screening s;
cout << "Screening Management Menu\n" << endl;
cout << "1. Add Screening" << endl;
cout << "2. View Screenings" << endl;
cout << "3. Delete Screening" << endl;
cout << "4. Back" << endl;
cout << "\nEnter your choice: ";
int choice;
cin >> choice;
switch (choice) {
case 1:
cin.ignore();
s.addScreening();
screenings.push_back(s);
break;
case 2:
Screening::viewScreenings(screenings);
break;
case 3:
Screening::deleteScreening(screenings);
break;
case 4:
displayMainMenu();
break;
default:
cout << "Invalid choice!" << endl;
break;
}
}
void hallManagementMenu(vector<Hall>& halls) {
Hall h;
cout << "Hall Management Menu\n" << endl;
cout << "1. Add Hall" << endl;
cout << "2. View Halls" << endl;
cout << "3. Edit Hall" << endl;
cout << "4. Back" << endl;
cout << "Enter your choice: ";
int choice;
cin >> choice;
switch (choice) {
case 1:
cin.ignore();
h.addHall();
halls.push_back(h);
break;
case 2:
Hall::viewHalls(halls);
break;
case 3:
Hall::editHall(halls);
break;
case 4:
displayMainMenu();
break;
default:
cout << "Invalid choice!" << endl;
break;
}
}
void ticketManagementMenu(vector<Ticket> &tickets) {
Ticket t;
cout << "Ticket Management Menu\n" << endl;
cout <<"1. Sell a Ticket \n2. Refund Ticket"<<endl;
int choice;
cin >> choice;
switch (choice) {
case 1:
t.sellTicket();
tickets.push_back(t);
break;
case 2:
Ticket::refundTicket(tickets);
break;
case 4:
displayMainMenu();
break;
default:
cout << "Invalid choice!" << endl;
break;
}
}
void customerManagementMenu() {
Customer *c;
int index=0;
int size=100;
cout << "Customer Management Menu\n" << endl;
cout << "1. Buy VIP Membership" << endl;
cout << "2. View Customers" << endl;
cout << "3. Search Customer Record" << endl;
cout << "4. Back" << endl;
cout << "Enter your choice: ";
int choice;
cin >> choice;
int opt;
switch (choice) {
case 1:
cin.ignore();
c=new VIPCustomer;
c->addCustomer();
break;
case 2:
cout<<"1. View Regular Customer Record. \n2. View VIP Customer Record:\n";
cin>>opt;
if(opt==1){
c=new RegularCustomer[size];
RegularCustomer::readFile(c,index);
RegularCustomer::viewCustomer(c,index);
}
if(opt==2){
c=new VIPCustomer[size];
VIPCustomer::readFile(c,index);
VIPCustomer::viewCustomer(c,index);
}
else{
cout<<"Invalid option."<<endl;
}
break;
case 3:
cout<<"1. Search Regular Customer Record. \n2. Search VIP Customer Record:\n";
cin>>opt;
if(opt==1){
c=new RegularCustomer[size];
RegularCustomer::readFile(c,index);
RegularCustomer::searchCustomer(c,index);
}
if(opt==2){
c=new VIPCustomer[size];
VIPCustomer::readFile(c,index);
VIPCustomer::searchCustomer(c,index);
}
else{
cout<<"Invalid option."<<endl;
}
break;
case 4:
displayMainMenu();
break;
default:
cout << "Invalid choice!" << endl;
break;
}
}
void loadData(vector <Movie> &movies, vector <Screening> &screenings, vector <Hall> &halls, vector <Ticket> &tickets){
Movie::readFile(movies);
Screening::readFile(screenings);
Hall::readFile(halls);
}
int main() {
vector<Movie> movies;
vector<Screening> screenings;
vector<Hall> halls;
vector<Ticket> tickets;
loadData(movies, screenings, halls, tickets);
while (true) {
displayMainMenu();
int choice;
cin >> choice;
switch (choice) {
case 1:
movieManagementMenu(movies);
break;
case 2:
screeningManagementMenu(screenings);
break;
case 3:
hallManagementMenu(halls);
break;
case 4:
ticketManagementMenu(tickets);
break;
case 5:
customerManagementMenu();
break;
case 6:
cout << "Exiting program" << endl;
return 0;
default:
cout << "Invalid choice! Please enter a number from 1 to 6." << endl;
}
}
return 0;
}