-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBeerGlass.ps1
More file actions
226 lines (184 loc) · 3.65 KB
/
BeerGlass.ps1
File metadata and controls
226 lines (184 loc) · 3.65 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
#Requires -Version 5
enum WineSweetness
{
VeryDry
Dry
Medium
Sweet
VerySweet
}
class Wine: iComparable
{
# Properties
[String]$Name
[String]$Winery
[Int32]$Year
[ValidateSet("Red", "White", "Rose")][String]$Color
[WineSweetness]$Sweetness
[Double]$Price = 0.0
# Constructors
Wine() { }
Wine ([String]$Name)
{
$this.Name = $Name
}
Wine (
[String]$Name,
[String]$Winery,
[Int32]$Year,
[ValidateSet("Red", "White", "Rose")][String]$Color,
[WineSweetness]$Sweetness,
[Double]$Price
)
{
$this.Name = $Name
$this.Winery = $Winery
$this.Year = $Year
$this.Color = $Color
$this.Sweetness = $Sweetness
$this.Price = $Price
}
# Converts deserialized objects
Wine ([PSObject]$InputObject)
{
$this.Name = $InputObject.Name
$this.Winery = $InputObject.Winery
$this.Year = $InputObject.Year
$this.Color = $InputObject.Color
$this.Sweetness = $InputObject.Sweetness
$this.Price = $InputObject.Price
}
# Methods
[String] toString()
{
return "$($this.Sweetness) $($this.Color) Wine: $($this.Name) $($this.Year) by $($this.Winery)." +
" Priced at: $("{0:C}" -f $this.Price)."
}
static [Boolean] IsAged ([Wine]$Wine)
{
return (((Get-Date).Year - $Wine.Year) -ge 10)
}
[int] CompareTo ([Object]$otherWine)
{
if (!($otherWine.Year)) { return [Int]::MaxValue }
return $this.Year.CompareTo($otherWine.Year)
}
}
class Glass
{
# Properties
[int32]$Size
[int32]$CurrentAmount
# Constructors
Glass () { }
Glass ($Size, $Amount)
{
$this.Size = $Size
$this.CurrentAmount = $Amount
}
[Boolean] Fill ([int32]$volume)
{
if ($this.currentAmount + $volume -le $this.Size)
{
$this.CurrentAmount += $volume
return $true
}
else
{
Write-Warning "Sorry. The glass isn't big enough. You have room for $($this.Size - $this.CurrentAmount)."
return $false
}
}
[Boolean] Drink ([int32]$amount)
{
if ($this.CurrentAmount - $amount -ge 0)
{
$this.CurrentAmount -= $amount
return $true
}
elseif ($this.CurrentAmount -eq 0)
{
Write-Warning "Glass is empty. Time to refill."
return $false
}
else
{
Write-Warning "Not enough left. Only $($this.CurrentAmount)..."
return $false
}
}
}
class AnyGlass: Glass { }
class WineGlass: Glass
{
#Properties
[Wine]$Wine
#Hidden properties
hidden [Int]$Consumed
hidden [Int]$TotalPoured
#Constructors
WineGlass () { }
WineGlass ([Wine]$Wine, [int]$Size, [int]$Pour)
{
$this.Wine = $Wine
$this.Size = $Size
$this.CurrentAmount = $Pour
$this.TotalPoured = $Pour
}
#Methods
[void] Drink ([int32]$Amount)
{
if (([Glass]$this).Drink($Amount))
{
$this.Consumed += $Amount
}
}
Sip()
{
$this.Drink(1)
}
[void] Fill ([int32]$volume)
{
if (([Glass]$this).Fill($volume))
{
$this.TotalPoured += $volume
}
}
Refill ()
{
$this.Fill($this.Size - $this.CurrentAmount)
}
[Boolean] IsTipsy ()
{
return ($this.Consumed -ge 20)
}
[String] GetCheck ()
{
# Standard bottle = 25 oz = 750 ml
return "{0:C}" -f ([System.Math]::Ceiling($this.TotalPoured / 25) * $this.Wine.Price)
}
[String] toString ()
{
return "My $($this.Size)-oz. wine glass contains $($this.CurrentAmount) oz. of $($this.Wine.Name) by $($this.Wine.Winery)."
}
}
class BeerGlass: Glass
{
[String]$BeerName
Gulp ()
{
$this.Drink(3)
}
Spill ()
{
$this.currentAmount = 0
Write-Warning "Oops! You've spilled your beer!"
}
Refill ()
{
$this.CurrentAmount = $this.Size
}
}
$PSWine = [Wine]::new("PSWine", "Chateau Snover", "2012", "Red", "Dry", 40)
$myWineGlass = [WineGlass]::new($PSWine, 8, 5)
$myBeerGlass = [BeerGlass]@{ BeerName = "Polygamy Porter"; Size = 16; CurrentAmount = 16 }