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
|
local F = advtrains.formspec
local D = advtrains.distant
local I = advtrains.interlocking
function advtrains.interlocking.show_distant_signal_form(pos, pname)
local form = {"size[7,7]"}
form[#form+1] = advtrains.interlocking.make_signal_formspec_tabheader(pname, pos, 7, 3)
local main, set_by = D.get_main(pos)
if main then
local pts_main = minetest.pos_to_string(main)
form[#form+1] = F.S_label(0.5, 0.5, "This signal is a distant signal of @1.", pts_main)
if set_by == "manual" then
form[#form+1] = F.S_label(0.5, 1, "The assignment is made manually.")
elseif set_by == "routesetting" then
form[#form+1] = F.S_label(0.5, 1, "The assignment is made by the routesetting system.")
end
else
form[#form+1] = F.S_label(0.5, 0.5, "This signal is not assigned to a main signal.")
form[#form+1] = F.S_label(0.5, 1, "The distant aspect of the signal is not used.")
end
if set_by ~= nil then
form[#form+1] = F.S_button_exit(0.5, 1.5, 3, 1, "unassign_dst", "Unassign")
form[#form+1] = F.S_button_exit(3.5, 1.5, 3, 1, "assign_dst", "Reassign")
else
form[#form+1] = F.S_button_exit(0.5, 1.5, 6, 1, "assign_dst", "Assign")
end
local dsts = D.get_dst(pos)
local dstlist = {}
for pos, _ in pairs(dsts) do
dstlist[#dstlist+1] = minetest.pos_to_string(advtrains.decode_pos(pos))
end
form[#form+1] = F.S_label(0.5, 2.5, "This signal has the following distant signals:")
form[#form+1] = F.textlist(0.5, 3, 4.5, 3.5, "dstlist", dstlist)
form[#form+1] = F.image_button_exit(5.5, 3.5, 1, 1, "cdb_add.png", "dst_add", "")
form[#form+1] = F.image_button_exit(5.5, 5, 1, 1, "cdb_clear.png", "dst_del", "")
minetest.show_formspec(pname, "advtrains:distant_" .. minetest.pos_to_string(pos), table.concat(form))
end
local signal_pos = {}
local function init_signal_assignment(pname, pos)
if not minetest.check_player_privs(pname, "interlocking") then
minetest.chat_send_player(pname, attrans("This operation is not allowed without the @1 privilege.", "interlocking"))
return
end
signal_pos[pname] = pos
minetest.chat_send_player(pname, attrans("Please punch the signal to use as the main signal."))
end
local distant_pos = {}
local function init_distant_assignment(pname, pos)
if not minetest.check_player_privs(pname, "interlocking") then
minetest.send_chat_player(pname, attrans("This operation is now allowed without the @1 privilege.", "interlocking"))
return
end
distant_pos[pname] = pos
minetest.chat_send_player(pname, attrans("Please punch the signal to use as the distant signal."))
end
minetest.register_on_punchnode(function(pos, node, player, pointed_thing)
local pname = player:get_player_name()
if not minetest.check_player_privs(pname, "interlocking") then
return
end
local spos = signal_pos[pname]
local distant = false
if not spos then
spos = distant_pos[pname]
if not spos then
return
end
distant = true
end
signal_pos[pname] = nil
distant_pos[pname] = nil
local is_signal = minetest.get_item_group(node.name, "advtrains_signal") >= 2
if not is_signal then
minetest.chat_send_player(pname, attrans("Incompatible signal."))
return
end
minetest.chat_send_player(pname, attrans("Successfully assigned signal."))
if distant then
D.assign(spos, pos, "manual")
else
D.assign(pos, spos, "manual")
end
end)
local dstsel = {}
minetest.register_on_player_receive_fields(function(player, formname, fields)
local pname = player:get_player_name()
local pos = minetest.string_to_pos(string.match(formname, "^advtrains:distant_(.+)$") or "")
if not pos then
return
end
if not minetest.check_player_privs(pname, "interlocking") then
return
end
if advtrains.interlocking.handle_signal_formspec_tabheader_fields(pname, fields) then
return true
end
if fields.unassign_dst then
D.unassign_dst(pos)
elseif fields.assign_dst then
init_signal_assignment(pname, pos)
elseif fields.dst_add then
init_distant_assignment(pname, pos)
elseif fields.dstlist then
dstsel[pname] = minetest.explode_textlist_event(fields.dstlist).index
elseif fields.dst_del then
local selid = dstsel[pname]
if selid then
local dsts = D.get_dst(pos)
local pos
for p, _ in pairs(dsts) do
selid = selid-1
if selid <= 0 then
pos = p
break
end
end
if pos then
D.unassign_dst(advtrains.decode_pos(pos))
end
end
end
end)
|