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 |
|
15 |
namespace RomCheater.Docking |
16 |
{ |
17 |
public partial class PIDSelector : DockContent |
18 |
{ |
19 |
private IConfigPlugin plugin = null; |
20 |
//bool isInError = false; |
21 |
public PIDSelector() { InitializeComponent(); this.SelectedPid = -1; } |
22 |
public PIDSelector(IConfigPlugin plugin) : this() { this.plugin = plugin; } |
23 |
// unsued construtor (it's not implmented, may not be) |
24 |
[Obsolete("constructor PIDSelector(int pid) is not implemented", false)] |
25 |
public PIDSelector(int pid) : this() { this.SelectedPid = pid; } |
26 |
[Obsolete("constructor PIDSelector(IConfigPlugin plugin, int pid) is not implemented", false)] |
27 |
public PIDSelector(IConfigPlugin plugin, int pid) : this(plugin) { this.SelectedPid = pid; } |
28 |
|
29 |
private int _SelectedPid; |
30 |
public int SelectedPid { get { return _SelectedPid; } set { _SelectedPid = value; } } |
31 |
|
32 |
|
33 |
public new void Show() { this.Show(null); } |
34 |
//public new void Show(IWin32Window owner) { this.PreInitShow(owner); } |
35 |
public new void Show(DockPanel panel) { this.PreInitShow(panel); } |
36 |
//public new DialogResult ShowDialog() { return this.ShowDialog(null); } |
37 |
//public new DialogResult ShowDialog(IWin32Window owner) { return this.PreInitDialog(owner); } |
38 |
//private void PreInitShow(IWin32Window owner) |
39 |
//{ |
40 |
// if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.",plugin.ToString())); } |
41 |
// else { if (owner == null) { base.Show(); } else { base.Show(owner); } } |
42 |
//} |
43 |
private void PreInitShow(DockPanel panel) |
44 |
{ |
45 |
//if (panel == null) return; |
46 |
if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.", plugin.ToString())); } |
47 |
else { if (panel == null) { base.Show(); } else { base.Show(panel); } } |
48 |
} |
49 |
//private DialogResult PreInitDialog(IWin32Window owner) |
50 |
//{ |
51 |
// 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; } |
52 |
// else { if (owner == null) { return base.ShowDialog(); } else { return base.ShowDialog(owner); } } |
53 |
//} |
54 |
private void btnLargeIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.LargeIcon; } |
55 |
private void btnDetails_Click(object sender, EventArgs e) { this.lstProcessList.View = View.Details; } |
56 |
private void btnSmallIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.SmallIcon; } |
57 |
private void btnList_Click(object sender, EventArgs e) { this.lstProcessList.View = View.List; } |
58 |
private void btnTile_Click(object sender, EventArgs e) { this.lstProcessList.View = View.Tile; } |
59 |
|
60 |
private void btnOK_Click(object sender, EventArgs e) |
61 |
{ |
62 |
if (!(lstProcessList.SelectedItems.Count > 0)) return; |
63 |
this.SelectedPid = Convert.ToInt32(lstProcessList.SelectedItems[0].SubItems[1].Text); |
64 |
this.Close(); |
65 |
} |
66 |
|
67 |
private void btnCancel_Click(object sender, EventArgs e) |
68 |
{ |
69 |
this.SelectedPid = -1; |
70 |
this.Close(); |
71 |
} |
72 |
|
73 |
private void btnRefresh_Click(object sender, EventArgs e) |
74 |
{ |
75 |
this.RefreshList(); |
76 |
} |
77 |
|
78 |
private bool RefreshList() |
79 |
{ |
80 |
lstProcessList.Items.Clear(); |
81 |
this.plugin.Reload(); |
82 |
// create a selection of PCSX2 processes |
83 |
List<ProcContainer> proc_list = plugin.ValidProcessesForPlugin; |
84 |
|
85 |
if (!(proc_list.Count > 0)) { //MessageBox.Show("Could not find any PCSX2 Processes. Please start an instance of one."); |
86 |
return false; } |
87 |
|
88 |
List<ListViewItem> items = new List<ListViewItem>(); |
89 |
ImageList small_image_list = new ImageList(); |
90 |
ImageList large_image_list = new ImageList(); |
91 |
|
92 |
int small_width = 32; |
93 |
int large_width = 48; |
94 |
|
95 |
small_image_list.ImageSize = new Size(small_width, small_width); |
96 |
large_image_list.ImageSize = new Size(large_width, large_width); |
97 |
foreach (ProcContainer p in proc_list) |
98 |
{ |
99 |
Bitmap small_image = null; |
100 |
Bitmap large_image = null; |
101 |
string image_key = string.Empty; |
102 |
this.AddProcessItem(p, small_image_list.ImageSize, large_image_list.ImageSize, out image_key, out small_image, out large_image); |
103 |
if (image_key != string.Empty) |
104 |
{ |
105 |
if (small_image != null) { small_image_list.Images.Add(image_key, small_image); } |
106 |
if (large_image != null) { large_image_list.Images.Add(image_key, large_image); } |
107 |
ListViewItem item = new ListViewItem(); |
108 |
// process name |
109 |
item.Text = p.Name; |
110 |
// pid |
111 |
item.SubItems.Add(p.ProcessInfo.Id.ToString()); |
112 |
// FullPath |
113 |
item.SubItems.Add(p.FileName); |
114 |
// image key |
115 |
item.ImageKey = p.FileName; |
116 |
if (!items.Contains(item)) items.Add(item); |
117 |
} |
118 |
else |
119 |
{ |
120 |
logger.Error.Write("image_key is an empty string!"); |
121 |
if (small_image != null) { logger.Error.Write(" [however small_image is not null]"); } |
122 |
if (large_image != null) { logger.Error.Write(" [however large_image is not null]\n"); } |
123 |
} |
124 |
} |
125 |
lstProcessList.SmallImageList = small_image_list; |
126 |
lstProcessList.LargeImageList = large_image_list; |
127 |
this.lstProcessList.Items.AddRange(items.ToArray()); |
128 |
return true; |
129 |
} |
130 |
|
131 |
private void AddProcessItem(ProcContainer p, Size small, Size large, out string image_key, out Bitmap small_image, out Bitmap large_image) |
132 |
{ |
133 |
image_key = ""; |
134 |
small_image = null; |
135 |
large_image = null; |
136 |
////small_image_list = new ImageList(); |
137 |
////large_image_list = new ImageList(); |
138 |
//ListViewItem item = new ListViewItem(); |
139 |
//// process |
140 |
//item.Text = p.Name; |
141 |
//if (p.ProcessIcon != null) |
142 |
//{ |
143 |
// //small_image_list.Images.Add( |
144 |
// //large_image_list.Images.Add(p.FileName, p.ProcessIcon); |
145 |
// item.ImageKey = p.FileName; |
146 |
//} |
147 |
//// pid |
148 |
//item.SubItems.Add(p.ProcessInfo.Id.ToString()); |
149 |
//// FullPath |
150 |
//item.SubItems.Add(p.FileName); |
151 |
//if (!items.Contains(item)) items.Add(item); |
152 |
if (p != null) |
153 |
{ |
154 |
if (p.ProcessIcon != null) |
155 |
{ |
156 |
image_key = p.FileName; |
157 |
small_image = new Bitmap(p.ProcessIcon, small); |
158 |
large_image = new Bitmap(p.ProcessIcon, large); |
159 |
} |
160 |
} |
161 |
|
162 |
} |
163 |
} |
164 |
} |
165 |
|