Update write-value.ps1

This commit is contained in:
Markus Fleschutz 2024-12-03 14:20:27 +01:00
parent 724da873d2
commit 2b6b3dc32e

View File

@ -1,78 +1,64 @@
<# <#
.SYNOPSIS .SYNOPSIS
Writes a value with value range Writes a value with unit and range
.DESCRIPTION .DESCRIPTION
This PowerShell script writes the given value with value range to the console. This PowerShell script writes the given value with the unit and the value range to the console.
.PARAMETER value .PARAMETER value
Specifies the value Specifies the value
.EXAMPLE .EXAMPLE
PS> ./write-value.ps1 0.5 Mach 0 10 PS> ./write-value.ps1 95.0 "°C" 0 10 90 100
[00.5 Mach10] [0--------95°C-100]
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
#> #>
param([float]$value = 0.5, [string]$unit = "Mach", [float]$redMin = 0.0, [float]$redMax = 10.0) param([float]$value = 0.5, [string]$unit = "Mach", [float]$redMin, [float]$yellowMin, [float]$yellowMax, [float]$redMax)
function WriteLine([float]$count) { function WriteValueInRange([float]$value, [string]$unit, [float]$redMin, [float]$yellowMin, [float]$yellowMax, [float]$redMax) {
while ($count -ge 1.0) { $line = "------------------------------------------------"
Write-Host "" -noNewline
$count -= 1.0
}
return $count
}
function WriteBlock([float]$value, [string]$unit, [float]$redMin, [float]$yellowMin, [float]$yellowMax, [float]$redMax) {
$text = "[$redMin$($value)$unit $redMax]" $text = "[$redMin$($value)$unit $redMax]"
[float]$left = 20.0 - $text.Length [float]$total = 20.0 - $text.Length
if ($value -gt $redMax) { if ($value -gt $redMax) {
Write-Host "[$redMin" -noNewline Write-Host "[$redMin$($line.Substring(0, $total))$redMax]" -noNewline
$rest = WriteLine $left
Write-Host "$redMax]" -noNewline
Write-Host "$($value)$unit " -noNewline -foregroundColor red Write-Host "$($value)$unit " -noNewline -foregroundColor red
} elseif ($value -lt $redMin) { } elseif ($value -lt $redMin) {
Write-Host "$($value)$unit" -noNewline -foregroundColor red Write-Host "$($value)$unit" -noNewline -foregroundColor red
Write-Host " [$redMin" -noNewline Write-Host "[$redMin$($line.Substring(0, $total))$redMax] " -noNewline
$rest = WriteLine $left } else {
Write-Host "$redMax] " -noNewline [float]$leftSide = (($value - $redMin) * $total) / ($redMax - $redMin)
} elseif (($value -le $yellowMin) -or ($value -ge $yellowMax)) { if ($leftSide -lt 1.0) { $leftSide = 1.0 }
[float]$percent = (($value - $redMin) * $left) / ($redMax - $redMin) if ($leftSide -gt ($total - 1.0)) { $leftSide = $total - 1.0 }
Write-Host "[$redMin" -noNewline Write-Host "[$redMin$($line.Substring(0, $leftSide))" -noNewline
$rest = WriteLine $percent if (($value -le $yellowMin) -or ($value -ge $yellowMax)) {
Write-Host "$($value)$unit" -noNewline -foregroundColor yellow Write-Host "$($value)$unit" -noNewline -foregroundColor yellow
$rest = WriteLine ($left - $percent + $rest + 1.0)
Write-Host "$redMax] " -noNewline
} else { } else {
[float]$percent = (($value - $redMin) * $left) / ($redMax - $redMin)
Write-Host "[$redMin" -noNewline
$rest = WriteLine $percent
Write-Host "$($value)$unit" -noNewline -foregroundColor green Write-Host "$($value)$unit" -noNewline -foregroundColor green
$rest = WriteLine ($left - $percent + $rest + 1.0) }
Write-Host "$redMax] " -noNewline Write-Host "$($line.Substring(0, $total - $leftSide + 0.49))$redMax] " -noNewline
} }
} }
WriteBlock -3.5 "°C" 0 10 90 100 WriteValueInRange -3.5 "°C" 0 10 90 100
Write-Host "CPU too cold" Write-Host "CPU too cold"
WriteBlock 5 "°C" 0 10 90 100 WriteValueInRange 5 "°C" 0 10 90 100
Write-Host "CPU quite cold" Write-Host "CPU quite cold"
WriteBlock 15 "°C" 0 10 90 100 WriteValueInRange 15 "°C" 0 10 90 100
Write-Host "OK" Write-Host "OK"
WriteBlock 50 "°C" 0 10 90 100 WriteValueInRange 50 "°C" 0 10 90 100
Write-Host "OK" Write-Host "OK"
WriteBlock 70 "°C" 0 10 90 100 WriteValueInRange 70 "°C" 0 10 90 100
Write-Host "OK" Write-Host "OK"
WriteBlock 95 "°C" 0 10 90 100 WriteValueInRange 95 "°C" 0 10 90 100
Write-Host "CPU quite hot " Write-Host "CPU quite hot "
WriteBlock 110 "°C" 0 10 90 100 WriteValueInRange 110 "°C" 0 10 90 100
Write-Host "CPU too hot " Write-Host "CPU too hot "
exit 0 # success exit 0 # success