TestClientLoader.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using CommonAI.Zone;
  2. using CommonAI.ZoneServer;
  3. using CommonLang.IO;
  4. using CommonLang.Log;
  5. using MPQ.FileSystem;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.IO;
  9. using System.Reflection;
  10. using System.Windows.Forms;
  11. namespace CommonAIServer.Connector
  12. {
  13. public abstract class TestClientLoader
  14. {
  15. public TestClientLoader()
  16. {
  17. }
  18. public void Init(DirectoryInfo mpq_path)
  19. {
  20. LoadDlls();
  21. Resource.SetLoader(new ResourceLoader(mpq_path));
  22. }
  23. public abstract CreateUnitInfoR2B GenUnitInfoR2B(int unitID);
  24. public abstract Type ZoneFactoryType { get; }
  25. public class ResourceLoader : DefaultResourceLoader
  26. {
  27. private Logger log = LoggerFactory.GetLogger("ResourceLoader");
  28. private MPQFileSystem mFileSystem;
  29. public ResourceLoader(DirectoryInfo dir)
  30. {
  31. mFileSystem = new MPQFileSystem();
  32. mFileSystem.init(dir);
  33. }
  34. public override byte[] LoadData(string path)
  35. {
  36. byte[] ret = mFileSystem.getData(path);
  37. if (ret == null)
  38. {
  39. ret = base.LoadData(path);
  40. }
  41. return ret;
  42. }
  43. public override bool ExistData(string path)
  44. {
  45. if (mFileSystem.findEntry(path) != null)
  46. {
  47. return true;
  48. }
  49. return base.ExistData(path);
  50. }
  51. }
  52. public static void LoadDlls()
  53. {
  54. AppDomain domain = AppDomain.CurrentDomain;
  55. FileInfo exefile = new FileInfo(Application.ExecutablePath);
  56. foreach (FileInfo file in exefile.Directory.GetFiles())
  57. {
  58. if (file.Extension.ToLower().Equals(".dll"))
  59. {
  60. try
  61. {
  62. Assembly asm = Assembly.ReflectionOnlyLoadFrom(file.FullName);
  63. //Assembly asm = Assembly.ReflectionOnlyLoad(File.ReadAllBytes(file.FullName));
  64. if (!ExistAssembly(domain, asm.FullName))
  65. {
  66. domain.Load(asm.FullName);
  67. }
  68. }
  69. catch (Exception err) { }
  70. }
  71. }
  72. }
  73. private static bool ExistAssembly(AppDomain domain, string name)
  74. {
  75. foreach (Assembly asm in domain.GetAssemblies())
  76. {
  77. if (asm.FullName.Equals(name))
  78. {
  79. return true;
  80. }
  81. }
  82. return false;
  83. }
  84. }
  85. }