Mineclonia/mods/ITEMS/REDSTONE/mesecons_noteblock/init.lua

94 lines
2.8 KiB
Lua
Raw Normal View History

2015-06-29 17:55:56 +00:00
minetest.register_node("mesecons_noteblock:noteblock", {
description = "Note Block",
_doc_items_longdesc = "A note block is a redstone component which plays a musical note when it is supplied with redstone power.",
_doc_items_usagehelp = "Rightclick the note block to choose one of many possible notes to play.",
2015-06-29 17:55:56 +00:00
tiles = {"mesecons_noteblock.png"},
groups = {handy=1,axey=1, material_wood=1},
is_ground_content = false,
2017-03-11 05:15:58 +00:00
place_param2 = 0,
on_rightclick = function (pos, node) -- change sound when rightclicked
2017-03-11 05:14:26 +00:00
node.param2 = (node.param2+1)%24
mesecon.noteblock_play(pos, node.param2)
minetest.set_node(pos, node)
2015-06-29 17:55:56 +00:00
end,
on_punch = function (pos, node) -- play current sound when punched
mesecon.noteblock_play(pos, node.param2)
end,
sounds = mcl_sounds.node_sound_wood_defaults(),
2015-06-29 17:55:56 +00:00
mesecons = {effector = { -- play sound when activated
action_on = function (pos, node)
mesecon.noteblock_play(pos, node.param2)
end
2017-02-22 15:22:28 +00:00
}},
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
minetest.register_craft({
output = '"mesecons_noteblock:noteblock" 1',
recipe = {
{"group:wood", "group:wood", "group:wood"},
2017-01-09 17:45:34 +00:00
{"group:wood", "mesecons:redstone", "group:wood"},
2015-06-29 17:55:56 +00:00
{"group:wood", "group:wood", "group:wood"},
}
})
2017-01-10 05:43:07 +00:00
minetest.register_craft({
type = "fuel",
recipe = "mesecons_noteblock:noteblock",
burntime = 15
})
2017-03-11 05:14:26 +00:00
local soundnames_piano = {
[0] = "mesecons_noteblock_c",
"mesecons_noteblock_csharp",
"mesecons_noteblock_d",
"mesecons_noteblock_dsharp",
"mesecons_noteblock_e",
"mesecons_noteblock_f",
"mesecons_noteblock_fsharp",
"mesecons_noteblock_g",
"mesecons_noteblock_gsharp",
"mesecons_noteblock_a",
"mesecons_noteblock_asharp",
"mesecons_noteblock_b",
"mesecons_noteblock_c2",
"mesecons_noteblock_csharp2",
"mesecons_noteblock_d2",
"mesecons_noteblock_dsharp2",
"mesecons_noteblock_e2",
"mesecons_noteblock_f2",
"mesecons_noteblock_fsharp2",
"mesecons_noteblock_g2",
"mesecons_noteblock_gsharp2",
"mesecons_noteblock_a2",
"mesecons_noteblock_asharp2",
"mesecons_noteblock_b2",
}
2015-06-29 17:55:56 +00:00
mesecon.noteblock_play = function (pos, param2)
local soundname
2017-03-11 05:14:26 +00:00
-- Default: One of 24 piano notes
soundname = soundnames_piano[param2]
local block_below_name = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name
if minetest.get_item_group(block_below_name, "material_glass") ~= 0 then
-- TODO: Sticks and clicks
2015-06-29 17:55:56 +00:00
soundname="mesecons_noteblock_kick"
elseif minetest.get_item_group(block_below_name, "material_wood") ~= 0 then
-- TODO: Bass guitar
2015-06-29 17:55:56 +00:00
soundname="mesecons_noteblock_crash"
elseif minetest.get_item_group(block_below_name, "material_sand") ~= 0 then
-- TODO: 24 Snare drum sounds
soundname="mesecons_noteblock_snare"
elseif minetest.get_item_group(block_below_name, "material_stone") ~= 0 then
-- TODO: Bass drum
soundname="mesecons_noteblock_snare"
2015-06-29 17:55:56 +00:00
end
minetest.sound_play(soundname,
2017-03-11 04:48:21 +00:00
{pos = pos, gain = 1.0, max_hear_distance = 48,})
2015-06-29 17:55:56 +00:00
end