forked from KSP-RO/RP-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleNoEVA.cs
67 lines (58 loc) · 1.93 KB
/
ModuleNoEVA.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
using System;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
using KSP;
namespace RP0
{
public class ModuleNoEVA : PartModule
{
protected List<Collider> airlocks = new List<Collider>();
protected Transform airlock = null;
public override string GetInfo()
{
return "Cannot EVA from this part. Can still exit when landed on Earth or flying at low (20km) altitude.";
}
public override void OnAwake()
{
base.OnAwake();
airlocks.Clear();
foreach (var c in part.GetComponentsInChildren<Collider>())
if (c.gameObject.tag == "Airlock")
airlocks.Add(c);
airlock = part.airlock;
}
protected void FixedUpdate()
{
if (!HighLogic.LoadedSceneIsFlight || vessel == null || vessel.mainBody == null || airlocks == null)
return;
bool evaOK = vessel.mainBody == Planetarium.fetch.Home &&
(vessel.situation == Vessel.Situations.LANDED
|| vessel.situation == Vessel.Situations.PRELAUNCH
|| vessel.situation == Vessel.Situations.SPLASHED
|| (vessel.situation == Vessel.Situations.FLYING && vessel.altitude < 20000));
foreach (var c in airlocks)
{
if (evaOK)
{
if (c.gameObject.tag != "Airlock")
c.gameObject.tag = "Airlock";
}
else
{
if (c.gameObject.tag == "Airlock")
c.gameObject.tag = "Untagged";
}
}
if (evaOK)
{
if (part.airlock != airlock)
part.airlock = airlock;
}
else
{
part.airlock = null;
}
}
}
}