hades_laboratory/distiller.lua

175 lines
4.9 KiB
Lua

----------------
-- Distilator --
----------------
--- Ver 2.0 ----
-----------------------
-- Initial Functions --
-----------------------
local S = laboratory.translator;
laboratory.distiller = appliances.appliance:new(
{
node_name_inactive = "hades_laboratory:distiller",
node_name_active = "hades_laboratory:distiller_active",
node_description = S("Distiller"),
node_help = S("Connect to power and water.").."\n"..S("Fill bottle with filtered and distilled water."),
output_stack_size = 2,
})
local distiller = laboratory.distiller
distiller:power_data_register(
{
["LV_power"] = {
demand = 500,
run_speed = 1,
disable = {"no_power"},
},
["power_generators_power"] = {
demand = 500,
run_speed = 1,
disable = {"no_power"},
},
["no_power"] = {
run_speed = 0,
},
})
distiller:supply_data_register(
{
["water_pipe_liquid"] = {
},
})
distiller:item_data_register(
{
["tube_item"] = {
},
})
--------------
-- Formspec --
--------------
function distiller:get_formspec(meta, production_percent, consumption_percent)
local progress = "image[3.6,0.5;5.5,0.95;appliances_production_progress_bar.png^[transformR270]]";
if production_percent then
progress = "image[3.6,0.5;5.5,0.95;appliances_production_progress_bar.png^[lowpart:" ..
(production_percent) ..
":appliances_production_progress_bar_full.png^[transformR270]]";
end
if consumption_percent then
progress = progress.."image[3.6,1.35;5.5,0.95;appliances_consumption_progress_bar.png^[lowpart:" ..
(consumption_percent) ..
":appliances_consumption_progress_bar_full.png^[transformR270]]";
else
progress = progress.."image[3.6,1.35;5.5,0.95;appliances_consumption_progress_bar.png^[transformR270]]";
end
local formspec = "formspec_version[3]" .. "size[12.75,8.5]" ..
"background[-1.25,-1.25;15,10;appliances_appliance_formspec.png]" ..
progress..
"list[current_player;main;0.3,3;10,4;]" ..
"list[context;"..self.input_stack..";2,0.25;1,1;]" ..
"list[context;"..self.use_stack..";2,1.5;1,1;]" ..
"list[context;"..self.output_stack..";9.75,0.25;1,2;]" ..
"listring[current_player;main]" ..
"listring[context;"..self.input_stack.."]" ..
"listring[current_player;main]" ..
"listring[context;"..self.use_stack.."]" ..
"listring[current_player;main]"..
"listring[context;"..self.output_stack.."]" ..
"listring[current_player;main]";
return formspec;
end
----------
-- Node --
----------
local node_def = {
paramtype2 = "facedir",
groups = {cracky = 2},
legacy_facedir_simple = true,
is_ground_content = false,
sounds = hades_sounds.node_sound_stone_defaults(),
drawtype = "node",
}
local node_inactive = {
tiles = {
"laboratory_distiller_top.png",
"laboratory_distiller_bottom.png",
"laboratory_distiller_side.png",
"laboratory_distiller_side.png",
"laboratory_distiller_side.png",
"laboratory_distiller_front.png"
},
}
local node_active = {
tiles = {
"laboratory_distiller_top.png",
"laboratory_distiller_bottom.png",
"laboratory_distiller_side.png",
"laboratory_distiller_side.png",
"laboratory_distiller_side.png",
{
image = "laboratory_distiller_front_active.png",
backface_culling = true,
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 1.5
}
}
},
}
distiller:register_nodes(node_def, node_inactive, node_active)
-------------------------
-- Recipe Registration --
-------------------------
appliances.register_craft_type("laboratory_water_filter", {
description = S("Filtering"),
width = 1,
height = 1,
})
appliances.register_craft_type("laboratory_water_filter_use", {
description = S("Use for filtering"),
width = 1,
height = 1,
})
-- for compatibility, use only _sterilized warinat in future
distiller:recipe_register_usage(
"hades_laboratory:water_filter",
{
outputs = {"hades_laboratory:water_filter_dirty"},
consumption_time = 90,
production_step_size = 1,
});
distiller:recipe_register_usage(
"hades_laboratory:water_filter_sterilized",
{
outputs = {"hades_laboratory:water_filter_dirty"},
consumption_time = 90,
production_step_size = 1,
});
distiller:recipe_register_input(
"hades_laboratory:sterilized_steel_bottle",
{
inputs = 1,
outputs = {"hades_laboratory:steel_bottle_of_distilled_water"},
production_time = 180,
consumption_step_size = 1,
});
distiller:register_recipes("laboratory_distiller", "laboratory_distiller_use")