summaryrefslogtreecommitdiff
path: root/autoplace_tubes.lua
blob: 30f15fc1d99ea7a2eb4bfc976091ab1ea828f256 (plain)
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
-- autorouting for pneumatic tubes

function tube_scanforobjects(pos)
	if pos == nil then return end
	tube_autoroute({ x=pos.x-1, y=pos.y  , z=pos.z   })
	tube_autoroute({ x=pos.x+1, y=pos.y  , z=pos.z   })
	tube_autoroute({ x=pos.x  , y=pos.y-1, z=pos.z   })
	tube_autoroute({ x=pos.x  , y=pos.y+1, z=pos.z   })
	tube_autoroute({ x=pos.x  , y=pos.y  , z=pos.z-1 })
	tube_autoroute({ x=pos.x  , y=pos.y  , z=pos.z+1 })
	tube_autoroute(pos)
end

function in_table(table,element)
	for _,el in ipairs(table) do
		if el==element then return true end
	end
	return false
end

function is_tube(nodename)
	return in_table(tubenodes,nodename)
end

if pipeworks == nil then
    pipeworks = {}
end

-- this was tested experimentally, because I can't the whole bit arithematic

-- with these facingRight means "We're facing the right side of whatever it is"
pipeworks.connects = {
    -- a filter's output is on the right, input on the left
    facingLeft = function (i,param2)
        -- measured with a mese filter
        if i == 1 then
            return param2 == 2 or param2 == 6 or param2 == 10 or param2 == 20
        elseif i == 2 then
            return param2 == 0 or param2 == 4 or param2 == 8 or param2 == 22
        elseif i == 3 then
            return param2 == 7 or param2 == 9 or param2 == 12 or param2 == 18
        elseif i == 4 then
            return param2 == 5 or param2 == 11 or param2 == 14 or param2 == 16
        elseif i == 5 then
            return param2 == 1 or param2 == 13 or param2 == 17 or param2 == 21
        elseif i == 6 then
            return param2 == 3 or param2 == 15 or param2 == 19
        end
    end,
    facingRight = function (i,param2)
        -- measured with a mese filter
        if i == 1 then
            return param2 == 0 or param2 == 4 or param2 == 8 or param2 == 22
        elseif i == 2 then
            return param2 == 2 or param2 == 6 or param2 == 10 or param2 == 20
        elseif i == 3 then
            return param2 == 5 or param2 == 11 or param2 == 14 or param2 == 16
        elseif i == 4 then
            return param2 == 7 or param2 == 9 or param2 == 12 or param2 == 18
        elseif i == 5 then
            return param2 == 3 or param2 == 15 or param2 == 19
        elseif i == 6 then
            return param2 == 1 or param2 == 13 or param2 == 17 or param2 == 21
        end
    end,
    facingFront = function (i,param2)
        -- measured with a chest and a technic:nodebreaker
        if i == 1 then
            return param2 == 3 or param2 == 7 or param2 == 11 or param2 == 21
        elseif i == 2 then
            return param2 == 1 or param2 == 5 or param2 == 9
        elseif i == 3 then
            return param2 == 4 or param2 == 10 or param2 == 14 or param2 == 19
        elseif i == 4 then
            return param2 == 6 or param2 == 8 or param2 == 15 or param2 == 17
        elseif i == 5 then
            return param2 == 14 or param2 == 18 or param2 == 22 or param2 == 2
        elseif i == 6 then
            return param2 == 12 or param2 == 16 or param2 == 20 or param2 == 0
        end
    end,
    facingSide = function (i,param2)
        -- aka not top or bottom
        -- measured with a chair
        if i == 1 or i == 2 then
            return not (param2 >= 12 and param2 <= 19)
        elseif i == 3 or i == 4 then
            return not ((param2 >= 0 and param2 < 4) or (param2 >= 20 and param2 <= 22))
        elseif i == 5 or i == 6 then
            return not (param2 >= 4 and param2 <= 11)
        end
    end,
    facingTop = function(i,param2)
        -- measured with a chair
        if i == 1 then
            return param2 >= 16 and param2 <= 20
        elseif i == 2 then
            return param2 >= 12 and param2 < 16
        elseif i == 3 then
            return param2 >= 0 and param2 < 4
        elseif i == 4 then
            return param2 >= 21 and param2 < 23
        elseif i == 5 then
            return param2 >= 4 and param2 < 8
        elseif i == 6 then
            return param2 >= 8 and param2 < 12
            -- else error bad value for i
        end
    end
}



