summaryrefslogtreecommitdiff
path: root/mesecons_gates
diff options
context:
space:
mode:
authorKyle <kyle.kylina@gmail.com>2012-09-01 16:10:23 -0700
committerKyle <kyle.kylina@gmail.com>2012-09-01 16:10:23 -0700
commitefd06143b19ad627a9b5e6b2edd122486f4c3710 (patch)
tree29f2401715d9b2fc1c6d6f7cfb1c30eff0555a9e /mesecons_gates
parentb44f443fb27ebdf0129bade9b4d1fbfbfdaf66e5 (diff)
downloadmesecons-efd06143b19ad627a9b5e6b2edd122486f4c3710.tar
mesecons-efd06143b19ad627a9b5e6b2edd122486f4c3710.tar.gz
mesecons-efd06143b19ad627a9b5e6b2edd122486f4c3710.tar.bz2
mesecons-efd06143b19ad627a9b5e6b2edd122486f4c3710.tar.xz
mesecons-efd06143b19ad627a9b5e6b2edd122486f4c3710.zip
gates overheat
Diffstat (limited to 'mesecons_gates')
-rw-r--r--mesecons_gates/init.lua46
1 files changed, 36 insertions, 10 deletions
diff --git a/mesecons_gates/init.lua b/mesecons_gates/init.lua
index fd680e1..089d608 100644
--- a/mesecons_gates/init.lua
+++ b/mesecons_gates/init.lua
@@ -21,10 +21,12 @@ for g in ipairs(gates) do gate = gates[g]
onoff = "on"
groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 3}
drop = "mesecons_gates:"..gate.."_off"
+ description = "You hacker you!"
else
onoff = "off"
groups = {dig_immediate=2, mesecon = 3}
drop = nodename
+ description = gate.." Gate"
end
nodename = "mesecons_gates:"..gate.."_"..onoff
@@ -35,7 +37,7 @@ for g in ipairs(gates) do gate = gates[g]
}
minetest.register_node(nodename, {
- description = gate.." Gate",
+ description = description,
paramtype = "light",
drawtype = "nodebox",
tiles = {
@@ -47,6 +49,8 @@ for g in ipairs(gates) do gate = gates[g]
node_box = node_box,
walkable = true,
on_construct = function(pos)
+ local meta = minetest.env:get_meta(pos)
+ meta:set_int("heat", 0)
update_gate(pos)
end,
groups = groups,
@@ -69,25 +73,47 @@ end
function gate_state(pos)
name = minetest.env:get_node(pos).name
- if string.find(name, "off")~=nil then
- return false
- else
- return true
- end
+ return string.find(name, "off") == nil
+end
+
+function pop_gate(pos)
+ gate = get_gate(pos)
+ minetest.env:remove_node(pos)
+ minetest.after(0.2, yc_overheat_off, pos)
+ minetest.env:add_item(pos, "mesecons_gates:"..gate.."_off")
end
function set_gate(pos, on)
gate = get_gate(pos)
+ local meta = minetest.env:get_meta(pos)
local rules = {{x=1, y=0, z=0}}
if on then
if not gate_state(pos) then
- minetest.env:add_node(pos, {name="mesecons_gates:"..gate.."_on"})
- mesecon:receptor_on(pos, rules)
+ yc_heat(meta)
+ minetest.after(0.5, yc_cool, meta)
+ if yc_overheat(meta) then
+ pop_gate(pos)
+ else
+ heat = meta:get_int("heat")
+ minetest.env:add_node(pos, {name="mesecons_gates:"..gate.."_on"})
+ local meta2 = minetest.env:get_meta(pos)
+ meta2:set_int("heat", heat)
+ mesecon:receptor_on(pos, rules)
+ end
end
else
if gate_state(pos) then
- minetest.env:add_node(pos, {name="mesecons_gates:"..gate.."_off"})
- mesecon:receptor_off(pos, rules)
+ yc_heat(meta)
+ minetest.after(0.5, yc_cool, meta)
+ if yc_overheat(meta) then
+ pop_gate(pos)
+ else
+ heat = meta:get_int("heat")
+ minetest.env:add_node(pos, {name="mesecons_gates:"..gate.."_off"})
+ local meta2 = minetest.env:get_meta(pos)
+ meta2:set_int("heat", heat)
+ mesecon:receptor_off(pos, rules)
+ end
end
end
end