ShadowNinja
2013-12-17 5cf765b2f19ef9bf443178e26787fe16233b3f4c
technic/machines/register/alloy_furnace.lua
@@ -1,13 +1,16 @@
local S = technic.getter
-- Register alloy recipes
technic.alloy_recipes = {}
-- Register recipe in a table
technic.register_alloy_recipe = function(metal1, count1, metal2, count2, result, count3)
   in1 = {
   local in1 = {
      name  = metal1,
      count = count1,
   }
   in2 = {
   local in2 = {
      name  = metal2,
      count = count2,
   }
@@ -61,6 +64,20 @@
technic.register_alloy_recipe("default:sand",          2, "technic:coal_dust",      2, "technic:silicon_wafer",         1)
technic.register_alloy_recipe("technic:silicon_wafer", 1, "technic:gold_dust",      1, "technic:doped_silicon_wafer",   1)
local tube = {
   insert_object = function(pos, node, stack, direction)
      local meta = minetest.get_meta(pos)
      local inv = meta:get_inventory()
      return inv:add_item("src", stack)
   end,
   can_insert = function(pos, node, stack, direction)
      local meta = minetest.get_meta(pos)
      local inv = meta:get_inventory()
      return inv:room_for_item("src", stack)
   end,
   connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
}
function technic.register_alloy_furnace(data)
   local tier = data.tier
@@ -68,6 +85,7 @@
   local tube_side_texture = data.tube and "technic_"..ltier.."_alloy_furnace_side_tube.png"
         or "technic_"..ltier.."_alloy_furnace_side.png"
   local groups = {cracky=2}
   local active_groups = {cracky=2, not_in_creative_inventory=1}
   if data.tube then
@@ -79,7 +97,7 @@
   local formspec =
      "invsize[8,10;]"..
      "label[0,0;"..tier.." Alloy Furnace]"..
      "label[0,0;"..S("%s Alloy Furnace"):format(tier).."]"..
      "list[current_name;src;3,1;1,2;]"..
      "list[current_name;dst;5,1;2,2;]"..
      "list[current_player;main;0,6;8,4;]"
@@ -90,24 +108,8 @@
         "label[1,5;Upgrade Slots]"
   end
   data.formspec = formspec
   local tube = {
      insert_object = function(pos, node, stack, direction)
         local meta = minetest.get_meta(pos)
         local inv = meta:get_inventory()
         return inv:add_item("src", stack)
      end,
      can_insert = function(pos, node, stack, direction)
         local meta = minetest.get_meta(pos)
         local inv = meta:get_inventory()
         return inv:room_for_item("src", stack)
      end,
      connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
   }
   minetest.register_node("technic:"..ltier.."_alloy_furnace", {
      description = tier.." Alloy Furnace",
      description = S("%s Alloy Furnace"):format(tier),
      tiles = {"technic_"..ltier.."_alloy_furnace_top.png",
               "technic_"..ltier.."_alloy_furnace_bottom.png",
          tube_side_texture,
@@ -116,18 +118,15 @@
               "technic_"..ltier.."_alloy_furnace_front.png"},
      paramtype2 = "facedir",
      groups = groups,
      tube = tube,
      technic = data,
      tube = data.tube and tube or nil,
      legacy_facedir_simple = true,
      sounds = default.node_sound_stone_defaults(),
      on_construct = function(pos)
         local meta = minetest.get_meta(pos)
         local name = minetest.get_node(pos).name
         local data = minetest.registered_nodes[name].technic
         meta:set_string("infotext", data.tier.." Alloy furnace")
         meta:set_string("formspec", data.formspec)
         meta:set_string("infotext", S("%s Alloy Furnace"):format(tier))
         meta:set_string("formspec", formspec)
         meta:set_int("tube_time",  0)
         local inv = meta:get_inventory()
         inv:set_size("src", 2)
@@ -135,22 +134,14 @@
         inv:set_size("upgrade1", 1)
         inv:set_size("upgrade2", 1)
      end,
      can_dig = function(pos, player)
         local meta = minetest.get_meta(pos);
         local inv = meta:get_inventory()
         if not inv:is_empty("src") or not inv:is_empty("dst") or
            not inv:is_empty("upgrade1") or not inv:is_empty("upgrade2") then
            minetest.chat_send_player(player:get_player_name(),
               "Machine cannot be removed because it is not empty");
            return false
         else
            return true
         end
      end,
      can_dig = technic.machine_can_dig,
      allow_metadata_inventory_put = technic.machine_inventory_put,
      allow_metadata_inventory_take = technic.machine_inventory_take,
      allow_metadata_inventory_move = technic.machine_inventory_move,
   })
   minetest.register_node("technic:"..ltier.."_alloy_furnace_active",{
      description = tier.." Alloy Furnace",
      description = S(tier.." Alloy Furnace"),
      tiles = {"technic_"..ltier.."_alloy_furnace_top.png",
               "technic_"..ltier.."_alloy_furnace_bottom.png",
          tube_side_texture,
@@ -161,40 +152,13 @@
      light_source = 8,
      drop = "technic:"..ltier.."_alloy_furnace",
      groups = active_groups,
      tube = tube,
      technic = data,
      tube = data.tube and tube or nil,
      legacy_facedir_simple = true,
      sounds = default.node_sound_stone_defaults(),
      can_dig = function(pos, player)
         local meta = minetest.get_meta(pos);
         local inv = meta:get_inventory()
         if not inv:is_empty("src") or not inv:is_empty("dst") or
            not inv:is_empty("upgrade1") or not inv:is_empty("upgrade2") then
            minetest.chat_send_player(player:get_player_name(),
               "Machine cannot be removed because it is not empty");
            return false
         else
            return true
         end
      end,
      -- These three makes sure upgrades are not moved in or out while the furnace is active.
      allow_metadata_inventory_put = function(pos, listname, index, stack, player)
         if listname == "src" or listname == "dst" then
            return stack:get_count()
         else
            return 0 -- Disallow the move
         end
      end,
      allow_metadata_inventory_take = function(pos, listname, index, stack, player)
         if listname == "src" or listname == "dst" then
            return stack:get_count()
         else
            return 0 -- Disallow the move
         end
      end,
      allow_metadata_inventory_move = function(pos, from_list, to_list, to_list, to_index, count, player)
         return 0
      end,
      can_dig = technic.machine_can_dig,
      allow_metadata_inventory_put = technic.machine_inventory_put,
      allow_metadata_inventory_take = technic.machine_inventory_take,
      allow_metadata_inventory_move = technic.machine_inventory_move,
   })
   minetest.register_abm({
@@ -202,24 +166,23 @@
      interval = 1,
      chance = 1,
      action = function(pos, node, active_object_count, active_object_count_wider)
         local data         = minetest.registered_nodes[node.name].technic
         local meta         = minetest.get_meta(pos)
         local inv          = meta:get_inventory()
         local eu_input     = meta:get_int(data.tier.."_EU_input")
         local eu_input     = meta:get_int(tier.."_EU_input")
         -- Machine information
         local machine_name   = data.tier.." Alloy Furnace"
         local machine_node   = "technic:"..string.lower(data.tier).."_alloy_furnace"
         local machine_name   = S("%s Alloy Furnace"):format(tier)
         local machine_node   = "technic:"..ltier.."_alloy_furnace"
         local machine_demand = data.demand
         -- Setup meta data if it does not exist.
         if not eu_input then
            meta:set_int(data.tier.."_EU_demand", machine_demand[1])
            meta:set_int(data.tier.."_EU_input", 0)
            meta:set_int(tier.."_EU_demand", machine_demand[1])
            meta:set_int(tier.."_EU_input", 0)
         end
         -- Power off automatically if no longer connected to a switching station
         technic.switching_station_timeout_count(pos, data.tier)
         technic.switching_station_timeout_count(pos, tier)
         local EU_upgrade, tube_upgrade = 0, 0
         if data.upgrade then
@@ -242,20 +205,20 @@
         end
         if not result or
            not inv:room_for_item("dst", result) then
            hacky_swap_node(pos, machine_node)
            meta:set_string("infotext", machine_name.." Idle")
            meta:set_int(data.tier.."_EU_demand", 0)
            technic.swap_node(pos, machine_node)
            meta:set_string("infotext", S("%s Idle"):format(machine_name))
            meta:set_int(tier.."_EU_demand", 0)
            return
         end
         if eu_input < machine_demand[EU_upgrade+1] then
            -- Unpowered - go idle
            hacky_swap_node(pos, machine_node)
            meta:set_string("infotext", machine_name.." Unpowered")
            technic.swap_node(pos, machine_node)
            meta:set_string("infotext", S("%s Unpowered"):format(machine_name))
         elseif eu_input >= machine_demand[EU_upgrade+1] then
            -- Powered
            hacky_swap_node(pos, machine_node.."_active")
            meta:set_string("infotext", machine_name.." Active")
            technic.swap_node(pos, machine_node.."_active")
            meta:set_string("infotext", S("%s Active"):format(machine_name))
            meta:set_int("src_time", meta:get_int("src_time") + 1)
            if meta:get_int("src_time") == data.cook_time then
               meta:set_int("src_time", 0)
@@ -273,7 +236,7 @@
            end
         
         end
         meta:set_int(data.tier.."_EU_demand", machine_demand[EU_upgrade+1])
         meta:set_int(tier.."_EU_demand", machine_demand[EU_upgrade+1])
      end,
   })