Merge remote-tracking branch 'upstream/master'

This commit is contained in:
bri cassa 2023-06-07 22:31:17 +02:00
commit e7864a4a86
18 changed files with 186 additions and 72 deletions

View File

@ -1,4 +1,5 @@
unused_args = false
max_line_length = 180
globals = {
"scifi_nodes"
@ -20,6 +21,6 @@ read_globals = {
"screwdriver",
"minetest",
"mesecon",
"unifieddyes"
"unifieddyes",
"letters"
}

View File

@ -38,6 +38,7 @@ CC BY 3.0
* scifi_nodes_palm_scanner.ogg https://freesound.org/people/THE_bizniss/sounds/39313/
* scifi_nodes_access_granted https://freesound.org/people/TheBuilder15/sounds/415762/
* scifi_nodes_access_refused https://freesound.org/people/RICHERlandTV/sounds/216090/
* scifi_nodes_forcefield.png https://github.com/minetest-mods/technic/
CC0
* scifi_nodes_digicode.ogg https://freesound.org/people/benjaminharveydesign/sounds/315921/

View File

@ -105,5 +105,6 @@ minetest.register_node("scifi_nodes:builder", {
end,
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky=1, oddly_breakable_by_hand=1}
groups = {cracky=1, oddly_breakable_by_hand=1},
sounds = scifi_nodes.node_sound_metal_defaults(),
})

View File

