mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-26 10:50:33 +01:00
Fix code style of the high voltage battery box
This commit is contained in:
parent
187015e073
commit
1f4c621ffc
@ -1,6 +1,11 @@
|
|||||||
|
|
||||||
|
local max_charge = 1500000
|
||||||
|
local max_charge_rate = 3000
|
||||||
|
local max_discharge_rate = 5000
|
||||||
|
|
||||||
-- HV battery box
|
-- HV battery box
|
||||||
minetest.register_craft(
|
minetest.register_craft({
|
||||||
{output = 'technic:hv_battery_box 1',
|
output = 'technic:hv_battery_box 1',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:mv_battery_box', 'technic:mv_battery_box', 'technic:mv_battery_box'},
|
{'technic:mv_battery_box', 'technic:mv_battery_box', 'technic:mv_battery_box'},
|
||||||
{'technic:mv_battery_box', 'technic:hv_transformer', 'technic:mv_battery_box'},
|
{'technic:mv_battery_box', 'technic:hv_transformer', 'technic:mv_battery_box'},
|
||||||
@ -20,11 +25,11 @@ local battery_box_formspec =
|
|||||||
"label[1,3;Power level]"..
|
"label[1,3;Power level]"..
|
||||||
"list[current_player;main;0,5;8,4;]"
|
"list[current_player;main;0,5;8,4;]"
|
||||||
|
|
||||||
minetest.register_node(
|
minetest.register_node("technic:hv_battery_box", {
|
||||||
"technic:hv_battery_box", {
|
|
||||||
description = "HV Battery Box",
|
description = "HV Battery Box",
|
||||||
tiles = {"technic_hv_battery_box_top.png", "technic_hv_battery_box_bottom.png", "technic_hv_battery_box_side0.png",
|
tiles = {"technic_hv_battery_box_top.png", "technic_hv_battery_box_bottom.png",
|
||||||
"technic_hv_battery_box_side0.png", "technic_hv_battery_box_side0.png", "technic_hv_battery_box_side0.png"},
|
"technic_hv_battery_box_side0.png", "technic_hv_battery_box_side0.png",
|
||||||
|
"technic_hv_battery_box_side0.png", "technic_hv_battery_box_side0.png"},
|
||||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2},
|
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
drop = "technic:hv_battery_box",
|
drop = "technic:hv_battery_box",
|
||||||
@ -34,9 +39,9 @@ minetest.register_node(
|
|||||||
meta:set_string("infotext", "HV Battery Box")
|
meta:set_string("infotext", "HV Battery Box")
|
||||||
meta:set_float("technic_hv_power_machine", 1)
|
meta:set_float("technic_hv_power_machine", 1)
|
||||||
meta:set_string("formspec", battery_box_formspec)
|
meta:set_string("formspec", battery_box_formspec)
|
||||||
meta:set_int("HV_EU_demand", 0) -- How much can this node charge
|
meta:set_int("HV_EU_demand", 0) -- How much this node can charge
|
||||||
meta:set_int("HV_EU_supply", 0) -- How much can this node discharge
|
meta:set_int("HV_EU_supply", 0) -- How much this node can discharge
|
||||||
meta:set_int("HV_EU_input", 0) -- How much power is this machine getting.
|
meta:set_int("HV_EU_input", 0) -- How much power this machine is getting.
|
||||||
meta:set_float("internal_EU_charge", 0)
|
meta:set_float("internal_EU_charge", 0)
|
||||||
inv:set_size("src", 1)
|
inv:set_size("src", 1)
|
||||||
inv:set_size("dst", 1)
|
inv:set_size("dst", 1)
|
||||||
@ -54,11 +59,13 @@ minetest.register_node(
|
|||||||
})
|
})
|
||||||
|
|
||||||
for i = 1,8,1 do
|
for i = 1,8,1 do
|
||||||
minetest.register_node(
|
minetest.register_node("technic:hv_battery_box"..i, {
|
||||||
"technic:hv_battery_box"..i,
|
description = "HV Battery Box",
|
||||||
{description = "HV Battery Box",
|
tiles = {"technic_hv_battery_box_top.png", "technic_hv_battery_box_bottom.png",
|
||||||
tiles = {"technic_hv_battery_box_top.png", "technic_hv_battery_box_bottom.png", "technic_hv_battery_box_side0.png^technic_power_meter"..i..".png",
|
"technic_hv_battery_box_side0.png^technic_power_meter"..i..".png",
|
||||||
"technic_hv_battery_box_side0.png^technic_power_meter"..i..".png", "technic_hv_battery_box_side0.png^technic_power_meter"..i..".png", "technic_hv_battery_box_side0.png^technic_power_meter"..i..".png"},
|
"technic_hv_battery_box_side0.png^technic_power_meter"..i..".png",
|
||||||
|
"technic_hv_battery_box_side0.png^technic_power_meter"..i..".png",
|
||||||
|
"technic_hv_battery_box_side0.png^technic_power_meter"..i..".png"},
|
||||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
paramtype="light",
|
paramtype="light",
|
||||||
@ -79,10 +86,10 @@ end
|
|||||||
|
|
||||||
local power_tools = technic.HV_power_tools
|
local power_tools = technic.HV_power_tools
|
||||||
|
|
||||||
local charge_HV_tools = function(meta, charge)
|
local function charge_HV_tools(meta, charge)
|
||||||
--charge registered power tools
|
--charge registered power tools
|
||||||
local inv = meta:get_inventory()
|
local inv = meta:get_inventory()
|
||||||
if inv:is_empty("src")==false then
|
if not inv:is_empty("src") then
|
||||||
local srcstack = inv:get_stack("src", 1)
|
local srcstack = inv:get_stack("src", 1)
|
||||||
local src_item = srcstack:to_table()
|
local src_item = srcstack:to_table()
|
||||||
local src_meta = get_item_meta(src_item["metadata"])
|
local src_meta = get_item_meta(src_item["metadata"])
|
||||||
@ -103,15 +110,19 @@ local charge_HV_tools = function(meta, charge)
|
|||||||
end
|
end
|
||||||
-- Do the charging
|
-- Do the charging
|
||||||
local item_max_charge = power_tools[toolname]
|
local item_max_charge = power_tools[toolname]
|
||||||
local load = src_meta["charge"]
|
local tool_charge = src_meta["charge"]
|
||||||
local load_step = 1000 -- how much to charge per tick
|
local charge_step = 1000 -- how much to charge per tick
|
||||||
if load<item_max_charge and charge>0 then
|
if tool_charge < item_max_charge and tool_charge > 0 then
|
||||||
if charge-load_step<0 then load_step=charge end
|
if tool_charge - charge_step < 0 then
|
||||||
if load+load_step>item_max_charge then load_step=item_max_charge-load end
|
charge_step = charge
|
||||||
load=load+load_step
|
end
|
||||||
charge=charge-load_step
|
if tool_charge + charge_step > item_max_charge then
|
||||||
technic.set_RE_wear(src_item,load,item_max_charge)
|
charge_step = item_max_charge - tool_charge
|
||||||
src_meta["charge"] = load
|
end
|
||||||
|
tool_charge = tool_charge + charge_step
|
||||||
|
charge = charge - charge_step
|
||||||
|
technic.set_RE_wear(src_item, tool_charge, item_max_charge)
|
||||||
|
src_meta["charge"] = tool_charge
|
||||||
src_item["metadata"] = set_item_meta(src_meta)
|
src_item["metadata"] = set_item_meta(src_meta)
|
||||||
inv:set_stack("src", 1, src_item)
|
inv:set_stack("src", 1, src_item)
|
||||||
end
|
end
|
||||||
@ -120,38 +131,37 @@ local charge_HV_tools = function(meta, charge)
|
|||||||
return charge -- return the remaining charge in the battery
|
return charge -- return the remaining charge in the battery
|
||||||
end
|
end
|
||||||
|
|
||||||
local discharge_HV_tools = function(meta, charge, max_charge)
|
local function discharge_HV_tools(meta, charge, max_charge)
|
||||||
-- discharging registered power tools
|
-- discharging registered power tools
|
||||||
local inv = meta:get_inventory()
|
local inv = meta:get_inventory()
|
||||||
if inv:is_empty("dst") == false then
|
if not inv:is_empty("dst") then
|
||||||
srcstack = inv:get_stack("dst", 1)
|
srcstack = inv:get_stack("dst", 1)
|
||||||
src_item = srcstack:to_table()
|
src_item = srcstack:to_table()
|
||||||
local src_meta = get_item_meta(src_item["metadata"])
|
local src_meta = get_item_meta(src_item["metadata"])
|
||||||
local toolname = src_item["name"]
|
local toolname = src_item["name"]
|
||||||
if power_tools[toolname] ~= nil then
|
if power_tools[toolname] ~= nil then
|
||||||
-- Set meta data for the tool if it didn't do it itself :-(
|
-- Set meta data for the tool if it didn't do it itself :-(
|
||||||
src_meta=get_item_meta(src_item["metadata"])
|
src_meta = get_item_meta(src_item["metadata"]) or {}
|
||||||
if src_meta==nil then
|
|
||||||
src_meta={}
|
|
||||||
src_meta["technic_hv_power_tool"]=true
|
|
||||||
src_meta["charge"]=0
|
|
||||||
else
|
|
||||||
if src_meta["technic_hv_power_tool"] == nil then
|
if src_meta["technic_hv_power_tool"] == nil then
|
||||||
src_meta["technic_hv_power_tool"] = true
|
src_meta["technic_hv_power_tool"] = true
|
||||||
src_meta["charge"] = 0
|
src_meta["charge"] = 0
|
||||||
end
|
end
|
||||||
end
|
|
||||||
-- Do the discharging
|
-- Do the discharging
|
||||||
local item_max_charge = power_tools[toolname]
|
local item_max_charge = power_tools[toolname]
|
||||||
local load = src_meta["charge"]
|
local tool_charge = src_meta["charge"]
|
||||||
local load_step = 4000 -- how much to discharge per tick
|
local charge_step = 4000 -- how much to discharge per tick
|
||||||
if load>0 and charge<max_charge then
|
if tool_charge > 0 and charge < max_charge then
|
||||||
if charge+load_step>max_charge then load_step=max_charge-charge end
|
if tool_charge + charge_step > max_charge then
|
||||||
if load-load_step<0 then load_step=load end
|
charge_step = max_charge - charge
|
||||||
load=load-load_step
|
end
|
||||||
charge=charge+load_step
|
if tool_charge - charge_step < 0 then
|
||||||
technic.set_RE_wear(src_item,load,item_max_charge)
|
charge_step = charge
|
||||||
src_meta["charge"]=load
|
end
|
||||||
|
tool_charge = tool_charge - charge_step
|
||||||
|
charge = charge + charge_step
|
||||||
|
technic.set_RE_wear(src_item, tool_charge, item_max_charge)
|
||||||
|
src_meta["charge"] = tool_charge
|
||||||
src_item["metadata"] = set_item_meta(src_meta)
|
src_item["metadata"] = set_item_meta(src_meta)
|
||||||
inv:set_stack("dst", 1, src_item)
|
inv:set_stack("dst", 1, src_item)
|
||||||
end
|
end
|
||||||
@ -160,17 +170,14 @@ local discharge_HV_tools = function(meta, charge, max_charge)
|
|||||||
return charge -- return the remaining charge in the battery
|
return charge -- return the remaining charge in the battery
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_abm(
|
minetest.register_abm({
|
||||||
{nodenames = {"technic:hv_battery_box","technic:hv_battery_box1","technic:hv_battery_box2","technic:hv_battery_box3","technic:hv_battery_box4",
|
nodenames = {"technic:hv_battery_box", "technic:hv_battery_box1", "technic:hv_battery_box2",
|
||||||
"technic:hv_battery_box5","technic:hv_battery_box6","technic:hv_battery_box7","technic:hv_battery_box8"
|
"technic:hv_battery_box3", "technic:hv_battery_box4", "technic:hv_battery_box5",
|
||||||
},
|
"technic:hv_battery_box6", "technic:hv_battery_box7", "technic:hv_battery_box8"},
|
||||||
interval = 1,
|
interval = 1,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
local meta = minetest.env:get_meta(pos)
|
local meta = minetest.env:get_meta(pos)
|
||||||
local max_charge = 1500000 -- Set maximum charge for the device here
|
|
||||||
local max_charge_rate = 3000 -- Set maximum rate of charging
|
|
||||||
local max_discharge_rate = 5000 -- Set maximum rate of discharging (16000)
|
|
||||||
local eu_input = meta:get_int("HV_EU_input")
|
local eu_input = meta:get_int("HV_EU_input")
|
||||||
local current_charge = meta:get_int("internal_EU_charge") -- Battery charge right now
|
local current_charge = meta:get_int("internal_EU_charge") -- Battery charge right now
|
||||||
|
|
||||||
@ -195,24 +202,27 @@ minetest.register_abm(
|
|||||||
meta:set_int("HV_EU_supply", math.min(max_discharge_rate, current_charge))
|
meta:set_int("HV_EU_supply", math.min(max_discharge_rate, current_charge))
|
||||||
|
|
||||||
meta:set_int("internal_EU_charge", current_charge)
|
meta:set_int("internal_EU_charge", current_charge)
|
||||||
--dprint("BA: input:"..eu_input.." supply="..meta:get_int("HV_EU_supply").." demand="..meta:get_int("HV_EU_demand").." current:"..current_charge)
|
|
||||||
|
|
||||||
-- Select node textures
|
-- Select node textures
|
||||||
local i=math.ceil((current_charge/max_charge)*8)
|
local charge_count = math.ceil((current_charge / max_charge) * 8)
|
||||||
if i > 8 then i = 8 end
|
if charge_count > 8 then
|
||||||
local j = meta:get_float("last_side_shown")
|
charge_count = 8
|
||||||
if i~=j then
|
end
|
||||||
if i>0 then hacky_swap_node(pos,"technic:hv_battery_box"..i)
|
local last_count = meta:get_float("last_side_shown")
|
||||||
elseif i==0 then hacky_swap_node(pos,"technic:hv_battery_box") end
|
if charge_count ~= last_count then
|
||||||
meta:set_float("last_side_shown",i)
|
if charge_count > 0 then
|
||||||
|
hacky_swap_node(pos,"technic:hv_battery_box"..charge_count)
|
||||||
|
else
|
||||||
|
hacky_swap_node(pos,"technic:hv_battery_box")
|
||||||
|
end
|
||||||
|
meta:set_float("last_side_shown", charge_count)
|
||||||
end
|
end
|
||||||
|
|
||||||
local load = math.floor(current_charge/max_charge * 100)
|
local charge_percent = math.floor(current_charge / max_charge * 100)
|
||||||
meta:set_string("formspec",
|
meta:set_string("formspec",
|
||||||
battery_box_formspec..
|
battery_box_formspec..
|
||||||
"image[1,1;1,2;technic_power_meter_bg.png^[lowpart:"..
|
"image[1,1;1,2;technic_power_meter_bg.png^[lowpart:"
|
||||||
(load)..":technic_power_meter_fg.png]"
|
..charge_percent..":technic_power_meter_fg.png]")
|
||||||
)
|
|
||||||
|
|
||||||
if eu_input == 0 then
|
if eu_input == 0 then
|
||||||
meta:set_string("infotext", "HV Battery box: "..current_charge.."/"..max_charge.." (idle)")
|
meta:set_string("infotext", "HV Battery box: "..current_charge.."/"..max_charge.." (idle)")
|
||||||
|
Loading…
Reference in New Issue
Block a user