-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathComputerModule.cs
90 lines (68 loc) · 2.24 KB
/
ComputerModule.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
using System;
using System.Reflection;
using KRPC.MechJeb.ExtensionMethods;
using KRPC.Service.Attributes;
namespace KRPC.MechJeb {
public abstract class Module {
protected internal abstract void InitInstance(object instance);
}
public abstract class ComputerModule : Module {
internal const string MechJebType = "MuMech.ComputerModule";
// Methods needed for correct functionalify
private static MethodInfo onFixedUpdate;
// Fields and methods
private static PropertyInfo enabled;
private static FieldInfo usersField;
// Instance objects
protected internal object instance;
private object users;
internal static void InitType(Type type) {
onFixedUpdate = type.GetCheckedMethod("OnFixedUpdate");
enabled = type.GetCheckedProperty("enabled");
usersField = type.GetCheckedField("users");
}
protected internal override void InitInstance(object instance) {
this.instance = instance;
this.users = usersField.GetInstanceValue(instance);
}
public virtual bool Enabled {
get => (bool)enabled.GetValue(this.instance, null);
set {
if(value)
UserPool.usersAdd.Invoke(this.users, new object[] { this });
else
UserPool.usersRemove.Invoke(this.users, new object[] { this });
}
}
internal void OnFixedUpdate() {
onFixedUpdate.Invoke(this.instance, null);
}
private static class UserPool {
internal const string MechJebType = "MuMech.UserPool";
internal static MethodInfo usersAdd;
internal static MethodInfo usersRemove;
internal static void InitType(Type type) {
usersAdd = type.GetCheckedMethod("Add");
usersRemove = type.GetCheckedMethod("Remove");
}
}
}
public abstract class KRPCComputerModule : ComputerModule {
[KRPCProperty]
public override bool Enabled {
get => base.Enabled;
set => base.Enabled = value;
}
}
public abstract class AutopilotModule : KRPCComputerModule {
internal new const string MechJebType = "MuMech.AutopilotModule";
// Fields and methods
internal static PropertyInfo status;
[KRPCProperty]
public string Status => (string)status.GetValue(this.instance, null);
internal static new void InitType(Type type) {
status = type.GetCheckedProperty("status");
}
}
public abstract class DisplayModule : ComputerModule { }
}