@ -129,7 +129,7 @@ minetest.register_node("scifi_nodes:digicode_on", {
}
},
on_timer = toggle_digicode,
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:digicode_off", {
@ -152,7 +152,7 @@ minetest.register_node("scifi_nodes:digicode_off", {
},
after_place_node = set_owner,
on_rightclick = show_digicode_formspec,
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_craft({

View File

@ -257,6 +257,7 @@ for _, current_door in ipairs(doors) do
on_place = onplace,
after_destruct = afterdestruct,
on_rightclick = doors_rightclick,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node(closed_top, {
@ -285,6 +286,7 @@ for _, current_door in ipairs(doors) do
}
},
can_dig = nodig,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node(opened, {
@ -316,6 +318,7 @@ for _, current_door in ipairs(doors) do
after_place_node = afterplace,
after_destruct = afterdestruct,
on_timer = ontimer,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node(opened_top, {
@ -344,5 +347,6 @@ for _, current_door in ipairs(doors) do
}
},
can_dig = nodig,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
end -- end of doors table browsing

20
forcefield.lua Normal file
View File

@ -0,0 +1,20 @@
minetest.register_node("scifi_nodes:forcefield", {
description = "Forcefield",
sunlight_propagates = true,
drawtype = "glasslike",
groups = {},
paramtype = "light",
light_source = minetest.LIGHT_MAX,
diggable = false,
drop = '',
tiles = {{
name = "scifi_nodes_forcefield.png",
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 1.0,
}
}},
on_blast = function() end,
})

View File

@ -30,5 +30,12 @@ dofile(MP.."/palm_scanner.lua")
dofile(MP.."/digicode.lua")
dofile(MP.."/models.lua")
dofile(MP.."/octagon_panes.lua")
dofile(MP.."/forcefield.lua")
dofile(MP.."/crafts.lua")
if minetest.get_modpath("letters") then
-- register letter nodes
dofile(MP.."/letters.lua")
end
minetest.log("action", "[scifi_nodes] loaded.")

11
letters.lua Normal file
View File

@ -0,0 +1,11 @@
letters.register_letters("scifi_nodes", "white2", "scifi_nodes:white2", "Plastic", "scifi_nodes_white2.png", {
paramtype2 = "colorwallmounted",
palette = "unifieddyes_palette_colorwallmounted.png",
groups = {
ud_param2_colorable = 1,
not_in_creative_inventory = 1,
not_in_craft_guide = 1,
oddly_breakable_by_hand = 1,
attached_node = 1
}
})

View File

@ -11,5 +11,6 @@ mesecons_torch,
mesecons_receiver,
basic_materials,
dye,
unifieddyes
unifieddyes,
letters
"""

View File

@ -2,7 +2,13 @@
--Copyright (c) 2011-2015 Calinou and contributors.
--Licensed under the zlib license.
function scifi_nodes.register_slope(name, desc, texture, light)
function scifi_nodes.register_slope(name, desc, texture, light, soundtype)
local sounds
if soundtype == "stone" then
sounds = scifi_nodes.node_sound_stone_defaults()
else
sounds = scifi_nodes.node_sound_metal_defaults()
end
minetest.register_node("scifi_nodes:slope_"..name, {
description = desc.." Slope",
sunlight_propagates = false,
@ -32,14 +38,15 @@ minetest.register_node("scifi_nodes:slope_"..name, {
use_texture_alpha = "clip",
light_source = light,
groups = {cracky=1, dig_generic = 3},
on_place = minetest.rotate_node
on_place = minetest.rotate_node,
sounds = sounds,
})
end
-- register some blocks in stairsplus if available (part of moreblocks)
scifi_nodes.register_slope("white2", "Plastic", {"scifi_nodes_white2.png",}, 0)
scifi_nodes.register_slope("super_white", "Super Plastic", {"scifi_nodes_super_white.png",}, 11)
scifi_nodes.register_slope("ultra_white", "Super Plastic", {"scifi_nodes_ultra_white.png",}, minetest.LIGHT_MAX)
scifi_nodes.register_slope("white2", "Plastic", {"scifi_nodes_white2.png",}, 0, "stone")
scifi_nodes.register_slope("super_white", "Super Plastic", {"scifi_nodes_super_white.png",}, 11, "stone")
scifi_nodes.register_slope("ultra_white", "Super Plastic", {"scifi_nodes_ultra_white.png",}, minetest.LIGHT_MAX, "stone")
scifi_nodes.register_slope("black", "Black", {"scifi_nodes_black.png",}, 0)
scifi_nodes.register_slope("white", "White", {"scifi_nodes_white.png",}, 0)
scifi_nodes.register_slope("grey", "Grey", {"scifi_nodes_grey.png",}, 0)
@ -73,7 +80,7 @@ node.types = {
{"blue", "blue lines"},
{"holes", "metal with holes"},
{"white2", "plastic",},
{"super_white", "Super Plastic", 11},
{"super_white", "Super Plastic", 11, "stone"},
{"ultra_white", "Ultra Plastic", minetest.LIGHT_MAX},
-- {"engine", "engine", "engine"},
{"wall", "metal wall"},
@ -149,8 +156,8 @@ node.types = {
{"pplwll4", "Purple wall4"},
{"pplblk", "Purple tile"},
{"purple", "Purple node"},
{"rock", "Moonstone"},
{"rock2", "Moonstone2"},
{"rock", "Moonstone", nil, "stone"},
{"rock2", "Moonstone2", nil, "stone"},
{"blackvnt", "Black vent"},
{"blackplate", "Black plate"},
}
@ -158,6 +165,13 @@ node.types = {
if minetest.global_exists("stairsplus") then
for _, row in ipairs(node.types) do
local name = row[1]
local soundtype = row[4]
local sounds
if soundtype == "stone" then
sounds = scifi_nodes.node_sound_stone_defaults()
else
sounds = scifi_nodes.node_sound_metal_defaults()
end
-- Node Definition
stairsplus:register_all("scifi_nodes", name, "scifi_nodes:"..name, {
@ -168,6 +182,7 @@ if minetest.global_exists("stairsplus") then
paramtype = "light",
paramtype2 = "facedir",
light_source = row[3],
sounds = sounds,
})
end
end

View File

@ -122,8 +122,8 @@ minetest.register_node("scifi_nodes:egg", {
{-0.125, 0.75, -0.125, 0.125, 0.8125, 0.125}, -- NodeBox8
{-0.375, -0.3125, -0.4375, 0.375, 0.3125, 0.4375}, -- NodeBox9
},
sounds = scifi_nodes.node_sound_wood_defaults()
}
},
sounds = scifi_nodes.node_sound_wood_defaults(),
})
if minetest.get_modpath("scifi_mobs") then
@ -131,8 +131,8 @@ minetest.register_abm({
nodenames = {"scifi_nodes:egg"},
interval = 30, chance = 10,
action = function(pos, node, _, _)
minetest.env:add_entity(pos, "scifi_mobs:xenomorph")
minetest.env:remove_node(pos)
minetest.add_entity(pos, "scifi_mobs:xenomorph")
minetest.remove_node(pos)
end
})
end
@ -189,12 +189,12 @@ minetest.register_node("scifi_nodes:pad", {
if minetest.get_node({x=ppos.x, y=ppos.y, z=ppos.z}).name == "scifi_nodes:pad" then
clicker:setpos(position2)
end
local objs = minetest.env:get_objects_inside_radius(pos, 3)
local objs = minetest.get_objects_inside_radius(pos, 3)
for _, obj in pairs(objs) do
if obj:get_luaentity() and not obj:is_player() then
if obj:get_luaentity().name == "__builtin:item" then
local item1 = obj:get_luaentity().itemstring
local obj2 = minetest.env:add_entity(position2, "__builtin:item")
local obj2 = minetest.add_entity(position2, "__builtin:item")
obj2:get_luaentity():set_item(item1)
obj:remove()
end
@ -223,12 +223,12 @@ minetest.register_node("scifi_nodes:pad", {
if minetest.get_node({x=ppos.x, y=ppos.y, z=ppos.z}).name == "scifi_nodes:pad" then
clicker:setpos(position1)
end
local objs = minetest.env:get_objects_inside_radius(pos, 3)
local objs = minetest.get_objects_inside_radius(pos, 3)
for _, obj in pairs(objs) do
if obj:get_luaentity() and not obj:is_player() then
if obj:get_luaentity().name == "__builtin:item" then
local item1 = obj:get_luaentity().itemstring
local obj2 = minetest.env:add_entity(position1, "__builtin:item")
local obj2 = minetest.add_entity(position1, "__builtin:item")
obj2:get_luaentity():set_item(item1)
obj:remove()
end
@ -264,8 +264,8 @@ minetest.register_node("scifi_nodes:pad", {
{-0.875, -0.5, -0.8125, 0.8125, -0.375, 0.8125}, -- NodeBox3
{-0.8125, -0.5, -0.75, 0.75, -0.3125, 0.75}, -- NodeBox4
},
sounds = scifi_nodes.node_sound_wood_defaults()
}
},
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:pplwndw", {
@ -320,7 +320,8 @@ minetest.register_node("scifi_nodes:gloshroom", {
{-0.1875, 0.125, -0.1875, 0.1875, 0.1875, 0.1875}, -- NodeBox5
{-0.375, -0.0625, -0.4375, 0.375, 0, 0.4375}, -- NodeBox6
}
}
},
sounds = scifi_nodes.node_sound_plant_defaults(),
})
minetest.register_node("scifi_nodes:pot_lid", {
@ -410,7 +411,9 @@ minetest.register_node("scifi_nodes:pot", {
},
on_rightclick = toggle_lid,
on_destruct = remove_lid,
sounds = scifi_nodes.node_sound_metal_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults({
footstep = scifi_nodes.node_sound_dirt_defaults().footstep,
}),
})
minetest.register_node("scifi_nodes:pot2", {
@ -442,7 +445,9 @@ minetest.register_node("scifi_nodes:pot2", {
},
on_rightclick = toggle_lid,
on_destruct = remove_lid,
sounds = scifi_nodes.node_sound_metal_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults({
footstep = scifi_nodes.node_sound_dirt_defaults().footstep,
}),
})
minetest.register_node("scifi_nodes:lightbar", {
@ -523,8 +528,8 @@ minetest.register_node("scifi_nodes:ladder", {
{0.3125, -0.5, 0.0625, 0.4375, -0.375, 0.1875}, -- NodeBox25
{0.3125, -0.5, -0.1875, 0.4375, -0.375, -0.0625}, -- NodeBox26
},
sounds = scifi_nodes.node_sound_metal_defaults()
},
sounds = scifi_nodes.node_sound_metal_defaults(),
paramtype2 = "wallmounted",
walkable = false,
climbable = true,
@ -538,6 +543,7 @@ minetest.register_node("scifi_nodes:lightbars", {
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
use_texture_alpha = "blend",
light_source = minetest.LIGHT_MAX,
node_box = {
@ -564,6 +570,7 @@ tiles = {{
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
@ -584,6 +591,7 @@ tiles = {
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
@ -636,6 +644,7 @@ minetest.register_node("scifi_nodes:powered_stand", {
return item
end
end,
sounds = scifi_nodes.node_sound_wood_defaults()
})
minetest.register_node("scifi_nodes:cover", {
@ -658,7 +667,7 @@ minetest.register_node("scifi_nodes:cover", {
{-0.3125, -0.375, -0.3125, 0.3125, -0.3125, 0.3125}, -- NodeBox6
}
},
sounds = scifi_nodes.node_sound_wood_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
groups = {cracky=1, oddly_breakable_by_hand=1}
})
@ -682,7 +691,8 @@ minetest.register_node("scifi_nodes:computer", {
{-0.4375, -0.5, -0.5, 0.0625, 0.5, 0.5}, -- NodeBox1
}
},
groups = {cracky=1, oddly_breakable_by_hand=1}
groups = {cracky=1, oddly_breakable_by_hand=1},
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:keysmonitor", {
@ -708,7 +718,8 @@ minetest.register_node("scifi_nodes:keysmonitor", {
{-0.5, -0.3125, 0.25, 0.5, 0.5, 0.375}, -- NodeBox4
}
},
groups = {cracky=1, oddly_breakable_by_hand=1}
groups = {cracky=1, oddly_breakable_by_hand=1},
sounds = scifi_nodes.node_sound_defaults(),
})
minetest.register_node("scifi_nodes:microscope", {
@ -735,7 +746,8 @@ minetest.register_node("scifi_nodes:microscope", {
{-0.125, -0.25, -0.125, 0.125, -0.1875, 0.1875}, -- NodeBox5
}
},
groups = {cracky=1, oddly_breakable_by_hand=1}
groups = {cracky=1, oddly_breakable_by_hand=1},
sounds = scifi_nodes.node_sound_defaults(),
})
minetest.register_node("scifi_nodes:table", {
@ -792,6 +804,7 @@ minetest.register_node("scifi_nodes:laptop_open", {
on_rightclick = function(pos, node, clicker, item, _)
minetest.set_node(pos, {name="scifi_nodes:laptop_closed", param2=node.param2})
end,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:laptop_closed", {
@ -818,6 +831,7 @@ minetest.register_node("scifi_nodes:laptop_closed", {
on_rightclick = function(pos, node, clicker, item, _)
minetest.set_node(pos, {name="scifi_nodes:laptop_open", param2=node.param2})
end,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:pipen", {
@ -848,7 +862,8 @@ minetest.register_node("scifi_nodes:pipen", {
}
},
groups = {cracky=1, dig_generic = 3},
on_place = minetest.rotate_node
on_place = minetest.rotate_node,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:windowcorner", {
@ -1115,6 +1130,7 @@ minetest.register_node("scifi_nodes:itemholder", {
minetest.add_item(pos, meta:get_string("item"))
end
end,
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:glassscreen", {
@ -1172,7 +1188,8 @@ minetest.register_node("scifi_nodes:widescreen", {
{-0.5, 0.25, 0.375, 0.5, 0.3125, 0.5}, -- NodeBox7
}
},
groups = {cracky=1, oddly_breakable_by_hand=1}
groups = {cracky=1, oddly_breakable_by_hand=1},
sounds = scifi_nodes.node_sound_defaults(),
})
minetest.register_node("scifi_nodes:tallscreen", {
@ -1202,7 +1219,8 @@ minetest.register_node("scifi_nodes:tallscreen", {
{0.25, -0.5, 0.375, 0.3125, 0.5, 0.5}, -- NodeBox7
}
},
groups = {cracky=1, oddly_breakable_by_hand=1}
groups = {cracky=1, oddly_breakable_by_hand=1},
sounds = scifi_nodes.node_sound_defaults(),
})
-- https://forum.minetest.net/viewtopic.php?f=10&t=13125&p=261481#p261481

View File

@ -8,7 +8,10 @@ if minetest.get_modpath("default") then
{name = "default_dirt.png^(default_grass_side.png^[colorize:cyan:80)",
tileable_vertical = false}},
light_source = 2,
groups = {crumbly=1, oddly_breakable_by_hand=1, soil=1}
groups = {crumbly=1, oddly_breakable_by_hand=1, soil=1},
sounds = scifi_nodes.node_sound_dirt_defaults({
footstep = scifi_nodes.node_sound_plant_defaults().footstep,
}),
})
end
@ -25,7 +28,8 @@ minetest.register_node("scifi_nodes:light", {
},
light_source = 10,
paramtype = "light",
groups = {cracky=1, dig_generic = 3}
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:rfloor", {
@ -168,7 +172,7 @@ minetest.register_node("scifi_nodes:discs", {
},
paramtype = "light",
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:disc", {
@ -181,7 +185,8 @@ minetest.register_node("scifi_nodes:disc", {
inventory_image = "scifi_nodes_disc.png",
wield_image = "scifi_nodes_disc.png",
paramtype = "light",
groups = {cracky=1, dig_generic = 3}
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_defaults(),
})
minetest.register_node("scifi_nodes:greenbar_animated", {
@ -224,7 +229,7 @@ minetest.register_node("scifi_nodes:black_lights", {
}},
paramtype = "light",
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:black_screen", {
@ -237,7 +242,7 @@ minetest.register_node("scifi_nodes:black_screen", {
paramtype = "light",
groups = {cracky=1, dig_generic = 3},
light_source = 1,
sounds = scifi_nodes.node_sound_stone_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:screen", {
@ -282,7 +287,7 @@ minetest.register_node("scifi_nodes:white_pad", {
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:white_base", {
@ -428,7 +433,7 @@ minetest.register_node("scifi_nodes:junk", {
tiles = {
"scifi_nodes_junk.png"
},
groups = {snappy=1, oddly_breakable_by_hand=1, liquid=3, dig_immediate=1}
groups = {snappy=1, oddly_breakable_by_hand=1, liquid=3, dig_immediate=1},
})
@ -471,7 +476,7 @@ minetest.register_node("scifi_nodes:blklt2", {
light_source = 10,
paramtype = "light",
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:blumetstr", {
@ -483,7 +488,7 @@ minetest.register_node("scifi_nodes:blumetstr", {
light_source = 10,
paramtype = "light",
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:glass", {
@ -508,7 +513,7 @@ minetest.register_node("scifi_nodes:whtlightbnd", {
light_source = 10,
paramtype = "light",
groups = {cracky=1, dig_generic = 3},
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
--edited wool code (Copyright (C) 2012 celeron55, Perttu Ahola <celeron55@gmail.com>)
@ -519,15 +524,15 @@ minetest.register_node("scifi_nodes:whtlightbnd", {
-- colors available. When crafting, the last recipes will be checked first.
--add new block using texture name(without "scifi_nodes_" prefix) then the description, and then the name of the block
local nodetypes = {
-- { name, description, shortname?, light, colorable }
-- { name, description, shortname?, light, colorable, sounds }
{"blue", "blue lines", "blue"},
{"holes", "metal with holes","holes"},
{"white2", "plastic", "white2", 0, true},
{"super_white", "Super Plastic", "super_white", 11},
{"ultra_white", "Ultra Plastic", "ultra_white", minetest.LIGHT_MAX},
{"white2", "plastic", "white2", 0, true, "stone"},
{"super_white", "Super Plastic", "super_white", 11, nil, "stone"},
{"ultra_white", "Ultra Plastic", "ultra_white", minetest.LIGHT_MAX, nil, "stone"},
{"engine", "engine", "engine"},
{"wall", "metal wall", "wall"},
{"white", "plastic wall", "white", 0, true},
{"white", "plastic wall", "white", 0, true, "stone"},
{"stripes2top", "dirty metal block","metal2"},
{"rough", "rough metal", "rough"},
{"lighttop", "metal block", "metal"},
@ -572,8 +577,8 @@ local nodetypes = {
{"greybars", "grey bars", "grybrs"},
{"greydots", "grey wall dots", "grydts"},
{"greygreenbar", "gray power pipe", "grygrnbr", 10},
{"octofloor", "Doom floor", "octofloor"},
{"octofloor2", "Brown Doom floor", "octofloor2"},
{"octofloor", "Doom floor", "octofloor", nil, nil, "stone"},
{"octofloor2", "Brown Doom floor", "octofloor2", nil, nil, "stone"},
{"doomwall1", "Doom wall 1", "doomwall1"},
{"doomwall2", "Doom wall 2", "doomwall2"},
{"doomwall3", "Doom wall 3", "doomwall3"},
@ -599,8 +604,8 @@ local nodetypes = {
{"pplwll4", "Purple wall4", "", 0},
{"pplblk", "Purple tile", "", 0},
{"purple", "Purple node", "", 0},
{"rock", "Moonstone", "", 0},
{"rock2", "Moonstone2", "", 0},
{"rock", "Moonstone", "", 0, nil, "stone"},
{"rock2", "Moonstone2", "", 0, nil, "stone"},
{"blackvnt", "Black vent", "", 0},
{"blackplate", "Black plate", "", 0},
}
@ -612,6 +617,14 @@ for _, row in ipairs(nodetypes) do
local desc = row[2]
local light = row[4]
local is_colorable = row[5]
local soundtype = row[6]
local sounds
if soundtype == "stone" then
sounds = scifi_nodes.node_sound_stone_defaults()
else
sounds = scifi_nodes.node_sound_metal_defaults()
end
-- Node Definition
local node_def = {
@ -621,7 +634,7 @@ for _, row in ipairs(nodetypes) do
paramtype = "light",
paramtype2 = "facedir",
light_source = light,
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = sounds,
}
if is_colorable and has_unifieddyes_mod then

View File

@ -65,7 +65,7 @@ minetest.register_node("scifi_nodes:palm_scanner_off", {
}
},
on_rightclick = (has_mesecons and activate_palm_scanner),
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_node("scifi_nodes:palm_scanner_checking", {
@ -83,7 +83,7 @@ minetest.register_node("scifi_nodes:palm_scanner_checking", {
paramtype2 = "wallmounted",
groups = {cracky=1, oddly_breakable_by_hand=1, not_in_creative_inventory=1, mesecon_needs_receiver = 1},
drop = "scifi_nodes:palm_scanner_off",
sounds = scifi_nodes.node_sound_glass_defaults()
sounds = scifi_nodes.node_sound_metal_defaults()
})
minetest.register_node("scifi_nodes:palm_scanner_on", {
@ -106,7 +106,7 @@ minetest.register_node("scifi_nodes:palm_scanner_on", {
state = (has_mesecons and mesecon.state.on)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
})
minetest.register_craft({

View File

@ -43,5 +43,6 @@ for _, row in ipairs(plants) do
},
is_ground_content = false,
light_source = light,
sounds = scifi_nodes.node_sound_plant_defaults(),
})
end

View File

@ -51,7 +51,7 @@ minetest.register_node("scifi_nodes:protected_switch_on", {
state = (has_mesecons and mesecon.state.on)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
on_rightclick = (has_mesecons and toggle_switch),
on_timer = (has_mesecons and toggle_switch)
})
@ -78,7 +78,7 @@ minetest.register_node("scifi_nodes:protected_switch_off", {
state = (has_mesecons and mesecon.state.off)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
on_rightclick = (has_mesecons and toggle_switch)
})

View File

@ -1,29 +1,50 @@
-- sound definitions
function scifi_nodes.node_sound_wood_defaults()
function scifi_nodes.node_sound_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_wood_defaults()
return default.node_sound_defaults(param)
end
end
function scifi_nodes.node_sound_glass_defaults()
function scifi_nodes.node_sound_wood_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_glass_defaults()
return default.node_sound_wood_defaults(param)
end
end
function scifi_nodes.node_sound_metal_defaults()
function scifi_nodes.node_sound_glass_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_metal_defaults()
return default.node_sound_glass_defaults(param)
end
end
function scifi_nodes.node_sound_stone_defaults()
function scifi_nodes.node_sound_metal_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_stone_defaults()
return default.node_sound_metal_defaults(param)
end
end
end
function scifi_nodes.node_sound_stone_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_stone_defaults(param)
end
end
function scifi_nodes.node_sound_dirt_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_dirt_defaults(param)
end
end
function scifi_nodes.node_sound_plant_defaults(param)
if minetest.get_modpath("default") then
-- default game
return default.node_sound_leaves_defaults(param)
end
end

View File

@ -44,7 +44,7 @@ minetest.register_node("scifi_nodes:switch_on", {
state = (has_mesecons and mesecon.state.on)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
on_rightclick = (has_mesecons and toggle_switch),
on_timer = (has_mesecons and toggle_switch)
})
@ -71,7 +71,7 @@ minetest.register_node("scifi_nodes:switch_off", {
state = (has_mesecons and mesecon.state.off)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
on_rightclick = (has_mesecons and toggle_switch)
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB