From 222a865e17a109980296ac075aeffcfcd976f79f Mon Sep 17 00:00:00 2001 From: 1F616EMO~nya Date: Mon, 21 Oct 2024 00:13:20 +0800 Subject: [PATCH 1/4] Allow digging injectors without clearing the filter (#141) Thie PR allows diging injectors without clearing their filter inventory. I can't see a reason why this was nessessary. --- filter-injector.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/filter-injector.lua b/filter-injector.lua index 293a066..cac4858 100644 --- a/filter-injector.lua +++ b/filter-injector.lua @@ -451,11 +451,6 @@ for _, data in ipairs({ if not pipeworks.may_configure(pos, player) then return 0 end return count end, - can_dig = function(pos, player) - local meta = minetest.get_meta(pos) - local inv = meta:get_inventory() - return inv:is_empty("main") - end, tube = {connect_sides = {right = 1}}, } From dcc62eb23143ea60411a0d0ea5ee8fb68e997696 Mon Sep 17 00:00:00 2001 From: Deathwing777 <160651137+Deathwing777@users.noreply.github.com> Date: Sun, 3 Nov 2024 16:00:04 -0800 Subject: [PATCH 2/4] Fixes Issue #64 (#142) * Fixes Issue #64 Uses a simple boolean setting in default_settings.lua to decide which digiline rules to use in common.lua * Reviewer Suggestion Co-authored-by: SX <50966843+S-S-X@users.noreply.github.com> * Changed Code Comment per Reviewer Suggestion * Removed trailing whitespace from 2 comment lines. * Modified settings comment per reviewer suggestion * Changed variable name per reviewer suggestion. Variable changed from use_default_digilines_rules to enable_vertical_digilines_connectivity. --------- Co-authored-by: SX <50966843+S-S-X@users.noreply.github.com> --- common.lua | 12 +++++++++++- default_settings.lua | 1 + settingtypes.txt | 9 +++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/common.lua b/common.lua index dcf2c7f..f12e530 100644 --- a/common.lua +++ b/common.lua @@ -15,7 +15,17 @@ pipeworks.rules_all = {{x=0, y=0, z=1},{x=0, y=0, z=-1},{x=1, y=0, z=0},{x=-1, y {x=0, y=1, z=0}, {x=0, y=-1, z=0}} pipeworks.mesecons_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}} -pipeworks.digilines_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}} + +local digilines_enabled = minetest.get_modpath("digilines") ~= nil +if digilines_enabled and pipeworks.enable_vertical_digilines_connectivity then + pipeworks.digilines_rules=digiline.rules.default +else + -- These rules break vertical connectivity to deployers, node breakers, dispensers, and digiline filter injectors + -- via digiline conducting tubes. Changing them may break some builds on some servers, so the setting was added + -- for server admins to be able to revert to the old "broken" behavior as some builds may use it as a "feature". + -- See https://github.com/mt-mods/pipeworks/issues/64 + pipeworks.digilines_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}} +end pipeworks.liquid_texture = minetest.registered_nodes[pipeworks.liquids.water.flowing].tiles[1] if type(pipeworks.liquid_texture) == "table" then pipeworks.liquid_texture = pipeworks.liquid_texture.name end diff --git a/default_settings.lua b/default_settings.lua index c48d852..ccc091e 100644 --- a/default_settings.lua +++ b/default_settings.lua @@ -31,6 +31,7 @@ local settings = { delete_item_on_clearobject = true, use_real_entities = true, entity_update_interval = 0, + enable_vertical_digilines_connectivity = true, } pipeworks.toggles = {} diff --git a/settingtypes.txt b/settingtypes.txt index 8508892..88a6cfe 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -85,6 +85,15 @@ pipeworks_use_real_entities (Use Real Entities) bool true #A value 0.2 or above may cause issues with accelerator tubes. pipeworks_entity_update_interval (Entity Update Interval) float 0 0 0.8 +# Use the default rules from the digilines mod. +# If enabled the following devices will connect to digiline networks in the vertical direction: +# digiline filter injector, deployer, dispenser, node breaker, autocrafter +# If disabled, the devices will not be able to send or recieve digiline signals from the top +# or bottom faces, regardless of the node rotation. This breaks expected behavior with digiline +# conducting tubes, so it is recommended to enable this option unless you have specific builds +# that make use of the lack of vertical digiline connectivity and those are more important to you. +enable_vertical_digilines_connectivity (Use the default rules from the digilines mod) bool true + # if set to true, items passing through teleport tubes will log log where they came from and where they went. pipeworks_log_teleport_tubes (Log Teleport Tubes) bool false From dd660c3c1cb62a9f808140b547c7fdb4d3141998 Mon Sep 17 00:00:00 2001 From: tour <129965577+a-tour-ist@users.noreply.github.com> Date: Mon, 2 Dec 2024 02:00:02 +0100 Subject: [PATCH 3/4] fix crash from bad digiline msg (#144) --- autocrafter.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/autocrafter.lua b/autocrafter.lua index 014c4a5..b4954b6 100644 --- a/autocrafter.lua +++ b/autocrafter.lua @@ -598,11 +598,12 @@ minetest.register_node("pipeworks:autocrafter", { if #msg < 3 then return end local inv = meta:get_inventory() for y = 0, 2, 1 do + local row = msg[y + 1] for x = 1, 3, 1 do local slot = y * 3 + x - if minetest.registered_items[msg[y + 1][x]] then + if type(row) == "table" and minetest.registered_items[row[x]] then inv:set_stack("recipe", slot, ItemStack( - msg[y + 1][x])) + row[x])) else inv:set_stack("recipe", slot, ItemStack("")) end From 858154cb78ae773768956cf132886bc6a3e89027 Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS <161979+SwissalpS@users.noreply.github.com> Date: Tue, 17 Dec 2024 20:43:19 +0100 Subject: [PATCH 4/4] Fix #145 caused by #142 Make new feature opt-in (#146) * Update default_settings.lua and settingtypes.txt - Make new vertical behaviour opt-in - crop comment --- default_settings.lua | 2 +- settingtypes.txt | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/default_settings.lua b/default_settings.lua index ccc091e..3ea9685 100644 --- a/default_settings.lua +++ b/default_settings.lua @@ -31,7 +31,7 @@ local settings = { delete_item_on_clearobject = true, use_real_entities = true, entity_update_interval = 0, - enable_vertical_digilines_connectivity = true, + enable_vertical_digilines_connectivity = false, } pipeworks.toggles = {} diff --git a/settingtypes.txt b/settingtypes.txt index 88a6cfe..13b918b 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -88,11 +88,10 @@ pipeworks_entity_update_interval (Entity Update Interval) float 0 0 0.8 # Use the default rules from the digilines mod. # If enabled the following devices will connect to digiline networks in the vertical direction: # digiline filter injector, deployer, dispenser, node breaker, autocrafter +# This breaks expected behavior with digiline conducting tubes. # If disabled, the devices will not be able to send or recieve digiline signals from the top -# or bottom faces, regardless of the node rotation. This breaks expected behavior with digiline -# conducting tubes, so it is recommended to enable this option unless you have specific builds -# that make use of the lack of vertical digiline connectivity and those are more important to you. -enable_vertical_digilines_connectivity (Use the default rules from the digilines mod) bool true +# or bottom faces, regardless of the node rotation. +enable_vertical_digilines_connectivity (Use the default rules from the digilines mod) bool false # if set to true, items passing through teleport tubes will log log where they came from and where they went. pipeworks_log_teleport_tubes (Log Teleport Tubes) bool false