-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.cpp
692 lines (634 loc) · 14.6 KB
/
shop.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
/*
* main.cpp
*
* Created on: Mar 19, 2014
* Author: Dimitar Panayotov
*/
#include <iostream>
#include <cstring>
#include <cassert>
using namespace std;
class Label
{
private:
char* content;
int barcode;
public:
Label();
Label(char*, int);
Label(const Label&);
Label&operator=(const Label&);
~Label();
void setContent(char*);
void setBarcode(int);
char* getContent() const;
int getBarcode() const;
void printLabel() const;
void readLabel();
};
class Expiration
{
private:
int day, month, year;
public:
Expiration();
Expiration(int, int, int);
Expiration(const Expiration&);
Expiration&operator=(const Expiration&);
~Expiration();
void setDay(int);
void setMonth(int);
void setYear(int);
int getDay() const;
int getMonth() const;
int getYear() const;
};
class Product
{
private:
char* name;
double weight, price;
Expiration expDate;
Label label;
public:
Product();
Product(char*, double, double, Expiration, Label);
Product(const Product&other);
Product&operator=(const Product&);
~Product();
void setName(char*);
void setWeight(double);
void setPrice(double);
void setExpiration(Expiration);
void setLabel(Label);
char* getName() const;
double getWeight() const;
double getPrice() const;
Expiration getExpDate() const;
Label getLabel() const;
};
class Shopper
{
private:
double cash;
Product* shoppingList;
int numberOfProducts;
public:
Shopper();
Shopper(double, Product*, int);
Shopper(const Shopper&);
Shopper&operator=(const Shopper&);
~Shopper();
void setCash(double);
void setProducts(Product*);
void setProductsN(int);
double getCash() const;
Product* getProducts() const;
double productsWeight();
double productsPrice();
bool hasMoney();
void cashIn();
Product* addProduct(Product);
Product* removeProduct(char*);
};
//start Label
Label::Label()//ok
{
content = new char[1];
assert(content != NULL);
content[0] = '\0';
barcode = 0;
}
Label::Label(const Label &other)//ok
{
content = new char[strlen(other.content) + 1];
assert(content != NULL);
strcpy(content, other.content);
barcode = other.barcode;
}
Label::Label(char* c, int b)//ok
{
if (c != NULL && strcmp(c, "") > 0)
{
content = new char[strlen(c) + 1];
assert(content != NULL);
strcpy(content, c);
}
else
{
content = new char[1];
assert(content != NULL);
content[0] = '\0';
}
if (b > 0)
{
barcode = b;
}
else
{
barcode = 0;
}
}
Label& Label::operator=(const Label& other)//ok
{
if (this != &other)
{
if (content != NULL)
{
delete[] content;
}
content = new char[strlen(other.content) + 1];
strcpy(content, other.content);
barcode = other.barcode;
}
return *this;
}
Label::~Label()//ok
{
if (content != NULL)
{
delete[] content;
}
}
void Label::setContent(char *c)
{
if (c != NULL && strcmp(c, "") > 0)
{
delete[] content;
content = new char[strlen(c) + 1];
assert(content != NULL);
strcpy(content, c);
}
else
{
delete[] content;
content = new char[1];
assert(content != NULL);
content[0] = '\0';
}
}
void Label::setBarcode(int b)
{
if (b > 0)
{
barcode = b;
}
else
{
barcode = 0;
}
}
char* Label::getContent() const
{
return content;
}
int Label::getBarcode() const
{
return barcode;
}
void Label::readLabel()
{
int bar;
char con[100];
cout << "Enter barcode: ";
cin >> bar;
setBarcode(bar);
cin.get();
cout << "Enter content: ";
cin.getline(con, 100);
setContent(con);
}
void Label::printLabel() const
{
cout << "Label:" << endl;
cout << "Content: " << content << endl;
cout << "Barcode: " << barcode << endl;
cout << "End of label" << endl;
}
//end Label
//start Expiration
Expiration::Expiration()
{
day = 0;
month = 0;
year = 0;
}
Expiration::Expiration(int d, int m, int y)
{
day = d;
month = m;
year = m;
}
Expiration& Expiration::operator=(const Expiration& other)
{
if (this != &other)
{
day = other.day;
month = other.month;
year = other.year;
}
return *this;
}
Expiration::Expiration(const Expiration& other)
{
day = other.day;
month = other.month;
year = other.month;
}
Expiration::~Expiration()
{
//do something ?!
}
void Expiration::setDay(int d)
{
day = d;
}
void Expiration::setMonth(int m)
{
month = m;
}
void Expiration::setYear(int y)
{
year = y;
}
int Expiration::getDay() const
{
return day;
}
int Expiration::getMonth() const
{
return month;
}
int Expiration::getYear() const
{
return year;
}
//end Expiration
//start Product
Product::Product() // : label(), expDate()
{
name = new char[1];
assert(name != NULL);
name[0] = '\0';
weight = 0;
price = 0;
expDate = Expiration();
label = Label();
}
Product::Product(const Product& other)// : label(other.label), expDate(other.expDate)
{
name = new char[strlen(other.name) + 1];
assert(name!= NULL);
strcpy(name, other.name);
price = other.price;
weight = other.weight;
label = other.label;
expDate = other.expDate;
}
Product& Product::operator=(const Product& other)//ok
{
if (this != &other)
{
if (name != NULL)
{
delete[] name;
}
name = new char[strlen(other.name) + 1];
assert(name != NULL);
strcpy(name, other.name);
price = other.price;
weight = other.weight;
label = other.label;
expDate = other.expDate;
}
return *this;
}
Product::Product(char* prName, double prWeight, double prPrice,/*const Expiration&*/Expiration prExpDate,/*const Label&*/ Label prLabel)//:expDate(prExpDate), label(prLabel)
{
if (prName != NULL && strcmp(prName, "")>0)
{
name = new char[strlen(prName) + 1];
assert(name != NULL);
strcpy(name, prName);
}
else
{
name = new char[1];
assert(name != NULL);
name[0] = '\0';
}
weight = prWeight;
price = prPrice;
expDate = prExpDate;
label = prLabel;
}
Product::~Product()
{
delete [] name;
}
void Product::setName(char* prName)//ок
{
if (prName != NULL && strcmp(prName, "")>0)
{
delete[] name;
name = new char[strlen(prName) + 1];
assert(name != NULL);
strcpy(name, prName);
}
else
{
delete[] name;
name = new char[1];
assert(name != NULL);
name[0] = '\0';
}
}
void Product::setWeight(double prWeight)//ок
{
if (prWeight > 0)
{
weight = prWeight;
}
}
void Product::setPrice(double prPrice)//ок
{
if (prPrice > 0)
{
price = prPrice;
}
}
void Product::setExpiration(Expiration prExp)//ок
{
expDate = prExp;
}
void Product::setLabel(Label prLabel)//ok
{
label = prLabel;
}
char* Product::getName() const
{
return name;
}
double Product::getWeight() const
{
return weight;
}
double Product::getPrice() const
{
return price;
}
Expiration Product::getExpDate() const
{
return expDate;
}
Label Product::getLabel() const
{
return label;
}
//end Product
//start Shopper
Shopper::Shopper()
{
cash = 0;
numberOfProducts = 1;
Expiration expir;
Label lab;
Product pr;
shoppingList = new Product[numberOfProducts];
shoppingList[0] = pr;
}
Shopper::Shopper(double shCash, Product* pr, int numPr)
{
cash = shCash;
numberOfProducts = numPr;
if(pr != NULL)
{
shoppingList = new Product[numberOfProducts];
assert(shoppingList != NULL);
for(int i=0; i<numberOfProducts; i++)
{
shoppingList[i] = pr[i];
}
}
else
{
Product pr;
shoppingList = new Product[numberOfProducts];
assert(shoppingList != NULL);
shoppingList[0] = pr;
}
}
Shopper::Shopper(const Shopper& other)
{
cash = other.cash;
numberOfProducts = other.numberOfProducts;
if(shoppingList != NULL)
{
delete[] shoppingList;
}
shoppingList = new Product[numberOfProducts];
assert(shoppingList != NULL);
for(int i=0; i<numberOfProducts; i++)
{
shoppingList[i] = other.shoppingList[i];
}
}
Shopper& Shopper::operator=(const Shopper& other)
{
if (this != &other)
{
cash = other.cash;
numberOfProducts = other.numberOfProducts;
if(shoppingList != NULL)
{
delete[] shoppingList;
}
assert(shoppingList != NULL);
shoppingList = new Product[numberOfProducts];
for(int i=0; i<numberOfProducts; i++)
{
shoppingList[i] = other.shoppingList[i];
}
}
return *this;
}
Shopper::~Shopper()
{
delete[] shoppingList;
}
void Shopper::setCash(double shCash)
{
cash = shCash;
}
double Shopper::getCash() const
{
return cash;
}
void Shopper::setProductsN(int prN)
//ако имаш такава функция , която ти променя броя на продуктите е смислено и добре да промениш и самия масив
//от продукти
{
numberOfProducts = prN;
}
double Shopper::productsWeight()
{
double allWeight = 0;
for (int i = 0; numberOfProducts; i++)
{
allWeight += shoppingList[i].getWeight();
}
return allWeight;
}
double Shopper::productsPrice()
{
double allPrice = 0;
for (int i = 0; shoppingList[i].getPrice(); i++)
{
allPrice += shoppingList[i].getPrice();
}
return allPrice;
}
bool Shopper::hasMoney()
{
if (productsPrice() > cash)
{
return false;
}
return true;
}
void Shopper::cashIn()
{
if (hasMoney())
{
for (int i = 0; shoppingList[i].getPrice(); i++)
{
cash -= shoppingList[i].getPrice();
}
}
}
void Shopper::setProducts(Product* products)
{
delete[] shoppingList;
shoppingList = new Product[numberOfProducts];
for(int i=0; i<numberOfProducts; i++)
{
shoppingList[i] = products[i];
}
}
Product* Shopper::getProducts() const
//тази функция не ти е нужна, защото продктите, които си взел не искаш да ти ги вземат
//по този начин ти правиш копие на продуктите и връщаш копието
//когато функцията ти върне указател, зад който се крие динамично заделена памет
//човекът, който ще използва тази функция, трябва да се погрижи за да я изтрие, което не е добре
//друг начин, е да върнеш и самия указател, но и това не е добре
//трети и според мен най-приемлив начин е да подадеш на функцията ти 2 параметъра
//указател към Product и една int променлива, в която да запазиш размера
//правиш функцията ти да е void и работиш с параметрите й
//в main после се грижиш да си изтриеш паметта
//третото пак не е добре, но в C++ не знам по-добър начин
{
Product* newProducts = new Product[numberOfProducts];
for(int i=0; i<numberOfProducts; i++)
{
newProducts[i] = shoppingList[i];
}
return newProducts;
}
Product* Shopper::addProduct(/*const Product&*/Product newProduct)
//когато добавяш елемент ти трябва да го добавиш в текущия ти масив от обекти
//т.е. функцията най-добре да е void и правиш копие на старите продукти
//изтриваш старите, т.е. delete [] shoppingList;
//после заделяш необходимата памет за shoppingList и прекопираш нещата от newList(копието)
//после изтриваш копието и си готов :)
{
Product* newList = new Product[numberOfProducts + 1];
for(int i=0; i<numberOfProducts; i++)
{
newList[i] = this->shoppingList[i];//можеш да минеш и без this->
}
newList[numberOfProducts+1] = newProduct;
numberOfProducts++;
delete[] shoppingList;
return newList;
}
Product* Shopper::removeProduct(char* prName)
//почти същото като в горната ситуация
{
Product* newList = new Product[numberOfProducts -1];
for(int i=0; i<numberOfProducts; i++)
{
if(strcmp(this->shoppingList[i].getName(),prName)!=0)
{
newList[i] = this->shoppingList[i];
}
else
{
i++;
}
}
numberOfProducts--;
delete[] this->shoppingList;
return newList;
}
//end Shopper
int main()
{
int productsN;
double maxWeight, money;
Label lab1;
Expiration exp1;
cout<<"Enter number of products: ";
cin>>productsN;
cout<<"How much can you carry: ";
cin>>maxWeight;
cout<<"How much money do you have: ";
cin>>money;
Product* pr1 = new Product[productsN];
for(int i=0; i<productsN; i++)
{
char prName[50];
char labC[50];
int d, m, y, labB;
double weight, price;
cout<<"Enter product name: ";
cin>>prName;
cout<<"Enter Expiration (d m y): ";
cin>>d>>m>>y;
Expiration expir(d,m,y);
cout<<"Enter label content: ";
cin>>labC;
cout<<"Enter barcode: ";
cin>>labB;
Label lab(labC,labB);
cout<<"Enter weight: ";
cin>>weight;
cout<<"Enter price: ";
cin>>price;
Product pr(prName,weight,price,expir,lab);
pr1[i] = pr;
}
Shopper guy = Shopper(money,pr1,productsN);
cout<<"Cost: "<<guy.productsPrice()<<endl;
cout<<"Weight: "<<guy.productsWeight()<<endl;
if(maxWeight < guy.productsWeight())
{
cout<<"You can't carry this much weight!"<<endl;
}
if(money < guy.productsPrice())
{
cout<<"You don't have enough money!"<<endl;
}
else
{
if(money - guy.productsPrice() < 2)
{
cout<<"You don't have money to get home!"<<endl;
}
else
{
cout<<"You may now eat!"<<endl;
}
}
delete[] pr1;
return 0;
}