-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagencyMenu.cpp
952 lines (805 loc) · 18.7 KB
/
agencyMenu.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
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
#include "agencyMenu.h"
#include "agency.h"
#include "customUtilities.h"
#include <map>
using namespace std;
// Private Functions
/**
Prints all options to the screen
To not include an option 0, the first string should be ""
*/
void printMenu(const vector<string> & options)
{
for (size_t i = 1; i < options.size(); i++)
{
cout << "\t" << i << ". " << options.at(i) << "\n";
}
if (!options.front().empty())
cout << "\t0. " << options.at(0) << "\n" << endl;
else
cout << endl;
}
void confirmSaveData(const Agency & agency)
{
char c = '\0';
cout << "-------- Save Changes --------" << endl << endl;
if (!cu::readConfirmation(c, "Do you wish to save all changes"))
{
cout << "Ctrl + Z detected\nWARNING: Data was not saved" << endl;
return;
}
else
{
switch (c)
{
case 'y':
agency.saveData();
cout << "All data was saved successfully" << endl;
break;
default:
cout << "WARNING: Data was not saved" << endl;
break;
}
}
return;
}
bool selectPackMenu(const Agency & agency, int & id, const string & menuTitle, const bool onlyAvailable)
{
int op = -1;
while (true)
{
op = -1;
cout << "-------- " << menuTitle << " --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Insert Pack's Id", // 1
"Select Pack from List" }); // 2
while (op < 0 || op > 2)
{
if (!cu::readInt(op, "Select Option"))
return false;
}
cu::clearConsole();
map<int, int> packMap;
int packsFound;
switch (op)
{
case 0:
return false;
break;
case 1:
if (!cu::readInt(id, "Pack's Id"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
if (onlyAvailable && agency.getAvailabilityOfPack(id))
{
cout << "Pack is unavaiable, which is not suitable for this operation" << endl;
cu::pauseConsole();
break;
}
return true;
break;
case 2:
cout << "-------- Pack List --------" << endl << endl;
if (!agency.packMap(packMap, packsFound, onlyAvailable, true))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
else
{
cout << "\t0. Cancel\n" << endl;
// In this case, id means option
if (!cu::readInt(id, "Select option") || id == 0)
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
if (id < 0 || id > packsFound)
{
cout << "Option out of range\nOperation aborted" << endl;
cu::pauseConsole();
break;
}
id = packMap[id];
return true;
}
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)}
return false; // Should never get here
}
bool selectClientMenu(const Agency & agency, int & vat, const string & menuTitle)
{
int op = -1;
while (true)
{
op = -1;
cout << "-------- " << menuTitle << " --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Insert Client's VAT", // 1
"Select from List" }); // 2
while (op < 0 || op > 2)
{
if (!cu::readInt(op, "Select Option"))
return false;
}
cu::clearConsole();
// map <option, vat>
map<int, int> clientMap;
int clientCounter;
switch (op)
{
case 0:
return false;
break;
case 1:
if (!cu::readInt(vat, "Client's VAT"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
return true;
break;
case 2:
cout << "-------- Client List --------" << endl << endl;
if (!agency.clientMap(clientMap, clientCounter, true))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
else
{
cout << "\t0. Cancel\n" << endl;
// In this case, vat means option
if (!cu::readInt(vat, "Select option") || vat == 0)
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
return false;
}
if (vat < 0 || vat > clientCounter)
{
cout << "Option out of range\nOperation aborted" << endl;
cu::pauseConsole();
return false;
}
// Converts option to client VAT
vat = clientMap[vat];
return true;
}
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
void viewPacksSoldMenu(Agency & agency)
{
int op = -1;
bool back = false;
while (!back)
{
op = -1;
cout << "-------- View Packs sold to Clients --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Packs sold to all Clients", // 1
"Packs sold at least once", // 2
"Packs sold to a specific Client", }); // 3
while (op < 0 || op > 3)
{
if (!cu::readInt(op, "Select Option"))
return;
}
cu::clearConsole();
int vat;
switch (op)
{
case 0:
back = true;
break;
case 1:
cout << "Packs sold to all Clients:" << endl;
agency.printPacksSoldToEveryone();
cout << endl;
cu::pauseConsole();
break;
case 2:
cout << "Packs sold at least once:" << endl;
agency.printPacksSold();
cout << endl;
cu::pauseConsole();
break;
case 3:
if (selectClientMenu(agency, vat, "Packs sold to a Client"))
{
cu::clearConsole();
cout << "Packs sold to Client:" << endl << endl;
agency.printPacksByClient(vat);
cout << endl;
cu::pauseConsole();
}
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
void viewPacks(const Agency & agency)
{
int op = -1;
bool back = false;
while (!back)
{
op = -1;
cout << "-------- View Packs --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Avaiable", // 1
"Avaiable Sorted by Destination", // 2
"Avaiable Sorted by Dates", // 3
"Avaiable Sorted by Destination and Dates", // 4
"All", // 5
"All sorted by Destination", // 6
"All sorted by Dates", // 7
"All sorted by Destination and Dates" }); // 8
while (op < 0 || op > 8)
{
if (!cu::readInt(op, "Select Option"))
return;
}
cu::clearConsole();
string s;
Date start, end;
bool aborted = false;
switch (op)
{
case 0:
back = true;
break;
case 1:
case 5:
if (op == 1)
{
cout << "-------- Only avaiable Packs --------" << endl;
agency.printPacks(true);
}
else
{
cout << "-------- All Packs --------" << endl;
agency.printPacks(false);
}
cout << endl;
cu::pauseConsole();
break;
case 2:
case 6:
if (op == 2)
cout << "-------- Available Packs sorted by Destination --------" << endl << endl;
else
cout << "-------- All Packs sorted by Destination --------" << endl << endl;
if (!cu::readStr(s, "Destination to search"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
if (op == 2)
agency.printPacksByDestination(s, true);
else
agency.printPacksByDestination(s, false);
cout << endl;
cu::pauseConsole();
break;
case 3:
case 7:
if (op == 2)
cout << "-------- Available Packs sorted by Dates --------" << endl << endl;
else
cout << "-------- All Packs sorted by Dates --------" << endl << endl;
cout << "Date Interval to sort by:" << endl;
cout << "Starting Date:" << endl;
if (!start.readUserInput())
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
end = Date(0, 0, 0); // To ensure it enters while Loop
while (end < start && !aborted)
{
cout << "Ending Date:" << endl;
if (!end.readUserInput())
aborted = true;
else
{
if (end < start)
cout << "Ending Date must not be before Starting Date" << endl;
}
}
if (aborted)
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
if (op == 3)
agency.printPacksByDate(start, end, true);
else
agency.printPacksByDate(start, end, false);
cout << endl;
cu::pauseConsole();
break;
case 4:
case 8:
if (op == 2)
cout << "-------- Available Packs sorted by Destination and Dates --------" << endl << endl;
else
cout << "-------- All Packs sorted by Destination and Dates --------" << endl << endl;
if (!cu::readStr(s, "Destination to search"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
cout << "Date Interval to sort by:" << endl;
cout << "Starting Date:" << endl;
if (!start.readUserInput())
{
cout << "Operation aborted" << endl;
break;
}
end = Date(0, 0, 0); // To ensure it enters while Loop
while (end < start && !aborted)
{
cout << "Ending Date:" << endl;
if (!end.readUserInput())
aborted = true;
else
{
if (end < start)
cout << "Ending Date must not be before Starting Date" << endl;
}
}
if (aborted)
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
if (op == 4)
agency.printPacksByDestinationAndDate(s, start, end, true);
else
agency.printPacksByDestinationAndDate(s, start, end, false);
cout << endl;
cu::pauseConsole();
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
void viewClients(const Agency & agency)
{
int op = -1, vat;
bool back = false;
while (!back)
{
op = -1;
cout << "-------- View Clients --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"All", // 1
"Specific Client" }); // 2
while (op < 0 || op > 2)
{
if (!cu::readInt(op, "Select Option"))
return;
}
cu::clearConsole();
switch (op)
{
case 0:
back = true;
break;
case 1:
cout << "-------- All Clients --------" << endl;
agency.printClients();
cout << endl;
cu::pauseConsole();
break;
case 2:
if (selectClientMenu(agency, vat, "Client to View"))
{
agency.printClientByVAT(vat);
cout << endl;
cu::pauseConsole();
}
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
void manageClients(Agency & agency)
{
int op = -1, vat;
bool back = false;
while (!back)
{
op = -1;
cout << "-------- Manage Clients --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Add new Client", // 1
"Change Client", // 2
"Remove Client" }); // 3
while (op < 0 || op > 3)
{
if (!cu::readInt(op, "Select Option"))
return;
}
cu::clearConsole();
switch (op)
{
case 0:
back = true;
break;
case 1: // New Client
cout << "-------- Add new Client --------" << endl;
if (agency.readNewClientUserInput())
cout << "Client added successfully" << endl;
else
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
case 2: // Change Client
if (selectClientMenu(agency, vat, "Change Client"))
{
cout << endl;
if (agency.changeClient(vat))
cout << "Client changed successfully" << endl;
else
cout << "Operation aborted" << endl;
cu::pauseConsole();
}
break;
case 3: // Remove Client
if (selectClientMenu(agency, vat, "Remove Client"))
{
agency.removeClientByVat(vat);
cu::pauseConsole();
}
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
void managePacks(Agency & agency)
{
int op = -1, id;
bool back = false;
while (!back)
{
op = -1;
cout << "-------- Manage Packs --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Add new Pack", // 1
"Change Pack", // 2
"Make Pack Unavailable" }); // 3
while (op < 0 || op > 3)
{
if (!cu::readInt(op, "Select Option"))
return;
}
cu::clearConsole();
switch (op)
{
case 0:
back = true;
break;
case 1: // New Pack
cout << "-------- Add new Pack --------" << endl;
if (agency.readNewPackUserInput())
cout << "Pack added successfully" << endl;
else
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
case 2: // Change Pack
if (selectPackMenu(agency, id, "Change Pack", false))
{
cout << endl;
agency.changePack(id);
cu::pauseConsole();
}
break;
case 3: // Make Pack Unavaiable
if (selectPackMenu(agency, id, "Make Pack Unavailable", true))
{
agency.makePackUnavailableById(id);
cu::pauseConsole();
}
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
void purchasePackMenu(Agency & agency)
{
int id, vat, tickets;
char op;
if (selectClientMenu(agency, vat, "Client responsible for the Purchase"))
{
if (agency.isVatUsed(vat))
{
cu::clearConsole();
if (selectPackMenu(agency, id, "Pack to buy", true))
{
if (agency.isIdUsed(id))
{
cu::clearConsole();
if (cu::readInt(tickets, "Number of tickets to buy"))
{
// Only enters if all operations were successful
cu::clearConsole();
cout << "Purchase details:" << endl << endl;
cout << "CLIENT:" << endl;
if (!agency.printClientByVAT(vat))
{
cout << "Operation aborted";
cu::pauseConsole();
return;
}
cout << endl << "PACK:" << endl;
if (!agency.printPackById(id))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
return;
}
cout << endl << "TICKETS: " << tickets << endl << endl;
if (!cu::readConfirmation(op, "Do you want to proceed with the Purchase"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
return;
}
if (op == 'y')
{
agency.purchasePack(vat, id, tickets);
cu::pauseConsole();
return;
}
}
else
{
cout << "Operation aborted" << endl;
return;
}
}
else
{
cout << "Pack with id \"" << id << "\" not found" << endl;
}
}
else
{
return;
}
}
else
{
cout << "Client with VAT \"" << vat << "\" not found" << endl;
}
}
else
{
return;
}
// Ends up here if any of the operations were unsuccessful
cout << "Operation aborted" << endl;
cu::pauseConsole();
return;
}
void statisticsMenu(Agency & agency)
{
int op = -1;
bool back = false;
while (!back)
{
op = -1;
cout << "-------- Agency Statistics --------" << endl << endl;
printMenu({ "Previous Menu", // 0
"Show statistics", // 1
"Most visited Destinations", // 2
"Client Recommendations" }); // 3
while (op < 0 || op > 3)
{
if (!cu::readInt(op, "Select Option"))
return;
}
cu::clearConsole();
int n;
switch (op)
{
case 0:
back = true;
break;
case 1: // Show Agency Statistics
cout << "-------- Statistics --------" << endl << endl;
agency.printStatistics();
cout << endl;
cu::pauseConsole();
break;
case 2: // Most Visited Destinations
cout << "-------- Most visited Destinations --------" << endl << endl;
if (!cu::readInt(n, "How many destinations do you wish to see"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
cout << endl;
agency.printMostVisitedDestinations(n);
cu::pauseConsole();
break;
case 3: // Client Pack Recommendations
cout << "-------- Client Recommendations --------" << endl << endl;
if (!cu::readInt(n, "How many destinations to focus the search"))
{
cout << "Operation aborted" << endl;
cu::pauseConsole();
break;
}
cout << endl;
agency.printClientRecommendations(n);
cu::pauseConsole();
break;
default:
cout << "Wrong Input" << endl;
cu::pauseConsole();
break;
}
cu::clearConsole();
} // End while (!back)
}
bool loadAgencyDataMenu(Agency & agency)
{
char op;
string s;
if (!cu::readConfirmation(op, "Do you wish to load Agency Data"))
{
cout << "Operation aborted by user" << endl;
return false;
}
if (op == 'n')
{
cout << "If the Agency has incorrect Data loaded, it may lead to unexpected behaviour" << endl
<< "Proceed at own risk" << endl;
cu::pauseConsole();
return true;
}
if (!cu::readStr(s, "Agency file name"))
{
cout << "Operation aborted by user" << endl;
return false;
}
string error;
if (agency.loadData(s, error))
{
cout << "Agency loaded successfully" << endl;
return true;
}
else
{
cout << error << endl;
return false;
}
}
// Public Function
void agencyMainMenu(Agency & agency)
{
bool stopProgram = false;
int op = -1;
if (!loadAgencyDataMenu(agency))
{
cout << "Something went wrong, exiting..." << endl;
cu::pauseConsole();
return;
}
while (!stopProgram)
{
op = -1;
cu::clearConsole();
// Imprime o menu principal
cout << "-------- Main Menu --------" << endl << endl;
printMenu({ "Terminate program", // 0
"Save changes", // 1
"Manage Clients", // 2
"Manage Packs", // 3
"View Clients", // 4
"View Packs", // 5
"View Packs Sold", // 6
"Purchase a Pack", // 7
"Statistics" }); // 8
cout << "At any point enter Ctrl+Z to cancel or to go back to a previous menu\n" << endl;
while (op < 0 || op > 9)
{
if (!cu::readInt(op, "Insert option"))
{
confirmSaveData(agency);
return;
}
}
cu::clearConsole();
// SWITCH STATEMENT HERE
switch (op)
{
case 1: // Save Changes
confirmSaveData(agency);
break;
case 2: // Manage Clients
manageClients(agency);
break;
case 3: // Manage Packs
managePacks(agency);
break;
case 4: // View Clients
viewClients(agency);
break;
case 5: // View Packs
viewPacks(agency);
break;
case 6: // View Packs Sold
viewPacksSoldMenu(agency);
break;
case 7: // Purchase Pack
purchasePackMenu(agency);
break;
case 8: // Statistics
statisticsMenu(agency);
break;
case 0: // Finish Program
stopProgram = true;
break;
default:
cout << "Invalid Input" << endl;
cu::pauseConsole();
break;
}
} // End while(!stopProgram)
cu::clearConsole();
confirmSaveData(agency);
}
// T1G02
// up201800170 Breno Accioly
// up201806516 Tiago Silva