热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

powershellSnake更新

篇首语:本文由编程笔记#小编为大家整理,主要介绍了powershellSnake更新相关的知识,希望对你有一定的参考价值。

篇首语:本文由编程笔记#小编为大家整理,主要介绍了powershell Snake更新相关的知识,希望对你有一定的参考价值。




#requires -version 2
#
# Powershell Snake Game
# Author : Kurt Jaegers
#
function SetEmptySquare($x, $y)
{
$matrix[$x, $y] = $emptysquare
[console]::SetCursorPosition($x + 1, $y + 1)
Write-Host -ForegroundColor White -BackgroundColor Black -NoNewline " "
}
function SetBodySquare($x, $y)
{
$matrix[$x, $y] = $bodysquare
[console]::SetCursorPosition($x + 1, $y + 1)
Write-Host -ForegroundColor White -BackgroundColor White -NoNewline " "
}
#
# Draws the snake to the screen, including cleaning up the last segment of the tail
#
function DrawTheSnake($x, $y)
{
$newPoint = New-Object System.Drawing.Point($x, $y)
$tail.Enqueue($newPoint)
SetBodySquare -x $x -y $y
if ($tail.Count -gt $script:maxTailLength)
{
$oldPoint = $tail.Dequeue()
SetEmptySquare -x $oldPoint.X -y $oldPoint.Y
}
}
#
# Generate a random location for the apple, making sure it isnt inside the snake
#
function MoveTheApple
{
do
{
$x = get-random -min 2 -max ($width - 2)
$y = get-random -min 2 -max ($height - 2)
}
until ($matrix[$x, $y] -eq $emptysquare )
$matrix[$x, $y] = $applesquare
DrawTheApple -x $x -y $y
}
#
# Draw the apple to the screen
#
function DrawTheApple($x, $y)
{
[console]::SetCursorPosition($x + 1, $y + 1)
Write-Host -foregroundcolor red -backgroundcolor black "@"
}
#
# Check to see if the snake hits the apple
#
function CheckAppleHit($x, $y)
{
if ($matrix[$x, $y] -eq $applesquare)
{
# relocate the apple
MoveTheApple
SetEmptySquare -x $x -y $y

$script:score += 500

# Add to the snake's length
$script:maxTailLength++
}
}
#
# Check to see if the snake's head hits the walls of the screen
#
function CheckWallHits($x, $y)
{
if ($matrix[$x, $y] -eq $wallsquare)
{
cls
write-host -foregroundcolor red "You lost! Score was $script:score"
exit
}
}
function SetBorderSquare($x, $y)
{
[console]::SetCursorPosition($x + 1, $y + 1)
Write-Host -ForegroundColor Black -BackgroundColor White '#' -NoNewline
$matrix[$x, $y] = $wallsquare
}
#
# Draw a fence around the edges of the screen
#
function DrawScreenBorders
{
for ($x = 0; $x -lt $width; $x++)
{
SetBorderSquare -x $x -y 0
SetBorderSquare -x $x -y ($height - 1)
}
for ($y = 0; $y -lt $height; $y++)
{
SetBorderSquare -x 0 -y $y
SetBorderSquare -x ($width - 1) -y $y
}
}
function CheckSnakeBodyHits($x, $y)
{
if ($matrix[$x, $y] -eq $bodysquare)
{
cls
write-host -foregroundcolor red "You lost! Score was $script:score"
exit
}
}
function DrawScore($score)
{
$string = "Score: $score"
$xPos = [int](($script:width - $string.Length) / 2)
[console]::SetCursorPosition($xPos, 0)
Write-Host -ForegroundColor Red -BackgroundColor Black $string
}
# ---------------------------------
# ---------------------------------
# Main script block starts here
# ---------------------------------
# ---------------------------------
if ($host.name -ne "ConsoleHost")
{
write-host "This script should only be run in a ConsoleHost window (outside of the ISE)"
exit
$dOne=$true
}
Add-Type -AssemblyName System.Drawing
# Grab UI objects and set some colors
$ui=(get-host).ui
$rui=$ui.rawui
$rui.BackgroundColor="Black"
$rui.ForegroundColor="Red"
cls
# write out lines to make sure the buffer is big enough to cover the screen
for ($i=0; $i -lt $rui.screensize.height; $i++)
{
write-host ""
}
$cs = $rui.cursorsize
$rui.cursorsize=0
$script:score = 0
$width = $rui.WindowSize.Width - 2
$height = $rui.WindowSize.Height - 2
$emptysquare = 0
$bodysquare = 1
$applesquare = 2
$wallsquare = 3
$currentX = [int]($width / 2)
$currentY = [int]($height / 2)
$matrix = New-Object 'int[,]' -ArgumentList ($width, $height)
$tail = New-Object System.Collections.Queue
$script:maxTailLength = 5
$dOne= $false
$before = 0
$after = 15
$dir = 0
DrawScreenBorders;
DrawTheSnake -x $currentX -y $currentY
MoveTheApple;
while (!$done)
{
if ($rui.KeyAvailable)
{
$key = $rui.ReadKey()
if ($key.virtualkeycode -eq -27)
{
$dOne=$true
}
if ($key.keydown)
{
# Left
if ($key.virtualkeycode -eq 37)
{
$dir=0
}
# Up
if ($key.virtualkeycode -eq 38)
{
$dir=1
}
# Right
if ($key.virtualkeycode -eq 39)
{
$dir=2
}
# Down
if ($key.virtualkeycode -eq 40)
{
$dir=3
}
}
}

if ($dir -eq 0)
{
$currentX--;
}

if ($dir -eq 1)
{
$currentY--;
}

if ($dir -eq 2)
{
$currentX++;
}

if ($dir -eq 3)
{
$currentY++;
}
CheckWallHits -x $currentX -y $currentY
CheckSnakeBodyHits -x $currentX -y $currentY
CheckAppleHit -x $currentX -y $currentY
DrawTheSnake -x $currentX -y $currentY

$script:score += $script:maxTailLength
DrawScore -score $script:score
start-sleep -mil 100
}
$rui.cursorsize=$cs


