forked from dancergraham/HeadFirstDesignPatterns_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenus.py
158 lines (135 loc) · 4.03 KB
/
menus.py
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
# package headfirst.designpatterns.iterator.dinermergercafe
class MenuItem:
def __init__(
self,
name: str,
description: str,
vegetarian: bool,
price: float,
):
self.name = name
self.description = description
self.vegetarian = vegetarian
self.price = price
class Menu:
def __iter__(self):
raise NotImplementedError
class CafeMenu(Menu):
def __init__(self) -> None:
self.menu_items = {}
self.add_item(
"Veggie Burger and Air Fries",
"Veggie burger on a whole wheat bun, lettuce, tomato, and fries",
True,
3.99,
)
self.add_item(
"Soup of the day",
"A cup of the soup of the day, with a side salad",
False,
3.69,
)
self.add_item(
"Burrito",
"A large burrito, with whole pinto beans, salsa, guacamole",
True,
4.29,
)
def add_item(
self,
name: str,
description: str,
vegetarian: bool,
price: float,
):
self.menu_items[name] = MenuItem(name, description, vegetarian, price)
def __iter__(self):
return iter(self.menu_items.values())
class DinerMenu(Menu):
def __init__(self):
self.menu_items = []
self.add_item(
"Vegetarian BLT",
"(Fakin') Bacon with lettuce & tomato on whole wheat",
True,
2.99,
)
self.add_item("BLT", "Bacon with lettuce & tomato on whole wheat", False, 2.99)
self.add_item(
"Soup of the day",
"Soup of the day, with a side of potato salad",
False,
3.29,
)
self.add_item(
"Hotdog",
"A hot dog, with sauerkraut, relish, onions, topped with cheese",
False,
3.05,
)
self.add_item(
"Steamed Veggies and Brown Rice",
"A medly of steamed vegetables over brown rice",
True,
3.99,
)
self.add_item(
"Pasta",
"Spaghetti with Marinara Sauce, and a slice of sourdough bread",
True,
3.89,
)
def add_item(
self,
name: str,
description: str,
vegetarian: bool,
price: float,
):
self.menu_items.append(MenuItem(name, description, vegetarian, price))
def __iter__(self):
return iter(self.menu_items)
class Waitress:
def __init__(self, cafe_menu, diner_menu):
self.cafe_menu = cafe_menu
self.diner_menu = diner_menu
def _print_menu(self, itermenu):
for menu_item in itermenu:
print(f"{menu_item.name}, {menu_item.price} -- {menu_item.description}")
def print_menu(self):
print("MENU\n----\nBREAKFAST")
print("not implemented")
print("\nLUNCH")
self._print_menu(self.diner_menu)
print("\nDINNER")
self._print_menu(self.cafe_menu)
def _is_vegetarian(self, name, itermenu):
for menu_item in itermenu:
if menu_item.name == name:
return menu_item.vegetarian
return False
def is_item_vegetarian(self, name):
if self._is_vegetarian(name, self.cafe_menu):
return True
if self._is_vegetarian(name, self.diner_menu):
return True
return False
def menu_test_drive():
cafe_menu = CafeMenu()
diner_menu = DinerMenu()
waitress = Waitress(cafe_menu, diner_menu)
waitress.print_menu()
print("\nCustomer asks, is the Hotdog vegetarian?")
print("Waitress says: ", end="")
if waitress.is_item_vegetarian("Hotdog"):
print("Yes")
else:
print("No")
""" print("\nCustomer asks, are the Waffles vegetarian?") # Not implemented
print("Waitress says: ", end="")
if (waitress.is_item_vegetarian("Waffles")):
print("Yes")
else:
print("No")"""
if __name__ == "__main__":
menu_test_drive()