PoshCode Archive  Artifact [1abcad5c4c]

Artifact 1abcad5c4c8d5fe4c464f1e1bf6b43ec5ba85975f9bb9137b65a6c6169685d9d:

  • File Write-Typewriter.ps1 — part of check-in [a519f24049] at 2018-06-10 14:10:04 on branch trunk — Make write-host text appear as if it is being typed on a typewriter (user: Nathan Kasco size: 3344)

# encoding: ascii
# api: powershell
# title: Write-Typewriter
# description: Make write-host text appear as if it is being typed on a typewriter
# version: 1.0
# type: function
# author: Nathan Kasco
# license: CC0
# function: Write-Typewriter
# x-poshcode-id: 6194
# x-archived: 2016-03-18T21:06:55
# x-published: 2016-01-26T14:09:00
#
#
#Typewriter Text
function Write-Typewriter
{
<#
.Synopsis
   Make write-host text appear as if it is being typed on a typewriter
.DESCRIPTION
   Input text and if desired specify the write speed (5-250 milliseconds) for the text
   Note: If $BlinkCursor = True you will clear-host by default
.EXAMPLE
   Write-Typewriter "Hello world!"
.EXAMPLE
   Write-Typewriter "Hello world!" 250
.EXAMPLE
   Write-Typewriter "Hello world!" 250 -ClearHost $true
.EXAMPLE
   Write-Typewriter "Hello world!" 250 -BlinkCursor $true -BlinkSpeed 500
.NOTES
   v1.0 - 2016-01-25 - Nathan Kasco
#>

    [OutputType([string])]

    Param
    (
        [Parameter(Mandatory=$true, Position=0)]
        [alias("Name")]
        [string]
        $Text,
        
        [Parameter(Mandatory=$false, Position=1)]
        [ValidateRange(5,250)]
        [int]
        $TypeSpeed = 125,

        [Parameter(Mandatory=$false, Position=2)]
        [bool]
        $BlinkCursor = $false,

        [Parameter(Mandatory=$false, Position=3)]
        [int]
        $BlinkSpeed = 350,

        [Parameter(Mandatory=$false, Position=4)]
        [bool]
        $ClearHost = $false
    )

    function sleep-host{
        Start-Sleep -Milliseconds $typeSpeed
    }

    function blink-cursor{
        param(
            [parameter(mandatory=$false, position=0)]
            [bool]
            $last = $false
        )

        cls
        Write-Host $Text -NoNewline
        Write-Host "|"
        Start-Sleep -Milliseconds $BlinkSpeed

        cls
        #End on a new line
        if($last -eq $true)
        {
            Write-Host $Text
        }
        else{
            Write-Host $Text -NoNewline
        }
        Start-Sleep -Milliseconds 250
    }

    #Check to see if user activated blinking cursor after text output
    if($BlinkCursor -eq $true){
        $ClearHost = $true
    }

    #Cycle through letters
    $count = 0
    
    if($ClearHost -eq $true){
        cls
    }
    
    if($ClearHost -eq $false){

        while($count -lt $Text.Length){
            if($count -eq ($Text.Length - 1)){
                Write-Host $text.Chars($count)
            }
            else
            {
                Write-Host $text.Chars($count) -NoNewline
            }
            sleep-host
            $count++
        }
    }
    else{
        while($count -lt $text.Length){
            if($count -eq ($Text.Length - 1)){
                Write-Host $text.Chars($count)
            }
            else
            {
                Write-Host $text.Chars($count) -NoNewline
            }
            sleep-host
            $count++
        }
    }

    #Blinking cursor after text effect
    if($BlinkCursor -eq $true){
        $blinkCount = 0
        while($blinkCount -lt 4)
        {
            blink-cursor
            $blinkCount++
        }

        blink-cursor -last $true
    }
}