推荐阅读
  • Spring Security基础配置详解
    本文详细介绍了Spring Security的基础配置方法,包括如何搭建Maven多模块工程以及具体的安全配置步骤,帮助开发者更好地理解和应用这一强大的安全框架。 ... [详细]
  • 基于SSM框架的在线考试系统:随机组卷功能详解
    本文深入探讨了基于SSM(Spring, Spring MVC, MyBatis)框架构建的在线考试系统中,随机组卷功能的设计与实现方法。 ... [详细]
  • 本文深入探讨了WPF框架下的数据验证机制,包括内置验证规则的使用、自定义验证规则的实现方法、错误信息的有效展示策略以及验证时机的选择,旨在帮助开发者构建更加健壮和用户友好的应用程序。 ... [详细]
  • td{border:1pxsolid#808080;}参考:和FMX相关的类(表)TFmxObjectIFreeNotification ... [详细]
  • 本文详细介绍了 `org.apache.tinkerpop.gremlin.structure.VertexProperty` 类中的 `key()` 方法,并提供了多个实际应用的代码示例。通过这些示例,读者可以更好地理解该方法在图数据库操作中的具体用途。 ... [详细]
  • spring boot使用jetty无法启动 ... [详细]
  • 在Android中实现黑客帝国风格的数字雨效果
    本文将详细介绍如何在Android平台上利用自定义View实现类似《黑客帝国》中的数字雨效果。通过实例代码,我们将探讨如何设置文字颜色、大小,以及如何控制数字下落的速度和间隔。 ... [详细]
  • ASP.NET 进度条实现详解
    本文介绍了如何在ASP.NET中使用HTML和JavaScript创建一个动态更新的进度条,并通过Default.aspx页面进行展示。 ... [详细]
  • Beetl是一款先进的Java模板引擎,以其丰富的功能、直观的语法、卓越的性能和易于维护的特点著称。它不仅适用于高响应需求的大型网站,也适合功能复杂的CMS管理系统,提供了一种全新的模板开发体验。 ... [详细]
  • 本文深入探讨了Go语言中的接口型函数,通过实例分析其灵活性和强大功能,帮助开发者更好地理解和运用这一特性。 ... [详细]
  • 本文介绍了如何通过C#语言调用动态链接库(DLL)中的函数来实现IC卡的基本操作,包括初始化设备、设置密码模式、获取设备状态等,并详细展示了将TextBox中的数据写入IC卡的具体实现方法。 ... [详细]
  • Java中如何判断一个对象是否为Long类型
    本文介绍了一种在Java中判断对象是否属于Long类型的方法,通过定义一个特定的方法来实现这一功能,该方法能够准确地识别并返回结果。 ... [详细]
  • Web动态服务器Python基本实现
    Web动态服务器Python基本实现 ... [详细]
  • 本文探讨了如何通过Service Locator模式来简化和优化在B/S架构中的服务命名访问,特别是对于需要频繁访问的服务,如JNDI和XMLNS。该模式通过缓存机制减少了重复查找的成本,并提供了对多种服务的统一访问接口。 ... [详细]
  • 深入理解:AJAX学习指南
    本文详细探讨了AJAX的基本概念、工作原理及其在现代Web开发中的应用,旨在为初学者提供全面的学习资料。 ... [详细]
author-avatar
xsf9507
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有