forked from isxGames/ISXEVEWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEVEWindow.cs
226 lines (199 loc) · 5.85 KB
/
EVEWindow.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
using System;
using System.Collections.Generic;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Globalization;
using EVE.ISXEVE.Extensions;
using EVE.ISXEVE.Interfaces;
using InnerSpaceAPI;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// Retrieves information about an Eve Window.
/// </summary>
public class EVEWindow : LavishScriptObject
{
#region Constructors
/// <summary>
/// EVEWindow copy constructor.
/// </summary>
/// <param name="Obj"></param>
public EVEWindow(LavishScriptObject Obj)
: base(Obj)
{
}
/// <summary>
/// Possible "Names" include: "MyShipCargo", "MyDroneBay", "Market", "hangarFloor",
/// "shipHangar", "Local", "Corporation Hangar" (more added as needed/requested).
/// </summary>
public EVEWindow(string name)
: base(LavishScript.Objects.GetObject("EVEWindow", name))
{
}
#endregion
#region Statics
/// <summary>
/// should only be used for windows not available otherwise (ie, cargo containers).
/// </summary>
public static EVEWindow GetWindowByCaption(string caption)
{
return new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByCaption", caption));
}
/// <summary>
/// Returns an evewindow type based on a window name.
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
public static EVEWindow GetWindowByName(string name)
{
return new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByName", name));
}
/// <summary>
/// Fetch an EVEWindow based on a given ItemID or EntityID.
/// </summary>
/// <param name="itemId"></param>
/// <returns></returns>
public static EVEWindow GetWindowByItemId(Int64 itemId)
{
return new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByItemID", itemId.ToString(CultureInfo.CurrentCulture)));
}
/// <summary>
/// Fetch the EVE Inventory window
/// </summary>
/// <returns></returns>
public static IEveInvWindow GetInventoryWindow()
{
return new EveInvWindow(LavishScript.Objects.GetObject("EVEWindow", "Inventory"));
}
public static EveRepairShopWindow GetRepairShopWindow()
{
return new EveRepairShopWindow(LavishScript.Objects.GetObject("EVEWindow","RepairShop"));
}
public static EveFittingWindow GetFittingWindow()
{
return new EveFittingWindow(LavishScript.Objects.GetObject("EVEWindow", "Fitting"));
}
public static EveSellItemsWindow GetSellItemsWindow()
{
return new EveSellItemsWindow(LavishScript.Objects.GetObject("EVEWindow", "SellItems"));
}
public static EveMarketActionWindow GetMarketActionWindow()
{
return new EveMarketActionWindow(LavishScript.Objects.GetObject("EVEWindow", "MarketAction"));
}
#endregion
#region Members
/// <summary>
/// Wrapper for the Caption member of the evewindow type.
/// </summary>
public string Caption
{
get { return this.GetString("Caption"); }
}
/// <summary>
/// Wrapper for the Minimized member of the evewindow type.
/// </summary>
public bool Minimized
{
get { return this.GetBool("Minimized"); }
}
/// <summary>
/// Wrapper for the HTML member of the evewindow type.
/// </summary>
public string HTML
{
get { return this.GetString("HTML"); }
}
public string Text
{
get { return this.GetString("Text"); }
}
/// <summary>
/// how many buttons are in the window
/// </summary>
public int NumButtons
{
get { return this.GetInt("NumButtons"); }
}
/// <summary>
/// give button object for name: like "ok", "Accept"...
/// </summary>
public EVEUIButton Button(string buttonName)
{
return new EVEUIButton(GetMember("Button", buttonName));
}
/// <summary>
/// give button object for nummber in NumButtons : "1", "2", "3"...
/// </summary>
public EVEUIButton Button(int i)
{
return new EVEUIButton(GetMember("Button", i.ToString(CultureInfo.CurrentCulture)));
}
#endregion
#region Methods
/// <summary>
/// Wrapper for the Close method of the evewindow type.
/// </summary>
/// <returns></returns>
public bool Close()
{
Tracing.SendCallback("EVEWindow.Close");
return ExecuteMethod("Close");
}
/// <summary>
/// Wrapper for the Maximize method of the evewindow type.
/// </summary>
/// <returns></returns>
public bool Maximize()
{
Tracing.SendCallback("EVEWindow.Maximize");
return ExecuteMethod("Maximize");
}
/// <summary>
/// Wrapper for the Minimize method of the evewindow type.
/// </summary>
/// <returns></returns>
public bool Minimize()
{
Tracing.SendCallback("EVEWindow.Minimize");
return ExecuteMethod("Minimize");
}
public bool ClickButtonYes()
{
Tracing.SendCallback("EVEWindow.ClickButtonYes");
return ExecuteMethod("ClickButtonYes");
}
public bool ClickButtonNo()
{
Tracing.SendCallback("EVEWindow.ClickButtonNo");
return ExecuteMethod("ClickButtonNo");
}
public bool ClickButtonOK()
{
Tracing.SendCallback("EVEWindow.ClickButtonOK");
return ExecuteMethod("ClickButtonOK");
}
public bool ClickButtonCancel()
{
Tracing.SendCallback("EVEWindow.ClickButtonCancel");
return ExecuteMethod("ClickButtonCancel");
}
public bool ClickButtonClose()
{
Tracing.SendCallback("EVEWindow.ClickButtonClose");
return ExecuteMethod("ClickButtonClose");
}
public bool StackAll()
{
Tracing.SendCallback("EVEWindow.StackAll");
return ExecuteMethod("StackAll");
}
public bool LootAll()
{
Tracing.SendCallback("EVEWindow.LootAll");
return ExecuteMethod("LootAll");
}
#endregion
}
}