-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEurobaliza.cs
146 lines (145 loc) · 5.52 KB
/
Eurobaliza.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
using Orts.Simulation.Signalling;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ORTS.Scripting.Script
{
public abstract class Eurobaliza : ETCS
{
protected string Telegrama = "";
protected int N_PIG=-1;
protected int N_TOTAL=-1;
protected int M_DUP=0;
protected int NID_C;
protected int NID_BG;
protected bool ActualizarGrupo;
protected int msgcount=0;
protected bool Linked = true;
protected bool EsPrimera;
protected int IdSigBaliza=-1;
protected int BaliseReaction = 2;
protected int GroupReaction = 2;
public override void Initialize()
{
SharedVariables[KeyN_PIG] = -1;
base.Initialize();
TextSignalAspect = "1"+"0000000"+"0"+format_binary(EsPrimera ? 0 : 1,3);
}
public override void Update()
{
int id = -1;
for (int i=0; ; i++)
{
id = NextSignalId("NORMAL", i);
if (id < 0) break;
if (!IdSignalHasNormalSubtype(id, "PANTALLA_ERTMS")) break;
}
SharedVariables[KeyNextSignalId] = id;
if (EsPrimera)
{
if (N_TOTAL<0) NumeraGrupo();
else if (ActualizarGrupo)
{
ActualizarGrupo = false;
SendSignalMessage(SignalId, "ACTUALIZAR:"+msgcount);
msgcount++;
if (msgcount > 253) msgcount = 0;
}
}
}
protected void ConstruirTelegrama(int num, List<string> mensajes)
{
var sb = new StringBuilder(300);
sb.Append("1"+"0100001"+"0").Append(format_binary(N_PIG,3)).Append(format_binary(N_TOTAL,3)).Append(format_binary(M_DUP, 2)).Append(format_binary(num, 8)).Append(format_binary(NID_C, 10)).Append(format_binary(NID_BG, 14)).Append(format_binary(Linked?1:0, 1));
sb.Append(format_binary(0,8)).Append(format_binary(1,6)); // VBC
foreach (string s in mensajes) sb.Append(s);
sb.Append("11111111");
Telegrama = sb.ToString();
TextSignalAspect = Telegrama;
}
protected virtual List<string> ConstruirMensajes()
{
List<string> msg = new List<string>();
for (int i=0; ; i++)
{
int id = NextSignalId("ETCS_PACKET", i);
if (id < 0 || IdSignalLocalVariable(id, KeyNextEurobaliseID) != NextSignalId("ETCS")) break;
SendSignalMessage(id, "UPDATE_PACKET");
string pack = IdTextSignalAspect(id, "ETCS_PACKET");
if (pack != "") msg.Add(pack);
}
return msg;
}
void SaveVariables()
{
SharedVariables[KeyNID_BG] = NID_BG;
SharedVariables[KeyN_PIG] = N_PIG;
SharedVariables[KeyN_TOTAL] = N_TOTAL;
}
protected void NumeraGrupo()
{
if (!EsPrimera) return;
NID_C = ETCS.NID_C;
NID_BG = SignalId;
N_PIG = 0;
IdSigBaliza = NextSignalId("ETCS");
if (IdSigBaliza < 0)
{
if (Enabled) N_TOTAL = 0;
}
else SendSignalMessage(IdSigBaliza, "NUMERA:"+NID_C+","+NID_BG+","+1);
SaveVariables();
}
public override void HandleSignalMessage(int id, string message)
{
if (message.StartsWith("NUMERA:"))
{
string[] dat = message.Substring(7).Split(',');
int country = int.Parse(dat[0]);
int bg = int.Parse(dat[1]);
int pos = int.Parse(dat[2]);
if (EsPrimera)
{
SendSignalMessage(bg, "TOTAL:"+(pos-1));
return;
}
NID_C = country;
NID_BG = bg;
N_PIG = pos;
IdSigBaliza = NextSignalId("ETCS");
if (IdSigBaliza < 0) SendSignalMessage(bg, "TOTAL:"+pos);
else SendSignalMessage(IdSigBaliza, "NUMERA:"+NID_C+","+NID_BG+","+(N_PIG+1));
SaveVariables();
}
else if (message.StartsWith("TOTAL:"))
{
N_TOTAL = int.Parse(message.Substring(6,1));
if (N_PIG<N_TOTAL) SendSignalMessage(IdSigBaliza, message);
SaveVariables();
for (int i=0; ; i++)
{
int id2 = NextSignalId("ETCS_PACKET", i);
if (id2 < 0 || IdSignalLocalVariable(id2, KeyNextEurobaliseID) != NextSignalId("ETCS")) break;
BaliseReaction = Math.Min(IdSignalLocalVariable(id2, KeyBaliseReaction), BaliseReaction);
}
SharedVariables[KeyBaliseReaction] = BaliseReaction;
if (EsPrimera)
{
int reaction = SharedVariables[KeyBaliseReaction];
for (int i=0; i<N_TOTAL; i++)
{
reaction = Math.Min(reaction, IdSignalLocalVariable(NextSignalId("ETCS", i), KeyBaliseReaction));
}
SharedVariables[KeyGroupReaction] = reaction;
}
}
else if (message.StartsWith("ACTUALIZA:"))
{
ActualizarGrupo = true;
}
else if (N_PIG<N_TOTAL) SendSignalMessage(IdSigBaliza, message);
}
}
}