使用C#写一个贪吃蛇游戏
时间: 2023-10-19 07:16:24 浏览: 156
用C#写的《贪吃蛇》游戏
4星 · 用户满意度95%
好的,以下是使用 C# 编写的简单贪吃蛇游戏的代码:
```csharp
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
namespace SnakeGame
{
class Program
{
static void Main(string[] args)
{
Console.SetWindowSize(40, 30); // 设置窗口大小
Console.CursorVisible = false; // 隐藏光标
// 初始化地图
int width = Console.WindowWidth - 1;
int height = Console.WindowHeight - 1;
int[,] map = new int[width, height];
for (int i = 0; i < width; i++)
{
map[i, 0] = -1;
map[i, height - 1] = -1;
}
for (int i = 0; i < height; i++)
{
map[0, i] = -1;
map[width - 1, i] = -1;
}
// 初始化蛇
List<int[]> snake = new List<int[]>();
snake.Add(new int[] { width / 2, height / 2 });
snake.Add(new int[] { width / 2, height / 2 + 1 });
snake.Add(new int[] { width / 2, height / 2 + 2 });
map[snake[0][0], snake[0][1]] = 1;
map[snake[1][0], snake[1][1]] = 2;
map[snake[2][0], snake[2][1]] = 3;
// 初始化食物
int[] food = GenerateFood(map);
// 初始化方向
int direction = 2; // 1:上,2:右,3:下,4:左
// 游戏循环
while (true)
{
// 显示地图
Console.Clear();
for (int i = 0; i < width; i++)
{
for (int j = 0; j < height; j++)
{
if (map[i, j] == -1)
{
Console.Write("#");
}
else if (map[i, j] > 0)
{
Console.Write("O");
}
else if (i == food[0] && j == food[1])
{
Console.Write("X");
}
else
{
Console.Write(" ");
}
}
Console.WriteLine();
}
// 移动蛇
int[] head = snake[0];
int[] tail = snake[snake.Count - 1];
switch (direction)
{
case 1:
head = new int[] { head[0], head[1] - 1 };
break;
case 2:
head = new int[] { head[0] + 1, head[1] };
break;
case 3:
head = new int[] { head[0], head[1] + 1 };
break;
case 4:
head = new int[] { head[0] - 1, head[1] };
break;
}
if (head[0] == food[0] && head[1] == food[1])
{
snake.Insert(0, head);
map[head[0], head[1]] = snake.Count;
food = GenerateFood(map);
}
else if (map[head[0], head[1]] == 0)
{
snake.Insert(0, head);
map[head[0], head[1]] = snake.Count;
map[tail[0], tail[1]] = 0;
snake.RemoveAt(snake.Count - 1);
}
else
{
Console.WriteLine("Game Over!");
Console.ReadKey();
break;
}
// 监听键盘
if (Console.KeyAvailable)
{
ConsoleKeyInfo keyInfo = Console.ReadKey(true);
switch (keyInfo.Key)
{
case ConsoleKey.UpArrow:
if (direction != 3)
{
direction = 1;
}
break;
case ConsoleKey.RightArrow:
if (direction != 4)
{
direction = 2;
}
break;
case ConsoleKey.DownArrow:
if (direction != 1)
{
direction = 3;
}
break;
case ConsoleKey.LeftArrow:
if (direction != 2)
{
direction = 4;
}
break;
}
}
// 等待一段时间
Thread.Sleep(100);
}
}
static int[] GenerateFood(int[,] map)
{
Random random = new Random();
int x = random.Next(1, map.GetLength(0) - 1);
int y = random.Next(1, map.GetLength(1) - 1);
while (map[x, y] != 0)
{
x = random.Next(1, map.GetLength(0) - 1);
y = random.Next(1, map.GetLength(1) - 1);
}
return new int[] { x, y };
}
}
}
```
这是一个简单的贪吃蛇游戏,可以通过上下左右箭头键控制蛇的移动方向,如果蛇撞到墙或者自己,则游戏结束。
阅读全文