--File name: init.lua --Project name: Biofuel, a Mod for Minetest --License: General Public License, version 3 or later --Original Work Copyright (C) 2016 cd2 (cdqwertz) --Modified Work Copyright (C) 2017 Vitalie Ciubotaru --Modified Work Copyright (C) 2018 - 2019 Lokrates --Modified Work Copyright (C) 2018 naturefreshmilk -- Load support for intllib. local MP = minetest.get_modpath(minetest.get_current_modname()) local S, NS = dofile(MP.."/intllib.lua") -- pipeworks compat local has_pipeworks = minetest.get_modpath("pipeworks") local tube_entry = "" if has_pipeworks then tube_entry = "^pipeworks_tube_connection_wooden.png" end minetest.log('action', 'MOD: Biofuel ' .. S("loading...")) biofuel_version = '0.5' biomass = {} biomass.convertible_groups = {'flora', 'leaves', 'flower', 'sapling', 'tree', 'wood', 'stick', 'plant', 'seed', 'eatable', 'food', 'leafdecay', 'leafdecay_drop', 'mushroom', 'vines'} biomass.convertible_nodes = {'default:cactus', 'default:large_cactus_seedling', -- default cactus 'default:bush_stem', 'default:pine_bush_stem', 'default:acacia_bush_stem', -- default bush stem -- 'default:apple', 'default:blueberries', 'farming:flour', 'farming:bread', -- default food -- 'flowers:mushroom_red', 'flowers:mushroom_brown', -- mushrooms 'farming:cotton', 'farming:string', 'farming:wheat', 'farming:straw', -- farming 'farming:hemp_leaf', 'farming:hemp_block', 'farming:hemp_fibre', 'farming:hemp_rope', -- farming_redo -- 'farming:barley', 'farming:beans', 'farming:beetroot', 'farming:blueberries','farming:carrot', -- farming_redo food -- 'farming:chili_pepper', 'farming:cocoa_beans', 'farming:coffee_beans', 'farming:corn', -- 'farming:cucumber', 'farming:garlic', 'farming:grapes', 'farming:melon_slice', 'farming:melon_8', -- 'farming:onion', 'farming:peas', 'farming:peppercorn', 'farming:pepper', 'farming:pineapple', -- 'farming:potato', 'farming:pumpkin_slice', 'farming:pumpkin', 'farming:raspberries', -- 'farming:rhubarb', 'farming:rye', 'farming:oat', 'farming:rice', 'farming:tomato', 'default:papyrus', 'default:dry_shrub', 'default:marram_grass_1', 'default:sand_with_kelp', -- default 'pooper:poop_turd', 'pooper:poop_pile', -- pooper 'cucina_vegana:flax', 'cucina_vegana:flax_raw', 'cucina_vegana:sunflower', 'cucina_vegana:soy', -- cucina_vegana, 'vines:vines' -- Vines } plants_input = tonumber(minetest.setting_get("biomass_input")) or 4 -- The number of biomass required for fuel production (settingtypes.txt) bottle_output = minetest.setting_getbool("refinery_output") -- Change of refinery output between vial or bottle (settingtypes.txt) if bottle_output == nil then bottle_output = false end -- default false biomass.convertible_items = {} for _, v in pairs(biomass.convertible_nodes) do biomass.convertible_items[v] = true end local function formspec(pos) local spos = pos.x..','..pos.y..','..pos.z local formspec = 'size[8,8.5]'.. default.gui_bg.. default.gui_bg_img.. default.gui_slots.. 'list[nodemeta:'..spos..';src;0.5,0.5;3,3;]'.. 'list[nodemeta:'..spos..';dst;5,1;2,2;]'.. 'list[current_player;main;0,4.25;8,1;]'.. 'list[current_player;main;0,5.5;8,3;8]'.. 'listring[nodemeta:'..spos ..';dst]'.. 'listring[current_player;main]'.. 'listring[nodemeta:'..spos ..';src]'.. 'listring[current_player;main]'.. default.get_hotbar_bg(0, 4.25) return formspec end local function is_convertible(input) if biomass.convertible_items[input] then return true end for _, v in pairs(biomass.convertible_groups) do if minetest.get_item_group(input, v) > 0 then return true end end return false end local function swap_node(pos, name) local node = minetest.get_node(pos) if node.name == name then return end node.name = name minetest.swap_node(pos, node) end local function count_input(pos) local q = 0 local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local stacks = inv:get_list('src') for k in pairs(stacks) do q = q + inv:get_stack('src', k):get_count() end return q end local function count_output(pos) local q = 0 local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local stacks = inv:get_list('dst') for k in pairs(stacks) do q = q + inv:get_stack('dst', k):get_count() end return q end local function is_empty(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local stacks = inv:get_list('src') for k in pairs(stacks) do if not inv:get_stack('src', k):is_empty() then return false end end stacks = inv:get_list('dst') for k in pairs(stacks) do if not inv:get_stack('dst', k):is_empty() then return false end end return true end local function update_nodebox(pos) if is_empty(pos) then swap_node(pos, "biofuel:refinery") else swap_node(pos, "biofuel:refinery_active") end end local function update_timer(pos) local timer = minetest.get_node_timer(pos) local meta = minetest.get_meta(pos) local has_output_space = (4 * 99) > count_output(pos) if not has_output_space then if timer:is_started() then timer:stop() meta:set_string('infotext', S("Output is full ")) meta:set_int('progress', 0) end return end local count = count_input(pos) local refinery_time = minetest.setting_get("fuel_production_time") or 10 -- Timebase (settingtypes.txt) if not timer:is_started() and count >= plants_input then -- Input timer:start((refinery_time)/5) -- Timebase meta:set_int('progress', 0) meta:set_string('infotext', S("progress: @1%", "0")) return end if timer:is_started() and count < plants_input then -- Input timer:stop() meta:set_string('infotext', S("To start fuel production add biomass ")) meta:set_int('progress', 0) end end local function create_biofuel(pos) local dirt_count = count_output(pos) local q = plants_input -- Input local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local stacks = inv:get_list('src') for k in pairs(stacks) do local stack = inv:get_stack('src', k) if not stack:is_empty() then local count = stack:get_count() if count <= q then inv:set_stack('src', k, '') q = q - count else inv:set_stack('src', k, stack:get_name() .. ' ' .. (count - q)) q = 0 break end end end stacks = inv:get_list('dst') for k in pairs(stacks) do local stack = inv:get_stack('dst', k) local count = stack:get_count() if 99 > count then if bottle_output then inv:set_stack('dst', k, 'biofuel:bottle_fuel ' .. (count + 1)) else inv:set_stack('dst', k, 'biofuel:phial_fuel ' .. (count + 1)) end break end end end local function on_timer(pos) local timer = minetest.get_node_timer(pos) local meta = minetest.get_meta(pos) local progress = meta:get_int('progress') + 20 --Progresss in % if progress >= 100 then create_biofuel(pos) meta:set_int('progress', 0) else meta:set_int('progress', progress) end if (4 * 99) <= count_output(pos) then timer:stop() meta:set_string('infotext', S("Output is full ")) meta:set_int('progress', 0) return false end if count_input(pos) >= plants_input then --Input meta:set_string('infotext', S("progress: @1%", progress)) return true else timer:stop() meta:set_string('infotext', S("To start fuel production add biomass ")) meta:set_int('progress', 0) return false end end local function on_construct(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() inv:set_size('src', 9) -- Input Fields inv:set_size('dst', 4) -- Output Fields meta:set_string('infotext', S("To start fuel production add biomass ")) meta:set_int('progress', 0) end local function on_rightclick(pos, node, clicker, itemstack) minetest.show_formspec( clicker:get_player_name(), 'biofuel:refinery', formspec(pos) ) end local function can_dig(pos,player) if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then -- protected return false end local meta = minetest.get_meta(pos) local inv = meta:get_inventory() if inv:is_empty('src') and inv:is_empty('dst') then return true else return false end end local tube = { insert_object = function(pos, node, stack, direction) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local convertible = is_convertible(stack:get_name()) if not convertible then return stack end local result = inv:add_item("src", stack) update_timer(pos) update_nodebox(pos) return result end, can_insert = function(pos, node, stack, direction) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() stack = stack:peek_item(1) return is_convertible(stack:get_name()) and inv:room_for_item("src", stack) end, input_inventory = "dst", connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1} } local function allow_metadata_inventory_take(pos, listname, index, stack, player) if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then -- protected return 0 end return stack:get_count() end local function allow_metadata_inventory_put(pos, listname, index, stack, player) if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then -- protected return 0 end if listname == 'src' and is_convertible(stack:get_name()) then return stack:get_count() else return 0 end end local function on_metadata_inventory_put(pos, listname, index, stack, player) update_timer(pos) update_nodebox(pos) minetest.log('action', player:get_player_name() .. S(" moves stuff to refinery at ") .. minetest.pos_to_string(pos)) return end local function on_metadata_inventory_take(pos, listname, index, stack, player) update_timer(pos) update_nodebox(pos) minetest.log('action', player:get_player_name() .. S(" takes stuff from refinery at ") .. minetest.pos_to_string(pos)) return end local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player) if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then -- protected return 0 end local inv = minetest.get_meta(pos):get_inventory() if from_list == to_list then return inv:get_stack(from_list, from_index):get_count() else return 0 end end minetest.register_node("biofuel:refinery", { description = S("Biofuel Refinery"), drawtype = "nodebox", tiles = { "biofuel_tb.png" .. tube_entry, -- top "biofuel_tb.png" .. tube_entry, -- bottom "biofuel_fr.png", -- right "biofuel_bl.png", -- left "biofuel_bl.png", -- back "biofuel_fr.png" -- front }, node_box = { type = "fixed", fixed = { {-0.4375, 0.4375, 0.4375, 0.4375, 0.5, 0.5}, -- NodeBox1 {0.4375, 0.4375, -0.4375, 0.5, 0.5, 0.4375}, -- NodeBox2 {-0.4375, 0.4375, -0.5, 0.4375, 0.5, -0.4375}, -- NodeBox3 {-0.5, 0.4375, -0.4375, -0.4375, 0.5, 0.4375}, -- NodeBox4 {0.4375, -0.375, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox5 {0.4375, -0.375, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox6 {-0.5, -0.375, -0.5, -0.4375, 0.5, -0.4375}, -- NodeBox7 {-0.5, -0.375, 0.4375, -0.4375, 0.5, 0.5}, -- NodeBox8 {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, -- NodeBox9 {-0.4375, -0.375, -0.4375, 0, 0.3125, 0}, -- NodeBox10 {0, -0.375, 0.1875, 0.375, 0.3125, 0.1875}, -- NodeBox11 {0.1875, -0.375, 0, 0.1875, 0.3125, 0.375}, -- NodeBox12 {-0.25, 0.3125, -0.25, 0.25, 0.4375, 0.25}, -- NodeBox13 } }, selection_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, }, collision_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, }, paramtype = "light", paramtype2 = "facedir", is_ground_content = false, groups = {cracky = 3, oddly_breakable_by_hand=1, tubedevice=1, tubedevice_receiver=1}, sounds = default.node_sound_metal_defaults(), on_timer = on_timer, on_construct = on_construct, on_rightclick = on_rightclick, can_dig = can_dig, tube = tube, allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_take = allow_metadata_inventory_take, on_metadata_inventory_put = on_metadata_inventory_put, on_metadata_inventory_take = on_metadata_inventory_take, }) minetest.register_node("biofuel:refinery_active", { description = S("Biofuel Refinery Active"), drawtype = "nodebox", tiles = { "biofuel_tb.png" .. tube_entry, -- top "biofuel_tb.png" .. tube_entry, -- bottom "biofuel_fr_active.png", -- right "biofuel_bl_active.png", -- left "biofuel_bl_active.png", -- back "biofuel_fr_active.png" -- front }, node_box = { type = "fixed", fixed = { {-0.4375, 0.4375, 0.4375, 0.4375, 0.5, 0.5}, -- NodeBox1 {0.4375, 0.4375, -0.4375, 0.5, 0.5, 0.4375}, -- NodeBox2 {-0.4375, 0.4375, -0.5, 0.4375, 0.5, -0.4375}, -- NodeBox3 {-0.5, 0.4375, -0.4375, -0.4375, 0.5, 0.4375}, -- NodeBox4 {0.4375, -0.375, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox5 {0.4375, -0.375, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox6 {-0.5, -0.375, -0.5, -0.4375, 0.5, -0.4375}, -- NodeBox7 {-0.5, -0.375, 0.4375, -0.4375, 0.5, 0.5}, -- NodeBox8 {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, -- NodeBox9 {-0.4375, -0.375, -0.4375, 0, 0.3125, 0}, -- NodeBox10 {0, -0.375, 0.1875, 0.375, 0.3125, 0.1875}, -- NodeBox11 {0.1875, -0.375, 0, 0.1875, 0.3125, 0.375}, -- NodeBox12 {-0.25, 0.3125, -0.25, 0.25, 0.4375, 0.25}, -- NodeBox13 } }, selection_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, }, collision_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, }, paramtype = "light", paramtype2 = "facedir", is_ground_content = false, groups = {cracky = 3, oddly_breakable_by_hand=1, not_in_creative_inventory = 1, tubedevice=1, tubedevice_receiver=1}, sounds = default.node_sound_metal_defaults(), on_timer = on_timer, on_construct = on_construct, on_rightclick = on_rightclick, can_dig = can_dig, tube = tube, allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_take = allow_metadata_inventory_take, on_metadata_inventory_put = on_metadata_inventory_put, on_metadata_inventory_take = on_metadata_inventory_take, }) minetest.register_craft({ output = "biofuel:refinery", recipe = { {"default:tin_ingot", "default:tin_ingot", "default:tin_ingot"}, {"default:glass", "default:glass", "default:glass"}, {"default:tin_ingot", "default:tin_ingot", "default:tin_ingot"} } }) minetest.log('action', "MOD: Biofuel version " .. biofuel_version .. S(" loaded."))