所以我在Unity中制作了一个基本的2D平台游戏,我希望能够节省玩家完成每个关卡所需的时间,并在UI元素中显示最快的时间。我正在写一个文本文件的时间(这很好),并逐行读入列表,从那里我找到最低值等。但是,我的代码不起作用,它给了我以下我从另一个脚本调用该函数时出错。我是C#的新手,所以非常感谢任何人都能给我的帮助!
谢谢!
完整错误消息
InvalidOperationException:由于对象的当前状态,操作无效
System.Linq.Enumerable.Iterate [Single,Single](IEnumerable 1 source, Single initValue, System.Func
3选择器)
System.Linq.Enumerable.Min(IEnumerable`1 source)
SaveScores.ReadData(System.String LevelLoaded)(在Assets / Scripts / Highscores / SaveScores.cs:73)
GameManager.Update()(在Assets / Scripts / GameManager.cs:45)
代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
using System;
using System.Linq;
public class SaveScores : MonoBehaviour {
void Start()
{
//ReadData();
}
public static void WriteData(float time, string LevelLoaded)
{
try
{
//Debug.Log("Saving time");
StreamWriter sw = new StreamWriter(@"C:\Users\Theo\Documents\Unity Projects\V13\Platformer\Assets\Scripts\Highscores\Scores.txt", true);
sw.WriteLine(LevelLoaded + " " + time);
sw.Close();
}
catch(Exception e)
{
Console.WriteLine("Exception: " + e.Message);
}
finally
{
Console.WriteLine("Executing final block");
}
}
public static void ReadData(string LevelLoaded)
{
List <float> timesLevel1 = new List<float>();
List <float> timesLevel2 = new List<float>();
List <float> timesLevel3 = new List<float>();
try
{
var lines = File.ReadAllLines(@"C:\Users\Theo\Documents\Unity Projects\V13\Platformer\Assets\Scripts\Highscores\Scores.txt");
foreach (var line in lines)
{
if (line.Contains("Level1"))
{
timesLevel1.Add(Convert.ToSingle(line));
}
else if (line.Contains("Level2"))
{
timesLevel2.Add(Convert.ToSingle(line));
}
else if (line.Contains("Level3"))
{
timesLevel3.Add(Convert.ToSingle(line));
}
}
}
catch (Exception e)
{
Console.WriteLine("Exception: " + e.Message);
}
finally
{
Console.WriteLine("Executing final block");
}
switch (LevelLoaded)
{
case "Level1":
UIManager.lowestTime = timesLevel1.Min();
break;
case "Level2":
UIManager.lowestTime = timesLevel2.Min();
break;
case "Level3":
UIManager.lowestTime = timesLevel3.Min();
break;
}
}
}
答案 0 :(得分:1)
如果您查看Enumerable.Min<float>
(https://msdn.microsoft.com/en-us/library/bb361144(v=vs.110).aspx)的文档,您会看到&#34;例外情况&#34;它列出InvalidOperationException
并将原因列为:&#34; source不包含任何元素&#34;。
这可能意味着您所查看的列表并不包含任何元素。
在查看填充该列表的内容时,您希望在该行中看起来有些混乱。你对line.Contains("Level1")
做了一个测试但是如果成功那么你调用Convert.ToSingle(line)
,如果该行中有任何字符串数据,那么这将失败(例如,如果line
确实包含该字符串,则转换将失败)。
因此,您正在阅读的文件格式似乎不是您所期望的那样,导致您的列表为空,从而导致此错误。