private void button1_Click(object sender, EventArgs e) { try { System.Threading.ThreadStart ts = delegate { ParrotLibs.Streams.Reader OR = Original.Reader(); ParrotLibs.Streams.Writer D = Destination.Writer(); OR.BaseStream.Position = 0; D.BaseStream.Position = 0; for (long i = 0; i < Original.Length; i += 0x6000) { D.Write(OR.ReadBytes(0x6000)); progressBar1.Invoke((MethodInvoker) delegate { try { progressBar1.Maximum = (int)(Original.Length >> 4); progressBar1.Value = (int)(((i >> 8) < 0) ? 0 : i >> 4); } catch { } }); } OR.Close(); D.Close(); }; System.Threading.Thread t = new System.Threading.Thread(ts); t.Start(); } catch (Exception x) { MessageBox.Show(x.Message); } }
public void ClearFATChain(uint[] Chain) { Streams.Reader r = Parent.Drive.Reader(); Streams.Writer w = new ParrotLibs.Streams.Writer(r.BaseStream); long buffersize = 0x1000; long lastoffset = 0;//VariousFunctions.BlockToFATOffset(Chain[0], Parent).DownToNearestCluster(buffersize); byte[] Buffer = new byte[buffersize]; for (int i = 0; i < Chain.Length; i++) { // Read the chain buffer if (lastoffset != VariousFunctions.BlockToFATOffset(Chain[i], Parent).DownToNearestCluster(0x1000)) { if (i != 0) { w.BaseStream.Position = lastoffset; w.Write(Buffer); } lastoffset = VariousFunctions.BlockToFATOffset(Chain[i], Parent).DownToNearestCluster(0x1000); r.BaseStream.Position = lastoffset; Buffer = r.ReadBytes((int)buffersize); } // Write the chain Streams.Writer mem = new ParrotLibs.Streams.Writer(new System.IO.MemoryStream(Buffer)); mem.BaseStream.Position = VariousFunctions.BlockToFATOffset(Chain[i], Parent) - VariousFunctions.BlockToFATOffset(Chain[i], Parent).DownToNearestCluster(0x1000); byte[] writing = new byte[0]; switch (Parent.PartitionInfo.EntrySize) { case 2: writing = BitConverter.GetBytes((ushort)0); break; case 4: writing = BitConverter.GetBytes(0); break; } mem.Write(writing); mem.Close(); if (i == Chain.Length - 1) { w.BaseStream.Position = lastoffset; w.Write(Buffer); } } }
void EntryAction_HandleCreated(object sender, EventArgs e) { if (Aero) { mTaskDialog = new TaskDialog(); } System.Threading.ThreadStart ts = delegate { #if TRACE try { #endif //while (true)//(!this.IsHandleCreated || !progressBar1.IsHandleCreated || !label1.IsHandleCreated || !lPercent.IsHandleCreated || !button1.IsHandleCreated) //{ // try // { // this.Invoke((MethodInvoker)delegate { }); // progressBar1.Invoke((MethodInvoker)delegate { }); // label1.Invoke((MethodInvoker)delegate { }); // lPercent.Invoke((MethodInvoker)delegate { }); // button1.Invoke((MethodInvoker)delegate { }); // break; // } // catch(Exception E) { Application.DoEvents(); } //} if (xDrive != null && mMethod == Method.Backup || mMethod == Method.ExtractJ || mMethod == Method.ExtractSS || mMethod == Method.Restore) { switch (mMethod) { case Method.Backup: this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Add; }); ParrotLibs.Streams.Reader r = xDrive.Reader(); ParrotLibs.Streams.Writer w = new ParrotLibs.Streams.Writer(new System.IO.FileStream(OutPath, System.IO.FileMode.Create)); int ReadLength = 0x200; if (xDrive.Length % 0x100000 == 0) { ReadLength = 0x100000; } else if (xDrive.Length % 0x40000 == 0) { ReadLength = 0x40000; } else if (xDrive.Length % 0x10000 == 0) { ReadLength = 0x10000; } else if (xDrive.Length % 0x5000 == 0) { ReadLength = 0x5000; } for (int i = 0; i < xDrive.Length / ReadLength; i++) { if (Cancel) { break; } w.Write(r.ReadBytes(ReadLength)); p_ProgressBar.Invoke((MethodInvoker) delegate { try { p_ProgressBar.Maximum = (int)(xDrive.Length / ReadLength); p_ProgressBar.Value = (i + 1); if (Windows7) { tm.SetProgressValue(p_ProgressBar.Value, p_ProgressBar.Maximum); } } catch { } }); this.Invoke((MethodInvoker) delegate { this.Text = "Backing Up Drive"; }); l_Percent.Invoke((MethodInvoker) delegate { l_Percent.Text = (((decimal)(i + 1) / (decimal)(xDrive.Length / ReadLength)) * 100).ToString("#") + "%"; }); } w.Close(); break; case Method.ExtractSS: this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Add; }); //Create our io for the drive ParrotLibs.Streams.Reader io = xDrive.Reader(); //Go to the location of the security sector io.BaseStream.Position = 0x2000; //Create our ref io for the file ParrotLibs.Streams.Writer bw = new ParrotLibs.Streams.Writer(new System.IO.FileStream(OutPath, System.IO.FileMode.Create)); //Read the sector. The size is an estimation, since I have no idea how big it really is bw.Write(io.ReadBytes(0xE00)); //Close our io bw.Close(); break; case Method.ExtractJ: this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Add; }); //Create our io for the drive ParrotLibs.Streams.Reader io2 = xDrive.Reader(); //Go to the location of the security sector io2.BaseStream.Position = 0x800; //Create our ref io for the file ParrotLibs.Streams.Writer bw2 = new ParrotLibs.Streams.Writer(new System.IO.FileStream(OutPath, System.IO.FileMode.Create)); //Read the sector. The size is an estimation, since I have no idea how big it really is bw2.Write(io2.ReadBytes(0x400)); //Close our io bw2.Close(); break; case Method.Restore: this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Remove; }); if (MessageBox.Show("WARNING: Restoring a drive that does not match your current one can cause for data to not be read correctly by the Xbox 360, or for other unforseen problems! Please make sure you know what you're doing before continuing. Are you sure you want to continue?", "WARNING AND STUFF", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes) { if (MessageBox.Show("This is your last chance to stop! Are you POSITIVE you want to continue?", "Last Chance!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes) { ParrotLibs.Streams.Reader r2 = new ParrotLibs.Streams.Reader(new System.IO.FileStream(OutPath, System.IO.FileMode.Open)); ParrotLibs.Streams.Writer w2 = xDrive.Writer(); int ReadLength2 = 0x200; if (xDrive.Length % 0x4000 != 0) { ReadLength2 = 0x4000; } else { for (int i = 0x300000; i > 0x200; i -= 0x1000) { if (xDrive.Length % i == 0) { ReadLength2 = i; break; } } } for (int i = 0; i < xDrive.Length / ReadLength2; i++) { if (Cancel) { break; } w2.Write(r2.ReadBytes(ReadLength2)); p_ProgressBar.Invoke((MethodInvoker) delegate { try { p_ProgressBar.Maximum = (int)(xDrive.Length / ReadLength2); p_ProgressBar.Value = (i + 1); if (Windows7) { tm.SetProgressValue(p_ProgressBar.Value, p_ProgressBar.Maximum); } } catch { } }); this.Invoke((MethodInvoker) delegate { this.Text = "Restoring Drive"; }); l_Percent.Invoke((MethodInvoker) delegate { l_Percent.Text = (((decimal)(i + 1) / (decimal)(xDrive.Length / ReadLength2)) * 100).ToString("#") + "%"; }); } r2.Close(); } } break; } } else { Folder ParentFolder = null; this.Invoke((MethodInvoker) delegate { ParentFolder = Parent; }); switch (mMethod) { // 提取游戏文件 case Method.Extract: { #if DEBUG System.Diagnostics.Stopwatch sStopwatch = new System.Diagnostics.Stopwatch(); if (Timer) { sStopwatch.Start(); } #endif this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Add; }); foreach (Entry sEntry in Entries) { // 提取的元素不是文件夹 if (sEntry.IsFolder == false) { ((File)sEntry).FileAction += new ParrotLibs.Structs.FileActionChanged(EntryAction_FileAction); this.Invoke((MethodInvoker) delegate { this.Text = sEntry.FullPath; }); l_Percent.Invoke((MethodInvoker) delegate { l_Percent.Text = sEntry.Name; }); // Check to see if we're batch-extracting... if (Entries.Length == 1) { ((File)sEntry).Extract(OutPath); } else { ((File)sEntry).Extract(OutPath + "\\" + sEntry.Name); } } else { ((Folder)sEntry).FolderAction += new ParrotLibs.Structs.FolderActionChanged(EntryAction_FolderAction); ((Folder)sEntry).Extract(OutPath, EntriesToSkip); } if (Cancel) { break; } } #if DEBUG if (Timer) { sStopwatch.Stop(); MessageBox.Show(string.Format("{0}:{1}:{2}", sStopwatch.Elapsed.Minutes, sStopwatch.Elapsed.Seconds, sStopwatch.Elapsed.Milliseconds)); } #endif break; } // 删除游戏文件 case Method.Delete: { this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Remove; }); foreach (Entry sEntry in Entries) { if (Cancel == true) { break; } else { // 要删除的是文件夹 if (sEntry.IsFolder == true) { Folder sCurrent = ((Folder)sEntry); sCurrent.ResetFolderAction(); sCurrent.FolderAction += new ParrotLibs.Structs.FolderActionChanged(EntryAction_FolderAction); sCurrent.Delete(); } // 要删除的是文件 else { this.Invoke((MethodInvoker) delegate { this.Text = sEntry.FullPath; }); l_Percent.Invoke((MethodInvoker) delegate { l_Percent.Text = sEntry.Name; }); File sCurrent = ((File)sEntry); sCurrent.FileAction += new ParrotLibs.Structs.FileActionChanged(EntryAction_FileAction); sCurrent.Delete(); } } } break; } // 添加新游戏 case Method.Inject: { #if DEBUG System.Diagnostics.Stopwatch sw2 = new System.Diagnostics.Stopwatch(); if (Timer) { sw2.Start(); } #endif this.Invoke((MethodInvoker) delegate { this.Icon = Properties.Resources.Add; }); if (ParentFolder != null) { ParentFolder.ResetFolderAction(); ParentFolder.FolderAction += new ParrotLibs.Structs.FolderActionChanged(EntryAction_FolderAction); List <ParrotLibs.Structs.ExistingEntry> Existing = new List <ParrotLibs.Structs.ExistingEntry>(); foreach (string sPath in Paths) { if (Cancel == true) { break; } else { // 导入的是文件夹 if (VariousFunctions.IsFolder(sPath) == true) { // 不合并,不覆盖 Existing.AddRange(ParentFolder.InjectFolder(sPath, false, false)); } // 导入的是文件 else { ParentFolder.FolderAction += new ParrotLibs.Structs.FolderActionChanged(EntryAction_FolderAction); ParrotLibs.Structs.WriteResult sWriteResult = ParentFolder.CreateNewFile(sPath); // 如果不能写入,则检查是否存在 if (sWriteResult.CouldNotWrite == true) { ParrotLibs.Structs.ExistingEntry sExistEntry = new ParrotLibs.Structs.ExistingEntry(); sExistEntry.Existing = sWriteResult.Entry; sExistEntry.NewPath = sPath; Existing.Add(sExistEntry); } } } } DoExisting(Existing); } else { List <ParrotLibs.Structs.ExistingEntry> Existing = new List <ParrotLibs.Structs.ExistingEntry>(); foreach (string s in Paths) { string Path = ""; try { // XBOX360 1代磁盘类型 Path = VariousFunctions.GetFATXPath(s); } catch (Exception x) { ExceptionHandler(x); continue; } Folder thisFolder = xDrive.CreateDirectory("Data\\" + Path); thisFolder.ResetFolderAction(); thisFolder.FolderAction += new ParrotLibs.Structs.FolderActionChanged(EntryAction_FolderAction); if (Cancel) { break; } if (VariousFunctions.IsFolder(s)) { ExceptionHandler(new Exception("Can not write folder as STFS package (silly error wording)")); continue; } else { thisFolder.FolderAction += new ParrotLibs.Structs.FolderActionChanged(EntryAction_FolderAction); ParrotLibs.Structs.WriteResult wr = thisFolder.CreateNewFile(s); if (wr.CouldNotWrite) { ParrotLibs.Structs.ExistingEntry ex = new ParrotLibs.Structs.ExistingEntry(); ex.Existing = wr.Entry; ex.NewPath = s; Existing.Add(ex); } } } DoExisting(Existing); } #if DEBUG if (Timer) { sw2.Stop(); MessageBox.Show(string.Format("{0}:{1}:{2}", sw2.Elapsed.Minutes, sw2.Elapsed.Seconds, sw2.Elapsed.Milliseconds)); } #endif break; } case Method.Move: { List <ParrotLibs.Structs.WriteResult> Results = new List <ParrotLibs.Structs.WriteResult>(); foreach (Entry sEntry in Entries) { ParrotLibs.Structs.WriteResult sWriteResult = sEntry.Move(OutPath); if (sWriteResult.CouldNotWrite == true) { Results.Add(sWriteResult); } else { // DO NOTHING } } break; } } } this.Invoke((MethodInvoker) delegate { this.Close(); }); #if TRACE } catch (Exception x) { ExceptionHandler(x); this.Invoke((MethodInvoker) delegate { this.Close(); }); } #endif }; t = new System.Threading.Thread(ts); t.Start(); }