From bc1115d62d0d6527d4aa1dd3b0d8703089ccf3ae Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 17 May 2015 16:30:39 +0000 Subject: [PATCH] XmlGame - support an xml that refers to roms in archives --- BizHawk.Client.Common/XmlGame.cs | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/XmlGame.cs b/BizHawk.Client.Common/XmlGame.cs index 8d7f7bfab6..1b75186578 100644 --- a/BizHawk.Client.Common/XmlGame.cs +++ b/BizHawk.Client.Common/XmlGame.cs @@ -55,7 +55,7 @@ namespace BizHawk.Client.Common foreach (XmlNode a in n.ChildNodes) { string filename = a.Attributes["FileName"].Value; - byte[] data; + byte[] data = new byte[0]; if (filename[0] == '|') { // in same archive @@ -83,7 +83,22 @@ namespace BizHawk.Client.Common fullpath = Path.Combine(fullpath, filename.Split('|').First()); try { - data = File.ReadAllBytes(fullpath.Split('|').First()); + using (var hf = new HawkFile(fullpath)) + { + if (hf.IsArchive) + { + var archiveItem = hf.ArchiveItems.First(ai => ai.Name == filename.Split('|').Skip(1).First()); + hf.Unbind(); + hf.BindArchiveMember(archiveItem); + data = hf.GetStream().ReadAllBytes(); + } + else + { + data = File.ReadAllBytes(fullpath.Split('|').First()); + } + } + + } catch {