记分牌.txt记分牌制作俄罗斯方块游戏

时间:2015-02-01 20:55:04

标签: c# .net linq sorting io

我正在c#console中制作俄罗斯方块游戏。我已经完成了游戏的大部分工作,但我仍然处理文件处理问题。我还没有发现任何与此相关的内容,所以我想我可以试一试并问一下。 所以我要做的是将播放器的名称和分数保存为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();
    }
  }
}   

2 个答案:

答案 0 :(得分:1)

除了编写然后读取/解析.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>();

列表&lt;&gt;将是您将序列化和反序列化为XML文件的对象。

答案 1 :(得分:0)

您可以使用linq通过使用下面的代码实现您想要的效果

var scores = File.ReadAllLines("C:\\asd.txt")
         .Select(x => x.Split(":".ToCharArray())) // split name and score
         .Select(x => new
         {
             Name = x[0],
             Score = int.Parse(x[1])
         }) // create an object contains name and score for each line
         .OrderByDescending(x => x.Score) // sort result by score
         .Take(10); //get top 10

然后在foreach循环

中打印结果
foreach (var score in scores)
{
    Console.WriteLine(score.Score + "  " + score.Name);
}

但它有一些局限性。如果用户名包含:,那么这将失败,因为拆分部分将失败。