RealBadAngel
2012-12-13 b8d77627a4d28c624e63423eef317dd09c68e533
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
-- This file supplies pneumatic tubes and a 'test' device
 
minetest.register_node("pipeworks:testobject", {
    description = "Pneumatic tube test ojbect",
    tiles = {
        "pipeworks_testobject.png",
    },
    paramtype = "light",
    groups = {snappy=3, tubedevice=1},
    sounds = default.node_sound_wood_defaults(),
    walkable = true,
    after_place_node = function(pos)
            tube_scanforobjects(pos)
    end,
    after_dig_node = function(pos)
            tube_scanforobjects(pos)
    end,
})
 
-- tables
 
minetest.register_alias("pipeworks:tube", "pipeworks:tube_000000")
 
tube_leftstub = {
    { -32/64, -9/64, -9/64, 9/64, 9/64, 9/64 },    -- tube segment against -X face
}
 
tube_rightstub = {
    { -9/64, -9/64, -9/64,  32/64, 9/64, 9/64 },    -- tube segment against +X face
}
 
tube_bottomstub = {
    { -9/64, -32/64, -9/64,   9/64, 9/64, 9/64 },    -- tube segment against -Y face
}
 
 
tube_topstub = {
    { -9/64, -9/64, -9/64,   9/64, 32/64, 9/64 },    -- tube segment against +Y face
}
 
tube_frontstub = {
    { -9/64, -9/64, -32/64,   9/64, 9/64, 9/64 },    -- tube segment against -Z face
}
 
tube_backstub = {
    { -9/64, -9/64, -9/64,   9/64, 9/64, 32/64 },    -- tube segment against -Z face
 
tube_selectboxes = {
    { -32/64,  -10/64,  -10/64,  10/64,  10/64,  10/64 },
    { -10/64 ,  -10/64,  -10/64, 32/64,  10/64,  10/64 },
    { -10/64 , -32/64,  -10/64,  10/64,  10/64,  10/64 },
    { -10/64 ,  -10/64,  -10/64,  10/64, 32/64,  10/64 },
    { -10/64 ,  -10/64, -32/64,  10/64,  10/64,  10/64 },
    { -10/64 ,  -10/64,  -10/64,  10/64,  10/64, 32/64 }
}
 
--  Functions
 
function tube_addbox(t, b)
    for i in ipairs(b)
        do table.insert(t, b[i])
    end
end
 
-- now define the nodes!
 
for xm = 0, 1 do
for xp = 0, 1 do
for ym = 0, 1 do
for yp = 0, 1 do
for zm = 0, 1 do
for zp = 0, 1 do
    local outboxes = {}
    local outsel = {}
    local outimgs = {}
 
    if yp==1 then
        tube_addbox(outboxes, tube_topstub)
        table.insert(outsel, tube_selectboxes[4])
        table.insert(outimgs, "pipeworks_tube_noctr.png")
    else
        table.insert(outimgs, "pipeworks_tube_plain.png")
    end
    if ym==1 then
        tube_addbox(outboxes, tube_bottomstub)
        table.insert(outsel, tube_selectboxes[3])
        table.insert(outimgs, "pipeworks_tube_noctr.png")
    else
        table.insert(outimgs, "pipeworks_tube_plain.png")
    end
    if xp==1 then
        tube_addbox(outboxes, tube_rightstub)
        table.insert(outsel, tube_selectboxes[2])
        table.insert(outimgs, "pipeworks_tube_noctr.png")
    else
        table.insert(outimgs, "pipeworks_tube_plain.png")
    end
    if xm==1 then
        tube_addbox(outboxes, tube_leftstub)
        table.insert(outsel, tube_selectboxes[1])
        table.insert(outimgs, "pipeworks_tube_noctr.png")
    else
        table.insert(outimgs, "pipeworks_tube_plain.png")
    end
    if zp==1 then
        tube_addbox(outboxes, tube_backstub)
        table.insert(outsel, tube_selectboxes[6])
        table.insert(outimgs, "pipeworks_tube_noctr.png")
    else
        table.insert(outimgs, "pipeworks_tube_plain.png")
    end
    if zm==1 then
        tube_addbox(outboxes, tube_frontstub)
        table.insert(outsel, tube_selectboxes[5])
        table.insert(outimgs, "pipeworks_tube_noctr.png")
    else
        table.insert(outimgs, "pipeworks_tube_plain.png")
    end
 
    local jx = xp+xm
    local jy = yp+ym
    local jz = zp+zm
 
    if (jx+jy+jz) == 1 then
        if xm == 1 then 
            table.remove(outimgs, 3)
            table.insert(outimgs, 3, "pipeworks_tube_end.png")
        end
        if xp == 1 then 
            table.remove(outimgs, 4)
            table.insert(outimgs, 4, "pipeworks_tube_end.png")
        end
        if ym == 1 then 
            table.remove(outimgs, 1)
            table.insert(outimgs, 1, "pipeworks_tube_end.png")
        end
        if xp == 1 then 
            table.remove(outimgs, 2)
            table.insert(outimgs, 2, "pipeworks_tube_end.png")
        end
        if zm == 1 then 
            table.remove(outimgs, 5)
            table.insert(outimgs, 5, "pipeworks_tube_end.png")
        end
        if zp == 1 then 
            table.remove(outimgs, 6)
            table.insert(outimgs, 6, "pipeworks_tube_end.png")
        end
    end
 
    local tname = xm..xp..ym..yp..zm..zp
    local tgroups = ""
 
    if tname ~= "000000" then
        tgroups = {snappy=3, tube=1, not_in_creative_inventory=1}
        tubedesc = "Pneumatic tube segment ("..tname..")... You hacker, you."
        iimg=nil
        wscale = {x=1,y=1,z=1}
    else
        tgroups = {snappy=3, tube=1}
        tubedesc = "Pneumatic tube segment"
        iimg="pipeworks_tube_inv.png"
        outimgs = {
            "pipeworks_tube_short.png",
            "pipeworks_tube_short.png",
            "pipeworks_tube_end.png",
            "pipeworks_tube_end.png",
            "pipeworks_tube_short.png",
            "pipeworks_tube_short.png"
        }
        outboxes = { -24/64, -9/64, -9/64, 24/64, 9/64, 9/64 }
        outsel = { -24/64, -10/64, -10/64, 24/64, 10/64, 10/64 }
        wscale = {x=1,y=1,z=0.01}
    end
    
    minetest.register_node("pipeworks:tube_"..tname, {
        description = tubedesc,
        drawtype = "nodebox",
        tiles = outimgs,
        inventory_image=iimg,
        wield_image=iimg,
        wield_scale=wscale,
        paramtype = "light",
        selection_box = {
                     type = "fixed",
            fixed = outsel
        },
        node_box = {
            type = "fixed",
            fixed = outboxes
        },
        groups = tgroups,
        sounds = default.node_sound_wood_defaults(),
        walkable = true,
        stack_max = 99,
        drop = "pipeworks:tube_000000",
        tubelike=1,
        on_construct = function(pos)
        local meta = minetest.env:get_meta(pos)
        meta:set_int("tubelike",1)
        end,
        after_place_node = function(pos)
            tube_scanforobjects(pos)
        end,
        after_dig_node = function(pos)
            tube_scanforobjects(pos)
        end
    })
 
end
end
end
end
end
end