-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTabContent.cs
265 lines (214 loc) · 8.29 KB
/
TabContent.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Text.RegularExpressions;
using Decal.Adapter;
using Decal.Adapter.Wrappers;
using MyClasses.MetaViewWrappers;
using VirindiViewService;
using VirindiViewService.Controls;
namespace AceCreator
{
public partial class AceCreator : PluginBase
{
public HudCombo ChoiceJSON { get; set; }
public HudButton CommandConvertJSON { get; set; }
public HudButton ButtonOpenJSON { get; set; }
public HudCombo ChoiceSQL { get; set; }
public HudButton CommandConvertSQL { get; set; }
public HudButton ButtonOpenSQL { get; set; }
public HudTextBox TextboxCreateWCID { get; set; }
public HudButton ButtonCreateWCID { get; set; }
public HudButton ButtonCreateInvWCID { get; set; }
public HudButton ButtonCreateInstantWCID { get; set; }
public HudTextBox TextboxExportJsonWCID { get; set; }
public HudButton ButtonExportJSON { get; set; }
public HudTextBox TextboxExportSQLWCID { get; set; }
public HudButton ButtonExportSQL { get; set; }
public HudButton ButtonYotesWCIDLookUp { get; set; }
public HudButton ButtonPCAPSWCIDLookUp { get; set; }
public HudStaticText LabelGetInfo { get; set; }
public HudButton ButtonRemoveInstace { get; set; }
public HudButton ButtonMyLocation { get; set; }
public HudButton ButtonDeleteItem { get; set; }
public HudButton CommandRefreshFilesList { get; set; }
public HudButton ButtonGetInfo { get; set; }
// ComboBox Change Events
public void ChoiceJSON_Change(object sender, EventArgs e)
{
try
{
TextboxCreateWCID = (HudTextBox)view["TextboxCreateWCID"];
string tsplit = ((HudStaticText)ChoiceJSON[ChoiceJSON.Current]).Text;
TextboxCreateWCID.Text = tsplit.Split(' ')[0];
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ChoiceSQL_Change(object sender, EventArgs e)
{
try
{
TextboxCreateWCID = (HudTextBox)view["TextboxCreateWCID"];
string tsplit = ((HudStaticText)ChoiceSQL[ChoiceSQL.Current]).Text;
TextboxCreateWCID.Text = tsplit.Split(' ')[0];
}
catch (Exception ex) { Util.LogError(ex); }
}
// Button Events
public void ButtonConvertJSON_Click(object sender, EventArgs e)
{
try
{
string tsplit = ((HudStaticText)ChoiceJSON[ChoiceJSON.Current]).Text;
TextboxCreateWCID = (HudTextBox)view["TextboxCreateWCID"];
Util.SendChatCommand(@"/import-json " + tsplit.Split(' ')[0]);
TextboxCreateWCID.Text = tsplit.Split(' ')[0];
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonConvertSQL_Click(object sender, EventArgs e)
{
try
{
string tsplit = ((HudStaticText)ChoiceSQL[ChoiceSQL.Current]).Text;
TextboxCreateWCID = (HudTextBox)view["TextboxCreateWCID"];
Util.SendChatCommand(@"/import-sql " + tsplit.Split(' ')[0]);
TextboxCreateWCID.Text = tsplit.Split(' ')[0];
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonOpenJSON_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start(Globals.PathJSON + @"\" + ((HudStaticText)ChoiceJSON[ChoiceJSON.Current]).Text);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonOpenSQL_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start(Globals.PathSQL + @"\" + ((HudStaticText)ChoiceSQL[ChoiceSQL.Current]).Text);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonCreateWCID_Click(object sender, EventArgs e)
{
try
{
Util.SendChatCommand(@"/create " + TextboxCreateWCID.Text);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonCreateInvWCID_Click(object sender, EventArgs e)
{
try
{
Util.SendChatCommand(@"/ci " + TextboxCreateWCID.Text);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonCreateInstantWCID_Click(object sender, EventArgs e)
{
try
{
Util.SendChatCommand(@"/createinst " + TextboxCreateWCID.Text);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonExportJSON_Click(object sender, EventArgs e)
{
try
{
Util.SendChatCommand(@"/export-json " + TextboxExportJsonWCID.Text);
JsonChoiceListLoadFiles();
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonExportSQL_Click(object sender, EventArgs e)
{
try
{
Util.SendChatCommand(@"/export-sql " + TextboxExportSQLWCID.Text);
SqlChoiceListLoadFiles();
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonYotesWCIDLookUp_Click(object sender, EventArgs e)
{
Globals.ButtonCommand = "YotesLookup";
try
{
WO = CoreManager.Current.WorldFilter[CoreManager.Current.Actions.CurrentSelection];
aceItem.name = WO.Name;
aceItem.id = WO.Id;
Globals.Host.Actions.RequestId(Globals.Host.Actions.CurrentSelection);
CoreManager.Current.WorldFilter.ChangeObject += GetInfoWaitForItemUpdate;
Util.WriteToChat(Globals.YotesWCID);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonPCAPSWCIDLookUp_Click(object sender, EventArgs e)
{
Globals.ButtonCommand = "PCAPsLookup";
try
{
WO = CoreManager.Current.WorldFilter[CoreManager.Current.Actions.CurrentSelection];
aceItem.name = WO.Name;
aceItem.id = WO.Id;
Globals.Host.Actions.RequestId(Globals.Host.Actions.CurrentSelection);
CoreManager.Current.WorldFilter.ChangeObject += GetInfoWaitForItemUpdate;
// https://github.com/ACEmulator/ACE-PCAP-Exports/search?q=filename:
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRemoveInstace_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/removeinst";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonMyLocation_Click(object sender, EventArgs e)
{
try
{
Util.SendChatCommand("/loc");
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonDeleteItem_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/delete";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRefreshFilesList_Click(object sender, EventArgs e)
{
try
{
Util.WriteToChat("Reloading FileLists");
RefreshAllLists();
// Util.WriteToChat("Text= " + ((HudStaticText)ChoiceSQL[ChoiceSQL.Current]).Text);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonGetInfo_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/getinfo";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
}
}