ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingMemorySearcher.cs
Revision: 405
Committed: Thu Jun 21 14:38:54 2012 UTC (10 years, 11 months ago) by william
File size: 94968 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 395 //#define USE_AUTOMATIC_MEMORY_SEARCH_RANGE // when defined will automatically choose the best starting address and size for memory search otherwise it will use the constants defined in MemorySizeConstants
2 william 289 #if !USE_AUTOMATIC_MEMORY_SEARCH_RANGE
3 william 287 #define FORCE_USE_OF_MEMORYSIZECONSTANTS // when defined wil force the use of the constants defined in MemorySizeConstants for memory search range
4 william 289 #endif
5 william 280 //#define DONOT_HAVE_RANGED_SEARCH_SUPPORT // when defined, indicates that ranged searches have not been implemented
6     #define INCREASE_NUMBER_OF_RESULTS_BEFORE_DISPLAY // when defined will set MIN RESULTS to 0x2701 otherwise 0x03e8
7     //#define DO_NOT_SUSPEND_RESUME_THREAD_ON_FREEZE // when defined will not freeze/resume thread on freeze
8 william 229 using System;
9 william 227 using System.Collections.Generic;
10     using System.ComponentModel;
11     using System.Data;
12     using System.Drawing;
13     using System.Linq;
14     using System.Text;
15     using System.Windows.Forms;
16     using WeifenLuo.WinFormsUI.Docking;
17     using RomCheater.PluginFramework.Interfaces;
18     using System.Diagnostics;
19 william 229 using RomCheater.Docking.MemorySearch;
20     using libWin32.Win32.Threading;
21 william 230 using System.Threading;
22     using RomCheater.Logging;
23     using System.IO;
24 william 242 using Sojaner.MemoryScanner.MemoryProviers;
25 william 275 using RomCheater.PluginFramework.Events;
26 william 287 using System.Reflection;
27 william 292 using Sojaner.MemoryScanner;
28 william 399 using System.Collections;
29 william 401 using RomCheater.Serialization;
30 william 227
31     namespace RomCheater.Docking
32     {
33 william 228 public partial class FloatingMemorySearcher : DockContent,
34 william 243 IAcceptsPlugin<IConfigPlugin>,
35     IAcceptsProcess<Process>,
36     IAcceptsProcessAndConfig,
37 william 275 ISearchInProgress,
38 william 287 IAcceptsBrowseMemoryRegion,
39     IAcceptsMemoryRange
40 william 227 {
41 william 280 #if INCREASE_NUMBER_OF_RESULTS_BEFORE_DISPLAY
42     const int MIN_NUMBER_OF_RESULTS_BEFORE_DISPLAY = 0x2701; // 10,000 results
43     #else
44     const int MIN_NUMBER_OF_RESULTS_BEFORE_DISPLAY = 0x03e8; // 1,000 results
45     #endif
46    
47 william 229 private bool DefaultUnsignedState = true; // set unsigned to true
48 william 287 public FloatingMemorySearcher() { InitializeComponent(); this.AcceptedPlugin = null; OnBrowseMemoryRegion = null; this.AcceptedProcess = null; SearchInProgess = false; Reload(); }
49 william 227 public FloatingMemorySearcher(IConfigPlugin config) : this() { this.AcceptedPlugin = config; }
50     public FloatingMemorySearcher(IConfigPlugin config, Process process) : this() { this.AcceptedPlugin = config; this.AcceptedProcess = process; }
51    
52 william 237 #region IAcceptsProcess<Process> Members
53 william 243 private Process _AcceptedProcess;
54 william 305 public Process AcceptedProcess { get { return _AcceptedProcess; } set { _AcceptedProcess = value; UpdateAcceptedProcess(value); } }
55 william 227 #endregion
56     #region IAcceptsPlugin<IConfigPlugin> Members
57 william 243 private IConfigPlugin _AcceptedPlugin;
58 william 305 public IConfigPlugin AcceptedPlugin { get { return _AcceptedPlugin; } set { _AcceptedPlugin = value; UpdateAcceptedPlugin(value); } }
59 william 227 #endregion
60 william 275 #region IAcceptsBrowseMemoryRegion members
61 william 287 public event BaseEventHandler<BrowseMemoryRegionEvent> OnBrowseMemoryRegion;
62 william 275 #endregion
63    
64 william 305 private void UpdateAcceptedPlugin(IConfigPlugin config)
65 william 243 {
66     this.lstResults.AcceptedPlugin = config;
67     this.lstPatchList.AcceptedPlugin = config;
68 william 389 if (config != null)
69     {
70     MemoryRangeStart = AcceptedPlugin.MemoryRangeStart;
71     MemoryRangeSize = AcceptedPlugin.MemoryRangeStart + AcceptedPlugin.MemoryRangeSize;
72     }
73 william 305 }
74     private void UpdateAcceptedProcess(Process process)
75     {
76     this.lstResults.AcceptedProcess = process;
77 william 243 this.lstPatchList.AcceptedProcess = process;
78 william 287 #if USE_AUTOMATIC_MEMORY_SEARCH_RANGE && FORCE_USE_OF_MEMORYSIZECONSTANTS
79     logger.Warn.WriteLine("FloatingMemorySearcher.UpdateAcceptedProcessAndConfig(IConfigPlugin config, Process process):");
80     logger.Warn.WriteLine("Both USE_AUTOMATIC_MEMORY_SEARCH_RANGE and FORCE_USE_OF_MEMORYSIZECONSTANTS are defined");
81     logger.Warn.WriteLine("FORCE_USE_OF_MEMORYSIZECONSTANTS will take precedence and will ignore the values supplied in the memeory search range");
82 william 289 #endif
83     #if FORCE_USE_OF_MEMORYSIZECONSTANTS
84     // force use of MemorySizeConstants
85 william 349 txtMemoryRangeStart.Value = MemorySizeConstants.MinimumSearchAddress;
86 william 401 txtMemoryRangeSize.Value = MemorySizeConstants.MinimumSearchAddress + MemorySizeConstants.MaximumSearchSize;
87 william 287 #endif
88     #if USE_AUTOMATIC_MEMORY_SEARCH_RANGE && !FORCE_USE_OF_MEMORYSIZECONSTANTS
89 william 318 ////// code to automatically choose the best starting memory address and size
90     //if (process != null)
91     //{
92     // string filename = process.MainModule.FileName;
93     // //string filename = @"c:\Windows\notepad.exe";
94     // PEReader peReader = new PEReader(filename);
95     //}
96     //else
97     //{
98 william 389 //txtMemoryRangeStart.Value = MemorySizeConstants.MinimumSearchAddress;
99     //txtMemoryRangeSize.Value = MemorySizeConstants.MinimumSearchAddress + MemorySizeConstants.MaximumSearchSize;
100 william 318 //}
101 william 389 if (AcceptedPlugin != null)
102     {
103     MemoryRangeStart = AcceptedPlugin.MemoryRangeStart;
104     MemoryRangeSize = AcceptedPlugin.MemoryRangeStart + AcceptedPlugin.MemoryRangeSize;
105     }
106    
107 william 287 #endif
108    
109 william 243 }
110 william 228 #region ISearchInProgress members
111 william 399 private bool _SearchInProgess;
112     public bool SearchInProgess
113     {
114     get { return _SearchInProgess; }
115     private set
116     {
117     _SearchInProgess = value;
118     if (this.AcceptedPlugin != null)
119     this.AcceptedPlugin.SetMemorySearchReference(this);
120     }
121     }
122 william 228 #endregion
123 william 229
124 william 287 #region IAcceptsMemoryRange
125     #if !FORCE_USE_OF_MEMORYSIZECONSTANTS
126 william 389 private uint _MemoryRangeStart;
127 william 287 private uint _MemoryRangeSize;
128     #endif
129 william 378 public uint MemoryRangeStart
130 william 287 {
131     get
132     {
133     #if FORCE_USE_OF_MEMORYSIZECONSTANTS
134 william 349 return MemorySizeConstants.MinimumSearchAddress;
135 william 287 #else
136     return _MemoryRangeStart;
137     #endif
138     }
139     set
140     {
141     #if !FORCE_USE_OF_MEMORYSIZECONSTANTS
142     _MemoryRangeStart = value;
143 william 389 txtMemoryRangeStart.Value = value;
144 william 287 #endif
145     }
146     }
147     public uint MemoryRangeSize
148     {
149     get
150     {
151     #if FORCE_USE_OF_MEMORYSIZECONSTANTS
152 william 401 return MemorySizeConstants.MinimumSearchAddress + MemorySizeConstants.MaximumSearchSize;
153 william 287 #else
154     return _MemoryRangeSize;
155     #endif
156     }
157     set
158     {
159     #if !FORCE_USE_OF_MEMORYSIZECONSTANTS
160     _MemoryRangeSize = value;
161 william 389 txtMemoryRangeSize.Value = value;
162 william 287 #endif
163     }
164     }
165     #endregion
166 william 229
167     public void Reload()
168     {
169     chkUnsigned.Checked = DefaultUnsignedState;
170     radio_8bits.Checked = true;
171     radiocompare_equal.Checked = true;
172     radio_oldvalue.Checked = true;
173 william 230 chkRefreshResults.Checked = true;
174 william 229 }
175 william 230 public enum eListViewResults
176     {
177     SEARCH_RESULTS_LIST = 0x3000,
178     PATCH_RESULTS_LIST = 0x3001,
179     UKNOWN_RESULTS_LIST = 0x3001
180     }
181 william 280 bool IsFirstSearch = true;
182 william 277 SearchType SearchArgs;
183 william 272 static int col_Found_Address = 1;
184     static int col_Found_Value = 2;
185     static int col_Found_Frozen = 3;
186     static int col_Added_Address = 1;
187     static int col_Added_Value = 2;
188     static int col_Added_Frozen = 3;
189 william 230 List<ListViewItem> ResultItems = new List<ListViewItem>();
190     List<ListViewItem> AddedItems = new List<ListViewItem>();
191     private bool _PatchedValue_NeedsUpdate;
192     bool PatchedValue_NeedsUpdate
193     {
194     get { if (_PatchedValue_NeedsUpdate) this.ThawResultsUpdate(); return _PatchedValue_NeedsUpdate; }
195     set { _PatchedValue_NeedsUpdate = value; if (value) this.ThawResultsUpdate(); }
196     }
197     private delegate ListViewItem ThreadSafe_GetResultItem(int index, int lv_type);
198     private ListViewItem GetResultItem(int index, int lv_type)
199     {
200     try
201     {
202     AddressValuePairList lv = null;
203     switch (lv_type)
204     {
205     case (int)eListViewResults.SEARCH_RESULTS_LIST: lv = lstResults; break;
206     case (int)eListViewResults.PATCH_RESULTS_LIST: lv = lstPatchList; break;
207     default: throw new IndexOutOfRangeException("Detected: " + Enum.GetName(typeof(eListViewResults), eListViewResults.UKNOWN_RESULTS_LIST) + " with value: " + lv_type.ToString("x4"));
208     }
209     ListViewItem item = new ListViewItem();
210     item = (ListViewItem)lv.Items[index].Clone();
211     return item;
212     }
213     catch (Exception)
214     {
215     return null;
216     }
217     }
218 william 229 private void radiocompare_equal_CheckedChanged(object sender, EventArgs e)
219     {
220     //if (!radiocompare_between.Checked && !radiocompare_notbetween.Checked)
221     //{
222     if (radio_oldvalue.Checked)
223     {
224     txtStartAddr.ReadOnly = true;
225     txtEndAddr.ReadOnly = true;
226     }
227     if (radio_specificvalue.Checked)
228     {
229     txtStartAddr.ReadOnly = false;
230     txtEndAddr.ReadOnly = true;
231     }
232     //}
233     }
234    
235     private void radiocompare_between_CheckedChanged(object sender, EventArgs e)
236     {
237     if (!radiocompare_equal.Checked &&
238     !radiocompare_greaterthan.Checked &&
239     !radiocompare_greaterthan.Checked &&
240     !radiocompare_lessthan.Checked &&
241     !radiocompare_greaterthan_orequal.Checked &&
242     !radiocompare_lessthan_orequal.Checked &&
243     !radiocompare_notequal.Checked)
244     if (radiocompare_between.Checked)
245     {
246     txtStartAddr.ReadOnly = false;
247     txtEndAddr.ReadOnly = false;
248     return;
249     }
250     if (!radiocompare_between.Checked && !radiocompare_notbetween.Checked)
251     {
252     if (radio_oldvalue.Checked)
253     {
254     txtStartAddr.ReadOnly = true;
255     txtEndAddr.ReadOnly = true;
256     }
257     if (radio_specificvalue.Checked)
258     {
259     txtStartAddr.ReadOnly = false;
260     txtEndAddr.ReadOnly = true;
261     }
262     }
263     }
264    
265     private void radiocompare_notbetween_CheckedChanged(object sender, EventArgs e)
266     {
267     if (!radiocompare_equal.Checked &&
268     !radiocompare_greaterthan.Checked &&
269     !radiocompare_greaterthan.Checked &&
270     !radiocompare_lessthan.Checked &&
271     !radiocompare_greaterthan_orequal.Checked &&
272     !radiocompare_lessthan_orequal.Checked &&
273     !radiocompare_notequal.Checked)
274     if (radiocompare_notbetween.Checked)
275     {
276     txtStartAddr.ReadOnly = false;
277     txtEndAddr.ReadOnly = false;
278     return;
279     }
280     if (!radiocompare_between.Checked && !radiocompare_notbetween.Checked)
281     {
282     if (radio_oldvalue.Checked)
283     {
284     txtStartAddr.ReadOnly = true;
285     txtEndAddr.ReadOnly = true;
286     }
287     if (radio_specificvalue.Checked)
288     {
289     txtStartAddr.ReadOnly = false;
290     txtEndAddr.ReadOnly = true;
291     }
292     }
293     }
294    
295     private void radio_8bits_CheckedChanged(object sender, EventArgs e)
296     {
297     if (chkUnsigned.Checked)
298     {
299     txtStartAddr.CreateTypeSize<byte>();
300     txtEndAddr.CreateTypeSize<byte>();
301     }
302     else
303     {
304     txtStartAddr.CreateTypeSize<sbyte>();
305     txtEndAddr.CreateTypeSize<sbyte>();
306     }
307     }
308    
309     private void radio_16bits_CheckedChanged(object sender, EventArgs e)
310     {
311     if (chkUnsigned.Checked)
312     {
313     txtStartAddr.CreateTypeSize<ushort>();
314     txtEndAddr.CreateTypeSize<ushort>();
315     }
316     else
317     {
318     txtStartAddr.CreateTypeSize<short>();
319     txtEndAddr.CreateTypeSize<short>();
320     }
321     }
322    
323     private void radio_32bits_CheckedChanged(object sender, EventArgs e)
324     {
325    
326     if (chkUnsigned.Checked)
327     {
328     txtStartAddr.CreateTypeSize<uint>();
329     txtEndAddr.CreateTypeSize<uint>();
330     }
331     else
332     {
333     txtStartAddr.CreateTypeSize<int>();
334     txtEndAddr.CreateTypeSize<int>();
335     }
336     }
337    
338     private void radio_64bits_CheckedChanged(object sender, EventArgs e)
339     {
340    
341     if (chkUnsigned.Checked)
342     {
343     txtStartAddr.CreateTypeSize<ulong>();
344     txtEndAddr.CreateTypeSize<ulong>();
345     }
346     else
347     {
348     txtStartAddr.CreateTypeSize<long>();
349     txtEndAddr.CreateTypeSize<long>();
350     }
351     }
352    
353     private void radio_oldvalue_CheckedChanged(object sender, EventArgs e)
354     {
355     if (!radiocompare_between.Checked && !radiocompare_notbetween.Checked)
356     {
357     txtStartAddr.ReadOnly = true;
358     txtEndAddr.ReadOnly = true;
359     }
360     }
361    
362     private void radio_specificvalue_CheckedChanged(object sender, EventArgs e)
363     {
364     if (!radiocompare_between.Checked && !radiocompare_notbetween.Checked)
365     {
366     txtStartAddr.ReadOnly = false;
367     txtEndAddr.ReadOnly = true;
368     }
369     }
370    
371     private void chkRefreshResults_CheckedChanged(object sender, EventArgs e)
372     {
373     if (chkRefreshResults.Checked)
374     {
375     timer_update_results.Enabled = true;
376     }
377     else
378     {
379     timer_update_results.Enabled = false;
380     ResultsUpdateWorkerThread.CancelAsync();
381     }
382     }
383    
384     private void timer_update_results_Tick(object sender, EventArgs e)
385     {
386     if (chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
387     {
388     ResultsUpdateWorkerThread.RunWorkerAsync();
389     }
390     }
391 william 230 private bool ShouldUpdateResults()
392     {
393     if (this.AcceptedProcess == null) return false;
394     if (SearchWorkerThread.IsBusy) return false;
395     //if (JokerSearchWorker.IsBusy) return false;
396     if (this.IsResultsUpdateFrozen) return false;
397     if (mnuAddedResults.Visible) return false;
398     if (mnuResults.Visible) return false;
399     if (Process.GetProcessById(this.AcceptedProcess.Id) == null) return false;
400     if (lstResults.Items.Count > 0) return true;
401     if (lstPatchList.Items.Count > 0) return true;
402     return false;
403     }
404 william 229 private void ResultsUpdateWorkerThread_DoWork(object sender, DoWorkEventArgs e)
405     {
406 william 230 Thread.Sleep(250); // keep thread from blocking
407     if (!this.ShouldUpdateResults()) return;
408     ////if (SearchArgs == null) return;
409     ////if (this.IsResultsUpdateFrozen) return;
410     ////// put thread to sleep for 500ms
411     ////System.Threading.Thread.Sleep(500);
412     //PCSX2MemoryProvider provider = new PCSX2MemoryProvider(this.SearchPCSX2ProcessPID, resultslog);
413     //byte[] buffered_mem = provider.GetMemory();
414     //MemoryStream ms = new MemoryStream(buffered_mem);
415     //BinaryReader r_ms = new BinaryReader(ms);
416 william 229
417 william 230 #region Update Results List
418     ResultItems = new List<ListViewItem>();
419     //r_ms.BaseStream.Seek(0, SeekOrigin.Begin);
420     for (int i = 0; i < lstResults.Items.Count; i++)
421     {
422     if (this.lstResults.InvokeRequired)
423     {
424     ThreadSafe_GetResultItem _get_item = new ThreadSafe_GetResultItem(GetResultItem);
425     object item = this.lstResults.Invoke(_get_item, new object[] { i, (int)eListViewResults.SEARCH_RESULTS_LIST });
426     if (item != null)
427     ResultItems.Add((ListViewItem)item);
428     }
429     else
430     {
431     ResultItems.Add(lstResults.Items[i]);
432     }
433    
434     }
435     for (int i = 0; i < ResultItems.Count; i++)
436     {
437     if (ResultsUpdateWorkerThread.CancellationPending == true)
438     {
439     e.Cancel = true;
440     return;
441     }
442 william 249 int Address = 0;
443 william 230 ResultDataType _result = (ResultDataType)ResultItems[i].Tag;
444    
445 william 249 Address = Convert.ToInt32(ResultItems[i].SubItems[col_Found_Address].Text, 16);
446 william 242 //r_ms.BaseStream.Seek(Address, SeekOrigin.Begin);
447 william 398 using (GenericMemoryProvider provider = new GenericMemoryProvider((IAcceptsProcessAndConfig)this))
448 william 230 {
449 william 398 provider.OpenProvider();
450     int bytesReadSize;
451     byte[] data;
452     uint bytesToRead = 0;
453     switch (_result.ValueType)
454     {
455     case SearchDataTypes._8bits:
456     bytesToRead = 1;
457     break;
458     case SearchDataTypes._16bits:
459     bytesToRead = 2;
460     break;
461     case SearchDataTypes._32bits:
462     bytesToRead = 4;
463     break;
464     case SearchDataTypes._64bits:
465     bytesToRead = 8;
466     break;
467     }
468     provider.ReadProcessMemory(Address, bytesToRead, out bytesReadSize, out data);
469     using (MemoryStream ms = new MemoryStream(data))
470     {
471     using (BinaryReader r_ms = new BinaryReader(ms))
472     {
473     switch (_result.ValueType)
474     {
475     case SearchDataTypes._8bits:
476     if (_result.IsUnsigned) { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x2}", r_ms.ReadByte()); }
477     else { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x2}", r_ms.ReadSByte()); }
478     break;
479     case SearchDataTypes._16bits:
480     if (_result.IsUnsigned) { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x4}", r_ms.ReadUInt16()); }
481     else { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x4}", r_ms.ReadInt16()); }
482     break;
483     case SearchDataTypes._32bits:
484     if (_result.IsUnsigned) { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x8}", r_ms.ReadUInt32()); }
485     else { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x8}", r_ms.ReadInt32()); }
486     break;
487     case SearchDataTypes._64bits:
488     if (_result.IsUnsigned) { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x16}", r_ms.ReadUInt64()); }
489     else { ResultItems[i].SubItems[col_Found_Value].Text = string.Format("0x{0:x16}", r_ms.ReadInt64()); }
490     break;
491     }
492     r_ms.Close();
493     }
494     }
495     provider.CloseProvider();
496 william 230 }
497 william 398 //Application.DoEvents();
498 william 230 }
499     #endregion
500    
501     #region Update Added Results List
502     AddedItems = new List<ListViewItem>();
503     //r_ms.BaseStream.Seek(0, SeekOrigin.Begin);
504     for (int i = 0; i < lstPatchList.Items.Count; i++)
505     {
506     if (this.lstResults.InvokeRequired)
507     {
508     ThreadSafe_GetResultItem _get_item = new ThreadSafe_GetResultItem(GetResultItem);
509     object item = this.lstResults.Invoke(_get_item, new object[] { i, (int)eListViewResults.PATCH_RESULTS_LIST });
510     if (item != null)
511     AddedItems.Add((ListViewItem)item);
512     }
513     else
514     {
515     AddedItems.Add(lstPatchList.Items[i]);
516     }
517    
518     }
519     for (int i = 0; i < AddedItems.Count; i++)
520     {
521     if (ResultsUpdateWorkerThread.CancellationPending == true)
522     {
523     e.Cancel = true;
524     return;
525     }
526 william 249 int Address = 0;
527 william 230 ResultDataType _result = (ResultDataType)AddedItems[i].Tag;
528 william 249 Address = Convert.ToInt32(AddedItems[i].SubItems[col_Added_Address].Text, 16);
529 william 398 using (GenericMemoryProvider provider = new GenericMemoryProvider((IAcceptsProcessAndConfig)this))
530 william 230 {
531 william 398 provider.OpenProvider();
532     int bytesReadSize;
533     byte[] data;
534     uint bytesToRead = 0;
535     switch (_result.ValueType)
536     {
537     case SearchDataTypes._8bits:
538     bytesToRead = 1;
539     break;
540     case SearchDataTypes._16bits:
541     bytesToRead = 2;
542     break;
543     case SearchDataTypes._32bits:
544     bytesToRead = 4;
545     break;
546     case SearchDataTypes._64bits:
547     bytesToRead = 8;
548     break;
549     }
550     provider.ReadProcessMemory(Address, bytesToRead, out bytesReadSize, out data);
551     provider.CloseProvider();
552     using (MemoryStream ms = new MemoryStream(data))
553     {
554     using (BinaryReader r_ms = new BinaryReader(ms))
555     {
556     switch (_result.ValueType)
557     {
558     case SearchDataTypes._8bits:
559     if (_result.IsUnsigned) { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x2}", r_ms.ReadByte()); }
560     else { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x2}", r_ms.ReadSByte()); }
561     break;
562     case SearchDataTypes._16bits:
563     if (_result.IsUnsigned) { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x4}", r_ms.ReadUInt16()); }
564     else { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x4}", r_ms.ReadInt16()); }
565     break;
566     case SearchDataTypes._32bits:
567     if (_result.IsUnsigned) { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x8}", r_ms.ReadUInt32()); }
568     else { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x8}", r_ms.ReadInt32()); }
569     break;
570     case SearchDataTypes._64bits:
571     if (_result.IsUnsigned) { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x16}", r_ms.ReadUInt64()); }
572     else { AddedItems[i].SubItems[col_Added_Value].Text = string.Format("0x{0:x16}", r_ms.ReadInt64()); }
573     break;
574     }
575     r_ms.Close();
576     }
577     }
578 william 230 }
579 william 398 //Application.DoEvents();
580 william 230 }
581     #endregion
582    
583    
584 william 229 }
585    
586     private void ResultsUpdateWorkerThread_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
587     {
588 william 230 try
589     {
590     //if ((lstResults.SelectedItems.Count > 0) && !PatchedValue_NeedsUpdate ) return;
591     //if ((lstPatchList.SelectedItems.Count > 0) && !PatchedValue_NeedsUpdate) return;
592     if (!this.ShouldUpdateResults()) return;
593     if (ResultItems.Count > 0)
594     {
595     //lstResults.Items.Clear();
596     //lstResults.Items.AddRange(ResultItems.ToArray());
597 william 229
598 william 230 for (int i = 0; i < ResultItems.Count; i++)
599     {
600     lstResults.Items[i].SubItems[new AVPColumnText(AVPColumnType.VALUE).ColumnIndex].Text =
601     ResultItems[i].SubItems[new AVPColumnText(AVPColumnType.VALUE).ColumnIndex].Text;
602     }
603    
604     }
605     if (AddedItems.Count > 0)
606     {
607     //lstPatchList.Items.Clear();
608     //lstPatchList.Items.AddRange(AddedItems.ToArray());
609    
610     for (int i = 0; i < AddedItems.Count; i++)
611     {
612     lstPatchList.Items[i].SubItems[new AVPColumnText(AVPColumnType.VALUE).ColumnIndex].Text =
613     AddedItems[i].SubItems[new AVPColumnText(AVPColumnType.VALUE).ColumnIndex].Text;
614     }
615    
616     }
617     PatchedValue_NeedsUpdate = false;
618     }
619     catch { }
620 william 229 }
621    
622     private void btnImportFile_Click(object sender, EventArgs e)
623     {
624     this.FreezeResultsUpdate();
625     if (!lstPatchList.ImportFromFile())
626     {
627     MessageBox.Show("Failed to Import Patch List from File.", "Import Failure", MessageBoxButtons.OK, MessageBoxIcon.Error);
628     this.ThawResultsUpdate();
629     return;
630     }
631     else
632     {
633     MessageBox.Show("Succesfully Imported Patch List from File.", "Import Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
634     this.ThawResultsUpdate();
635     return;
636     }
637     }
638     bool g_isFrozen = false;
639     private bool IsResultsUpdateFrozen
640     {
641     get { return g_isFrozen; }
642     set { g_isFrozen = value; }
643     }
644     private void ThawResultsUpdate()
645     {
646     this.IsResultsUpdateFrozen = false;
647     if (this.AcceptedProcess != null)
648     {
649     #if !DO_NOT_SUSPEND_RESUME_THREAD_ON_FREEZE
650     ThreadControl.ResumeProcess(this.AcceptedProcess.Id);
651     #endif
652     }
653     }
654    
655     private void FreezeResultsUpdate()
656     {
657     this.IsResultsUpdateFrozen = true;
658 william 285 //this.IsResultsUpdateFrozen = false;
659 william 229 if (this.AcceptedProcess != null)
660     {
661     #if !DO_NOT_SUSPEND_RESUME_THREAD_ON_FREEZE
662     ThreadControl.SuspendProcess(this.AcceptedProcess.Id);
663     #endif
664     }
665     }
666    
667     private void btnExportFile_Click(object sender, EventArgs e)
668     {
669     this.FreezeResultsUpdate();
670     if (!lstPatchList.ExportToFile())
671     {
672     MessageBox.Show("Failed to Export Patch List to File.", "Export Failure", MessageBoxButtons.OK, MessageBoxIcon.Error);
673     this.ThawResultsUpdate();
674     return;
675     }
676     else
677     {
678     MessageBox.Show("Succesfully Exported Patch List to File.", "Export Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
679     this.ThawResultsUpdate();
680     return;
681     }
682     }
683    
684     private void btnImportClipboard_Click(object sender, EventArgs e)
685     {
686     this.FreezeResultsUpdate();
687     if (!lstPatchList.ImportFromClipboard())
688     {
689     MessageBox.Show("Failed to Import Patch List from Clipboard.", "Import Failure", MessageBoxButtons.OK, MessageBoxIcon.Error);
690     this.ThawResultsUpdate();
691     return;
692     }
693     else
694     {
695     MessageBox.Show("Succesfully Import Patch List from Clipboard.", "Import Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
696     this.ThawResultsUpdate();
697     }
698     }
699    
700     private void btnExportClipboard_Click(object sender, EventArgs e)
701     {
702     this.FreezeResultsUpdate();
703     if (!lstPatchList.ExportToClipboard())
704     {
705     MessageBox.Show("Failed to Export Patch List to Clipboard.", "Export Failure", MessageBoxButtons.OK, MessageBoxIcon.Error);
706     this.ThawResultsUpdate();
707     return;
708     }
709     else
710     {
711     MessageBox.Show("Succesfully Exported Patch List to Clipboard.", "Export Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
712     this.ThawResultsUpdate();
713     return;
714     }
715     }
716    
717     private void btnAddPatchAddress_Click(object sender, EventArgs e)
718     {
719 william 245 PatchAdder adder = new PatchAdder((IAcceptsProcessAndConfig)this);
720 william 229 adder.ShowDialog();
721     if (adder.WasAPatchAdded) AddToPatchList(adder.AddedPatchValue);
722     }
723    
724     private void btnAddAddressRange_Click(object sender, EventArgs e)
725     {
726 william 245 PatchRangeAdder adder = new PatchRangeAdder((IAcceptsProcessAndConfig)this);
727 william 229 adder.ShowDialog();
728     if (adder.WasAPatchAdded) AddToPatchList(adder.AddedPatchValue);
729     }
730     private void AddToPatchList(List<ResultDataType> item) { foreach (ResultDataType data in item) { AddToPatchList(data); } }
731     private void AddToPatchList(ResultDataType item)
732     {
733     ResultItem item2 = null;
734     switch (item.ValueType)
735     {
736     case SearchDataTypes._8bits:
737     if (item.IsUnsigned) { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToByte(item.Value)); }
738     else { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToSByte(item.Value)); }
739     break;
740     case SearchDataTypes._16bits:
741     if (item.IsUnsigned) { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToUInt16(item.Value)); }
742     else { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToInt16(item.Value)); }
743     break;
744     case SearchDataTypes._32bits:
745     if (item.IsUnsigned) { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToUInt32(item.Value)); }
746     else { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToInt32(item.Value)); }
747     break;
748     case SearchDataTypes._64bits:
749     if (item.IsUnsigned) { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToUInt64(item.Value)); }
750     else { item2 = new ResultItem(item.Address, item.IsFrozen, Convert.ToInt64(item.Value)); }
751     break;
752     }
753     this.AddToPatchList(item2);
754     }
755     private void AddToPatchList(ListViewItem item)
756     {
757     try
758     {
759     ResultDataType _result = (ResultDataType)item.Tag;
760     this.AddToPatchList(_result);
761     }
762     catch (InvalidCastException ex)
763     {
764     // unable to cast
765     MessageBox.Show(ex.Message, "Invalid Cast Exception", MessageBoxButtons.OK, MessageBoxIcon.Error);
766     }
767     catch (Exception ex)
768     {
769     // other exception
770     MessageBox.Show(ex.Message, "Unhandled Exception", MessageBoxButtons.OK, MessageBoxIcon.Error);
771     }
772     }
773     private void AddToPatchList(ResultItem item)
774     {
775     if (!lstPatchList.Items.Contains(item)) lstPatchList.Items.Add(item);
776     }
777     private void AddToPatchList(string address, SearchDataTypes bitsize, bool IsUnsigned)
778     {
779 william 245 ResultItemState state = new ResultItemState(address, bitsize, IsUnsigned, (IAcceptsProcessAndConfig)this);
780 william 229 ResultItem item = new ResultItem(state.Address, state.Value, state.Frozen, state.ValueType, state.IsUnsigned);
781     this.AddToPatchList(item);
782     }
783 william 230
784     private void mnuItemAddToPatchList_Click(object sender, EventArgs e)
785     {
786     if (!(lstResults.SelectedItems.Count > 0)) return;
787     //if (SearchArgs == null) return;
788    
789     try
790     {
791     for (int i = 0; i < lstResults.SelectedIndices.Count; i++)
792     {
793     //ResultDataType result = (ResultDataType)lstResults.Items[selected_index].Tag;
794     ListViewItem item = lstResults.Items[lstResults.SelectedIndices[i]];
795     this.AddToPatchList(item);
796     }
797     }
798     catch (Exception ex)
799     {
800     logger.Error.WriteLine(ex.ToString());
801     }
802     }
803    
804     private void mnuItemRemoveResult_Click(object sender, EventArgs e)
805     {
806     if (!(lstPatchList.SelectedItems.Count > 0)) return;
807     //if (SearchArgs == null) return;
808     try
809     {
810     this.FreezeResultsUpdate();
811     for (int i = 0; i < lstPatchList.SelectedIndices.Count; i++)
812     {
813     //lstPatchList.ThawItem(lstPatchList.SelectedIndices[i]);
814     lstPatchList.Items[lstPatchList.SelectedIndices[i]].Remove();
815     }
816     this.ThawResultsUpdate();
817     }
818     catch (Exception ex)
819     {
820     Debug.WriteLine(ex.ToString());
821     }
822     }
823     private void PatchRange(bool SingleEntry)
824     {
825     //if (SearchArgs == null) return;
826     #region Patch Selected Address
827     // stop ResultsUpdate Thread
828     ResultsUpdateWorkerThread.CancelAsync();
829    
830     List<ResultDataType> patch_list = new List<ResultDataType>();
831     List<int> SelectedIndexes = new List<int>();
832    
833     if (SingleEntry)
834     {
835     SelectedIndexes.Add(lstPatchList.SelectedIndices[0]);
836     }
837     else
838     {
839     foreach (int index in lstPatchList.SelectedIndices)
840     {
841     SelectedIndexes.Add(index);
842     }
843     }
844     //PCSX2MemoryProvider provider = new PCSX2MemoryProvider(this.SearchPCSX2ProcessPID, resultslog);
845     foreach (int index in SelectedIndexes)
846     {
847     if (SingleEntry)
848     {
849     SearchPatcher patcher = null;
850     uint Address = 0;
851     ListViewItem item = lstPatchList.Items[index];
852     ResultDataType _result = (ResultDataType)item.Tag;
853     Address = Convert.ToUInt32(item.SubItems[col_Found_Address].Text, 16);
854     switch (_result.ValueType)
855     {
856     case SearchDataTypes._8bits:
857     if (_result.IsUnsigned)
858     {
859     byte value = Convert.ToByte(item.SubItems[col_Found_Value].Text, 16);
860 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
861 william 230 timer_update_results.Enabled = false;
862     patcher.ShowDialog();
863     timer_update_results.Enabled = true;
864     PatchedValue_NeedsUpdate = true;
865     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
866     ResultsUpdateWorkerThread.RunWorkerAsync();
867     }
868     else
869     {
870     sbyte value = Convert.ToSByte(item.SubItems[col_Found_Value].Text, 16);
871 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
872 william 230 timer_update_results.Enabled = false;
873     patcher.ShowDialog();
874     timer_update_results.Enabled = true;
875     PatchedValue_NeedsUpdate = true;
876     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
877     ResultsUpdateWorkerThread.RunWorkerAsync();
878     }
879     break;
880     case SearchDataTypes._16bits:
881     if (_result.IsUnsigned)
882     {
883     ushort value = Convert.ToUInt16(item.SubItems[col_Found_Value].Text, 16);
884 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
885 william 230 timer_update_results.Enabled = false;
886     patcher.ShowDialog();
887     timer_update_results.Enabled = true;
888     PatchedValue_NeedsUpdate = true;
889     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
890     ResultsUpdateWorkerThread.RunWorkerAsync();
891     }
892     else
893     {
894     short value = Convert.ToInt16(item.SubItems[col_Found_Value].Text, 16);
895 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
896 william 230 timer_update_results.Enabled = false;
897     patcher.ShowDialog();
898     timer_update_results.Enabled = true;
899     PatchedValue_NeedsUpdate = true;
900     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
901     ResultsUpdateWorkerThread.RunWorkerAsync();
902     }
903     break;
904     case SearchDataTypes._32bits:
905     if (_result.IsUnsigned)
906     {
907     uint value = Convert.ToUInt32(item.SubItems[col_Found_Value].Text, 16);
908 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
909 william 230 timer_update_results.Enabled = false;
910     patcher.ShowDialog();
911     timer_update_results.Enabled = true;
912     PatchedValue_NeedsUpdate = true;
913     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
914     ResultsUpdateWorkerThread.RunWorkerAsync();
915     }
916     else
917     {
918     int value = Convert.ToInt32(item.SubItems[col_Found_Value].Text, 16);
919 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
920 william 230 timer_update_results.Enabled = false;
921     patcher.ShowDialog();
922     timer_update_results.Enabled = true;
923     PatchedValue_NeedsUpdate = true;
924     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
925     ResultsUpdateWorkerThread.RunWorkerAsync();
926     }
927     break;
928     case SearchDataTypes._64bits:
929     if (_result.IsUnsigned)
930     {
931     ulong value = Convert.ToUInt32(item.SubItems[col_Found_Value].Text, 16);
932 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
933 william 230 timer_update_results.Enabled = false;
934     patcher.ShowDialog();
935     timer_update_results.Enabled = true;
936     PatchedValue_NeedsUpdate = true;
937     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
938     ResultsUpdateWorkerThread.RunWorkerAsync();
939     }
940     else
941     {
942     long value = Convert.ToInt32(item.SubItems[col_Found_Value].Text, 16);
943 william 243 patcher = new SearchPatcher((IAcceptsProcessAndConfig)this, Address, value);
944 william 230 timer_update_results.Enabled = false;
945     patcher.ShowDialog();
946     timer_update_results.Enabled = true;
947     PatchedValue_NeedsUpdate = true;
948     if (!chkRefreshResults.Checked && !ResultsUpdateWorkerThread.IsBusy)
949     ResultsUpdateWorkerThread.RunWorkerAsync();
950     }
951     break;
952     }
953     }
954     else
955     {
956    
957     ListViewItem item = lstPatchList.Items[index];
958     ResultDataType _result = (ResultDataType)item.Tag;
959     patch_list.Add(_result);
960     }
961     }
962    
963     if (patch_list.Count > 0)
964     {
965 william 243 SearchRangePatcher rangePatcher = new SearchRangePatcher((IAcceptsProcessAndConfig)this, patch_list);
966 william 230 rangePatcher.ShowDialog();
967     }
968    
969     #endregion
970     }
971     private void mnuItemPatchSelectedEntry_Click(object sender, EventArgs e)
972     {
973     if (!(lstPatchList.SelectedItems.Count == 1)) return;
974     PatchRange(true);
975     }
976    
977     private void mnuItemPatchSelectedRange_Click(object sender, EventArgs e)
978     {
979     if (!(lstPatchList.SelectedItems.Count >= 1)) return;
980     PatchRange(false);
981     }
982    
983     private void mnuItemFreezeSelectedPatches_Click(object sender, EventArgs e)
984     {
985     if (!(lstPatchList.SelectedItems.Count > 0)) return;
986     //if (SearchArgs == null) return;
987     try
988     {
989     lstPatchList.ProcessID = this.AcceptedProcess.Id;
990     this.FreezeResultsUpdate();
991     for (int i = 0; i < lstPatchList.SelectedIndices.Count; i++)
992     {
993     lstPatchList.FreezeItem(lstPatchList.SelectedIndices[i]);
994     }
995     // force thaw and update
996     this.ThawResultsUpdate();
997     this.Update();
998     }
999     catch (Exception ex)
1000     {
1001     Debug.WriteLine(ex.ToString());
1002     }
1003     }
1004    
1005     private void mnuItemThawSelectedPatches_Click(object sender, EventArgs e)
1006     {
1007     if (!(lstPatchList.SelectedItems.Count > 0)) return;
1008     //if (SearchArgs == null) return;
1009     try
1010     {
1011     lstPatchList.ProcessID = this.AcceptedProcess.Id;
1012     this.FreezeResultsUpdate();
1013     for (int i = 0; i < lstPatchList.SelectedIndices.Count; i++)
1014     {
1015     lstPatchList.ThawItem(lstPatchList.SelectedIndices[i]);
1016     }
1017     // force thaw and update
1018     this.ThawResultsUpdate();
1019     this.Update();
1020     }
1021     catch (Exception ex)
1022     {
1023     Debug.WriteLine(ex.ToString());
1024     }
1025     }
1026    
1027     private void SearchWorkerThread_DoWork(object sender, DoWorkEventArgs e)
1028     {
1029 william 286 Stopwatch st = new Stopwatch();
1030     st.Start();
1031 william 392
1032     Stopwatch st_first_search = new Stopwatch();
1033     Stopwatch st_nonrange_search = new Stopwatch();
1034     Stopwatch st_ranged_search = new Stopwatch();
1035    
1036 william 286 e.Result = st;
1037 william 280 //List<ResultType<object>> tmp_Results = new List<ResultType<object>>();
1038     List<ResultType<object>> second_tmp_Results = new List<ResultType<object>>();
1039 william 402 //const int ElementsBeforeDisplay = 100;
1040 william 280 SearchArgs.LogSearchOptions();
1041 william 398 uint STEP_SIZE = (uint)SearchArgs.DataType / 8;
1042 william 399
1043     bool unsigned = SearchArgs.IsUnsignedDataType;
1044     SearchDataTypes sdt = SearchArgs.DataType;
1045 william 384 byte[] buffered_mem = new byte[(MemoryRangeSize - MemoryRangeStart)]; // throws OutOfMemoryException if size is over 2G
1046 william 398 using (GenericMemoryProvider provider = new GenericMemoryProvider((IAcceptsProcessAndConfig)this))
1047     {
1048     provider.OpenProvider();
1049     int bytes_read = 0;
1050     provider.ReadProcessMemoryAtOnce(MemoryRangeStart, (MemoryRangeSize - MemoryRangeStart), out bytes_read, out buffered_mem);
1051     provider.CloseProvider();
1052     }
1053 william 280 if (buffered_mem.Length == 0) { logger.Warn.WriteLine("Buffered Memory is Zero Length."); return; }
1054 william 398 using (MemoryStream ms = new MemoryStream(buffered_mem))
1055 william 280 {
1056 william 398 using (BinaryReader r_ms = new BinaryReader(ms))
1057 william 280 {
1058 william 398 logger.Debug.WriteLine(string.Format("Buffered Memory Size -> 0x{0:x8}", buffered_mem.Length));
1059     int Last_Whole_Percent_Done = 0;
1060    
1061     #region First Search
1062     if (SearchArgs.IsFirstSearch)
1063 william 280 {
1064 william 398 st_first_search.Start();
1065 william 401 //SearchArgs.Results.Clear();
1066 william 398 r_ms.BaseStream.Seek(0, SeekOrigin.Begin);
1067 william 405 int count = (int)buffered_mem.Length / (int)STEP_SIZE;
1068     #region using (SearchResultWriter writer = new SearchResultWriter(count))
1069     using (SearchResultWriter writer = new SearchResultWriter(count))
1070 william 398 {
1071 william 401 //List<ResultType<object>> results_list = new List<ResultType<object>>();
1072     //for (uint i = 0; i < buffered_mem.Length; i += STEP_SIZE)
1073     //{
1074     #region while (r_ms.BaseStream.Position < r_ms.BaseStream.Length)
1075     while (r_ms.BaseStream.Position < r_ms.BaseStream.Length)
1076 william 398 {
1077 william 401 //using (ResultType<object> _tmp_result = new ResultType<object>())
1078     //{
1079 william 399 switch (sdt)
1080 william 398 {
1081     case SearchDataTypes._8bits:
1082 william 401 if (unsigned) { writer.WriteResult<Byte>((uint)r_ms.BaseStream.Position, r_ms.ReadByte()); }
1083     else { writer.WriteResult<SByte>((uint)r_ms.BaseStream.Position, r_ms.ReadSByte()); } break;
1084 william 398 case SearchDataTypes._16bits:
1085 william 401 if (unsigned) { writer.WriteResult<UInt16>((uint)r_ms.BaseStream.Position, r_ms.ReadUInt16()); }
1086     else { writer.WriteResult<Int16>((uint)r_ms.BaseStream.Position, r_ms.ReadInt16()); } break;
1087 william 398 case SearchDataTypes._32bits:
1088 william 401 if (unsigned) { writer.WriteResult<UInt32>((uint)r_ms.BaseStream.Position, r_ms.ReadUInt32()); }
1089     else { writer.WriteResult<Int32>((uint)r_ms.BaseStream.Position, r_ms.ReadInt32()); } break;
1090 william 398 case SearchDataTypes._64bits:
1091 william 401 if (unsigned) { writer.WriteResult<UInt64>((uint)r_ms.BaseStream.Position, r_ms.ReadUInt64()); }
1092     else { writer.WriteResult<Int64>((uint)r_ms.BaseStream.Position, r_ms.ReadInt64()); } break;
1093 william 398 }
1094     //results_list.Add(_tmp_result);
1095 william 401 //SearchArgs.Results.Add(_tmp_result);
1096     double double_percent_done = 100.0 * (double)((double)r_ms.BaseStream.Position / (double)r_ms.BaseStream.Length);
1097     int int_percent_done = (int)double_percent_done;
1098     if (int_percent_done != Last_Whole_Percent_Done)
1099     {
1100 william 405 if (int_percent_done <= 100)
1101     {
1102     resultsprogress.Value = int_percent_done;
1103     resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", (r_ms.BaseStream.Position + MemoryRangeStart));
1104     Last_Whole_Percent_Done = int_percent_done;
1105     }
1106 william 401 }
1107 william 398 }
1108     if (SearchWorkerThread.CancellationPending == true)
1109 william 405 {
1110     e.Cancel = true;
1111     return;
1112     }
1113     #endregion
1114 william 398 }
1115 william 405 #endregion
1116    
1117 william 398 //}
1118     //SearchArgs.Results.AddRange(results_list);
1119     //results_list = null;
1120     resultsprogress.Value = 100;
1121     resultsprogress.Message = "";
1122 william 388 //Application.DoEvents();
1123 william 398 st_first_search.Stop();
1124     logger.Profiler.WriteLine("First search took a total of {0} seconds to complete.", st_first_search.Elapsed.TotalSeconds);
1125 william 405 Last_Whole_Percent_Done = 0;
1126 william 356 }
1127 william 398 #endregion
1128 william 280
1129 william 398 #region Subsequent Searches
1130     r_ms.BaseStream.Seek(0, SeekOrigin.Begin);
1131    
1132    
1133     // hack to help with OutOfMemory Exceptions (OldValue and Equal compare will always add all found search results)
1134     bool NeedToCompare = true;
1135     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue &&
1136     SearchArgs.CompareType == SearchCompareTypes.Equal &&
1137     SearchArgs.IsFirstSearch)
1138 william 280 {
1139 william 398 NeedToCompare = false;
1140 william 402 //second_tmp_Results = null; // Free Memory
1141 william 280 }
1142    
1143 william 398 if (NeedToCompare)
1144     {
1145     if (SearchArgs.CompareType != SearchCompareTypes.Between && SearchArgs.CompareType != SearchCompareTypes.NotBetween)
1146 william 280 {
1147 william 398 #region Non-Range Searches
1148     st_nonrange_search.Start();
1149     //second_tmp_Results = new List<ResultType<object>>(SearchArgs.Results.Count * 1024);
1150     ////second_tmp_Results.c
1151 william 402
1152     using (SearchResultReader reader = new SearchResultReader())
1153 william 398 {
1154 william 402 for (int i = 0; i < reader.ResultCount; i += 1)
1155 william 280 {
1156 william 403 if (reader.ReadCurrentAddess)
1157     {
1158     if (!reader.ReadCurrentValue)
1159     {
1160     switch (SearchArgs.DataType)
1161     {
1162     case SearchDataTypes._8bits: if (unsigned) { reader.CurrentResult<byte>(); } else { reader.CurrentResult<sbyte>(); } break;
1163     case SearchDataTypes._16bits: if (unsigned) { reader.CurrentResult<ushort>(); } else { reader.CurrentResult<short>(); } break;
1164     case SearchDataTypes._32bits: if (unsigned) { reader.CurrentResult<uint>(); } else { reader.CurrentResult<int>(); } break;
1165     case SearchDataTypes._64bits: if (unsigned) { reader.CurrentResult<ulong>(); } else { reader.CurrentResult<long>(); } break;
1166     }
1167     }
1168     }
1169 william 402 uint address = reader.CurrentAddress();
1170     if (MemoryRangeStart > 0 && !SearchArgs.IsFirstSearch) { address = address - MemoryRangeStart; }
1171 william 403 try
1172     {
1173     r_ms.BaseStream.Seek(address, SeekOrigin.Begin);
1174     }
1175     catch(Exception)
1176     {
1177     throw;
1178     }
1179 william 402 switch (SearchArgs.DataType)
1180     {
1181     #region Comparer Support
1182     #region case SearchDataTypes._8bits:
1183     case SearchDataTypes._8bits:
1184     if (SearchArgs.IsUnsignedDataType)
1185 william 398 {
1186 william 402 byte lookup_value = r_ms.ReadByte();
1187     _8bit_unsigned_comparer_ comparer = new _8bit_unsigned_comparer_(SearchArgs, address);
1188     byte value = 0;
1189     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1190     {
1191     value = reader.CurrentResult<byte>();
1192     comparer.Value = value;
1193     }
1194     else
1195     {
1196     value = Convert.ToByte(SearchArgs.CompareStartValue);
1197     comparer.Value = value;
1198     }
1199     if (comparer.Compare(lookup_value, value))
1200     {
1201     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1202     second_tmp_Results.Add(_tmp_result);
1203     }
1204     comparer = null; // free memory
1205 william 398 }
1206     else
1207     {
1208 william 402 sbyte lookup_value = r_ms.ReadSByte();
1209     _8bit_signed_comparer_ comparer = new _8bit_signed_comparer_(SearchArgs, address);
1210     sbyte value = 0;
1211     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1212     {
1213     value = reader.CurrentResult<sbyte>();
1214     }
1215     else
1216     {
1217     value = Convert.ToSByte(SearchArgs.CompareStartValue);
1218     }
1219     if (comparer.Compare(lookup_value, value))
1220     {
1221     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1222     second_tmp_Results.Add(_tmp_result);
1223     }
1224     comparer = null; // free memory
1225 william 398 }
1226 william 402 break;
1227     #endregion
1228     #region case SearchDataTypes._16bits:
1229     case SearchDataTypes._16bits:
1230     if (SearchArgs.IsUnsignedDataType)
1231 william 398 {
1232 william 402 ushort lookup_value = r_ms.ReadUInt16();
1233     _16bit_unsigned_comparer_ comparer = new _16bit_unsigned_comparer_(SearchArgs, address);
1234     ushort value = 0;
1235     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1236     {
1237     value = reader.CurrentResult<ushort>();
1238     comparer.Value = value;
1239     }
1240     else
1241     {
1242     value = Convert.ToUInt16(SearchArgs.CompareStartValue);
1243     comparer.Value = value;
1244     }
1245     if (comparer.Compare(lookup_value, value))
1246     {
1247     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1248     second_tmp_Results.Add(_tmp_result);
1249     }
1250     comparer = null; // free memory
1251 william 398 }
1252     else
1253     {
1254 william 402 short lookup_value = r_ms.ReadInt16();
1255     _16bit_signed_comparer_ comparer = new _16bit_signed_comparer_(SearchArgs, address);
1256     short value = 0;
1257     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1258     {
1259     value = reader.CurrentResult<short>();
1260     }
1261     else
1262     {
1263     value = Convert.ToInt16(SearchArgs.CompareStartValue);
1264     }
1265     if (comparer.Compare(lookup_value, value))
1266     {
1267     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1268     second_tmp_Results.Add(_tmp_result);
1269     }
1270     comparer = null; // free memory
1271 william 398 }
1272 william 402 break;
1273     #endregion
1274     #region case SearchDataTypes._32bits:
1275     case SearchDataTypes._32bits:
1276     if (SearchArgs.IsUnsignedDataType)
1277 william 398 {
1278 william 403 uint lookup_value = r_ms.ReadUInt32();
1279 william 402 _32bit_unsigned_comparer_ comparer = new _32bit_unsigned_comparer_(SearchArgs, address);
1280     uint value = 0;
1281     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1282     {
1283     value = reader.CurrentResult<uint>();
1284     comparer.Value = value;
1285     }
1286     else
1287     {
1288     value = Convert.ToUInt32(SearchArgs.CompareStartValue);
1289     comparer.Value = value;
1290     }
1291     if (comparer.Compare(lookup_value, value))
1292     {
1293     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1294     second_tmp_Results.Add(_tmp_result);
1295     }
1296     comparer = null; // free memory
1297 william 398 }
1298     else
1299     {
1300 william 402 int lookup_value = r_ms.ReadInt32();
1301     _32bit_signed_comparer_ comparer = new _32bit_signed_comparer_(SearchArgs, address);
1302     int value = 0;
1303     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1304     {
1305     value = reader.CurrentResult<int>();
1306     }
1307     else
1308     {
1309     value = Convert.ToInt32(SearchArgs.CompareStartValue);
1310     }
1311     if (comparer.Compare(lookup_value, value))
1312     {
1313     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1314     second_tmp_Results.Add(_tmp_result);
1315     }
1316     comparer = null; // free memory
1317 william 398 }
1318 william 402 break;
1319     #endregion
1320     #region case SearchDataTypes._64bits:
1321     case SearchDataTypes._64bits:
1322     if (SearchArgs.IsUnsignedDataType)
1323 william 398 {
1324 william 402 ulong lookup_value = r_ms.ReadUInt64();
1325     _64bit_unsigned_comparer_ comparer = new _64bit_unsigned_comparer_(SearchArgs, address);
1326     ulong value = 0;
1327     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1328     {
1329     value = reader.CurrentResult<ulong>();
1330     comparer.Value = value;
1331     }
1332     else
1333     {
1334     value = Convert.ToUInt64(SearchArgs.CompareStartValue);
1335     comparer.Value = value;
1336     }
1337     if (comparer.Compare(lookup_value, value))
1338     {
1339     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1340     second_tmp_Results.Add(_tmp_result);
1341     }
1342     comparer = null; // free memory
1343 william 398 }
1344     else
1345     {
1346 william 402 long lookup_value = r_ms.ReadInt64();
1347     _64bit_signed_comparer_ comparer = new _64bit_signed_comparer_(SearchArgs, address);
1348     long value = 0;
1349     if (SearchArgs.CompareValueType == CompareValueTypes.OldValue)
1350     {
1351     value = reader.CurrentResult<long>();
1352     }
1353     else
1354     {
1355     value = Convert.ToInt64(SearchArgs.CompareStartValue);
1356     }
1357     if (comparer.Compare(lookup_value, value))
1358     {
1359     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1360     second_tmp_Results.Add(_tmp_result);
1361     }
1362     comparer = null; // free memory
1363 william 398 }
1364 william 402 break;
1365     #endregion
1366     #endregion
1367     }
1368 william 398
1369 william 402 double double_percent_done = 100.0 * (double)((double)i / (double)reader.ResultCount);
1370     int int_percent_done = (int)double_percent_done;
1371     if (int_percent_done != Last_Whole_Percent_Done)
1372     {
1373 william 405 if (int_percent_done <= 100)
1374     {
1375     resultsprogress.Value = int_percent_done;
1376     resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i + MemoryRangeStart);
1377     Last_Whole_Percent_Done = int_percent_done;
1378     }
1379 william 402 }
1380    
1381 william 280 }
1382 william 398 }
1383     st_nonrange_search.Stop();
1384     logger.Profiler.WriteLine("Non-Ranged search took a total of {0} seconds to complete.", st_nonrange_search.Elapsed.TotalSeconds);
1385 william 405 Last_Whole_Percent_Done = 0;
1386 william 385 #endregion
1387 william 398 }
1388     #region Ranged Searches
1389     #if !DONOT_HAVE_RANGED_SEARCH_SUPPORT
1390     if (SearchArgs.CompareType == SearchCompareTypes.Between || SearchArgs.CompareType == SearchCompareTypes.NotBetween)
1391     {
1392     st_ranged_search.Start();
1393     object start, end;
1394    
1395     start = SearchArgs.CompareStartValue;
1396     end = SearchArgs.CompareEndValue;
1397 william 402 using (SearchResultReader reader = new SearchResultReader())
1398 william 398 {
1399 william 402 for (int i = 0; i < reader.ResultCount; i += 1)
1400 william 280 {
1401 william 402 uint address = reader.CurrentAddress();
1402     if (MemoryRangeStart > 0 && !SearchArgs.IsFirstSearch) { address = address - MemoryRangeStart; }
1403     r_ms.BaseStream.Seek(address, SeekOrigin.Begin);
1404     if (SearchArgs.CompareType == SearchCompareTypes.Between)
1405 william 280 {
1406 william 402 InRangeComparer comparer = new InRangeComparer(address, 0);
1407     if (comparer.Compare(start, end, SearchArgs.DataType, SearchArgs.IsUnsignedDataType, r_ms))
1408     {
1409     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1410     second_tmp_Results.Add(_tmp_result);
1411     }
1412     comparer = null;
1413 william 280 }
1414 william 402 else if (SearchArgs.CompareType == SearchCompareTypes.NotBetween)
1415 william 280 {
1416 william 402 NotInRangeComparer comparer = new NotInRangeComparer(address, 0);
1417     if (comparer.Compare(start, end, SearchArgs.DataType, SearchArgs.IsUnsignedDataType, r_ms))
1418     {
1419     ResultType<object> _tmp_result = new ResultType<object>(comparer.Address, comparer.Value);
1420     second_tmp_Results.Add(_tmp_result);
1421     }
1422     comparer = null;
1423 william 280 }
1424 william 402 else
1425     {
1426     throw new InvalidOperationException("Encounted unkown range search type: " + SearchArgs.CompareType);
1427     }
1428     double double_percent_done = 100.0 * (double)((double)i / (double)reader.ResultCount);
1429     int int_percent_done = (int)double_percent_done;
1430     if (int_percent_done != Last_Whole_Percent_Done)
1431     {
1432 william 405 if (int_percent_done <= 100)
1433     {
1434     resultsprogress.Value = int_percent_done;
1435     resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i + MemoryRangeStart);
1436     Last_Whole_Percent_Done = int_percent_done;
1437     }
1438 william 402 }
1439 william 280 }
1440 william 398 }
1441     st_ranged_search.Stop();
1442     logger.Profiler.WriteLine("Ranged search took a total of {0} seconds to complete.", st_ranged_search.Elapsed.TotalSeconds);
1443 william 280 }
1444 william 398 #endif
1445     #endregion
1446 william 280
1447     }
1448     #endregion
1449 william 398 // leave SearchArgs.Results alone, if false
1450     if (NeedToCompare)
1451 william 280 {
1452 william 398 // fix addresses when memory start is not zero
1453 william 403 if (MemoryRangeStart > 0 && SearchArgs.IsFirstSearch) { for (int i = 0; i < second_tmp_Results.Count; i++) { second_tmp_Results[i].Address = second_tmp_Results[i].Address + MemoryRangeStart; } }
1454     using (SearchResultWriter writer = new SearchResultWriter(second_tmp_Results.Count))
1455 william 402 {
1456 william 403 for (int i = 0; i < second_tmp_Results.Count; i++)
1457 william 402 {
1458 william 403 switch (sdt)
1459 william 402 {
1460 william 403 case SearchDataTypes._8bits:
1461     if (unsigned) { writer.WriteResult<Byte>(second_tmp_Results[i].Address, Convert.ToByte(second_tmp_Results[i].Value)); }
1462     else { writer.WriteResult<SByte>(second_tmp_Results[i].Address, Convert.ToSByte(second_tmp_Results[i].Value)); } break;
1463     case SearchDataTypes._16bits:
1464     if (unsigned) { writer.WriteResult<UInt16>(second_tmp_Results[i].Address, Convert.ToUInt16(second_tmp_Results[i].Value)); }
1465     else { writer.WriteResult<Int16>(second_tmp_Results[i].Address, Convert.ToInt16(second_tmp_Results[i].Value)); } break;
1466     case SearchDataTypes._32bits:
1467     if (unsigned) { writer.WriteResult<UInt32>(second_tmp_Results[i].Address, Convert.ToUInt32(second_tmp_Results[i].Value)); }
1468     else { writer.WriteResult<Int32>(second_tmp_Results[i].Address, Convert.ToInt32(second_tmp_Results[i].Value)); } break;
1469     case SearchDataTypes._64bits:
1470     if (unsigned) { writer.WriteResult<UInt64>(second_tmp_Results[i].Address, Convert.ToUInt64(second_tmp_Results[i].Value)); }
1471     else { writer.WriteResult<Int64>(second_tmp_Results[i].Address, Convert.ToInt64(second_tmp_Results[i].Value)); } break;
1472 william 402 }
1473     }
1474 william 403 }
1475 william 402 second_tmp_Results = null; // free memory
1476 william 280 }
1477 william 398
1478     r_ms.Close();
1479 william 280 }
1480     }
1481 william 230 }
1482    
1483     private void SearchWorkerThread_ProgressChanged(object sender, ProgressChangedEventArgs e)
1484     {
1485 william 280 //if (SearchArgs.ProgressLogger != null)
1486     //{
1487     // resultsprogress.Value = e.ProgressPercentage;
1488     // //Application.DoEvents();
1489     //}
1490 william 230 }
1491    
1492     private void SearchWorkerThread_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
1493     {
1494 william 286 if (!e.Cancelled)
1495     {
1496     Stopwatch st = (e.Result as Stopwatch);
1497     st.Stop();
1498 william 392 logger.Profiler.WriteLine("Search took {0} seconds, overall, to complete.", st.Elapsed.TotalSeconds);
1499 william 286 }
1500    
1501 william 280 resultsprogress.Value = 100;
1502 william 230
1503 william 402 using (SearchResultReader reader = new SearchResultReader())
1504     {
1505 william 280
1506 william 402 logger.Debug.WriteLine(string.Format("Results Count -> 0x{0:x8}", reader.ResultCount));
1507 william 280
1508 william 402
1509     if (reader.ResultCount == 1) // debug message for 1 result using 32bit unsigned
1510     logger.Debug.WriteLine(string.Format("Debug: Found 1 result -> Address: 0x{0:x8} Value: 0x{1:x16}", reader.CurrentAddress(), reader.CurrentResult<ulong>()));
1511    
1512     logger.Info.WriteLine(string.Format("Found 0x{0:x8} results", reader.ResultCount));
1513    
1514     if (reader.ResultCount <= MIN_NUMBER_OF_RESULTS_BEFORE_DISPLAY)
1515 william 280 {
1516 william 402 lstResults.Items.Clear();
1517     List<ResultItem> items = new List<ResultItem>();
1518     for (int i = 0; i < reader.ResultCount; i++)
1519 william 280 {
1520 william 402 ResultItem item = new ResultItem(0, false);
1521     //item.Text = string.Format("0x{0:x8}", SearchArgs.Results[i].Address);
1522     //item.SubItems.Add(string.Format("0x{0:x8}", SearchArgs.Results[i].Address));
1523     switch (SearchArgs.DataType)
1524     {
1525 william 280
1526 william 402 case SearchDataTypes._8bits:
1527     if (SearchArgs.IsUnsignedDataType) { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<byte>()); }
1528     else { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<sbyte>()); }
1529     break;
1530     case SearchDataTypes._16bits:
1531     if (SearchArgs.IsUnsignedDataType) { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<ushort>()); }
1532     else { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<short>()); }
1533     break;
1534     case SearchDataTypes._32bits:
1535     if (SearchArgs.IsUnsignedDataType) { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<uint>()); }
1536     else { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<int>()); }
1537     break;
1538     case SearchDataTypes._64bits:
1539     if (SearchArgs.IsUnsignedDataType) { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<ulong>()); }
1540     else { item = new ResultItem(reader.CurrentAddress(), false, reader.CurrentResult<long>()); }
1541     break;
1542     }
1543    
1544     if (!items.Contains(item))
1545     items.Add(item);
1546 william 280 }
1547 william 402 lstResults.Items.AddRange(items.ToArray());
1548 william 280 }
1549     }
1550    
1551     this.DoSearchDoneSpecific();
1552     //System.Threading.Thread.Sleep(100);
1553     //if (_SEARCH_MODE != SearchMode.SEARCH_MODE_NORMAL_WITH_JOKER)
1554     this.ThawResultsUpdate();
1555     Application.DoEvents();
1556 william 230 }
1557 william 280 private void DoSearchDoneSpecific()
1558     {
1559     SearchWorkerThread.CancelAsync();
1560     if (lstResults.Items.Count > 0) { timer_update_results.Enabled = true; }
1561     else { timer_update_results.Enabled = false; }
1562 william 230
1563 william 280 search_progress_updater.Enabled = false;
1564    
1565     btnCancel.Enabled = false;
1566     btnReset.Enabled = true;
1567     btnSearch.Enabled = true;
1568     grpCompareType.Enabled = true;
1569     grpCompareValue.Enabled = true;
1570     resultsprogress.Value = 0;
1571     resultsprogress.Message = "";
1572     grpDataType.Enabled = false;
1573     // resume process on reset, incase it was suspended
1574     ThreadControl.ResumeProcess(this.AcceptedProcess.Id);
1575     //Application.DoEvents();
1576     this.Refresh();
1577     }
1578    
1579     private void DoCancelSpecific()
1580     {
1581     this.DoSearchDoneSpecific();
1582     }
1583     private void DoResetSpecific()
1584     {
1585     this.DoCancelSpecific();
1586     IsFirstSearch = true;
1587     grpDataType.Enabled = true;
1588     }
1589 william 230 private void search_progress_updater_Tick(object sender, EventArgs e)
1590     {
1591     if ((this.AcceptedProcess ==null) || Process.GetProcessById(this.AcceptedProcess.Id) == null)
1592     {
1593     SearchWorkerThread.CancelAsync();
1594     //JokerSearchWorker.CancelAsync();
1595     ResultsUpdateWorkerThread.CancelAsync();
1596     }
1597     }
1598    
1599 william 280 #region Search Button
1600 william 230 private void btnSearch_Click(object sender, EventArgs e)
1601     {
1602 william 271 this.SearchInProgess = true;
1603 william 280 //btnCancel.Enabled = true;
1604     //btnReset.Enabled = false;
1605     //btnSearch.Enabled = false;
1606     this.FreezeResultsUpdate();
1607     this.handle_btnSearch_Click();
1608     }
1609     private void handle_btnSearch_Click()
1610     {
1611     //this.FreezeResultsUpdate();
1612     lstResults.Items.Clear();
1613    
1614     if (lstResults.Items.Count > 0) { timer_update_results.Enabled = true; }
1615     else { timer_update_results.Enabled = false; }
1616    
1617    
1618     resultsprogress.Value = 0;
1619     bool _is_unsigned = chkUnsigned.Checked;
1620     SearchType search_type = new SearchType();
1621     SearchDataTypes _data_type = new SearchDataTypes();
1622     SearchCompareTypes _compare_type = new SearchCompareTypes();
1623     CompareValueTypes _compare_value_type = new CompareValueTypes();
1624     object start_value = 0;
1625     object end_value = 0;
1626     // get datatype
1627     if (radio_8bits.Checked) { _data_type = SearchDataTypes._8bits; }
1628     else if (radio_16bits.Checked) { _data_type = SearchDataTypes._16bits; }
1629     else if (radio_32bits.Checked) { _data_type = SearchDataTypes._32bits; }
1630     else if (radio_64bits.Checked) { _data_type = SearchDataTypes._64bits; }
1631     else { logger.Error.WriteLine("Could not determine search data type bit size. (was not 8/16/32/or 64bits)"); }
1632     // get compare type
1633     if (radiocompare_equal.Checked) { _compare_type = SearchCompareTypes.Equal; }
1634     else if (radiocompare_greaterthan.Checked) { _compare_type = SearchCompareTypes.GreaterThan; }
1635     else if (radiocompare_lessthan.Checked) { _compare_type = SearchCompareTypes.LessThan; }
1636     else if (radiocompare_greaterthan_orequal.Checked) { _compare_type = SearchCompareTypes.GreaterThanOrEqual; }
1637     else if (radiocompare_lessthan_orequal.Checked) { _compare_type = SearchCompareTypes.LessThanOrEqual; }
1638     else if (radiocompare_notequal.Checked) { _compare_type = SearchCompareTypes.NotEqual; }
1639     else if (radiocompare_between.Checked) { _compare_type = SearchCompareTypes.Between; }
1640     else if (radiocompare_notbetween.Checked) { _compare_type = SearchCompareTypes.NotBetween; }
1641     else { logger.Error.WriteLine("Could not determine search comparison type. (was not == > < >= <= != <> or !<>)"); }
1642     // get compare valure type
1643     if (radio_oldvalue.Checked) { _compare_value_type = CompareValueTypes.OldValue; }
1644     else if (radio_specificvalue.Checked) { _compare_value_type = CompareValueTypes.SpecificValue; }
1645     else { logger.Error.WriteLine("Could not determine search comparison type. (was not old or specific value"); }
1646    
1647     if (_compare_value_type == CompareValueTypes.SpecificValue || (_compare_type == SearchCompareTypes.Between || _compare_type == SearchCompareTypes.NotBetween))
1648     {
1649    
1650     switch (_data_type)
1651     {
1652     case SearchDataTypes._8bits:
1653     if (_is_unsigned) { start_value = txtStartAddr.ToByte(); }
1654     else { start_value = txtStartAddr.ToSByte(); }
1655     break;
1656     case SearchDataTypes._16bits:
1657     if (_is_unsigned) { start_value = txtStartAddr.ToUInt16(); }
1658     else { start_value = txtStartAddr.ToInt16(); }
1659     break;
1660     case SearchDataTypes._32bits:
1661     if (_is_unsigned) { start_value = txtStartAddr.ToUInt32(); }
1662     else { start_value = txtStartAddr.ToInt32(); }
1663     break;
1664     case SearchDataTypes._64bits:
1665     if (_is_unsigned) { start_value = txtStartAddr.ToUInt64(); }
1666     else { start_value = txtStartAddr.ToInt64(); }
1667     break;
1668     default: throw new InvalidOperationException("In SearchType(): Encounterd an Unkown Search Data Type.");
1669     }
1670     }
1671     if (_compare_type == SearchCompareTypes.Between || _compare_type == SearchCompareTypes.NotBetween)
1672     {
1673     switch (_data_type)
1674     {
1675     case SearchDataTypes._8bits:
1676     if (_is_unsigned) { end_value = txtEndAddr.ToByte(); }
1677     else { end_value = txtEndAddr.ToSByte(); }
1678     break;
1679     case SearchDataTypes._16bits:
1680     if (_is_unsigned) { end_value = txtEndAddr.ToUInt16(); }
1681     else { end_value = txtEndAddr.ToInt16(); }
1682     break;
1683     case SearchDataTypes._32bits:
1684     if (_is_unsigned) { end_value = txtEndAddr.ToUInt32(); }
1685     else { end_value = txtEndAddr.ToInt32(); }
1686     break;
1687     case SearchDataTypes._64bits:
1688     if (_is_unsigned) { end_value = txtEndAddr.ToUInt64(); }
1689     else { end_value = txtEndAddr.ToInt64(); }
1690     break;
1691     default: throw new InvalidOperationException("In SearchType(): Encounterd an Unkown Search Data Type.");
1692     }
1693     }
1694    
1695     search_type = new SearchType(_data_type, _is_unsigned, _compare_type, _compare_value_type, start_value, end_value, resultsprogress);
1696    
1697     //search_type.LogSearchOptions();
1698    
1699     search_type.IsFirstSearch = IsFirstSearch;
1700    
1701    
1702    
1703     DoSearch(search_type);
1704     IsFirstSearch = false;
1705     }
1706     private void DoSearch(SearchType args)
1707     {
1708     if (!args.IsFirstSearch && SearchArgs != null)
1709     {
1710     //args.Results.AddRange(SearchArgs.Results.ToArray());
1711 william 402 //args.Results = SearchArgs.Results;
1712 william 280 }
1713     SearchArgs = args;
1714     #if DONOT_HAVE_RANGED_SEARCH_SUPPORT
1715     if (SearchArgs.CompareType == SearchCompareTypes.Between || SearchArgs.CompareType == SearchCompareTypes.NotBetween)
1716     {
1717     throw new NotImplementedException("Between and Not Between Range searches have not been implemented.");
1718     }
1719     #endif
1720     search_progress_updater.Enabled = true;
1721     //padPluginSelector.Enabled = false;
1722     //gsPluginSelector.Enabled = false;
1723 william 271 btnReset.Enabled = false;
1724     btnSearch.Enabled = false;
1725 william 280 btnCancel.Enabled = true;
1726     grpDataType.Enabled = false;
1727     grpCompareType.Enabled = false;
1728     grpCompareValue.Enabled = false;
1729     this.Refresh();
1730     Application.DoEvents();
1731     SearchWorkerThread.RunWorkerAsync();
1732 william 230 }
1733 william 280 #endregion
1734 william 271 private void btnReset_Click(object sender, EventArgs e)
1735     {
1736     this.SearchInProgess = false;
1737 william 280 //btnSearch.Enabled = true;
1738     //btnCancel.Enabled = false;
1739     this.DoResetSpecific();
1740     lstResults.Items.Clear();
1741 william 402 //try { SearchArgs.Results = new List<ResultType<object>>(); }
1742     //catch { }
1743 william 271 }
1744    
1745     private void btnCancel_Click(object sender, EventArgs e)
1746     {
1747     this.SearchInProgess = false;
1748 william 280 //btnCancel.Enabled = false;
1749     //btnSearch.Enabled = true;
1750     //btnReset.Enabled = true;
1751     this.DoCancelSpecific();
1752 william 271 }
1753 william 275
1754     private void mnuItemPatchListViewMemoryRegion_Click(object sender, EventArgs e)
1755     {
1756     List<ResultDataType> patch_list = new List<ResultDataType>();
1757     List<int> SelectedIndexes = new List<int>();
1758     foreach (int index in lstPatchList.SelectedIndices) { SelectedIndexes.Add(index); }
1759     foreach (int index in SelectedIndexes)
1760     {
1761     ListViewItem item = lstPatchList.Items[index];
1762     ResultDataType rdt = (ResultDataType)item.Tag;
1763     ViewMemoryRegion(rdt);
1764     break; // only get the fist item
1765     }
1766     }
1767    
1768     private void mnuItemResultsListViewMemoryRegion_Click(object sender, EventArgs e)
1769     {
1770     List<ResultDataType> patch_list = new List<ResultDataType>();
1771     List<int> SelectedIndexes = new List<int>();
1772     foreach (int index in lstResults.SelectedIndices) { SelectedIndexes.Add(index); }
1773     foreach (int index in SelectedIndexes)
1774     {
1775     ListViewItem item = lstResults.Items[index];
1776     ResultDataType rdt = (ResultDataType)item.Tag;
1777     ViewMemoryRegion(rdt);
1778     break; // only get the fist item
1779     }
1780     }
1781     private void ViewMemoryRegion(ResultDataType rdt)
1782     {
1783     if (OnBrowseMemoryRegion != null)
1784 william 323 OnBrowseMemoryRegion(new BrowseMemoryRegionEvent(this, rdt.Address));
1785 william 275 }
1786 william 277
1787     private void mnuAddedResults_Opening(object sender, CancelEventArgs e)
1788     {
1789     if (!(lstPatchList.Items.Count > 0)) { mnuItemRemoveResult.Visible = false; e.Cancel = true; }
1790     if (!(lstPatchList.Items.Count > 0)) { mnuItemPatchSelectedEntry.Visible = false; e.Cancel = true; }
1791     if (e.Cancel) return;
1792     if (lstPatchList.Items.Count > 0) mnuItemRemoveResult.Visible = true;
1793     if (lstPatchList.Items.Count > 0) mnuItemPatchSelectedEntry.Visible = true;
1794    
1795     if (!(lstPatchList.Items.Count > 0)) { mnuItemFreezeSelectedPatches.Visible = false; e.Cancel = true; }
1796     if (!(lstPatchList.Items.Count > 0)) { mnuItemThawSelectedPatches.Visible = false; e.Cancel = true; }
1797     if (e.Cancel) return;
1798    
1799     if (lstPatchList.Items.Count > 0) mnuItemFreezeSelectedPatches.Visible = true;
1800     if (lstPatchList.Items.Count > 0) mnuItemThawSelectedPatches.Visible = true;
1801    
1802     if (lstPatchList.SelectedItems.Count == 0) e.Cancel = true;
1803     if (e.Cancel) return;
1804    
1805     }
1806    
1807     private void mnuResults_Opening(object sender, CancelEventArgs e)
1808     {
1809     if (!(lstResults.Items.Count > 0)) e.Cancel = true;
1810     if (lstResults.SelectedItems.Count == 0) e.Cancel = true;
1811     if (SearchArgs == null) e.Cancel = true;
1812     if (e.Cancel) return;
1813     }
1814 william 287
1815     private void chkMemoryRangeExpertMode_CheckedChanged(object sender, EventArgs e)
1816     {
1817 william 288 txtMemoryRangeStart.ReadOnly = !chkMemoryRangeExpertMode.Checked;
1818     txtMemoryRangeSize.ReadOnly = !chkMemoryRangeExpertMode.Checked;
1819 william 287 }
1820    
1821 william 378 private void txtMemoryRangeStart_ValueChanged(object sender, ValueChangedEventArgs e) { this.MemoryRangeStart = Convert.ToUInt32(e.NewValue); }
1822 william 288 private void txtMemoryRangeSize_ValueChanged(object sender, ValueChangedEventArgs e) { this.MemoryRangeSize = Convert.ToUInt32(e.NewValue); }
1823 william 287
1824 william 227 }
1825     }