2012-04-06 20:05:36 +02:00
|
|
|
minetest.register_node("mesecons_noteblock:noteblock", {
|
|
|
|
description = "Noteblock",
|
2012-11-08 20:52:36 +01:00
|
|
|
tiles = {"mesecons_noteblock.png"},
|
2015-12-30 19:08:09 +01:00
|
|
|
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2},
|
|
|
|
on_punch = function(pos, node) -- change sound when punched
|
|
|
|
node.param2 = (node.param2+1)%12
|
|
|
|
mesecon.noteblock_play(pos, node.param2)
|
|
|
|
minetest.add_node(pos, node)
|
2012-12-09 00:42:30 +01:00
|
|
|
end,
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecons = {effector = { -- play sound when activated
|
2015-12-30 19:08:09 +01:00
|
|
|
action_on = function(pos, node)
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecon.noteblock_play(pos, node.param2)
|
|
|
|
end
|
|
|
|
}}
|
2012-06-05 04:20:04 +02:00
|
|
|
})
|
2012-04-06 20:05:36 +02:00
|
|
|
|
2012-08-10 21:31:52 +02:00
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_noteblock:noteblock 1",
|
2012-08-10 21:31:52 +02:00
|
|
|
recipe = {
|
2013-12-01 01:07:12 +01:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2012-08-12 02:53:47 +02:00
|
|
|
{"group:mesecon_conductor_craftable", "default:steel_ingot", "group:mesecon_conductor_craftable"},
|
2013-12-01 01:07:12 +01:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2012-08-10 21:31:52 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-12-30 19:08:09 +01:00
|
|
|
local soundnames = {
|
|
|
|
[0] = "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_c"
|
|
|
|
}
|
|
|
|
|
|
|
|
local node_sounds = {
|
|
|
|
["default:glass"] = "mesecons_noteblock_hihat",
|
|
|
|
["default:stone"] = "mesecons_noteblock_kick",
|
|
|
|
["default:lava_source"] = "fire_large",
|
|
|
|
["default:chest"] = "mesecons_noteblock_snare",
|
|
|
|
["default:tree"] = "mesecons_noteblock_crash",
|
|
|
|
["default:wood"] = "mesecons_noteblock_litecrash",
|
|
|
|
["default:coalblock"] = "tnt_explode",
|
|
|
|
}
|
|
|
|
|
|
|
|
mesecon.noteblock_play = function(pos, param2)
|
|
|
|
pos.y = pos.y-1
|
|
|
|
local nodeunder = minetest.get_node(pos).name
|
|
|
|
local soundname = node_sounds[nodeunder]
|
|
|
|
if not soundname then
|
|
|
|
soundname = soundnames[param2]
|
|
|
|
if not soundname then
|
|
|
|
minetest.log("error", "[mesecons_noteblock] No soundname found, test param2")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if nodeunder == "default:steelblock" then
|
|
|
|
soundname = soundname.. 2
|
|
|
|
end
|
2015-02-03 19:48:12 +01:00
|
|
|
end
|
2015-12-30 19:08:09 +01:00
|
|
|
pos.y = pos.y+1
|
|
|
|
minetest.sound_play(soundname, {pos = pos})
|
2012-04-06 20:05:36 +02:00
|
|
|
end
|