-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.cpp
More file actions
686 lines (661 loc) · 22.1 KB
/
Copy pathprogram.cpp
File metadata and controls
686 lines (661 loc) · 22.1 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
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
#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <sstream>
int i, cpuInRep, motherboardInRep, ramInRep, ssdInRep;
double totalPrice;
int discount;
class CPU;
class Motherboard;
class RAM;
class SSD;
class PCConfig;
void addCPUFromFile(std::string);
void addMotherboardFromFile(std::string);
void addRAMFromFile(std::string);
void addSSDFromFile(std::string);
void title();
void homePage();
void checkoutPage();
void componentPage();
void cpuPage();
void motherboardPage();
void ramPage();
void ssdPage();
double calculateTotalCost(PCConfig);
double calculateDiscountedPrice();
void generateLog(PCConfig);
class CPU {
public:
CPU() {}
CPU(std::string name, std::string socketType, int price)
: name(name), socketType(socketType), price(price) {}
std::string getName() { return name; }
std::string getSocketType() { return socketType; }
int getPrice() { return price; }
void showInfo() {
std::cout << "Model: " << name << "\n";
std::cout << "Socket Type: " << socketType << "\n";
std::cout << "Price: " << price << " BDT\n";
}
void unselect() {
name = "";
socketType = "";
price = 0;
}
friend void addCPUFromFile(std::string);
private:
std::string name, socketType;
int price;
};
class Motherboard {
public:
Motherboard() {}
Motherboard(std::string name, std::string socketType, int price)
: name(name), socketType(socketType), price(price) {}
std::string getName() { return name; }
std::string getSocketType() { return socketType; }
int getPrice() { return price; }
void showInfo() {
std::cout << "Model: " << name << "\n";
std::cout << "Socket Type: " << socketType << "\n";
std::cout << "Price: " << price << " BDT\n";
}
void unselect() {
name = "";
socketType = "";
price = 0;
}
friend void addMotherboardFromFile(std::string);
private:
std::string name, socketType;
int price;
};
class RAM {
public:
RAM() {}
RAM(std::string name, int capacity, int price)
: name(name), capacity(capacity), price(price) {}
std::string getName() { return name; }
int getCapacity() { return capacity; }
int getPrice() { return price; }
void showInfo() {
std::cout << "Model: " << name << "\n";
std::cout << "Capacity: " << capacity << "\n";
std::cout << "Price: " << price << " BDT\n";
}
friend void addRAMFromFile(std::string fileName);
private:
std::string name;
int capacity, price;
};
class SSD {
public:
SSD() {}
SSD(std::string name, int capacity, int price)
: name(name), capacity(capacity), price(price) {}
std::string getName() { return name; }
int getCapacity() { return capacity; }
int getPrice() { return price; }
void showInfo() {
std::cout << "Model: " << name << "\n";
std::cout << "Capacity: " << capacity << "\n";
std::cout << "Price: " << price << " BDT\n";
}
friend void addSSDFromFile(std::string fileName);
private:
std::string name;
int capacity, price;
};
class PCConfig {
public:
void addCPU(CPU cpu) {
char yn;
if (motherboardIsSelected == false) {
selectedCPU = cpu;
CPUIsSelected = true;
std::cout << "CPU selected successfully." << std::endl;
}
else {
if (cpu.getSocketType() == selectedMotherboard.getSocketType()) {
selectedCPU = cpu;
CPUIsSelected = true;
std::cout << "CPU selected successfully." << std::endl;
}
else {
std::cout << "This CPU isn't compatible with selected Motherboard!"
"CPU & Motherboard need to be of same socket type." << std::endl;
std::cout << "Do you want to unselect the selected motherboard and select this cpu?(Y/y for yes): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
selectedMotherboard.unselect();
motherboardIsSelected = false;
selectedCPU = cpu;
CPUIsSelected = true;
}
}
}
}
bool getCPUIsSelected() { return CPUIsSelected; }
void addMotherboard(Motherboard motherboard) {
char yn;
if (CPUIsSelected == false) {
selectedMotherboard = motherboard;
motherboardIsSelected = true;
std::cout << "Motherboard selected successfully." << std::endl;
}
else {
if (selectedCPU.getSocketType() == motherboard.getSocketType()) {
selectedMotherboard = motherboard;
motherboardIsSelected = true;
std::cout << "Motherboard selected successfully." << std::endl;
}
else {
std::cout << "Selected CPU isn't compatible with this Motherboard!"
"CPU & Motherboard need to be of same socket type." << std::endl;
std::cout << "Do you want to unselect the selected cpu and select this moyherboard?(Y/y for yes): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
selectedCPU.unselect();
CPUIsSelected = false;
selectedMotherboard = motherboard;
motherboardIsSelected = true;
}
}
}
}
bool getMotherbardIsSelected() { return motherboardIsSelected; }
void addRAM(RAM ram, int quantity) {
for (i = 0; i < quantity; i++) {
selectedRAM[numRAMs] = ram;
numRAMs++;
}
}
int getNumRAMs() { return numRAMs; }
void addSSD(SSD ssd, int quantity) {
for (i = 0; i < quantity; i++) {
selectedSSD[numSSDs] = ssd;
numSSDs++;
}
}
int getNumSSDs() { return numSSDs; }
void display() {
if (CPUIsSelected == true) {
std::cout << "CPU: " << selectedCPU.getName() << "\tPrice: " << selectedCPU.getPrice() << " BDT" << std::endl;
}
if (motherboardIsSelected == true) {
std::cout << "Motherboard: " << selectedMotherboard.getName() << "\tPrice: " << selectedMotherboard.getPrice() << " BDT" << std::endl;
}
if (numRAMs > 0) {
for (i = 0; i < numRAMs; ++i) {
std::cout << "RAM: " << selectedRAM[i].getName() << "\tPrice: " << selectedRAM[i].getPrice() << " BDT" << std::endl;
}
}
if (numSSDs > 0) {
for (i = 0; i < numSSDs; ++i) {
std::cout << "SSD: " << selectedSSD[i].getName() << "\tPrice: " << selectedSSD[i].getPrice() << " BDT" << std::endl;
}
}
}
void shortDisplay() {
std::cout << "Your selected items:" << std::endl;
if (CPUIsSelected == true) {
std::cout << "CPU: " << selectedCPU.getName() << std::endl;
}
if (motherboardIsSelected == true) {
std::cout << "Motherboard: " << selectedMotherboard.getName() << std::endl;
}
if (numRAMs > 0) {
for (i = 0; i < numRAMs; ++i) {
std::cout << "RAM: " << selectedRAM[i].getName() << std::endl;
}
}
if (numSSDs > 0) {
for (i = 0; i < numSSDs; ++i) {
std::cout << "SSD: " << selectedSSD[i].getName() << std::endl;
}
}
}
friend double calculateTotalCost(PCConfig);
friend void generateLog(PCConfig);
private:
CPU selectedCPU;
bool CPUIsSelected = false;
Motherboard selectedMotherboard;
bool motherboardIsSelected = false;
RAM selectedRAM[100];
SSD selectedSSD[100];
int numRAMs = 0;
int numSSDs = 0;
};
CPU cpuRepository[100];
Motherboard motherboardRepository[100];
RAM ramRepository[100];
SSD ssdRepository[100];
PCConfig customerConfig;
int main() {
addCPUFromFile("Private/cpu_repository.txt");
addMotherboardFromFile("Private/motherboard_repository.txt");
addRAMFromFile("Private/ram_repository.txt");
addSSDFromFile("Private/ssd_repository.txt");
homePage();
return 0;
}
void addCPUFromFile(std::string fileName) {
std::ifstream file(fileName);
if (!file) {
std::cerr << "Error opening file: " << fileName << std::endl;
}
else {
cpuInRep = 0;
std::string line;
while (std::getline(file, line)) {
std::stringstream ss;
ss << line;
std::string name, socketType;
int price;
char delimiter = ',';
std::getline(ss, name, delimiter);
std::getline(ss, socketType, delimiter);
ss >> price;
cpuRepository[cpuInRep].name = name;
cpuRepository[cpuInRep].socketType = socketType;
cpuRepository[cpuInRep].price = price;
cpuInRep++;
}
}
}
void addMotherboardFromFile(std::string fileName) {
std::ifstream file(fileName);
if (!file) {
std::cerr << "Error opening file: " << fileName << std::endl;
}
else {
motherboardInRep = 0;
std::string line;
while (std::getline(file, line)) {
std::stringstream ss;
ss << line;
std::string name, socketType;
int price;
char delimiter = ',';
std::getline(ss, name, delimiter);
std::getline(ss, socketType, delimiter);
ss >> price;
motherboardRepository[motherboardInRep].name = name;
motherboardRepository[motherboardInRep].socketType = socketType;
motherboardRepository[motherboardInRep].price = price;
motherboardInRep++;
}
}
}
void addRAMFromFile(std::string fileName) {
std::ifstream file(fileName);
if (!file) {
std::cerr << "Error opening file: " << fileName << std::endl;
}
else {
ramInRep = 0;
std::string line;
while (std::getline(file, line)) {
std::stringstream ss;
ss << line;
std::string name;
int capacity, price;
char delimiter = ',';
std::getline(ss, name, delimiter);
ss >> capacity >> delimiter >> price;
ramRepository[ramInRep].name = name;
ramRepository[ramInRep].capacity = capacity;
ramRepository[ramInRep].price = price;
ramInRep++;
}
}
}
void addSSDFromFile(std::string fileName) {
std::ifstream file(fileName);
if (!file) {
std::cerr << "Error opening file: " << fileName << std::endl;
}
else {
ssdInRep = 0;
std::string line;
while (std::getline(file, line)) {
std::stringstream ss;
ss << line;
std::string name;
int capacity, price;
char delimiter = ',';
std::getline(ss, name, delimiter);
ss >> capacity >> delimiter >> price;
ssdRepository[ssdInRep].name = name;
ssdRepository[ssdInRep].capacity = capacity;
ssdRepository[ssdInRep].price = price;
ssdInRep++;
}
}
}
void title() {
system("cls");
std::cout << std::endl;
std::cout << "------------------------------------------" << std::endl;
std::cout << "| PC Builder - Build your Computer |" << std::endl;
std::cout << "------------------------------------------" << std::endl;
std::cout << std::endl;
}
void homePage() {
int option;
std::string userInput;
title();
std::cout << "Home Page" << std::endl;
std::cout << std::endl;
std::cout << "1. Select Components" << std::endl;
std::cout << "2. Checkout" << std::endl;
std::cout << std::endl;
std::cout << "Press only Enter to exit." << std::endl;
std::cout << std::endl;
std::cout << "Input: ";
fflush(stdin);
UserInputHome:
std::getline(std::cin, userInput);
if (userInput.empty()) {
exit(0);
}
else {
if (userInput.length() > 1) {
std::cout << "Invalid response! Input again: ";
goto UserInputHome;
}
else {
option = userInput[0];
switch (option) {
case '1':
componentPage();
break;
case '2':
checkoutPage();
break;
default:
std::cout << "Invalid response! Input again: ";
goto UserInputHome;
}
}
}
}
void componentPage() {
char option;
std::string userInput;
title();
std::cout << std::endl;
std::cout << "Select your components (Chronologically recommended)" << std::endl;
std::cout << std::endl;
std::cout << "Core components:" << std::endl;
std::cout << "1. CPU" << std::endl;
std::cout << "2. Motherboard" << std::endl;
std::cout << "3. Ram" << std::endl;
std::cout << "4. SSD" << std::endl;
std::cout << std::endl;
customerConfig.shortDisplay();
std::cout << std::endl;
std::cout << "Input: ";
fflush(stdin);
UserInputComp:
std::getline(std::cin, userInput);
if (userInput.empty()) {
homePage();
}
else {
if (userInput.length() > 1) {
std::cout << "Invalid response! Input again: ";
goto UserInputComp;
}
else {
option = userInput[0];
switch (option) {
case '1':
cpuPage();
break;
case '2':
motherboardPage();
break;
case '3':
ramPage();
break;
case '4':
ssdPage();
break;
default:
std::cout << "Invalid response! Input again: ";
goto UserInputComp;
}
}
}
}
void checkoutPage() {
char yn;
std::string userInput, coupon;
totalPrice = calculateTotalCost(customerConfig);
title();
if (customerConfig.getCPUIsSelected() == false && customerConfig.getMotherbardIsSelected() == false
&& customerConfig.getNumRAMs() == 0 && customerConfig.getNumSSDs() == 0) {
std::cout << "No Component Selected!" << std::endl;
std::cout << "Press Enter to go back." << std::endl;
fflush(stdin);
std::getline(std::cin, userInput);
if (userInput.empty() || !userInput.empty()) {
homePage();
}
}
else {
std::cout << "Your Cart:" << std::endl;
customerConfig.display();
std::cout << std::endl;
std::cout << "Total Cost: " << totalPrice << " BDT" << std::endl;
std::cout << std::endl;
std::cout << "Do you want to confirm your purchase order?(Y/y for yes and you can't go back): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
char yn;
std::cout << "Do you have any coupon code(Y/y for yes): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
enterCoupon:
std::cout << "Enter code: ";
std::cin >> coupon;
if (coupon == "Dc2005") {
discount = 5;
calculateDiscountedPrice();
goto purchaseComplete;
}
else if (coupon == "Dc2010") {
discount = 10;
calculateDiscountedPrice();
goto purchaseComplete;
}
else if (coupon == "Dc2020") {
discount = 20;
calculateDiscountedPrice();
goto purchaseComplete;
}
else if (coupon == "Dc2030") {
discount = 40;
calculateDiscountedPrice();
goto purchaseComplete;
}
else {
std::cout << "Invalid code! Want to try again?(Y/y for yes): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
goto enterCoupon;
}
else {
std::cout << "Completing purchase without discount." << std::endl;
goto purchaseComplete;
}
}
}
else {
purchaseComplete:
generateLog(customerConfig);
std::cout << "Purchase complete. Press Enter to exit." << std::endl;
fflush(stdin);
std::getline(std::cin, userInput);
if (userInput.empty() || !userInput.empty()) {
exit(0);
}
}
}
else {
homePage();
}
}
}
void cpuPage() {
int CPUIndex;
std::string userInput;
title();
std::cout << "Select your desired CPU" << std::endl;
std::cout << std::endl;
for (i = 0; i < cpuInRep; i++) {
std::cout << i + 1 << ".\n";
cpuRepository[i].showInfo();
}
std::cout << std::endl;
if (!(std::cin >> CPUIndex) || CPUIndex < 1 || CPUIndex > cpuInRep) {
std::cout << "Invalid response!" << std::endl;
}
else {
customerConfig.addCPU(cpuRepository[CPUIndex - 1]);
std::cout << "Press Enter to continue." << std::endl;
fflush(stdin);
std::getline(std::cin, userInput);
if (userInput.empty()) {
componentPage();
}
}
}
void motherboardPage() {
int motherboardIndex;
std::string userInput;
title();
std::cout << "Select your desired Motherboard" << std::endl;
std::cout << std::endl;
for (i = 0; i < motherboardInRep; i++) {
std::cout << i + 1 << ".\n";
motherboardRepository[i].showInfo();
}
std::cout << std::endl;
if (!(std::cin >> motherboardIndex) || motherboardIndex < 1 || motherboardIndex > motherboardInRep) {
std::cout << "Invalid response!" << std::endl;
}
else {
customerConfig.addMotherboard(motherboardRepository[motherboardIndex - 1]);
std::cout << "Press Enter to continue." << std::endl;
fflush(stdin);
std::getline(std::cin, userInput);
if (userInput.empty()) {
componentPage();
}
}
}
void ramPage() {
int ramIndex, quantity;
char yn;
title();
std::cout << "Select your desired RAM" << std::endl;
std::cout << std::endl;
for (i = 0; i < ramInRep; i++) {
std::cout << i + 1 << ".\n";
ramRepository[i].showInfo();
}
std::cout << std::endl;
selectRAM:
std::cout << "Select: ";
if (!(std::cin >> ramIndex) || ramIndex < 1 || ramIndex > ramInRep) {
std::cout << "Invalid response!" << std::endl;
}
else {
std::cout << "Quantity: ";
std::cin >> quantity;
customerConfig.addRAM(ramRepository[ramIndex - 1], quantity);
std::cout << "Do you want to select more (Y/y for yes): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
goto selectRAM;
}
else {
componentPage();
}
}
}
void ssdPage() {
int ssdIndex, quantity;
char yn;
title();
std::cout << "Select your desired SSD" << std::endl;
std::cout << std::endl;
for (i = 0; i < ssdInRep; i++) {
std::cout << i + 1 << ".\n";
ssdRepository[i].showInfo();
}
std::cout << std::endl;
selectSSD:
std::cout << "Select: ";
if (!(std::cin >> ssdIndex) || ssdIndex < 1 || ssdIndex > ssdInRep) {
std::cout << "Invalid response!" << std::endl;
}
else {
std::cout << "Quantity: ";
std::cin >> quantity;
customerConfig.addSSD(ssdRepository[ssdIndex - 1], quantity);
std::cout << "Do you want to select more (Y/y for yes): ";
std::cin >> yn;
if (yn == 'y' || yn == 'Y') {
goto selectSSD;
}
else {
componentPage();
}
}
}
double calculateTotalCost(PCConfig config) {
double totalCost = 0.0;
totalCost = config.selectedCPU.getPrice() + config.selectedMotherboard.getPrice();
for (int i = 0; i < config.numRAMs; ++i) {
totalCost += config.selectedRAM[i].getPrice();
}
for (i = 0; i < config.numSSDs; ++i) {
totalCost += config.selectedSSD[i].getPrice();
}
return totalCost;
}
double calculateDiscountedPrice() {
double discountedPrice;
discountedPrice = totalPrice - totalPrice * discount / 100;
return discountedPrice;
}
void generateLog(PCConfig config) {
time_t now = time(0);
char *dt = ctime(&now);
std::ofstream logFile("Private/purchase_log.txt", std::ios::app);
if (!logFile) {
std::cerr << "Error creating the log file.\n";
return;
}
logFile << "Time: " << dt;
logFile << "CPU: " << config.selectedCPU.getName() << " - " << config.selectedCPU.getPrice() << " BDT" << std::endl;
logFile << "Motherboard: " << config.selectedMotherboard.getName() << " - " << config.selectedMotherboard.getPrice() << " BDT" << std::endl;
logFile << "RAM:" << std::endl;
for (i = 0; i < config.numRAMs; ++i) {
logFile << "- " << config.selectedRAM[i].getName() << "- " << config.selectedRAM[i].getPrice() << " BDT" << std::endl;
}
logFile << "SSD:" << std::endl;
for (i = 0; i < config.numSSDs; ++i) {
logFile << "- " << config.selectedSSD[i].getName() << "- " << config.selectedSSD[i].getPrice() << " BDT" << std::endl;
}
logFile << "Total price: " << totalPrice << " BDT" << std::endl;
logFile << "Discounted price: " << calculateDiscountedPrice() << std::endl;
logFile << std::endl;
logFile.close();
}