blob: 1480462ddc80beb4cb2eedf77bbfe1608a4ccc76 (
plain)
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
|
using System;
using System.Linq;
using System.Text;
using UnityEngine;
public class ElectricTask : SabotageTask
{
public override int TaskStep
{
get
{
if (!this.isComplete)
{
return 0;
}
return 1;
}
}
public override bool IsComplete
{
get
{
return this.isComplete;
}
}
private bool isComplete;
private SwitchSystem system;
private bool even;
public override void Initialize()
{
ShipStatus instance = ShipStatus.Instance;
this.system = (SwitchSystem)instance.Systems[SystemTypes.Electrical];
base.SetupArrows();
}
private void FixedUpdate()
{
if (this.isComplete)
{
return;
}
if (this.system.ExpectedSwitches == this.system.ActualSwitches)
{
this.Complete();
}
}
public override bool ValidConsole(global::Console console)
{
return console.TaskTypes.Contains(TaskTypes.FixLights);
}
public override void Complete()
{
this.isComplete = true;
PlayerControl.LocalPlayer.RemoveTask(this);
if (this.didContribute)
{
StatsManager instance = StatsManager.Instance;
uint sabsFixed = instance.SabsFixed;
instance.SabsFixed = sabsFixed + 1U;
}
}
public override void AppendTaskText(StringBuilder sb)
{
this.even = !this.even;
Color color = this.even ? Color.yellow : Color.red;
sb.Append(color.ToTextColor());
sb.Append(DestroyableSingleton<TranslationController>.Instance.GetString(TaskTypes.FixLights));
sb.AppendLine(" (%" + (int)(this.system.Level * 100f) + ")[]");
for (int i = 0; i < this.Arrows.Length; i++)
{
this.Arrows[i].image.color = color;
}
}
}
|