自从开始开发游戏以来,我学到了很多东西。现在我处于一个需要实施适当的玩家角色的阶段。我已经尝试这样做了一段时间,但是我无法使其与我的运动系统配合使用。这是我的运动系统(有碰撞):
ConsoleKeyInfo input = Console.ReadKey(true);
switch (input.KeyChar)
{
case 'w':
if (y >= 1 && data[y - 1][x] != '#')
{
oldx = Console.CursorLeft;
oldy = Console.CursorTop;
Console.SetCursorPosition(x + 0, y - 1);
x = Console.CursorLeft;
y = Console.CursorTop;
//if (x == 11 && y == 11 )
}
break;
case 'a':
if (x >= 1 && data[y][x - 1] != '#')
{
oldx = Console.CursorLeft;
oldy = Console.CursorTop;
Console.SetCursorPosition(x - 1, y + 0);
x = Console.CursorLeft;
y = Console.CursorTop;
}
break;
case 's':
if (y < Console.WindowHeight - 1 && data[y + 1][x] != '#')
{
oldx = Console.CursorLeft;
oldy = Console.CursorTop;
Console.SetCursorPosition(x + 0, y + 1);
x = Console.CursorLeft;
y = Console.CursorTop;
}
break;
case 'd':
if (x < Console.WindowWidth - 1 && data[y][x + 1] != '#')
{
oldx = Console.CursorLeft;
oldy = Console.CursorTop;
Console.SetCursorPosition(x + 1, y + 0);
x = Console.CursorLeft;
y = Console.CursorTop;
}
break;
}
我的地图是一个ascii地图,以ConsoleColor必须提供的颜色显示。在玩家角色的背后,应该重绘相应的地图图块,而无需重绘整个地图(这样做在游戏过程中确实很烦人)
退出地图时,将绘制一张新地图,并将玩家传送到该地图的入口。
我如何将字符绘制作为子例程实现?
提前谢谢!
答案 0 :(得分:0)
尝试一下
protected static void WriteAt(string s, int x, int y)
{
try
{
Console.SetCursorPosition(origCol+x, origRow+y);
Console.Write(s);
}
catch (ArgumentOutOfRangeException e)
{
Console.Clear();
Console.WriteLine(e.Message);
}
}
获取或设置光标在缓冲区内的行位置。
获取或设置光标在缓冲区内的列位置。
Console.SetCursorPosition(Int32, Int32) Method
设置光标的位置。