-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMSTSStageController.cs
52 lines (42 loc) · 1.16 KB
/
MSTSStageController.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
using MSTS;
using System;
using System.IO;
namespace ORTS
{
/**
* This almost the same as the Notch controller, but it can be updated
* every frame it updates its values continuosoly, not only on Notches.
* Useful for dynamic brakes and steam locomotives regulators
*/
class MSTSStageController: MSTSNotchController
{
public MSTSStageController()
{
}
public MSTSStageController(MSTSStageController other):
base(other)
{
}
public MSTSStageController(STFReader f):
base(f)
{
}
public MSTSStageController(BinaryReader inf) :
base(inf)
{
}
public override IController Clone()
{
return new MSTSStageController(this);
}
public override bool IsNotched()
{
return Notches.Count > 0 && !Notches[CurrentNotch].Smooth;
}
public override void Save(BinaryWriter outf)
{
outf.Write((int)ControllerTypes.MSTSStageController);
this.SaveData(outf);
}
}
}