mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Update play-pong.ps1
This commit is contained in:
parent
9cdcf3c303
commit
bee97e90c6
@ -2,7 +2,8 @@
|
||||
.SYNOPSIS
|
||||
Play the Pong game
|
||||
.DESCRIPTION
|
||||
This PowerShell script lets you play the Pong game.
|
||||
This PowerShell script lets 2 players play the famous Pong game.
|
||||
NOTE: Player 1: <W> moves up, <S> moves down | Player 2: <UP> or <DOWN> | <ESC> to quit
|
||||
.EXAMPLE
|
||||
PS> ./play-pong.ps1
|
||||
.LINK
|
||||
@ -12,13 +13,13 @@
|
||||
#>
|
||||
|
||||
function DrawScores {
|
||||
$middle = [System.Console]::WindowWidth / 2
|
||||
[System.Console]::SetCursorPosition($middle - 4, 1)
|
||||
$x = [System.Console]::WindowWidth / 2 - 4
|
||||
[System.Console]::SetCursorPosition($x, 1)
|
||||
[System.Console]::Write("$($script:scorePlayer1) - $($script:scorePlayer2)")
|
||||
}
|
||||
|
||||
function DrawFooter {
|
||||
$text = "| Player 1: <W> for up, <S> for down | Player 2: <UP> or <DOWN> | ESC key to quit |"
|
||||
$text = "| Player 1: <W> moves up, <S> moves down | Player 2: <UP> or <DOWN> | <ESC> to quit |"
|
||||
$x = ([System.Console]::WindowWidth - $text.Length) / 2
|
||||
$y = [System.Console]::WindowHeight - 1
|
||||
[System.Console]::SetCursorPosition($x, $y)
|
||||
@ -54,7 +55,7 @@ function DrawBall($x, $y) {
|
||||
return
|
||||
}
|
||||
[System.Console]::SetCursorPosition($x, $y)
|
||||
[System.Console]::Write("O")
|
||||
Write-Host "o" -foregroundColor red -noNewline
|
||||
}
|
||||
|
||||
function ClearBall($x, $y) {
|
||||
@ -152,4 +153,5 @@ while ($true) {
|
||||
|
||||
Start-Sleep -Milliseconds 100
|
||||
}
|
||||
[System.Console]::Clear()
|
||||
[System.Console]::Clear()
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user