-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTabNudge.cs
282 lines (250 loc) · 8.65 KB
/
TabNudge.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
using System;
using System.Collections.Generic;
using System.Text;
using Decal.Adapter;
using Decal.Adapter.Wrappers;
using MyClasses.MetaViewWrappers;
using VirindiViewService;
using VirindiViewService.Controls;
namespace AceCreator
{
public partial class AceCreator : PluginBase
{
public HudTextBox TextboxNudgeValueCustom { get; set; }
public HudButton ButtonNudgeN { get; set; }
public HudButton ButtonNudgeNE { get; set; }
public HudButton ButtonNudgeE { get; set; }
public HudButton ButtonNudgeSE { get; set; }
public HudButton ButtonNudgeS { get; set; }
public HudButton ButtonNudgeSW { get; set; }
public HudButton ButtonNudgeW { get; set; }
public HudButton ButtonNudgeNW { get; set; }
public HudButton ButtonNudgeUp { get; set; }
public HudButton ButtonNudgeDown { get; set; }
public HudButton ButtonRotateN { get; set; }
public HudButton ButtonRotateE { get; set; }
public HudButton ButtonRotateS { get; set; }
public HudButton ButtonRotateW { get; set; }
public HudButton ButtonRotateNE { get; set; }
public HudButton ButtonRotateSE { get; set; }
public HudButton ButtonRotateSW { get; set; }
public HudButton ButtonRotateNW { get; set; }
public HudButton ButtonFreeRotate { get; set; }
public HudButton ButtonNudgeHere { get; set; }
public HudButton ButtonRotateHere { get; set; }
public HudTextBox TextboxFreeRotate { get; set; }
// Button Events
public void ButtonNudgeN_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge n " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeNE_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge ne " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeE_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge e " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeSE_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge se " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeS_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge s " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeSW_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge sw " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeW_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge w " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeNW_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge nw " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
//Rotate
public void ButtonRotateN_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate n";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateE_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate e";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateS_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate s";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateW_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate w";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateNE_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate ne";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateSE_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate se";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateSW_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate sw";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateNW_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate nw";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonFreeRotate_Click(object sender, EventArgs e)
{
try
{
double tempRotateValue;
double finalRotateValue = 0;
double.TryParse(TextboxFreeRotate.Text, out tempRotateValue);
if (tempRotateValue > 360)
{
Util.WriteToChat("Rotate Value is above 360");
return;
}
else
finalRotateValue = 360 - tempRotateValue;
Globals.ButtonCommand = "/rotate " + finalRotateValue;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeUp_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge up " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeDown_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge down " + TextboxNudgeValueCustom.Text;
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonNudgeHere_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/nudge here";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonRotateHere_Click(object sender, EventArgs e)
{
try
{
Globals.ButtonCommand = "/rotate here";
CommandWait(sender, e);
}
catch (Exception ex) { Util.LogError(ex); }
}
public void CommandWait(object sender, EventArgs e)
{
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 += WaitForItemUpdate;
}
catch (Exception ex) { Util.LogError(ex); }
}
}
}