-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPizzaStore.rb
241 lines (221 loc) · 5.87 KB
/
PizzaStore.rb
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
# abstract-factory.rb
# 1. common type interface
class Pizza
@cheese = String.new
@pina = String.new
@otrosIngredientes = String.new
@masa = String.new
@temperaturaHorno = String.new
def preparar
puts "Preparar la masa estilo: " + @masa
puts "Prepara/Agregar salsa"
puts "Agregar ingredientes:"
if(@cheese.length > 0)
puts @cheese
end
if(@pina.length > 0)
puts @pina
end
if(@otrosIngredientes.length > 0)
puts @otrosIngredientes
end
puts "Hornear a temperatura: " + @temperaturaHorno
puts "Cortar la pizza en rebanadas"
puts "Poner la pizza en su caja"
end
end
#factory-method
class PizzaStore
@pizza = Pizza.new
def createPizza
end
def orderPizza
@pizza.preparar
end
end
class PizzaIngredientFactory
def createCheese
end
def createPina
end
def createMasa
end
def temperature
end
end
class CentralCityIngredientFactory < PizzaIngredientFactory
def createCheese
"-Cheese de Central City!!"
end
def createPina
"-Pina de Central City!!"
end
def createMasa
"Masa de Central City!!"
end
def temperature
"100"
end
end
class StarCityIngredientFactory < PizzaIngredientFactory
def createCheese
"-Cheese de Star City !!"
end
def createPina
"-Piña de Star City !!"
end
def createMasa
"Masa de Star City!!"
end
def temperature
"99"
end
end
class MetropolisIngredientFactory < PizzaIngredientFactory
def createCheese
"-Cheese de MetroPolis!!"
end
def createPina
"-Piña de MetroPolis!!"
end
def createMasa
"Masa de Metropolis!!"
end
def temperature
"105"
end
end
class GothamIngredientFactory < PizzaIngredientFactory
def createCheese
"-Cheese de Gotham!!"
end
def createPina
"-Piña de Gotham!!"
end
def createMasa
"Masa de Gotham!!"
end
def temperature
"110"
end
end
# 2. implementations of common type interface
class Queso < Pizza
def initialize(ingredientFactory)
@cheese = ingredientFactory.createCheese
@pina = ""
@otrosIngredientes = ""
@masa = ingredientFactory.createMasa
@temperaturaHorno = ingredientFactory.temperature
end
end
class Peperoni < Pizza
def initialize(ingredientFactory)
@cheese = ingredientFactory.createCheese
@pina = ""
@otrosIngredientes = "-Pepperoni"
@masa = ingredientFactory.createMasa
@temperaturaHorno = ingredientFactory.temperature
end
end
class Hawaiana < Pizza
def initialize(ingredientFactory)
@cheese = ingredientFactory.createCheese
@pina = ingredientFactory.createPina
@otrosIngredientes = "-Jamon"
@masa = ingredientFactory.createMasa
@temperaturaHorno = ingredientFactory.temperature
end
end
class Alcachofas < Pizza
def initialize(ingredientFactory)
@cheese = ingredientFactory.createCheese
@pina = ""
@otrosIngredientes = "-Alcachofas"
@masa = ingredientFactory.createMasa
@temperaturaHorno = ingredientFactory.temperature
end
end
# 3. Creator class for various types
#Factories
class CentralCityStore < PizzaStore
def createPizza(type)
ingredientFactory = CentralCityIngredientFactory.new
case type
when 'Queso'
@pizza = Queso.new(ingredientFactory)
when 'Peperoni'
@pizza = Peperoni.new(ingredientFactory)
when 'Hawaiana'
@pizza = Hawaiana.new(ingredientFactory)
when 'Alcachofas'
@pizza = Alcachofas.new(ingredientFactory)
else
end
end
end
class StarCityStore < PizzaStore
def createPizza(type)
ingredientFactory = StarCityIngredientFactory.new
case type
when 'Queso'
@pizza = Queso.new(ingredientFactory)
when 'Peperoni'
@pizza = Peperoni.new(ingredientFactory)
when 'Hawaiana'
@pizza = Hawaiana.new(ingredientFactory)
when 'Alcachofas'
@pizza = Alcachofas.new(ingredientFactory)
else
end
end
end
class MetropolisStore < PizzaStore
def createPizza(type)
ingredientFactory = MetropolisIngredientFactory.new
case type
when 'Queso'
@pizza = Queso.new(ingredientFactory)
when 'Peperoni'
@pizza = Peperoni.new(ingredientFactory)
when 'Hawaiana'
@pizza = Hawaiana.new(ingredientFactory)
when 'Alcachofas'
@pizza = Alcachofas.new(ingredientFactory)
else
end
end
end
class GothamStore < PizzaStore
def createPizza(type)
ingredientFactory = GothamIngredientFactory.new
case type
when 'Queso'
@pizza = Queso.new(ingredientFactory)
when 'Peperoni'
@pizza = Peperoni.new(ingredientFactory)
when 'Hawaiana'
@pizza = Hawaiana.new(ingredientFactory)
when 'Alcachofas'
@pizza = Alcachofas.new(ingredientFactory)
else
end
end
end
puts "------------PIZZASTORE PROBLEM--------------"
myStore = CentralCityStore.new
myStore.createPizza('Queso')
myStore.orderPizza
puts "-------------------------------"
myStore = StarCityStore.new
myStore.createPizza('Peperoni')
myStore.orderPizza
puts "-------------------------------"
myStore = MetropolisStore.new
myStore.createPizza('Hawaiana')
myStore.orderPizza
puts "-------------------------------"
myStore = GothamStore.new
myStore.createPizza('Alcachofas')
myStore.orderPizza
puts "\n \n"