-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decorator.cpp
149 lines (126 loc) · 3.72 KB
/
decorator.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
#include <iostream>
#include <string>
using namespace std;
// размеры чашек
enum class Size { S = 80, M = 180, L = 280, XXL = 500 };
class Drink abstract // базовый абстрактный напиток
{
protected:
Size size;
double price;
string description;
public:
Size getSize() const
{
return size;
}
double getPrice() const
{
return price;
}
string getDescription() const
{
return description;
}
void print() const
{
cout << description << " = " << price << " UAH\n";
}
};
// чёрный чай - конкретный базовый напиток без добавок
class BlackTea : public Drink
{
public:
BlackTea(Size size)
{
this->size = size;
description = "black tea from teabag";
if (size == Size::M) price = 27; // 180г
else if (size == Size::L) price = 32; // 280г
else throw "invalid cup size";
}
};
// зелёный чай - конкретный базовый напиток без добавок
class GreenTea : public Drink
{
public:
GreenTea()
{
// size = ...
description = "green leaf tea";
price = 45;
}
};
// эспрессо - конкретный базовый напиток без добавок
class Espresso : public Drink
{
public:
Espresso()
{
// size = ...
description = "small portion of strong coffee";
price = 29;
}
};
////////////////////////////////////////////////////////////////
// базовая абстрактная добавка (надо было назвать Additive?)
class Condiment abstract : public Drink // добавка помечена как наследник напитка - это важно для реализации паттерна!
{
protected:
Drink* drink; // указатель на оригинальный напиток
};
// молоко
class MilkCondiment : public Condiment
{
public:
MilkCondiment(Drink* drink)
{
this->drink = drink; // базовый напиток, в который пойдёт добавка
description = this->drink->getDescription() + " + Milk (3 UAH)";
price = this->drink->getPrice() + 3;
}
MilkCondiment() // молоко может быть основой напитка
{
this->drink = this; // базовый напиток, в который пойдёт добавка
description = "glass of milk";
price = 10;
}
};
class ChocolateCondiment : public Condiment
{
public:
ChocolateCondiment(Drink* drink)
{
this->drink = drink;
description = this->drink->getDescription() + " + Chocolate (5 UAH)";
price = this->drink->getPrice() + 5;
}
};
class SugarCondiment : public Condiment
{
public:
SugarCondiment(Drink* drink)
{
this->drink = drink;
description = this->drink->getDescription() + " + Sugar (1 UAH)";
price = this->drink->getPrice() + 1;
}
};
int main()
{
Drink* espresso = new Espresso;
Drink* blackTea = new BlackTea(Size::L);
Drink* greenTea = new GreenTea;
espresso->print();
blackTea->print();
greenTea->print();
cout << "================================================\n";
Drink* capuccino = new SugarCondiment(new MilkCondiment(new Espresso));
capuccino->print();
Drink* chocolateCapuccino = new ChocolateCondiment(capuccino);
chocolateCapuccino->print();
Drink* extraSweetBlackTea = new SugarCondiment(new SugarCondiment(new SugarCondiment(new BlackTea(Size::L))));
extraSweetBlackTea->print();
Drink* glassOfMilk = new MilkCondiment(new MilkCondiment(new MilkCondiment));
glassOfMilk->print();
}