我正在用C#制作我的第一个控制台游戏,这是一个简单的迷宫游戏,但由于某些原因,我有一个可笑的闪烁在屏幕上。我已经尝试使用thread.sleep和console.cursorVisible=false;但没有用。万一你卡住了,按1键,然后进入标题屏幕,这会把你引向迷宫,这仍然是在阿尔法前阶段。如果有什么不同的话,我将使用Visual Studio2013作为IDE。我的问题是如何才能摆脱迷宫部分的过度闪烁。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
using System.Threading;
class Game
{
static void Main()
{
Console.WriteLine("Select Level (Available levels: 1,2):");
Console.WriteLine("\n(\\_/)\n(o.o)\n(___)0\n");
int gameLevel = int.Parse(Console.ReadLine()); // by pressing a number the user can select different labyrinths.
// Console Height and Width
Console.BufferHeight = Console.WindowHeight = 25;
Console.BufferWidth = Console.WindowWidth = 80;
Console.OutputEncoding = System.Text.Encoding.Unicode; // Must have this + Change font to Lucida in CMD
// Reads File:
string map = File.ReadAllText(String.Format("level{0}.txt", gameLevel));
string[] mapRows = Regex.Split(map, "\r\n");
int mapSize = mapRows[0].Length;
int mapHeight = mapRows.Count() - 1;
char[,] charMap = new char[mapHeight, mapSize];
// Creates Matrix:
for (int row = 0; row < mapHeight; row++)
{
for (int col = 0; col < mapSize; col++)
{
charMap[row, col] = mapRows[row].ElementAt(col);
}
}
// Rabbit init:
string rabbitIcon = "\u0150"; // \u0150 \u014E \u00D2 \u00D3 --> alternatives
int rabbitX = 1, rabbitY = 0;
int carrotCounter = 0;
// Game Loop:
while (true)
{
DrawLabyrinth(mapHeight, mapSize, charMap);
MoveRabbit(mapHeight, mapSize, ref rabbitX, ref rabbitY, charMap);
EatCarrot(rabbitX, rabbitY, charMap,carrotCounter);
Console.SetCursorPosition(rabbitX, rabbitY);
Console.Write(rabbitIcon);
Thread.Sleep(66);
Console.CursorVisible = false;
Console.Clear();
}
}
static void EatCarrot(int rabbitX, int rabbitY, char[,] theMap,int carrotCount)
{
if (theMap[rabbitY, rabbitX] == '7' || theMap[rabbitY, rabbitX] == '8')
{
if (theMap[rabbitY, rabbitX] == '7')
{
theMap[rabbitY, rabbitX] = ' ';
theMap[rabbitY - 1, rabbitX] = ' ';
carrotCount++;
}
else if (theMap[rabbitY, rabbitX] == '8')
{
theMap[rabbitY, rabbitX] = ' ';
theMap[rabbitY + 1, rabbitX] = ' ';
carrotCount++;
}
}
}
static void MoveRabbit(int height, int width, ref int rabbitX, ref int rabbitY, char[,] theMap)
{
if (Console.KeyAvailable == true)
{
ConsoleKeyInfo pressedKey = Console.ReadKey(true);
while (Console.KeyAvailable) Console.ReadKey(true);
if (pressedKey.Key == ConsoleKey.LeftArrow || pressedKey.Key == ConsoleKey.A)
{
if (theMap[rabbitY, rabbitX - 1] == ' ' || theMap[rabbitY,rabbitX - 1 ] == '7' || theMap[rabbitY,rabbitX - 1 ] == '8')
{
rabbitX -= 1;
}
}
else if (pressedKey.Key == ConsoleKey.RightArrow || pressedKey.Key == ConsoleKey.D)
{
if (theMap[rabbitY, rabbitX + 1] == ' ' || theMap[rabbitY,rabbitX + 1 ] == '7' || theMap[rabbitY,rabbitX + 1 ] == '8')
{
rabbitX += 1;
}
}
else if (pressedKey.Key == ConsoleKey.UpArrow || pressedKey.Key == ConsoleKey.W)
{
if (theMap[rabbitY - 1, rabbitX] == ' ' || theMap[rabbitY - 1,rabbitX ] == '7' || theMap[rabbitY - 1,rabbitX ] == '8')
{
rabbitY -= 1;
}
}
else if (pressedKey.Key == ConsoleKey.DownArrow || pressedKey.Key == ConsoleKey.S)
{
if (theMap[rabbitY + 1, rabbitX] == ' ' || theMap[rabbitY + 1, rabbitX] == '7' || theMap[rabbitY + 1, rabbitX] == '8')
{
rabbitY += 1;
}
}
}
}
static void DrawLabyrinth(int height, int width, char[,] array)
{
for (int i = 0; i < height; i++)
{
for (int j = 0; j < width; j++)
{
if (array[i, j] == '1')
Console.Write("─");
else if (array[i, j] == '2')
Console.Write("│");
else if (array[i, j] == '3')
Console.Write("┌");
else if (array[i, j] == '4')
Console.Write("┐");
else if (array[i, j] == '5')
Console.Write("└");
else if (array[i, j] == '6')
Console.Write("┘");
else if (array[i, j] == '7')
{
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("▼");
Console.ForegroundColor = ConsoleColor.White;
}
else if (array[i, j] == '8')
{
Console.ForegroundColor = ConsoleColor.Green;
Console.Write("\u00B8");
Console.ForegroundColor = ConsoleColor.White;
}
else if (array[i, j] == '9')
{
Console.Write("┬");
}
else if (array[i, j] == '0')
{
Console.Write("┴");
}
else if (array[i, j] == 'a')
{
Console.Write('├');
}
else if (array[i, j] == 'b')
{
Console.Write('┤');
}
else if (array[i, j] == 'c')
{
Console.Write('┼');
}
else
{
Console.Write(" ");
}
}
Console.WriteLine();
}
}
}
您的代码最大的问题是这样一个事实:您在不断刷新屏幕,即使因为用户没有移动兔子而不需要重绘任何东西。
如前所述,你想要做的是最小的重绘量,即只有在有东西要重绘的时候才重绘,然后尝试做尽可能小的量。对于您的示例游戏,在伪代码中,它应该如下所示:
// One time actions
var maze = ReadMaze(level);
DrawMaze(maze);
DrawRabbit(rabbitX, rabbitY);
// Game loop
while ((var input = GetInput()) != Input.Quit) {
oldRabbitX = rabbitX, oldRabbitY = rabbitY;
if (MoveRabbit(input, rabbitX, rabbitY, maze)) {
EraseRabbit(oldX, oldY);
DrawRabbit(rabbitX, rabbitY);
if (IsPositionWithCarrot(rabbitX, rabbitY, maze))
// This only the erases the carrot on screen.
EatCarrot(rabbitX, rabbitY, maze);
}
}
在这里可以找到一篇博文,里面有很多关于构建一个C#控制台游戏的有用信息。
因为我发现这是一个有趣的问题,所以我拿了你的代码,稍微重塑一下,以匹配上面的伪代码。这将消除游戏中的所有闪烁。您可以在下面找到此尝试:
public class Game
{
const string RabbitIcon = "\u0150"; // \u0150 \u014E \u00D2 \u00D3 --> alternatives
static readonly char[] MazeChars = { '─', '│', '┌', '┐', '└', '┘', '▼', '\u00B8', '┬', '┴', '├', '┤', '┼' };
static readonly ConsoleColor MazeFgColor = ConsoleColor.DarkGray;
enum Input
{
MoveLeft,
MoveRight,
MoveUp,
MoveDown,
Quit
};
public static void Run()
{
Console.WriteLine("Select Level (Available levels: 1,2):");
Console.WriteLine("\n(\\_/)\n(o.o)\n(___)0\n");
int carrotCounter = 0;
int gameLevel = int.Parse(Console.ReadLine()); // by pressing a number the user can select different labyrinths.
// Console Height and Width
Console.WindowHeight = 25;
Console.BufferHeight = Console.WindowHeight + 1; // +1 to allow writing last character in the screen corner
Console.BufferWidth = Console.WindowWidth = 80;
Console.OutputEncoding = System.Text.Encoding.Unicode; // Must have this + Change font to Lucida in CMD
// Reads maze map
string[] mapRows = File.ReadAllLines(String.Format("game.level{0}.txt", gameLevel));
if (!mapRows.All(r => r.Length == mapRows[0].Length))
throw new InvalidDataException("Invalid map");
var charMap = mapRows.Select(r => r.ToCharArray()).ToArray();
// Draw maze & rabbit once
Console.CursorVisible = false;
DrawLabyrinth(charMap);
int rabbitX = 1, rabbitY = 1;
DrawRabbit(rabbitX, rabbitY, RabbitIcon);
// Game Loop:
Input input;
while ((input = GetInput()) != Input.Quit)
{
if (MoveRabbit(input, ref rabbitX, ref rabbitY, charMap) &&
IsPositionWithCarrot(rabbitX, rabbitY, charMap))
EatCarrot(rabbitX, rabbitY, charMap, ref carrotCounter);
}
}
static void EatCarrot(int rabbitX, int rabbitY, char[][] theMap, ref int carrotCounter)
{
// determine carrot top position.
var carrotTopY = theMap[rabbitY][rabbitX] == '7' ? rabbitY - 1 : rabbitY;
// "eat it" from the map.
theMap[carrotTopY][rabbitX] = ' ';
theMap[carrotTopY + 1][rabbitX] = ' ';
// and erase it on screen;
Console.SetCursorPosition(rabbitX, carrotTopY);
Console.Write(' ');
Console.SetCursorPosition(rabbitX, carrotTopY + 1);
Console.Write(' ');
// redraw the rabbit
carrotCounter++;
DrawRabbit(rabbitX, rabbitY, RabbitIcon);
}
static Input GetInput()
{
while (true)
{
var key = Console.ReadKey(true);
switch (key.Key)
{
case ConsoleKey.LeftArrow:
case ConsoleKey.A:
return Input.MoveLeft;
case ConsoleKey.RightArrow:
case ConsoleKey.D:
return Input.MoveRight;
case ConsoleKey.UpArrow:
case ConsoleKey.W:
return Input.MoveUp;
case ConsoleKey.DownArrow:
case ConsoleKey.S:
return Input.MoveDown;
case ConsoleKey.Q:
return Input.Quit;
default:
break;
}
}
}
static bool IsValidRabbitPosition(int x, int y, char[][] theMap)
{
return x >= 0 && x < theMap[0].Length && y >= 0 && y < theMap.Length &&
(theMap[y][x] == ' ' || IsPositionWithCarrot(x, y, theMap));
}
static bool IsPositionWithCarrot(int x, int y, char[][] theMap)
{
return theMap[y][x] == '7' || theMap[y][x] == '8';
}
static void DrawRabbit(int x, int y, string rabbitIcon)
{
Console.SetCursorPosition(x, y);
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.Write(rabbitIcon);
Console.ResetColor();
}
static bool MoveRabbit(Input direction, ref int rabbitX, ref int rabbitY, char[][] theMap)
{
int newX = rabbitX, newY = rabbitY;
switch (direction)
{
case Input.MoveLeft: newX--; break;
case Input.MoveRight: newX++; break;
case Input.MoveUp: newY--; break;
case Input.MoveDown: newY++; break;
default: return false;
}
if (IsValidRabbitPosition(newX, newY, theMap))
{
DrawRabbit(rabbitX, rabbitY, " "); // erase
rabbitX = newX;
rabbitY = newY;
DrawRabbit(rabbitX, rabbitY, RabbitIcon); // draw
return true;
}
return false;
}
static void DrawLabyrinth(char[][] theMap)
{
Console.Clear();
for (int y = 0; y < theMap.Length; y++)
{
Console.SetCursorPosition(0, y);
for (int x = 0; x < theMap[0].Length; x++)
{
var ndx = theMap[y][x] - '1';
var c = ndx >= 0 && ndx < MazeChars.Length
? MazeChars[ndx]
: ' ';
Console.ForegroundColor = IsPositionWithCarrot(x, y, theMap)
? ndx == 6 ? ConsoleColor.Red : ConsoleColor.Green
: MazeFgColor;
Console.Write(c);
Console.ResetColor();
}
}
Console.WindowTop = 0; // scroll back up.
}
}
本文向大家介绍java实现简单控制台五子棋游戏,包括了java实现简单控制台五子棋游戏的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了java实现简单控制台五子棋的具体代码,供大家参考,具体内容如下 GobangMain这个类是游戏的主方法,主要用于控制游戏的执行,值得注意的是输入的坐标的格式是3,4的样式,不能是其他的格式,也不能出现空格。 Point类 Gobang 类是游戏类,
本文向大家介绍原创的C语言控制台小游戏,包括了原创的C语言控制台小游戏的使用技巧和注意事项,需要的朋友参考一下 最开始左上色块被感染,通过切换颜色,不断感染同色色块。亮点是可以切换图案,设置方块个数和最大限制次数。整体还是比较满意,希望大神指教。 演示图: 以上即是本文所述的全部内容了,希望大家能够喜欢,能够对大家学习C有所帮助。
本文向大家介绍C语言控制台版2048小游戏,包括了C语言控制台版2048小游戏的使用技巧和注意事项,需要的朋友参考一下 效果不好,见谅,没事就写了一个!!! 附上另外一个小伙伴的代码 以上所述就是本文的全部内容了,希望大家能够喜欢。
我一直在尝试制作一个简单的游戏,计算机生成一个随机数,你试着猜它。它还存储了你“尝试”的猜测量。 但是,当我运行该程序时,它只是打印:“让我们玩游戏。我会想到一个数字 1-100。试着猜猜。 这是我的代码: 我不明白为什么这不起作用,有人能解释一下为什么不起作用吗?
问题:我的客户端需要访问应用程序信息,如安装、卸载和响应应用程序用户评论。他们访问谷歌播放控制台来管理上面的信息,但他们是计算机外行,通过访问谷歌播放控制台,他们可以运行不受欢迎的设置,甚至从谷歌播放控制台删除应用程序。 解决方案:为他们创建一个门户网站,以便他们仅查看特定信息(安装、卸载和响应应用程序的最终用户评论)。 怀疑:我要开发的门户需要使用什么API来显示信息(安装、卸载和回答最终用户评
本文向大家介绍Java控制台实现猜拳游戏小游戏,包括了Java控制台实现猜拳游戏小游戏的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了Java猜拳游戏的具体代码,供大家参考,具体内容如下 先来看一下效果图: 首先我们创建一个Person类,这个类有name和score两个属性,有play这个方法,源代码如下: 接下来是主程序入口: 源代码下载:Java猜拳游戏 以上就是本文的全部内