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
|
celevator.callbutton = {}
local function makebuttontex(dir,upon,downon)
local tex = "[combine:64x64:0,0=celevator_cabinet_sides.png:32,0=celevator_cabinet_sides.png:0,32=celevator_cabinet_sides.png:32,32=celevator_cabinet_sides.png:22,24=celevator_callbutton_panel.png"
if dir == "up" then
tex = tex..":24,35=celevator_callbutton_up.png"
if upon then
tex = tex..":33,36=celevator_callbutton_light.png"
end
elseif dir == "down" then
tex = tex..":24,35=celevator_callbutton_down.png"
if downon then
tex = tex..":33,36=celevator_callbutton_light.png"
end
elseif dir == "both" then
tex = tex..":24,28=celevator_callbutton_up.png:24,43=celevator_callbutton_down.png"
if upon then
tex = tex..":33,29=celevator_callbutton_light.png"
end
if downon then
tex = tex..":33,44=celevator_callbutton_light.png"
end
end
return(tex)
end
local validstates = {
{"up",false,false,"Up"},
{"up",true,false,"Up"},
{"down",false,false,"Down"},
{"down",false,true,"Down"},
{"both",false,false,"Up and Down"},
{"both",true,false,"Up and Down"},
{"both",false,true,"Up and Down"},
{"both",true,true,"Up and Down"},
}
function celevator.callbutton.setlight(pos,dir,newstate)
local node = minetest.get_node(pos)
if minetest.get_item_group(node.name,"_celevator_callbutton") ~= 1 then return end
if dir == "up" then
if minetest.get_item_group(node.name,"_celevator_callbutton_has_up") ~= 1 then return end
local lit = minetest.get_item_group(node.name,"_celevator_callbutton_up_lit") == 1
if lit == newstate then return end
local newname = "celevator:callbutton_"
if minetest.get_item_group(node.name,"_celevator_callbutton_has_down") == 1 then
newname = newname.."both"
else
newname = newname.."up"
end
if newstate then newname = newname.."_upon" end
if minetest.get_item_group(node.name,"_celevator_callbutton_down_lit") == 1 then
newname = newname.."_downon"
end
node.name = newname
minetest.swap_node(pos,node)
elseif dir == "down" then
if minetest.get_item_group(node.name,"_celevator_callbutton_has_down") ~= 1 then return end
local lit = minetest.get_item_group(node.name,"_celevator_callbutton_down_lit") == 1
if lit == newstate then return end
local newname = "celevator:callbutton_"
if minetest.get_item_group(node.name,"_celevator_callbutton_has_up") == 1 then
newname = newname.."both"
else
newname = newname.."down"
end
if minetest.get_item_group(node.name,"_celevator_callbutton_up_lit") == 1 then
newname = newname.."_upon"
end
if newstate then newname = newname.."_downon" end
node.name = newname
minetest.swap_node(pos,node)
end
end
local function disambiguatedir(pos,player)
if player and not player.is_fake_player then
local eyepos = vector.add(player:get_pos(),vector.add(player:get_eye_offset(),vector.new(0,1.5,0)))
local lookdir = player:get_look_dir()
local distance = vector.distance(eyepos,pos)
local endpos = vector.add(eyepos,vector.multiply(lookdir,distance+1))
local ray = minetest.raycast(eyepos,endpos,true,false)
local pointed,button,hitpos
repeat
pointed = ray:next()
if pointed and pointed.type == "node" then
local node = minetest.get_node(pointed.under)
if node.name and (minetest.get_item_group(node.name,"_celevator_callbutton") == 1) then
button = pointed.under
hitpos = vector.subtract(pointed.intersection_point,button)
end
end
until button or not pointed
if not hitpos then return end
hitpos.y = -1*hitpos.y
hitpos.y = math.floor((hitpos.y+0.5)*64+0.5)+1
return hitpos.y >= 40 and "down" or "up"
end
end
for _,state in ipairs(validstates) do
local boringside = "[combine:64x64:0,0=celevator_cabinet_sides.png:32,0=celevator_cabinet_sides.png:0,32=celevator_cabinet_sides.png:32,32=celevator_cabinet_sides.png"
local nname = "celevator:callbutton_"..state[1]
local dropname = nname
if state[2] then nname = nname.."_upon" end
if state[3] then nname = nname.."_downon" end
local idle = not (state[2] or state[3])
local description = string.format("%s Call Button%s",state[4],(idle and "" or " (on state, you hacker you!)"))
minetest.register_node(nname,{
description = description,
groups = {
dig_immediate = 2,
not_in_creative_inventory = (idle and 0 or 1),
_celevator_callbutton = 1,
_celevator_callbutton_has_up = (state[1] == "down" and 0 or 1),
_celevator_callbutton_has_down = (state[1] == "up" and 0 or 1),
_celevator_callbutton_up_lit = (state[2] and 1 or 0),
_celevator_callbutton_down_lit = (state[3] and 1 or 0),
},
drop = dropname,
tiles = {
boringside,
boringside,
boringside,
boringside,
boringside,
makebuttontex(state[1],state[2],state[3])
},
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },
{-0.16, -0.37,-0.59, 0.17, 0.13,-0.5 },
},
},
on_rightclick = function(pos,_,clicker)
local meta = minetest.get_meta(pos)
local controllerpos = minetest.string_to_pos(meta:get_string("controllerpos"))
if not controllerpos then return end
if state[1] == "up" then
celevator.controller.handlecallbutton(controllerpos,pos,"up")
elseif state[1] == "down" then
celevator.controller.handlecallbutton(controllerpos,pos,"down")
elseif state[1] == "both" then
local dir = disambiguatedir(pos,clicker)
if dir == "up" then
celevator.controller.handlecallbutton(controllerpos,pos,"up")
elseif dir == "down" then
celevator.controller.handlecallbutton(controllerpos,pos,"down")
end
end
end,
})
end
|