-
Notifications
You must be signed in to change notification settings - Fork 14
/
MarketOrder.cs
220 lines (210 loc) · 7.16 KB
/
MarketOrder.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
using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
using EVE.ISXEVE.Extensions;
using InnerSpaceAPI;
using LavishScriptAPI;
//* Added new DATATYPE: 'marketorder' (ie, "Market Order") 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) [In Jumps, the range from which the item can be bought/sold]
// 17. Jumps (int type) [Jumps to the station where the order is located]
// 18. IsSellOrder (bool type)
// 19. IsBuyOrder (bool type)
// 20. TypeID (int type)
// 21. Name (string type)
// (NOTE: The order's "Jumps" must be <= to the "Range" in order to buy/sell.)
namespace EVE.ISXEVE
{
/// <summary>
/// Wrapper for the marketorder type.
/// </summary>
public class MarketOrder : LavishScriptObject
{
#region Constructors
/// <summary>
/// MarketOrder copy constructor.
/// </summary>
/// <param name="Obj"></param>
public MarketOrder(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 (uint64 type)
/// </summary>
public UInt64 TimeStampWhenIssued
{
get { return this.GetUInt64("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 Int64 Duration
{
get { return this.GetInt64("Duration"); }
}
/// <summary>
/// 10. StationID (int type) [Station where the order is located]
/// </summary>
public Int64 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 Int64 RegionID
{
get { return this.GetInt64("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 Int64 SolarSystemID
{
get { return this.GetInt64("SolarSystemID"); }
}
/// <summary>
/// 15. SolarSystem (string type)
/// </summary>
public string SolarSystem
{
get { return this.GetString("SolarSystem"); }
}
/// <summary>
/// 16. Range (int type)
/// </summary>
public Int64 Range
{
get { return this.GetInt64("Range"); }
}
/// <summary>
/// 17. Jumps (int type) [Jumps to the station where the order is located]
/// (NOTE: The order's "Jumps" must be less than or equal to the "Range" in order to buy/sell.)
/// </summary>
public int Jumps
{
get { return this.GetInt("Jumps"); }
}
/// <summary>
/// 18. IsSellOrder (bool type)
/// </summary>
public bool IsSellOrder
{
get { return this.GetBool("IsSellOrder"); }
}
/// <summary>
/// 19. IsBuyOrder (bool type)
/// </summary>
public bool IsBuyOrder
{
get { return this.GetBool("IsBuyOrder"); }
}
/// <summary>
/// 20. TypeID (int type)
/// </summary>
public Int64 TypeID
{
get { return this.GetInt64("TypeID"); }
}
/// <summary>
/// 21. Name (string type)
/// </summary>
public string Name
{
get { return this.GetString("Name"); }
}
public bool IsContraband
{
get { return this.GetBool("IsContraband"); }
}
public bool IsContrabandForFaction(int FactionID)
{
return this.GetBool("IsContraband", FactionID.ToString(CultureInfo.CurrentCulture));
}
#endregion
#region Methods
// there are no methods at the moment
#endregion
}
}