]> git.lizzy.rs Git - minetest.git/commitdiff
DevTest: /test_place_node skips dummy/cb nodes
authorWuzzy <Wuzzy@disroot.org>
Sat, 8 Oct 2022 16:58:02 +0000 (18:58 +0200)
committersfan5 <sfan5@live.de>
Sun, 23 Oct 2022 19:58:56 +0000 (21:58 +0200)
games/devtest/mods/callbacks/items.lua
games/devtest/mods/callbacks/nodes.lua
games/devtest/mods/testnodes/commands.lua

index acb05d505618f267581c3f624e997b85e35e4c5e..83c52f2ac5bf040515bc8eec68d7d217f1052d50 100644 (file)
@@ -6,6 +6,7 @@ minetest.register_craftitem("callbacks:callback_item_1", {
        description = "Callback test item 1\n(Use/Drop + Sneak to switch to item 2)",
        inventory_image = "callbacks_callback_item_1.png",
        wield_image = "callbacks_callback_item_1.png",
+       groups = { callback_test = 1 },
 
        on_secondary_use = function(itemstack, user, pointed_thing)
                minetest.log("[callbacks:callback_item_1 on_secondary_use] " .. itemstack:get_name())
@@ -81,6 +82,7 @@ minetest.register_craftitem("callbacks:callback_item_2", {
        description = "Callback test item 2\n(Use to switch to item 1)",
        inventory_image = "callbacks_callback_item_2.png",
        wield_image = "callbacks_callback_item_2.png",
+       groups = { callback_test = 1 },
 
        on_use = function(itemstack, user, pointed_thing)
                minetest.log("[callbacks:callback_item_2 on_use]")
index baaf9fbc751da090b4eeef9528758253e86d2d86..5cc9c8b70e147f952c4ccf88501b57653c19c10b 100644 (file)
@@ -7,7 +7,7 @@ minetest.register_node("callbacks:callback_node", {
        description = "Callback Test Node (construct/destruct/timer)".."\n"..
                "Tests callbacks: on_construct, after_place_node, on_destruct, after_destruct, after_dig_node, on_timer",
        tiles = {"callbacks_callback_node.png"},
-       groups = {dig_immediate=3},
+       groups = {callback_test=1, dig_immediate=3},
        -- This was known to cause a bug in minetest.item_place_node() when used
        -- via minetest.place_node(), causing a placer with no position
        paramtype2 = "facedir",
index 9de506ae580d382693528b31e27a45ac4e309751..b04a2c16d56efb6421b160bc966093043fdbca79 100644 (file)
@@ -91,7 +91,7 @@ end
 
 minetest.register_chatcommand("test_place_nodes", {
        params = "[ no_param2 ]",
-       description = "Test: Place all nodes and optionally their permissible param2 variants",
+       description = "Test: Place all nodes (except dummy and callback nodes) and optionally their permissible param2 variants",
        func = function(name, param)
                local player = minetest.get_player_by_name(name)
                if not player then
@@ -113,7 +113,11 @@ minetest.register_chatcommand("test_place_nodes", {
                local nodes = {}
                local emerge_estimate = 0
                for itemstring, def in pairs(minetest.registered_nodes) do
-                       if itemstring ~= "ignore" then
+                       if itemstring ~= "ignore" and
+                                       -- Skip callback test and dummy nodes
+                                       -- to avoid clutter and chat spam
+                                       minetest.get_item_group(itemstring, "callback_test") == 0 and
+                                       minetest.get_item_group(itemstring, "dummy") == 0 then
                                table.insert(nodes, itemstring)
                                if def.paramtype2 == 0 then
                                        emerge_estimate = emerge_estimate + 1