summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNovatux <nathanael.courant@laposte.net>2014-07-12 09:50:50 +0200
committerNovatux <nathanael.courant@laposte.net>2014-07-12 09:50:50 +0200
commit1c617f2c5e853ce66e50703a776ebbcfe74159ef (patch)
treef096ae4fa511c3d96f1c836404820aa40aa5f5ab
parent563a4c071d5a14905a8ee729705ababf8d46d9f6 (diff)
Make unconnected generators burn the fuel they still have.origin/network_rewrite
-rw-r--r--technic/machines/HV/nuclear_reactor.lua24
-rw-r--r--technic/machines/register/generator.lua35
-rw-r--r--technic/machines/switching_station.lua3
3 files changed, 59 insertions, 3 deletions
diff --git a/technic/machines/HV/nuclear_reactor.lua b/technic/machines/HV/nuclear_reactor.lua
index 580bd58..3f573bf 100644
--- a/technic/machines/HV/nuclear_reactor.lua
+++ b/technic/machines/HV/nuclear_reactor.lua
@@ -236,7 +236,29 @@ minetest.register_node("technic:hv_nuclear_reactor_core_active", {
allow_metadata_inventory_take = technic.machine_inventory_take,
allow_metadata_inventory_move = technic.machine_inventory_move,
technic_run = run,
- technic_disabled_machine_name = "technic:hv_nuclear_reactor_core",
+ technic_on_disable = function(pos, node)
+ local timer = minetest.get_node_timer(pos)
+ timer:start(1)
+ end,
+ on_timer = function(pos, node)
+ local meta = minetest.get_meta(pos)
+
+ -- Connected back?
+ if meta:get_int("HV_EU_timeout") > 0 then return end
+
+ local burn_time = meta:get_int("burn_time") or 0
+
+ if burn_time >= burn_ticks or burn_time == 0 then
+ meta:set_int("HV_EU_supply", 0)
+ meta:set_int("burn_time", 0)
+ technic.swap_node(pos, "technic:hv_nuclear_reactor_core")
+ return
+ end
+
+ meta:set_int("burn_time", burn_time + 1)
+ local timer = minetest.get_node_timer(pos)
+ timer:start(1)
+ end,
})
technic.register_machine("HV", "technic:hv_nuclear_reactor_core", technic.producer)
diff --git a/technic/machines/register/generator.lua b/technic/machines/register/generator.lua
index d481242..ec1ea79 100644
--- a/technic/machines/register/generator.lua
+++ b/technic/machines/register/generator.lua
@@ -126,7 +126,40 @@ function technic.register_generator(data)
allow_metadata_inventory_take = technic.machine_inventory_take,
allow_metadata_inventory_move = technic.machine_inventory_move,
technic_run = run,
- technic_disabled_machine_name = "technic:"..ltier.."_generator",
+ technic_on_disable = function(pos, node)
+ local timer = minetest.get_node_timer(pos)
+ timer:start(1)
+ end,
+ on_timer = function(pos, node)
+ local meta = minetest.get_meta(pos)
+
+ -- Connected back?
+ if meta:get_int(tier.."_EU_timeout") > 0 then return end
+
+ local burn_time = meta:get_int("burn_time") or 0
+
+ if burn_time <= 0 then
+ meta:set_int(tier.."_EU_supply", 0)
+ meta:set_int("burn_time", 0)
+ technic.swap_node(pos, "technic:"..ltier.."_generator")
+ return
+ end
+
+ local burn_totaltime = meta:get_int("burn_totaltime") or 0
+ if burn_totaltime == 0 then burn_totaltime = 1 end
+ burn_time = burn_time - 1
+ meta:set_int("burn_time", burn_time)
+ local percent = math.floor(burn_time / burn_totaltime * 100)
+ meta:set_string("formspec",
+ "size[8, 9]"..
+ "label[0, 0;"..minetest.formspec_escape(desc).."]"..
+ "list[current_name;src;3, 1;1, 1;]"..
+ "image[4, 1;1, 1;default_furnace_fire_bg.png^[lowpart:"..
+ (percent)..":default_furnace_fire_fg.png]"..
+ "list[current_player;main;0, 5;8, 4;]")
+ local timer = minetest.get_node_timer(pos)
+ timer:start(1)
+ end,
})
technic.register_machine(tier, "technic:"..ltier.."_generator", technic.producer)
diff --git a/technic/machines/switching_station.lua b/technic/machines/switching_station.lua
index 8c31d5a..0040f13 100644
--- a/technic/machines/switching_station.lua
+++ b/technic/machines/switching_station.lua
@@ -359,9 +359,10 @@ minetest.register_abm({
if machines[node.name] and switching_station_timeout_count(pos, tier) then
local nodedef = minetest.registered_nodes[node.name]
if nodedef and nodedef.technic_disabled_machine_name then
- print(nodedef.technic_disabled_machine_name)
node.name = nodedef.technic_disabled_machine_name
minetest.swap_node(pos, node)
+ elseif nodedef and nodedef.technic_on_disable then
+ nodedef.technic_on_disable(pos, node)
end
if nodedef then
local meta = minetest.get_meta(pos)