ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/PIDSelector.cs
Revision: 196
Committed: Thu May 31 05:52:41 2012 UTC (11 years, 6 months ago) by william
File size: 9463 byte(s)
Log Message:
+ add some event code
+ add memeory view  dialog (wip)

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Text;
7 using System.Windows.Forms;
8 using System.Diagnostics;
9 using RomCheater.PluginFramework.Interfaces;
10 using RomCheater.PluginFramework.Core;
11 using System.IO;
12 using RomCheater.Logging;
13 using WeifenLuo.WinFormsUI.Docking;
14 using RomCheater.PluginFramework.Events;
15
16 namespace RomCheater.Docking
17 {
18 public partial class PIDSelector : DockContent, IAcceptsPlugin<IConfigPlugin>, IAcceptsChangedProcess, IAcceptsProcessPID
19 {
20 //private IConfigPlugin plugin = null;
21 //bool isInError = false;
22 public PIDSelector() { InitializeComponent(); this.ProcessPID = -1; OnSelectedProcessChanged = null; this.AcceptedPlugin = null; }
23 public PIDSelector(IConfigPlugin plugin) : this() { this.AcceptedPlugin = plugin; }
24 // unsued construtor (it's not implmented, may not be)
25 [Obsolete("constructor PIDSelector(int pid) is not implemented", false)]
26 public PIDSelector(int pid) : this() { this.ProcessPID = pid; }
27 [Obsolete("constructor PIDSelector(IConfigPlugin plugin, int pid) is not implemented", false)]
28 public PIDSelector(IConfigPlugin plugin, int pid) : this(plugin) { this.ProcessPID = pid; }
29
30 #region IAcceptsProcessPID
31 public int ProcessPID { get; set; }
32 #endregion
33 #region IAcceptsPlugin<IConfigPlugin> members
34 public IConfigPlugin AcceptedPlugin { get; set; }
35 #endregion
36 #region IAcceptsChangedProcess members
37 public BaseEventHandler<ProcessChangedEventArgs> OnSelectedProcessChanged { get; set; }
38 #endregion
39
40
41
42 public new void Show() { this.Show(null); }
43 //public new void Show(IWin32Window owner) { this.PreInitShow(owner); }
44 public new void Show(DockPanel panel) { this.PreInitShow(panel); }
45 //public new DialogResult ShowDialog() { return this.ShowDialog(null); }
46 //public new DialogResult ShowDialog(IWin32Window owner) { return this.PreInitDialog(owner); }
47 //private void PreInitShow(IWin32Window owner)
48 //{
49 // if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.",plugin.ToString())); }
50 // else { if (owner == null) { base.Show(); } else { base.Show(owner); } }
51 //}
52 private void PreInitShow(DockPanel panel)
53 {
54 //if (panel == null) return;
55 if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.", AcceptedPlugin.ToString())); }
56 else { if (panel == null) { base.Show(); } else { base.Show(panel); } }
57 }
58 //private DialogResult PreInitDialog(IWin32Window owner)
59 //{
60 // if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.", plugin.ToString())); return DialogResult.Cancel; }
61 // else { if (owner == null) { return base.ShowDialog(); } else { return base.ShowDialog(owner); } }
62 //}
63 private void btnLargeIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.LargeIcon; }
64 private void btnDetails_Click(object sender, EventArgs e) { this.lstProcessList.View = View.Details; }
65 private void btnSmallIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.SmallIcon; }
66 private void btnList_Click(object sender, EventArgs e) { this.lstProcessList.View = View.List; }
67 private void btnTile_Click(object sender, EventArgs e) { this.lstProcessList.View = View.Tile; }
68
69 private void PerformListViewItemSelect(ListViewItem li)
70 {
71 this.ProcessPID = Convert.ToInt32(li.SubItems[1].Text);
72 //this.Close();
73 if (this.OnSelectedProcessChanged != null)
74 {
75 this.OnSelectedProcessChanged(new ProcessChangedEventArgs(this.ProcessPID));
76 }
77 Process SelectedProcess = Process.GetProcessById(this.ProcessPID);
78 logger.Debug.WriteLine("Using Process: ({0} : {1})", SelectedProcess.Id, SelectedProcess.ProcessName);
79 }
80 private void btnOK_Click(object sender, EventArgs e)
81 {
82
83 }
84
85 //private void btnCancel_Click(object sender, EventArgs e)
86 //{
87 // this.SelectedPid = -1;
88 // //this.Close();
89 //}
90
91 private void btnRefresh_Click(object sender, EventArgs e)
92 {
93 this.RefreshList();
94 }
95
96 private bool RefreshList()
97 {
98 lstProcessList.Items.Clear();
99 this.AcceptedPlugin.Reload();
100 // create a selection of PCSX2 processes
101 List<ProcContainer> proc_list = AcceptedPlugin.ValidProcessesForPlugin;
102
103 if (!(proc_list.Count > 0)) { //MessageBox.Show("Could not find any PCSX2 Processes. Please start an instance of one.");
104 return false; }
105
106 List<ListViewItem> items = new List<ListViewItem>();
107 ImageList small_image_list = new ImageList();
108 ImageList large_image_list = new ImageList();
109
110 int small_width = 32;
111 int large_width = 48;
112
113 small_image_list.ImageSize = new Size(small_width, small_width);
114 large_image_list.ImageSize = new Size(large_width, large_width);
115 foreach (ProcContainer p in proc_list)
116 {
117 Bitmap small_image = null;
118 Bitmap large_image = null;
119 string image_key = string.Empty;
120 this.AddProcessItem(p, small_image_list.ImageSize, large_image_list.ImageSize, out image_key, out small_image, out large_image);
121 if (image_key != string.Empty)
122 {
123 if (small_image != null) { small_image_list.Images.Add(image_key, small_image); }
124 if (large_image != null) { large_image_list.Images.Add(image_key, large_image); }
125 ListViewItem item = new ListViewItem();
126 // process name
127 item.Text = p.Name;
128 // pid
129 item.SubItems.Add(p.ProcessInfo.Id.ToString());
130 // FullPath
131 item.SubItems.Add(p.FileName);
132 // image key
133 item.ImageKey = p.FileName;
134 if (!items.Contains(item)) items.Add(item);
135 }
136 else
137 {
138 //logger.Error.WriteLine("image_key is an empty string!");
139 //if (small_image != null) { logger.Error.WriteLine(" [however small_image is not null]"); }
140 //if (large_image != null) { logger.Error.WriteLine(" [however large_image is not null]\n"); }
141 }
142 }
143 lstProcessList.SmallImageList = small_image_list;
144 lstProcessList.LargeImageList = large_image_list;
145 this.lstProcessList.Items.AddRange(items.ToArray());
146
147 if (lstProcessList.Items.Count > 0)
148 {
149 lstProcessList.Items[0].Selected = true;
150 }
151
152 return true;
153 }
154
155 private void AddProcessItem(ProcContainer p, Size small, Size large, out string image_key, out Bitmap small_image, out Bitmap large_image)
156 {
157 image_key = "";
158 small_image = null;
159 large_image = null;
160 ////small_image_list = new ImageList();
161 ////large_image_list = new ImageList();
162 //ListViewItem item = new ListViewItem();
163 //// process
164 //item.Text = p.Name;
165 //if (p.ProcessIcon != null)
166 //{
167 // //small_image_list.Images.Add(
168 // //large_image_list.Images.Add(p.FileName, p.ProcessIcon);
169 // item.ImageKey = p.FileName;
170 //}
171 //// pid
172 //item.SubItems.Add(p.ProcessInfo.Id.ToString());
173 //// FullPath
174 //item.SubItems.Add(p.FileName);
175 //if (!items.Contains(item)) items.Add(item);
176 if (p != null)
177 {
178 if (p.ProcessIcon != null)
179 {
180 image_key = p.FileName;
181 small_image = new Bitmap(p.ProcessIcon, small);
182 large_image = new Bitmap(p.ProcessIcon, large);
183 }
184 }
185
186 }
187
188 private void PIDSelector_Load(object sender, EventArgs e)
189 {
190 if (AcceptedPlugin == null || this.DesignMode) return;
191 btnRefresh.PerformClick();
192 }
193
194
195 private void lstProcessList_ItemSelectionChanged(object sender, ListViewItemSelectionChangedEventArgs e)
196 {
197 if (!e.IsSelected) return;
198 PerformListViewItemSelect(e.Item);
199 }
200
201 private void lstProcessList_ItemActivate(object sender, EventArgs e)
202 {
203 ListViewItem Item = lstProcessList.SelectedItems[0];
204 PerformListViewItemSelect(Item);
205 }
206
207
208 }
209 }
210