-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
394 lines (307 loc) · 9.99 KB
/
main.cpp
File metadata and controls
394 lines (307 loc) · 9.99 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#include <iostream>
#include <string>
#include <fstream> // to read and write from/to files
#include "Login.h"
#include "Functions.h"
#include "Hotel.h"
#include "Room.h"
#include "Payment.h"
using namespace std;
int main()
{
/*********************** CREATE NEW HOTEL ****************************************/
// note: must have more than 1 room for each room type
int singles = 3, doubles = 2, grands = 2;
Hotel* hotel1 = new Hotel(singles, doubles, grands);
singleRoom* s1 = hotel1->getSingles();
doubleRoom* d1 = hotel1->getDoubles();
grandRoom* g1 = hotel1->getGrands();
// add rooms to hotel
for (int s = 0; s < singles; s++)
{
hotel1->addSingleRooms(&s1[s], singles);
}
for (int d = 0; d < doubles; d++) {
hotel1->addDoubleRooms(&d1[d], doubles);
}
for (int g = 0; g < grands; g++)
{
hotel1->addGrandRooms(&g1[g], grands);
}
// set single room numbers
int singleRoomNo = 1;
for (int s = 0; s < singles; s++)
{
s1[s].setRoomNumber(singleRoomNo);
singleRoomNo++;
}
// set double room numbers
int doubleRoomNo = 10;
for (int d = 0; d < doubles; d++)
{
d1[d].setRoomNumber(doubleRoomNo);
doubleRoomNo++;
}
// set grand room numbers
int grandRoomNo = 20;
for (int g = 0; g < grands; g++)
{
g1[g].setRoomNumber(grandRoomNo);
grandRoomNo++;
}
/********************** LOGIN PORTAL **************************/
Login guestLogin;
// display start menu interface
startMenu:
string choice;
guestLogin.displayMenu();
getline(cin, choice);
// exit program
if (choice == "e")
{
delete[] s1; // delete 3 single room objects
delete[] d1; // delete 2 double room objects
delete[] g1; // delete 2 grand room objects
return 0;
}
// validate menu input
if (!matchMenuInput2(choice))
{
goto startMenu;
}
// register new user
if (choice == "1")
{
guestLogin.alreadyRegistered();
goto startMenu; // show menu again
}
// validate login
else if (choice == "2")
{
bool loginStatus = guestLogin.isLoggedIn();
while (!loginStatus) // if login not verified, go back to menu
{
goto startMenu;
}
}
/****************** ROOM BOOKING **************************/
float totalCost;
//display room info
roomInfo:
string confirmInfo;
hotel1->displayRoomInfo();
getline(cin, confirmInfo);
if (!validateYes(confirmInfo)) // validate 'y' input
{
goto roomInfo;
}
// ask for what type of room user wants to book
roomInput:
string bookingOption;
cout << "What room would you like to book? (s, d, or g) ";
getline(cin, bookingOption);
// validate user input
if (bookingOption != "s" && bookingOption != "d" && bookingOption != "g")
{
cout << "*** ERROR: Invalid input. Try again. ***" << endl;
goto roomInput;
}
else if (stringHasSpace(bookingOption))
{
goto roomInput;
}
/************* SINGLE ROOM BOOKING **************/
if (bookingOption == "s")
{
// display vacant single room numbers and ask user to select
if(hotel1->hasVacantSingles(s1, singles))
{
freeSingles:
string roomChoice;
hotel1->displayVacantSingles(s1, singles);
getline(cin, roomChoice);
// check if room choice has already been booked
for (int i = 0; i<singles; i++)
{
if (s1[i].getRoomNumber() == stoi(roomChoice) && s1[i].getStatus() == "BOOKED")
{
cout << "Room number not available. Try again." << endl;
goto freeDoubles;
}
}
// validate selection - check for space, if input in range of room numbers given
if (stringHasSpace(roomChoice) || stoi(roomChoice) < 1 || stoi(roomChoice) > singles)
{
cout << "*** ERROR: Invalid room number ***" << endl;
goto freeSingles;
}
// set global variable cost to total room cost
totalCost = hotel1->singleBookingCost(stoi(roomChoice), s1, singles);
}
// alert user if no rooms available
else if (!hotel1->hasVacantSingles(s1, singles))
{
noSingles:
string noSinglesConfirm;
cout << "No single rooms available. Would you like to book another room? (y/n) ";
getline(cin, noSinglesConfirm);
// test input
if (!validateYesNo)
{
goto noSingles;
}
// go to booking menu again
if (noSinglesConfirm == "y")
{
goto roomInput;
}
// redirect to start menu
else if (noSinglesConfirm == "n")
{
goto startMenu;
}
}
}
/************* DOUBLE ROOM BOOKING **************/
else if (bookingOption == "d")
{
// check vacancy
if(hotel1->hasVacantDoubles(d1, doubles))
{
// display vacant single room numbers and ask user to select
freeDoubles:
string roomChoice;
hotel1->displayVacantDoubles(d1, doubles);
getline(cin, roomChoice);
// check if room choice has already been booked
for (int i = 0; i<doubles; i++)
{
if (d1[i].getRoomNumber() == stoi(roomChoice) && d1[i].getStatus() == "BOOKED")
{
cout << "Room number not available. Try again." << endl;
goto freeDoubles;
}
}
// validate selection - check for space, if input in range of room numbers given
if (stringHasSpace(roomChoice) || stoi(roomChoice) < 10 || stoi(roomChoice) > (doubles + 10)) {
cout << "***ERROR: Invalid room number***" << endl;
goto freeDoubles;
}
// set global variable cost to total room cost
totalCost = hotel1->doubleBookingCost(stoi(roomChoice), d1, doubles);
}
// alert user if no rooms available
else if (!hotel1->hasVacantDoubles(d1, doubles))
{
noDoubles:
string noDoublesConfirm;
cout << "No double rooms available. Would you like to book another room? (y/n) ";
getline(cin, noDoublesConfirm);
// test input
if (!validateYesNo(noDoublesConfirm))
{
goto noDoubles;
}
// go to booking menu again
if (noDoublesConfirm == "y"){
goto roomInput;
}
// redirect to start menu
else if (noDoublesConfirm == "n") {
goto startMenu;
}
}
}
/************* GRAND ROOM BOOKING **************/
else if (bookingOption == "g") {
// check vacancy
if(hotel1->hasVacantGrands(g1, grands))
{
// display vacant single room numbers and ask user to select
freeGrands:
string roomChoice;
hotel1->displayVacantGrands(g1, grands);
getline(cin, roomChoice);
// check if room choice has already been booked
for (int i = 0; i<grands; i++)
{
if (g1[i].getRoomNumber() == stoi(roomChoice) && g1[i].getStatus() == "BOOKED")
{
cout << "Room number not available. Try again." << endl;
goto freeGrands;
}
}
// validate selection - check for space, if input in range of room numbers given
if (stringHasSpace(roomChoice) || stoi(roomChoice) < 20 || stoi(roomChoice) > (grands + 20))
{
cout << "***ERROR: Invalid room number***" << endl;
goto freeGrands;
}
// set global variable cost to total room cost
totalCost = hotel1->grandBookingCost(stoi(roomChoice), g1, grands);
}
// alert user if no rooms available
else if (!hotel1->hasVacantGrands(g1, grands)) {
noGrands:
string noGrandsConfirm;
cout << "No grand rooms available. Would you like to book another room? (y/n) ";
getline(cin, noGrandsConfirm);
// test input
if (!validateYesNo(noGrandsConfirm))
{
goto noDoubles;
}
// go to booking menu again
if (noGrandsConfirm == "y"){
goto roomInput;
}
// redirect to start menu
else if (noGrandsConfirm == "n") {
goto startMenu;
}
}
}
/********** PAYMENT PORTAL ****************/
Payment* payPortal;
paymentInput:
string payChoice;
payPortal->displayPaymentMenu();
getline(cin, payChoice);
if (!matchMenuInput2) {
goto paymentInput;
}
// pay by card
if (payChoice == "1")
{
Card* payCard = new Card();
// set payment cost to total room cost
payCard->setAmount(totalCost);
// validate details
payCard->validateCardDetails();
delete payCard;
}
// pay by paypal
else if (payChoice == "2")
{
Paypal* pay = new Paypal();
// set total payment cost (including surcharge)
pay->setAmount(totalCost);
// validate paypal login details
pay->validatePaypalDetails();
delete pay;
}
// redirect to start menu
logOff:
string confirmEnd;
cout << "Enter y to log off: ";
getline(cin, confirmEnd);
if (!validateYes(confirmEnd)) // validate 'y' input
{
goto logOff;
}
if(confirmEnd == "y")
{
goto startMenu;
}
return 0;
}