-
Notifications
You must be signed in to change notification settings - Fork 14
/
MyOrder.cs
234 lines (226 loc) · 7.31 KB
/
MyOrder.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
using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
using EVE.ISXEVE.Extensions;
using InnerSpaceAPI;
using LavishScriptAPI;
//* Added new DATATYPE: 'myorder' (ie, "My Orders" tab) with the following MEMBERS:
// 1. Price (double type)
// 2. InitialQuantity (int type)
// 3. QuantityRemaining (double type)
// 4. MinQuantityToBuy (int type)
// 5. ID (int64 type)
// 6. TimeStampWhenIssued (uint64 type)
// 7. DateWhenIssued (string type)
// 8. TimeWhenIssued (string type)
// 9. Duration (int type) [The max length of the order, in days]
// 10. StationID (int type) [Station where the order is located]
// 11. Station (string type)
// 12. RegionID (int type) [Region where the order is located]
// 13. Region (string type)
// 14. SolarSystemID (int type) [Solar System where the order is located]
// 15. SolarSystem (string type)
// 16. Range (int type)
// 17. TypeID (int type)
// 18. Name (string type)
// 19. IsContraband (bool type)
// 20. IsCorp (bool type)
// 21. IsSellOrder (bool type)
// 22. IsBuyOrder (bool type)
//* Added the following METHODS to the 'myorder' datatype:
// 1. Cancel
// 2. Modify[#] {# = new price of the item in isk}
namespace EVE.ISXEVE
{
/// <summary>
/// Wrapper for the myorder type.
/// </summary>
public class MyOrder : LavishScriptObject
{
#region Constructors
/// <summary>
/// MyOrder copy constructor.
/// </summary>
/// <param name="Obj"></param>
public MyOrder(LavishScriptObject Obj)
: base(Obj)
{
}
#endregion
#region Members
/// <summary>
/// 1. Price (double type)
/// </summary>
public double Price
{
get { return this.GetDouble("Price"); }
}
/// <summary>
/// 2. InitialQuantity (int type)
/// </summary>
public int InitialQuantity
{
get { return this.GetInt("InitialQuantity"); }
}
/// <summary>
/// 3. QuantityRemaining (double type)
/// </summary>
public double QuantityRemaining
{
get { return this.GetDouble("QuantityRemaining"); }
}
/// <summary>
/// 4. MinQuantityToBuy (int type)
/// </summary>
public int MinQuantityToBuy
{
get { return this.GetInt("MinQuantityToBuy"); }
}
/// <summary>
/// 5. ID (int type)
/// </summary>
public Int64 ID
{
get { return this.GetInt64("ID"); }
}
/// <summary>
/// 6. TimeStampWhenIssued (int64 type)
/// </summary>
public Int64 TimeStampWhenIssued
{
get { return this.GetInt64("TimeStampWhenIssued"); }
}
/// <summary>
/// 7. DateWhenIssued (string type)
/// </summary>
public string DateWhenIssued
{
get { return this.GetString("DateWhenIssued"); }
}
/// <summary>
/// 8. TimeWhenIssued (string type)
/// </summary>
public string TimeWhenIssued
{
get { return this.GetString("TimeWhenIssued"); }
}
/// <summary>
/// 9. Duration (int type) [The max length of the order, in days]
/// </summary>
public int Duration
{
get { return this.GetInt("Duration"); }
}
/// <summary>
/// 10. StationID (int type) [Station where the order is located]
/// </summary>
public long StationID
{
get { return this.GetInt64("StationID"); }
}
/// <summary>
/// 11. Station (string type)
/// </summary>
public string Station
{
get { return this.GetString("Station"); }
}
/// <summary>
/// 12. RegionID (int type) [Region where the order is located]
/// </summary>
public int RegionID
{
get { return this.GetInt("RegionID"); }
}
/// <summary>
/// 13. Region (string type)
/// </summary>
public string Region
{
get { return this.GetString("Region"); }
}
/// <summary>
/// 14. SolarSystemID (int type) [Solar System where the order is located]
/// </summary>
public int SolarSystemID
{
get { return this.GetInt("SolarSystemID"); }
}
/// <summary>
/// 15. SolarSystem (string type)
/// </summary>
public string SolarSystem
{
get { return this.GetString("SolarSystemID"); }
}
/// <summary>
/// 16. Range (int type)
/// </summary>
public int Range
{
get { return this.GetInt("Range"); }
}
/// <summary>
/// 17. TypeID (int type)
/// </summary>
public int TypeID
{
get { return this.GetInt("TypeID"); }
}
/// <summary>
/// 18. Name (string type)
/// </summary>
public string Name
{
get { return this.GetString("Name"); }
}
/// <summary>
/// 19. IsContraband (bool type)
/// </summary>
public bool IsContraband
{
get { return this.GetBool("IsContraband"); }
}
/// <summary>
/// 20. IsCorp (bool type)
/// </summary>
public bool IsCorp
{
get { return this.GetBool("IsCorp"); }
}
/// <summary>
/// 21. IsSellOrder (bool type)
/// </summary>
public bool IsSellOrder
{
get { return this.GetBool("IsSellOrder"); }
}
/// <summary>
/// 22. IsBuyOrder (bool type)
/// </summary>
public bool IsBuyOrder
{
get { return this.GetBool("IsBuyOrder"); }
}
#endregion
#region Methods
/// <summary>
/// 1. Cancel
/// </summary>
public bool Cancel()
{
Tracing.SendCallback("MyOrder.Cancel");
return ExecuteMethod("Cancel");
}
/// <summary>
/// 2. Modify[#] {# = new price of the item in isk}
/// </summary>
public bool Modify(double newPrice)
{
Tracing.SendCallback("MyOrder.Modify", newPrice);
return ExecuteMethod("Modify", newPrice.ToString(CultureInfo.CurrentCulture));
}
#endregion
}
}