gpt4 book ai didi

c# - 俄罗斯方 block 游戏的记分牌 .txt 记分牌

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:48 25 4
gpt4 key购买 nike

我正在使用 C# 控制台制作俄罗斯方 block 游戏。我已经完成了游戏的大部分内容,但在文件处理方面遇到了困难。我还没有真正找到任何与此相关的东西,所以我想我可以试一试并问问它。所以我想做的是将玩家的姓名和分数保存到一个 txt 文件中,作为 NAME:SCORE,然后以某种方式按分数对其进行排序,然后将前十名打印为记分牌。这是我得到的结果:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

namespace scoreb
{
class Program
{
private static Random _random = new Random();
private static ConsoleColor GetRandomConsoleColor()
{
var consoleColors = Enum.GetValues(typeof(ConsoleColor));
return (ConsoleColor)consoleColors.GetValue(_random.Next(consoleColors.Length));
}
static void Main(string[] args)
{
int n = 10;
string[] names;
string[] name = new string[n];
string[] score = new string[n];
int i = 0;
while(name[i] != "*"){
Console.WriteLine("Supply your name please!!");
name[i] = Convert.ToString(Console.ReadLine());
Console.WriteLine("Give your score!");
score[i] = Convert.ToString(Console.ReadLine());
Console.WriteLine(name[i] + score[i]);
names = new string[] { name[i] + " " + score[i] };
i++;
}

Console.ReadLine();
//Printout
Console.Clear();
Console.WriteLine();
Console.ForegroundColor = GetRandomConsoleColor();
Console.WriteLine(" *****************************");
Console.ForegroundColor = GetRandomConsoleColor();
Console.WriteLine(" HIGH SCORES");
Console.ForegroundColor = GetRandomConsoleColor();
Console.WriteLine(" *****************************");
Console.WriteLine();
string[] lines = File.ReadAllLines("C:\\asd.txt");
Array.Sort(lines);
string read = null;
StreamReader b = File.OpenText("C:/asd.txt");
Console.WriteLine(" Név Pont");
while ((read = b.ReadLine()) != null)
{
int j = 0;
Console.WriteLine();
Console.ForegroundColor = GetRandomConsoleColor();
Console.WriteLine(" " + (j + 1) + ". " + lines[j]);
Console.WriteLine();
j++;
}
b.Close();
Console.ReadLine();
}
}
}

最佳答案

与其编写然后读取/解析 .txt 文件,一个更简单的选择是创建一个包含玩家姓名和分数的类,然后将其序列化为 XML,然后将其保存到文件中。看这里:How to write object data to XML file

读取 XML 文件并将其反序列化为对象,see this article (与上述相关)。

此外,要管理您的姓名和分数,请不要这样做:

    string[] name = new string[n];
string[] score = new string[n];

做这样的事情:

public class NameAndScore
{
public string Name { get; set; }
public int Score { get; set; }
}

private List<NameAndScore> _namesAndScores = new List<NameAndScore>();

List<> 将是您将序列化和反序列化为 XML 文件的对象。

关于c# - 俄罗斯方 block 游戏的记分牌 .txt 记分牌,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28267758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com