-
Notifications
You must be signed in to change notification settings - Fork 11
/
cowsay.psm1
284 lines (228 loc) · 5.97 KB
/
cowsay.psm1
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
#
# Posh-Cowsay
# PowerShell version of the venerable cowsay unix program.
#
# Copyright (c) 2014 John Kane
# https://github.com/kanej/posh-cowsay
#
# Based on Tony Monroe's cowsay:
# http://www.nog.net/~tony/warez/cowsay-3.03.tar.gz
#
# Licensed under the GNU GPL version 3.0
#
#requires -Version 2.0
# Posh-Cowsay Version
$version = "0.2.0"
# Max Width of the Speech Bubble
$bubbleWidth = 40
# The different modes that are supported
$modes = @{
"-b"= @("==", ' ') # Borg
"-d"= @("XX", 'U') # Dead
"-g"= @('$$', ' ') # Greedy
"-p"= @("@@", ' ') # Paranoid
"-s"= @("**", 'U') # Stoned
"-y"= @("..", ' ') # Youthful
}
# Public
<#
.Synopsis
Prints the given text to the console as if a cow had said it.
.Description
Posh-Cowsay generates an ASCII art picture of a cow saying something
provided by the user. It word-wraps the message at about 40
columns, and prints the cow saying the given message on standard
output.
Different modes can be enabled by passing the appropriate option.
For instance -d will enable Dead mode, were the cow shown appears
to be dead. The complete list of options are:
Borg -b
Dead -d
Greedy -g
Paranoid -p
Stoned -s
Youthful -y
The -version or -v option will display the version of Posh-Cowsay.
.Link
https://github.com/kanej/posh-cowsay
.Example
cowsay moo
Description
-----------
Takes "moo" to be the message and prints the text within a
speech bubble, followed by the cow:
_____
< moo >
-----
\ ^__^
\ (oo)\________
(__)\ )\/\
||----w |
|| ||
.Example
"moo" | cowsay
Description
-----------
The message can be piped in as well, giving the same result:
_____
< moo >
-----
\ ^__^
\ (oo)\________
(__)\ )\/\
||----w |
|| ||
.Example
cowsay -b Resistance is Bovine
Description
-----------
The borg mode can be enabled by passing -b option, giving a cow that
has joined the Collective:
______________________
< Resistance is Bovine >
----------------------
\ ^__^
\ (==)\________
(__)\ )\/\
||----w |
|| ||
#>
function Cowsay() {
$params
$messageArgs = @()
$eyes = "oo"
$tongue = " "
foreach($arg in $args) {
if($arg -eq "-v" -or $arg -eq "-version") {
Print-Version
return
}
if($modes.keys -contains $arg) {
$eyes = $modes[$arg][0]
$tongue = $modes[$arg][1]
continue
}
$messageArgs += $arg
}
$inputList = @($input)
if ($inputList.Count -eq 0) {
$params = ,$messageArgs
} else {
$params = ,$messageArgs +@($inputList)
}
$message = [string[]]$params
Print-MessageBubble($message)
Print-Cow $eyes $tongue
}
# Private
function Print-MessageBubble($message) {
$lines = Convert-MessageToLines($message)
$lineWidth = Max-Width($lines)
Write-MessageBubbleBoundaryLine -lineWidth $lineWidth -boundaryChar '_'
foreach ($index in 0..($lines.length - 1)) {
$delimiters = Determine-MessageBubbleDelimiters $index $lines.length
$paddedLine = ' ' + $lines[$index] + ' '
Write-MessageBubbleLine -lineWidth $lineWidth -delimiters $delimiters -text $paddedLine
}
Write-MessageBubbleBoundaryLine -lineWidth $lineWidth -boundaryChar '-'
}
function Print-Cow($eyes="oo", $tongue=" ") {
Write-Output " \ ^__^ "
Write-Output " \ ($eyes)\________ "
Write-Output " (__)\ )\/\"
Write-Output " $tongue ||----w | "
Write-Output " || || "
}
function Print-Version() {
Print-MessageBubble("Posh-Cowsay version $version")
Print-Cow
}
# Helper Functions
function Convert-MessageToLines($message) {
$words = Split-Message $message
$lines = @()
$line = ""
foreach($word in $words) {
if(($line.length + $word.length + 1) -gt $bubbleWidth) {
if($line -ne "") {
$lines += ,$line
}
$line = $word
} else {
if($line -eq "") {
$line = $word
} else {
$line += " " + $word
}
}
}
$lastLine = $line
$lines += ,$lastLine
return ,$lines
}
function Split-Message($message) {
$wordsSplitOnSpaces = $message.split(" ")
$words = [string[]]@()
foreach($longWord in $wordsSplitOnSpaces) {
$splitWords = Split-Word($longWord)
foreach($word in $splitWords) {
if($word -ne "") {
$words+= ,[string]$word
}
}
}
return ,[string[]]$words
}
function Split-Word($word) {
if($word.length -le $bubbleWidth) {
return ,[string[]]@($word)
}
$splits = [string[]]@()
foreach($i in (0..($word.length / $bubbleWidth))) {
$startPoint = ($i * $bubbleWidth)
if(($startPoint + $bubbleWidth) -gt $word.length) {
$splits += $word.substring($startPoint)
} else {
$splits += $word.substring($startPoint, $bubbleWidth)
}
}
return ,[string[]]$splits
}
function Max-Width($lines) {
$maxLength = 0
foreach($line in $lines) {
if($line.length -gt $maxLength) {
$maxLength = $line.length
}
}
return $maxLength
}
function Write-MessageBubbleBoundaryLine($lineWidth, $boundaryChar) {
Write-MessageBubbleLine -lineWidth $lineWidth `
-delimiters ' ' `
-text ("".padRight($lineWidth + 2, $boundaryChar))
}
function Write-MessageBubbleLine($lineWidth, $delimiters, $text) {
$line = $delimiters[0] + ($text.padRight($lineWidth + 2, ' ')) + $delimiters[1]
Write-Output $line.trimEnd()
}
function Determine-MessageBubbleDelimiters($lineNumber, $totalNumberOfLines) {
# single line
if($totalNumberOfLines -eq 1) {
return '<>'
}
# first line
if($lineNumber -eq 0) {
return '/\'
}
# last line
if($lineNumber -eq ($totalNumberOfLines -1)) {
return '\/'
}
# middle line
return '||'
}
# Exports
Export-ModuleMember Cowsay
Export-ModuleMember Split-Word
Export-ModuleMember Split-Message