我刚刚开始尝试编写一个非常基本的游戏引擎,首先在 XNA 的 2d 世界中显示简单的图块。这是我第一次编写 DLL,一切都很顺利,直到我尝试为 ContentManager 编写 LoadAll 函数,这导致了我现在遇到的问题。我得到一个 ContentLoadException,即使文件显然存在,否则程序将无法进入内容加载阶段。
XNB 文件肯定存在,并且 Content.RootDirectory 已设置。我已经解决了这样的每一个问题,我可以在这里和其他网站上找到,但找不到任何解决方案。如果有人能帮忙,我将永远感激不尽。
public static Dictionary<String, T> LoadAll<T>(this ContentManager Content, string directory)
{
DirectoryInfo dir = new DirectoryInfo(Content.RootDirectory + "/" + directory);
if (!dir.Exists)
{
throw new DirectoryNotFoundException();
}
Dictionary<String, T> result = new Dictionary<string, T>();
FileInfo[] files = dir.GetFiles();
foreach (FileInfo file in files)
{
string key = Path.GetFileNameWithoutExtension(file.Name);
result[key] = Content.Load<T>(dir.ToString() + "/" + key);
}
return result;
}
显然我在 Content.Load 方法中遇到了错误,我得到了
"Error loading "Content\Tiles\bricktile". File not found."
我在这里找到了这段代码,但即使将其重写为列表形式,我也会遇到同样的错误。奇怪的部分是错误加载“文件路径”显示了绝对存在的 xnb 文件的正确路径。如果有人想要我的 DLL 的源代码,我可以轻松上传。
谢谢!
编辑:真的应该说我怎么称呼它:
textures = Content.LoadAll<Texture2D>(tilesFolder);