Cristiano Magro
2024-08-27 535e04d542520f58a2db8d4d7a222b73e5c96ef1
technic_cnc/cnc.lua
@@ -13,7 +13,7 @@
local allow_metadata_inventory_take
local allow_metadata_inventory_move
local can_dig
local voltage = ""
local desc_tr = S("CNC Machine")
if technic_cnc.use_technic then
   minetest.register_craft({
@@ -29,8 +29,7 @@
   allow_metadata_inventory_take = technic.machine_inventory_take
   allow_metadata_inventory_move = technic.machine_inventory_move
   can_dig = technic.machine_can_dig
   voltage = "LV "
   desc_tr = S("@1 CNC Machine", S("LV"))
else
   minetest.register_craft({
      output = 'technic:cnc',
@@ -60,7 +59,7 @@
      if minetest.is_protected(pos, player:get_player_name()) then
         return 0
      end
      return stack:get_count()
      return count
   end
   can_dig = function(pos, player)
@@ -73,75 +72,68 @@
   end
end
local shape = {}
local onesize_products = {
   slope                    = 2,
   slope_edge               = 1,
   slope_inner_edge         = 1,
   pyramid                  = 2,
   spike                    = 1,
   cylinder                 = 2,
   oblate_spheroid          = 1,
   sphere                   = 1,
   stick                    = 8,
   slope_upsdown            = 2,
   slope_edge_upsdown       = 1,
   slope_inner_edge_upsdown = 1,
   cylinder_horizontal      = 2,
   slope_lying              = 2,
   onecurvededge            = 1,
   twocurvededge            = 1,
}
local twosize_products = {
   element_straight         = 2,
   element_end              = 2,
   element_cross            = 1,
   element_t                = 1,
   element_edge             = 2,
}
local function add_buttons(do_variants, t, x, y)
   local X_OFFSET = 1
   local BUTTONS_PER_ROW = 7
local cnc_formspec =
   "size[9,11;]"..
   "label[1,0;"..S("Choose Milling Program:").."]"..
   "image_button[1,0.5;1,1;technic_cnc_slope.png;slope; ]"..
   "image_button[2,0.5;1,1;technic_cnc_slope_edge.png;slope_edge; ]"..
   "image_button[3,0.5;1,1;technic_cnc_slope_inner_edge.png;slope_inner_edge; ]"..
   "image_button[4,0.5;1,1;technic_cnc_pyramid.png;pyramid; ]"..
   "image_button[5,0.5;1,1;technic_cnc_spike.png;spike; ]"..
   "image_button[6,0.5;1,1;technic_cnc_cylinder.png;cylinder; ]"..
   "image_button[7,0.5;1,1;technic_cnc_oblate_spheroid.png;oblate_spheroid; ]"..
   "image_button[8,0.5;1,1;technic_cnc_stick.png;stick; ]"..
   -- ipairs: only iterate over continuous integers
   for _, data in ipairs(technic_cnc.programs) do
      -- Never add full variants. Only add half variants when asked
      if not data.half_counterpart and (do_variants == (data.full_counterpart ~= nil)) then
         --print("add", data.suffix)
         t[#t + 1] = ("image_button[%g,%g;1,1;%s.png;%s; ]"):format(
            x + X_OFFSET, y, data.suffix, data.short_name
         )
         t[#t + 1] = ("tooltip[%s;%s]"):format(
            data.short_name, minetest.formspec_escape(data.desc .. " (* " .. data.output .. ")")
         )
   "image_button[1,1.5;1,1;technic_cnc_slope_upsdwn.png;slope_upsdown; ]"..
   "image_button[2,1.5;1,1;technic_cnc_slope_edge_upsdwn.png;slope_edge_upsdown; ]"..
   "image_button[3,1.5;1,1;technic_cnc_slope_inner_edge_upsdwn.png;slope_inner_edge_upsdown; ]"..
   "image_button[4,1.5;1,1;technic_cnc_cylinder_horizontal.png;cylinder_horizontal; ]"..
   "image_button[5,1.5;1,1;technic_cnc_sphere.png;sphere; ]"..
         x = x + 1
         if x == BUTTONS_PER_ROW then
            x = 0
            y = y + 1
         end
      end
   end
end
   "image_button[1,2.5;1,1;technic_cnc_slope_lying.png;slope_lying; ]"..
   "image_button[2,2.5;1,1;technic_cnc_onecurvededge.png;onecurvededge; ]"..
   "image_button[3,2.5;1,1;technic_cnc_twocurvededge.png;twocurvededge; ]"..
local function make_formspec()
   local t = {
      "size[9,11;]",
      "label[1,0;"..S("Choose Milling Program:").."]",
   }
   add_buttons(false, t, 0, 0.5)
   "label[1,3.5;"..S("Slim Elements half / normal height:").."]"..
   t[#t + 1] = (
      "label[1,3.5;"..S("Slim Elements half / normal height:").."]"..
      "image_button[1,4;1,0.5;technic_cnc_full.png;full; ]"..
      "image_button[1,4.5;1,0.5;technic_cnc_half.png;half; ]"
   )
   add_buttons(true, t, 1, 4)
   "image_button[1,4;1,0.5;technic_cnc_full.png;full; ]"..
   "image_button[1,4.5;1,0.5;technic_cnc_half.png;half; ]"..
   "image_button[2,4;1,1;technic_cnc_element_straight.png;element_straight; ]"..
   "image_button[3,4;1,1;technic_cnc_element_end.png;element_end; ]"..
   "image_button[4,4;1,1;technic_cnc_element_cross.png;element_cross; ]"..
   "image_button[5,4;1,1;technic_cnc_element_t.png;element_t; ]"..
   "image_button[6,4;1,1;technic_cnc_element_edge.png;element_edge; ]"..
   t[#t + 1] = (
      "label[0, 5;"..S("In:").."]"..
      "list[current_name;src;0.5,5.5;1,1;]"..
      "label[4, 5;"..S("Out:").."]"..
      "list[current_name;dst;5,5.5;4,1;]"..
   "label[0, 5.5;"..S("In:").."]"..
   "list[current_name;src;0.5,5.5;1,1;]"..
   "label[4, 5.5;"..S("Out:").."]"..
   "list[current_name;dst;5,5.5;4,1;]"..
      "list[current_player;main;0,7;8,4;]"..
      "listring[current_name;dst]"..
      "listring[current_player;main]"..
      "listring[current_name;src]"..
      "listring[current_player;main]"
   )
   "list[current_player;main;0,7;8,4;]"..
   "listring[current_name;dst]"..
   "listring[current_player;main]"..
   "listring[current_name;src]"..
   "listring[current_player;main]"
   return table.concat(t)
end
local cnc_formspec = nil
minetest.register_on_mods_loaded(function()
   technic_cnc._populate_shortcuts()
   cnc_formspec = make_formspec()
end)
-- The form handler is declared here because we need it in both the inactive and active modes
-- in order to be able to change programs wile it is running.
@@ -165,32 +157,33 @@
   local inv        = meta:get_inventory()
   local inputstack = inv:get_stack("src", 1)
   local inputname  = inputstack:get_name()
   local multiplier = 0
   local size       = meta:get_int("size")
   if size < 1 then size = 1 end
   for k, _ in pairs(fields) do
      -- Set a multipier for the half/full size capable blocks
      if twosize_products[k] ~= nil then
         multiplier = size * twosize_products[k]
      else
         multiplier = onesize_products[k]
      local program = technic_cnc.programs["technic_cnc_" .. k]
      if size == 1 and program and program.full_counterpart then
         program = technic_cnc.programs["technic_cnc_" .. k .. "_double"]
      end
      if program then
         local multiplier = program.output
         local product = inputname .. "_" .. program.suffix
      if onesize_products[k] ~= nil or twosize_products[k] ~= nil then
         meta:set_float( "cnc_multiplier", multiplier)
         meta:set_string("cnc_user", sender:get_player_name())
      end
      if onesize_products[k] ~= nil or (twosize_products[k] ~= nil and size==2) then
         meta:set_string("cnc_product",  inputname .. "_technic_cnc_" .. k)
         --print(inputname .. "_technic_cnc_" .. k)
         break
      end
         if program.half_counterpart then -- is full
            if size == 1 then
               meta:set_string("cnc_product", product)
               --print(product, multiplier)
            end
            break -- no larger sizes allowed
         end
      if twosize_products[k] ~= nil and size==1 then
         meta:set_string("cnc_product",  inputname .. "_technic_cnc_" .. k .. "_double")
         --print(inputname .. "_technic_cnc_" .. k .. "_double")
         -- half for normal
         meta:set_string("cnc_product", product)
         --print(product, multiplier)
         break
      end
   end
@@ -214,7 +207,7 @@
   local meta         = minetest.get_meta(pos)
   local inv          = meta:get_inventory()
   local eu_input     = meta:get_int("LV_EU_input")
   local machine_name = S("%sCNC Machine"):format(voltage)
   local machine_name = desc_tr
   local machine_node = "technic:cnc"
   local demand       = 450
@@ -223,7 +216,7 @@
      (not minetest.registered_nodes[result]) or
      (not inv:room_for_item("dst", result)) then
      technic.swap_node(pos, machine_node)
      meta:set_string("infotext", S("%s Idle"):format(machine_name))
      meta:set_string("infotext", S("@1 Idle", machine_name))
      meta:set_string("cnc_product", "")
      meta:set_int("LV_EU_demand", 0)
      return
@@ -231,14 +224,14 @@
   if eu_input < demand then
      technic.swap_node(pos, machine_node)
      meta:set_string("infotext", S("%s Unpowered"):format(machine_name))
      meta:set_string("infotext", S("@1 Unpowered", machine_name))
   elseif eu_input >= demand then
      technic.swap_node(pos, machine_node.."_active")
      meta:set_string("infotext", S("%s Active"):format(machine_name))
      meta:set_string("infotext", S("@1 Active", machine_name))
      meta:set_int("src_time", meta:get_int("src_time") + 1)
      if meta:get_int("src_time") >= 3 then -- 3 ticks per output
         meta:set_int("src_time", 0)
         srcstack = inv:get_stack("src", 1)
         local srcstack = inv:get_stack("src", 1)
         srcstack:take_item()
         inv:set_stack("src", 1, srcstack)
         inv:add_item("dst", result.." "..meta:get_int("cnc_multiplier"))
@@ -249,7 +242,7 @@
-- The actual block inactive state
minetest.register_node(":technic:cnc", {
   description = S("%sCNC Machine"):format(voltage),
   description = desc_tr,
   tiles       = {"technic_cnc_top.png", "technic_cnc_bottom.png", "technic_cnc_side.png",
                  "technic_cnc_side.png", "technic_cnc_side.png", "technic_cnc_front.png"},
   groups = {cracky=2, technic_machine=1, technic_lv=1},
@@ -258,7 +251,7 @@
   legacy_facedir_simple = true,
   on_construct = function(pos)
      local meta = minetest.get_meta(pos)
      meta:set_string("infotext", S("%sCNC Machine"):format(voltage))
      meta:set_string("infotext", desc_tr)
      meta:set_float("technic_power_machine", 1)
      meta:set_string("formspec", cnc_formspec)
      local inv = meta:get_inventory()
@@ -277,7 +270,7 @@
if technic_cnc.use_technic then
   minetest.register_node(":technic:cnc_active", {
      description = S("%sCNC Machine"):format(voltage),
      description = desc_tr,
      tiles       = {"technic_cnc_top_active.png", "technic_cnc_bottom.png", "technic_cnc_side.png",
                  "technic_cnc_side.png",       "technic_cnc_side.png",   "technic_cnc_front_active.png"},
      groups = {cracky=2, technic_machine=1, technic_lv=1, not_in_creative_inventory=1},