我的这个程序的目标是创建一个用户浏览它的网格。到目前为止,我已经创建了网格,但我仍然坚持如何使用它以便在数组字符串的任何位置[3,6]我可以替换其中一个" - "玩家符号" P"并且每次玩家移动控制台时都会打印播放器的位置。
EG。我希望玩家从字符串[2,5]开始," - "将被替换为" P"并且在玩家移动" - "之后在[2,5]返回。
但我的主要目的是找出如何用播放器替换阵列的任何一点。
希望很明显
string[,] table = new string[3,6] { {"-","-","-","-","-","-"},
{"-","-","-","-","-","-"},
{"-","-","-","-","-","-"}};
int rows = grid.GetLength(0);
int col = grid.GetLength(0);
for (int x = 0; x < rows; x++)
{
for (int y = 0; y < col; y++)
{
Console.Write ("{0} ", grid [x, y]);
}
Console.Write (Environment.NewLine + Environment.NewLine);
}
我尝试过使用.Replace但到目前为止没有成功
答案 0 :(得分:2)
我会做这样的事情:
private static int playerX, playerY;
public static void MovePlayer(int x, int y)
{
table[playerX, playerY] = "-"; //Remove old position
table[x, y] = "P"; //Update new position
playerX = x; //Save current position
playerY = y;
UpdateGrid();
}
你所要做的就是将元素设置为"P"
来改变它,没什么特别的。
要更新网格,您有两个选项,可以重新绘制所有内容,也可以设置光标位置并更改字符。
示例:
SetCursorPosition(playerX, playerY);
Console.Write("-");
SetCursorPosition(x, y);
Console.Write("P");
或者,使用您现在拥有的代码再次调用它来重写所有内容。
答案 1 :(得分:1)
另一种方法是使用Console.SetCursorPosition()将玩家吸引到正确的位置 - 请参阅我的blog post作为示例。
答案 2 :(得分:1)
作为替代方案,您可以完全删除网格:
Point playerLocation = new Point(10, 10);
Size boundary = new Size(20, 20);
void Draw()
{
for (int y = 0; y < boundary.Height; y++)
for (int x = 0; x <= boundary.Width; x++)
Console.Write(GetSymbolAtPosition(x, y));
}
string GetSymbolAtPosition(int x, int y)
{
if (x >= boundary.Width)
return Environment.NewLine;
if (y == playerLocation.Y && x == playerLocation.X)
return "P";
return "-";
}
这样您就不必更新网格以更新屏幕。当您更改玩家的位置时,它将在下一次抽奖时更新屏幕。