--a function for determining which side of the node we are on
local function nodeside(node, tubedir)
    --get a vector pointing back
    local backdir = facedir_to_dir(node.param2)

    --check whether the vector is equivalent to the tube direction; if it is, the tube's on the backside
    if backdir.x == tubedir.x and backdir.y == tubedir.y and backdir.z == tubedir.z then
        return "back"
    end

    --check whether the vector is antiparallel with the tube direction; that indicates the front
    if backdir.x == -tubedir.x and backdir.y == -tubedir.y and backdir.z == -tubedir.z then
        return "front"
    end

    --facedir is defined in terms of the top-bottom axis of the node; we'll take advantage of that
    local topdir = ({[0]={x=0, y=1, z=0},
    {x=0, y=0, z=1},
    {x=0, y=0, z=-1},
    {x=1, y=0, z=0},
    {x=-1, y=0, z=0},
    {x=0, y=-1, z=0}})[math.floor(node.param2/4)]

    --is this the top?
    if topdir.x == tubedir.x and topdir.y == tubedir.y and topdir.z == tubedir.z then
        return "top"
    end

    --or the bottom?
    if topdir.x == -tubedir.x and topdir.y == -tubedir.y and topdir.z == -tubedir.z then
        return "bottom"
    end

    --we shall apply some maths to obtain the right-facing vector
    local rightdir = {x=topdir.y*backdir.z - backdir.y*topdir.z,
    y=topdir.z*backdir.x - backdir.z*topdir.x,
    z=topdir.x*backdir.y - backdir.x*topdir.y}

    --is this the right side?
    if rightdir.x == tubedir.x and rightdir.y == tubedir.y and rightdir.z == tubedir.z then
        return "right"
    end

    --or the left?
    if rightdir.x == -tubedir.x and rightdir.y == -tubedir.y and rightdir.z == -tubedir.z then
        return "left"
    end

    --we should be done by now; initiate panic mode
    minetest.log("error", "nodeside has been confused by its parameters; see pipeworks autoplace.lua, line 382")
end

function tube_autoroute(pos)
	local active = {0, 0, 0, 0, 0, 0}
    local nctr = minetest.get_node(pos)
    if not is_tube(nctr.name) then return end

    local adjustments = {
        { x=-1, y=0, z=0 },
        { x=1, y=0, z=0  },
        { x=0, y=-1, z=0 },
        { x=0, y=1, z=0  },
        { x=0, y=0, z=-1 },
        { x=0, y=0, z=1 }
    }
    -- xm = 1, xp = 2, ym = 3, yp = 4, zm = 5, zp = 6

    local positions = {}
    local nodes = {}
    for i,adj in ipairs(adjustments) do
        positions[i] = {x=pos.x+adj.x, y=pos.y+adj.y, z=pos.z+adj.z}
        nodes[i] = minetest.get_node(positions[i])
    end

    for i,node in ipairs(nodes) do
        local idef = minetest.registered_nodes[node.name]
        -- handle the tubes themselves
        if is_tube(node.name) then
            active[i] = 1
        -- handle new style connectors
        elseif idef.tube and idef.tube.connects then
            -- connects returns true if self can connect w/ neighboring position
            -- it uses facesFront, facesTop etc to determine this
            -- pipeworks.connects.facingFront...
            if idef.tube.connects(i,param2) then active[i] = 1 end
        -- oops, handle the *other* newstyle connectors
        elseif idef.tube and idef.tube.connect_side then
            local dir = adjustments[i]
            if idef.connect_sides[nodeside(node, {x=-dir.x, y=-dir.y, z=-dir.z})] then active[i] = 1 end

        -- legacy stuff follows
        elseif string.find(node.name, "pipeworks:filter") ~= nil or string.find(node.name, "pipeworks:mese_filter") ~= nil then
            -- filters only connect to pipes on their output (despite appearances)
            -- input has to be a chest or furnace or something
            if pipeworks.connects.facingRight(i,node.param2)
                then
                    active[i] = 1
                end
        elseif
            -- not the front
            string.find(node.name, "pipeworks:deployer_") ~= nil or
            string.find(node.name, "pipeworks:nodebreaker_") ~= nil or
            string.find(node.name, "technic:nodebreaker_") ~= nil
            then
                if not pipeworks.connects.facingFront(i,node.param2) then active[i] = 1 end
        elseif
            string.find(node.name, "default:furnace") ~= nil or
            string.find(node.name, "default:chest") or
            string.find(node.name, "default:chest_locked")
            then
                if not pipeworks.connects.facingFront(i,node.param2) or
                    pipeworks.connects.facingTop(i,node.param2) then active[i] = 1 end
        elseif string.find(node.name, "pipeworks:autocrafter") ~= nil then
            active[i] = 1
        end
    end

    -- all sides checked, now figure which tube to use.

    nsurround = ""
    for i,n in ipairs(active) do
        nsurround = nsurround .. n
    end
    local newname=string.sub(nctr.name,1,-7)..nsurround
    if newname == nctr.name then return end
    local meta=minetest.get_meta(pos)
    local meta0=meta:to_table() -- XXX: hacky_swap_node
    nctr.name = newname
    minetest.add_node(pos, nctr)
    local meta=minetest.get_meta(pos)
    meta:from_table(meta0)
	local nctr = minetest.get_node(pos)
end