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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
--- Signal aspect handling.
-- @module advtrains.interlocking.aspect
local registered_groups = {}
local default_aspect = {
main = false,
dst = false,
shunt = true,
proceed_as_main = false,
}
local signal_aspect = {}
local signal_aspect_metatable = {
__eq = function(asp1, asp2)
for _, k in pairs {"main", "dst", "shunt", "proceed_as_main"} do
local v1, v2 = (asp1[k] or false), (asp2[k] or false)
if v1 ~= v2 then
return false
end
end
if asp1.group and asp1.group == asp2.group then
return asp1.name == asp2.name
end
return true
end,
__index = function(asp, field)
local val = signal_aspect[field]
if val then
return val
end
val = default_aspect[field]
if val == nil then
return nil
end
local group = registered_groups[rawget(asp, "group")]
if group then
local aspdef = group.aspects[rawget(asp, "name")]
if aspdef[field] ~= nil then
val = aspdef[field]
end
end
return val
end,
__tostring = function(asp)
local st = {}
if asp.group and asp.name then
table.insert(st, ("%q in %q"):format(asp.name, asp.group))
end
if asp.main then
table.insert(st, ("current %d"):format(asp.main))
end
if asp.main ~= 0 then
if asp.dst then
table.insert(st, string.format("next %d", asp.dst))
end
end
if asp.main ~= 0 and asp.proceed_as_main then
table.insert(st, "proceed as main")
end
return ("[%s]"):format(table.concat(st, ", "))
end,
}
local function quicknew(t)
return setmetatable(t, signal_aspect_metatable)
end
--- Signal aspect class.
-- @type signal_aspect
--- Return a plain version of the signal aspect.
-- @param[opt=false] raw Bypass metamethods when fetching signal aspects
-- @return A plain copy of the signal aspect object.
function signal_aspect:plain(raw)
local t = {}
for _, k in pairs {"main", "dst", "shunt", "proceed_as_main", "group", "name"} do
local v
if raw then
v = rawget(self, k)
else
v = self[k]
end
t[k] = v
end
return t
end
--- Create (or copy) a signal aspect object.
-- Note that signal aspect objects can also be created by calling the `advtrains.interlocking.aspect` table.
-- @return The newly created signal aspect object.
function signal_aspect:new()
if type(self) ~= "table" then
return quicknew{}
end
local newasp = {}
for _, k in pairs {"main", "dst"} do
if type(self[k]) == "table" then
if self[k].free then
newasp[k] = self[k].speed
else
newasp[k] = 0
end
else
newasp[k] = self[k]
end
end
if type(self.shunt) == "table" then
newasp.shunt = self.shunt.free
newasp.proceed_as_main = self.shunt.proceed_as_main
else
newasp.shunt = self.shunt
end
for _, k in pairs {"group", "name"} do
newasp[k] = self[k]
end
return quicknew(newasp)
end
--- Modify the signal aspect in-place to fit in the specific signal group.
-- @param group The signal group. The `nil` indicates a generic group.
-- @return The (now modified) signal aspect itself.
function signal_aspect:to_group(group)
local cg = self.group
local gdef = registered_groups[group]
if type(self.name) ~= "string" then
self.name = nil
end
if not gdef then
for k in pairs(default_aspect) do
rawset(self, k, self[k])
end
self.group = nil
self.name = nil
return self
elseif cg == group and gdef.aspects[self.name] then
return self
end
local newidx = 1
if self.main == 0 then
newidx = #gdef.aspects
end
local cgdef = registered_groups[cg]
if cgdef then
local idx = (cgdef.aspects[self.name] or {}).index
if idx then
if idx >= #cgdef.aspects then
idx = #gdef.aspects
elseif idx >= #gdef.aspects then
idx = #gdef.aspects-1
end
newidx = idx
end
end
self.group = group
self.name = gdef.aspects[newidx][1]
return self
end
--- Modify the signal aspect in-place to indicate a specific distant aspect.
-- @param dst The distant aspect
-- @param[opt=1] shift The phase shift of the current signal.
-- @return The (now modified) signal aspect itself.
function signal_aspect:adjust_distant(dst, shift)
if (shift or -1) < 0 then
shift = 1
end
if not dst then
self.dst = nil
return self
end
if self.main ~= 0 then
self.dst = dst.main
else
self.dst = nil
return self
end
local dgdef = registered_groups[dst.group]
if dgdef then
if self.group == dst.group and shift == 0 then
self.name = dst.name
else
local idx = (dgdef.aspects[dst.name] or {}).index
if idx then
idx = math.max(idx-shift, 1)
self.group = dst.group
self.name = dgdef.aspects[idx][1]
end
end
end
return self
end
--- Signal groups.
-- @section signal_group
--- Register a signal group.
-- @function register_group
-- @param def The definition table.
local function register_group(def)
local t = {}
local name = def.name
if type(name) ~= "string" then
return error("Expected signal group name to be a string, got " .. type(name))
elseif registered_groups[name] then
return error(string.format("Attempt to redefine signal group %q, previously defined in %s", name, registered_groups[name].defined))
end
t.name = name
t.defined = debug.getinfo(2, "S").short_src or "[?]"
local label = def.label or name
if type(label) ~= "string" then
return error("Label is not a string")
end
t.label = label
local mainasps = {}
for idx, asp in pairs(def.aspects) do
local idxtp = type(idx)
if idxtp == "string" then
local t = {}
t.name = idx
local label = asp.label or idx
if type(label) ~= "string" then
return error("Aspect label is not a string")
end
t.label = label
for _, k in pairs{"main", "dst", "shunt"} do
t[k] = asp[k]
end
mainasps[idx] = t
end
end
if #def.aspects < 2 then
return error("Insufficient entries in signal aspect list")
end
for idx, asplist in ipairs(def.aspects) do
if type(asplist) ~= "table" then
asplist = {asplist}
else
asplist = table.copy(asplist)
end
if #asplist < 1 then
error("Invalid entry in signal aspect list")
end
for _, k in ipairs(asplist) do
if type(k) ~= "string" then
return error("Invalid signal aspect ID")
end
local asp = mainasps[k]
if not asp then
return error("Invalid signal aspect ID")
end
if asp.index ~= nil then
return error("Attempt to assign a signal aspect to multiple numeric indices")
end
asp.index = idx
end
mainasps[idx] = asplist
end
t.aspects = mainasps
registered_groups[name] = t
end
--- Get the definition of a signal group.
-- @function get_group_definition
-- @param name The name of the signal group.
-- @return[1] The definition for the signal group (if present).
-- @return[2] The nil constant (otherwise).
local function get_group_definition(name)
local t = registered_groups[name]
if t then
return table.copy(t)
else
return nil
end
end
local lib = {
register_group = register_group,
get_group_definition = get_group_definition,
}
local libmt = {
__call = function(_, ...)
return signal_aspect.new(...)
end,
}
return setmetatable(lib, libmt)
|