forked from KSP-RO/RP-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleRangeSafety.cs
94 lines (87 loc) · 2.88 KB
/
ModuleRangeSafety.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
using System.Collections.Generic;
using System.Collections;
using UniLinq;
using UnityEngine;
namespace RP0
{
public class ModuleRangeSafety : PartModule
{
[KSPEvent(guiActive = true, guiName = "Range Safety")]
public void BoomEvent()
{
SpawnConfirmationDialog();
}
private void SpawnConfirmationDialog()
{
var options = new DialogGUIBase[] {
new DialogGUIButton("Yes", Boom),
new DialogGUIButton("No", () => {})
};
var dialog = new MultiOptionDialog("ConfirmRangeSafety", "Destroy Vessel?", "Range Safety", HighLogic.UISkin, 300, options);
PopupDialog.SpawnPopupDialog(dialog, true, HighLogic.UISkin);
}
[KSPAction("Range Safety")]
public void BoomAction(KSPActionParam param)
{
Boom();
}
public void Boom()
{
FlightLogger.fetch.LogEvent("Range Safety: Destruction initiated");
ExecuteBoom();
}
public void ExecuteBoom()
{
if (part != vessel.rootPart)
{
ModuleRangeSafety mrs = vessel.rootPart.Modules.GetModule<ModuleRangeSafety>();
if (mrs == null)
{
mrs = (vessel.rootPart.AddModule("ModuleRangeSafety") as ModuleRangeSafety);
}
mrs.ExecuteBoom();
}
else
{
StartCoroutine(BoomRoutine());
}
}
// Destruction algorithm borrowed from TAC Self Destruct
private void ExplodeLeafParts(Part p)
{
int c = p.children.Count;
if (c == 0)
p.explode();
else
{
Part cP;
bool passAgain = true;
for (int i = c - 1; i >= 0; --i)
{
cP = p.children[i];
if (cP.Modules.Contains("ProceduralFairingSide")) // this is because fairing sides hold up interstages
// so if you blow the sides, then everything below the interstage becomes a new vessel, and will not
// go boom properly.
continue;
ExplodeLeafParts(cP);
passAgain = false;
}
if (passAgain)
{
for (int i = c - 1; i >= 0; --i)
ExplodeLeafParts(p.children[i]);
}
}
}
private IEnumerator BoomRoutine()
{
yield return new WaitForFixedUpdate();
while (vessel.Parts.Count > 1)
{
ExplodeLeafParts(vessel.rootPart);
yield return new WaitForFixedUpdate();
}
vessel.rootPart.explode();
}
}
}