mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 22:22:32 +00:00
ebb372bc27
Updated ZDoom_DECORATE.cfg (A_SetInventory).
83 lines
2.2 KiB
C#
83 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Security.Cryptography;
|
|
|
|
//Source: http://www.codeproject.com/Articles/528178/Load-DLL-From-Embedded-Resource
|
|
namespace mxd.GZDBUpdater
|
|
{
|
|
public static class EmbeddedAssembly
|
|
{
|
|
// Version 1.3
|
|
private static Dictionary<string, Assembly> dic;
|
|
|
|
public static void Load(string embeddedResource, string fileName)
|
|
{
|
|
if(dic == null) dic = new Dictionary<string, Assembly>();
|
|
|
|
byte[] ba;
|
|
Assembly asm;
|
|
Assembly curAsm = Assembly.GetExecutingAssembly();
|
|
|
|
using (Stream stm = curAsm.GetManifestResourceStream(embeddedResource))
|
|
{
|
|
// Either the file is not existed or it is not mark as embedded resource
|
|
if(stm == null) throw new Exception(embeddedResource + " is not found in Embedded Resources.");
|
|
|
|
// Get byte[] from the file from embedded resource
|
|
ba = new byte[(int) stm.Length];
|
|
stm.Read(ba, 0, (int) stm.Length);
|
|
try
|
|
{
|
|
asm = Assembly.Load(ba);
|
|
|
|
// Add the assembly/dll into dictionary
|
|
dic.Add(asm.FullName, asm);
|
|
return;
|
|
}
|
|
catch
|
|
{
|
|
// Purposely do nothing
|
|
// Unmanaged dll or assembly cannot be loaded directly from byte[]
|
|
// Let the process fall through for next part
|
|
}
|
|
}
|
|
|
|
bool fileOk;
|
|
string tempFile;
|
|
|
|
using (SHA1CryptoServiceProvider sha1 = new SHA1CryptoServiceProvider())
|
|
{
|
|
string fileHash = BitConverter.ToString(sha1.ComputeHash(ba)).Replace("-", string.Empty);
|
|
tempFile = Path.GetTempPath() + fileName;
|
|
|
|
if(File.Exists(tempFile))
|
|
{
|
|
byte[] bb = File.ReadAllBytes(tempFile);
|
|
string fileHash2 = BitConverter.ToString(sha1.ComputeHash(bb)).Replace("-", string.Empty);
|
|
fileOk = (fileHash == fileHash2);
|
|
}
|
|
else
|
|
{
|
|
fileOk = false;
|
|
}
|
|
}
|
|
|
|
if(!fileOk)
|
|
{
|
|
File.WriteAllBytes(tempFile, ba);
|
|
}
|
|
|
|
asm = Assembly.LoadFile(tempFile);
|
|
dic.Add(asm.FullName, asm);
|
|
}
|
|
|
|
public static Assembly Get(string assemblyFullName)
|
|
{
|
|
if(dic == null || dic.Count == 0) return null;
|
|
if(dic.ContainsKey(assemblyFullName)) return dic[assemblyFullName];
|
|
return null;
|
|
}
|
|
}
|
|
}
|