-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathSystemScanner.cs
More file actions
66 lines (60 loc) · 1.9 KB
/
SystemScanner.cs
File metadata and controls
66 lines (60 loc) · 1.9 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using EVE.ISXEVE.Extensions;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// Wrapper for the SystemScanner datatype.
/// </summary>
public class SystemScanner : LavishScriptObject
{
public SystemScanner(LavishScriptObject Copy) : base(Copy)
{
}
/// <summary>
/// Wrapper for the IsSensorOverlayActive member of the SystemScanner datatype. Queried live
/// on every access so the state reflects user-driven overlay toggles immediately.
/// </summary>
public bool IsSensorOverlayActive
{
get { return this.GetBool("IsSensorOverlayActive"); }
}
/// <summary>
/// Wrapper for the EnableSensorOverlay method of the SystemScanner datatype.
/// </summary>
/// <returns></returns>
public bool EnableSensorOverlay()
{
return ExecuteMethod("EnableSensorOverlay");
}
/// <summary>
/// Wrapper for the DisableSensorOverlay method of the SystemScanner datatype.
/// </summary>
/// <returns></returns>
public bool DisableSensorOverlay()
{
return ExecuteMethod("DisableSensorOverlay");
}
/// <summary>
/// Wrapper for the GetAnomalies method of the SystemScanner datatype. Re-queries the sensor suite
/// service on every call — results reflect current anomaly state (new sites, completed sites).
/// </summary>
/// <returns></returns>
public List<SystemAnomaly> GetAnomalies()
{
return this.GetListFromMethod<SystemAnomaly>("GetAnomalies", "systemanomaly");
}
/// <summary>
/// Wrapper for the GetSignatures method of the SystemScanner datatype. Re-queries the sensor suite
/// service on every call — results reflect current signature state (new sigs, resolved sigs).
/// </summary>
/// <returns></returns>
public List<SystemSignature> GetSignatures()
{
return this.GetListFromMethod<SystemSignature>("GetSignatures", "systemsignature");
}
}
}