FormUnarchive.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using CommonLang.File;
  2. using MPQ.FileSystem;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.IO;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading;
  12. using System.Windows.Forms;
  13. namespace ToolsMPQ
  14. {
  15. public partial class FormUnarchive : Form
  16. {
  17. private FileInfo mpq_file;
  18. private MPQFileSystem mpq_fs;
  19. public FormUnarchive(FileInfo mpq)
  20. {
  21. InitializeComponent();
  22. this.mpq_file = mpq;
  23. this.mpq_fs = new MPQFileSystem();
  24. this.mpq_fs.load(mpq_file.FullName);
  25. Thread t = new Thread(run_extract);
  26. t.Start();
  27. }
  28. private bool is_done = false;
  29. private Exception error;
  30. private string efile;
  31. private int max = 100;
  32. private int cur = 0;
  33. private void run_extract()
  34. {
  35. try
  36. {
  37. List<MPQFileEntry> entries = mpq_fs.listEntrys();
  38. max = entries.Count;
  39. foreach (MPQFileEntry e in entries)
  40. {
  41. efile = e.Key;
  42. byte[] data = mpq_fs.getEntryData(e);
  43. FileInfo save = new FileInfo(mpq_file.DirectoryName + "\\" + mpq_file.Name.Substring(0, mpq_file.Name.Length - mpq_file.Extension.Length) + "\\" + e.Key);
  44. CFiles.createFile(save);
  45. File.WriteAllBytes(save.FullName, data);
  46. cur++;
  47. }
  48. }
  49. catch (Exception err)
  50. {
  51. error = err;
  52. }
  53. finally
  54. {
  55. is_done = true;
  56. }
  57. }
  58. private void timer1_Tick(object sender, EventArgs e)
  59. {
  60. if (error != null)
  61. {
  62. MessageBox.Show(error.Message);
  63. }
  64. progressBar1.Maximum = max;
  65. progressBar1.Value = cur;
  66. label1.Text = efile;
  67. if (is_done)
  68. {
  69. this.Close();
  70. }
  71. }
  72. }
  73. }