forked from Mirrorlandia_minetest/digistuff
Add _ALL_ the things!
This commit is contained in:
commit
a9d88e4b1c
22
README
Normal file
22
README
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
Digilines Button
|
||||||
|
================
|
||||||
|
|
||||||
|
|
||||||
|
License:
|
||||||
|
Code - LGPL v3 or later (contains some code from mesecons and digilines)
|
||||||
|
Textures - CC BY-SA 3.0 Generic (contains modified versions of textures from mesecons and digilines)
|
||||||
|
|
||||||
|
|
||||||
|
Depends:
|
||||||
|
Required: digilines (base only) and mesecons (base only)
|
||||||
|
Only needed for craft recipes: default and mesecons_luacontroller
|
||||||
|
|
||||||
|
|
||||||
|
How to use digilines buttons:
|
||||||
|
Connect to a digiline (or digimese), right-click, and set a channel and message.
|
||||||
|
When the button is pressed (right-click), it will send that message on that channel, over digilines.
|
||||||
|
Note that the settings cannot be changed after setting - you must dig and re-place the button to do so.
|
||||||
|
|
||||||
|
|
||||||
|
How to use digimese:
|
||||||
|
It conducts digilines signals (like digilines) in all directions (like mese). That's about it, really.
|
2
depends.txt
Normal file
2
depends.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
digilines
|
||||||
|
mesecons
|
174
init.lua
Normal file
174
init.lua
Normal file
@ -0,0 +1,174 @@
|
|||||||
|
digibutton = {}
|
||||||
|
|
||||||
|
digibutton.button_turnoff = function (pos)
|
||||||
|
local node = minetest.get_node(pos)
|
||||||
|
if node.name=="digibutton:button_on" then --has not been dug
|
||||||
|
minetest.swap_node(pos, {name = "digibutton:button_off", param2=node.param2})
|
||||||
|
minetest.sound_play("mesecons_button_pop", {pos=pos})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
minetest.register_node("digibutton:digimese", {
|
||||||
|
description = "Digimese",
|
||||||
|
tiles = {"digimese.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
light_source = 3,
|
||||||
|
groups = {cracky = 3, level = 2},
|
||||||
|
is_ground_content = false,
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
digiline = { wire = { rules = {
|
||||||
|
{x = 1, y = 0, z = 0},
|
||||||
|
{x =-1, y = 0, z = 0},
|
||||||
|
{x = 0, y = 1, z = 0},
|
||||||
|
{x = 0, y =-1, z = 0},
|
||||||
|
{x = 0, y = 0, z = 1},
|
||||||
|
{x = 0, y = 0, z =-1}}}}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("digibutton:button", {
|
||||||
|
drawtype = "nodebox",
|
||||||
|
tiles = {
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_off.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
legacy_wallmounted = true,
|
||||||
|
walkable = false,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the thin plate behind the button
|
||||||
|
{ -4/16, -2/16, 4/16, 4/16, 2/16, 6/16 } -- the button itself
|
||||||
|
}
|
||||||
|
},
|
||||||
|
digiline =
|
||||||
|
{
|
||||||
|
receptor = {}
|
||||||
|
},
|
||||||
|
groups = {dig_immediate=2},
|
||||||
|
description = "Digilines Button",
|
||||||
|
on_construct = function(pos)
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
meta:set_string("formspec","size[8,4;]field[1,1;6,2;channel;Channel;${channel}]field[1,2;6,2;msg;Message;${msg}]button_exit[2.25,3;3,1;submit;Save]")
|
||||||
|
end,
|
||||||
|
on_receive_fields = function(pos, formname, fields, sender)
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
if fields.channel and fields.msg and fields.channel ~= "" and fields.msg ~= "" then
|
||||||
|
meta:set_string("channel",fields.channel)
|
||||||
|
meta:set_string("msg",fields.msg)
|
||||||
|
meta:set_string("formspec","")
|
||||||
|
minetest.swap_node(pos, {name = "digibutton:button_off", param2=minetest.get_node(pos).param2})
|
||||||
|
else
|
||||||
|
minetest.chat_send_player(sender:get_player_name(),"Channel and message must both be set!")
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("digibutton:button_off", {
|
||||||
|
drawtype = "nodebox",
|
||||||
|
tiles = {
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_off.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
legacy_wallmounted = true,
|
||||||
|
walkable = false,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the thin plate behind the button
|
||||||
|
{ -4/16, -2/16, 4/16, 4/16, 2/16, 6/16 } -- the button itself
|
||||||
|
}
|
||||||
|
},
|
||||||
|
digiline =
|
||||||
|
{
|
||||||
|
receptor = {}
|
||||||
|
},
|
||||||
|
groups = {dig_immediate=2, not_in_creative_inventory=1},
|
||||||
|
drop = "digibutton:button",
|
||||||
|
description = "Digilines Button (off state - you hacker you!)",
|
||||||
|
on_rightclick = function (pos, node, clicker)
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
digiline:receptor_send(pos, digiline.rules.default, meta:get_string("channel"), meta:get_string("msg"))
|
||||||
|
minetest.swap_node(pos, {name = "digibutton:button_on", param2=node.param2})
|
||||||
|
minetest.sound_play("mesecons_button_push", {pos=pos})
|
||||||
|
minetest.after(1, digibutton.button_turnoff, pos)
|
||||||
|
end,
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("digibutton:button_on", {
|
||||||
|
drawtype = "nodebox",
|
||||||
|
tiles = {
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_sides.png",
|
||||||
|
"digibutton_on.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
legacy_wallmounted = true,
|
||||||
|
walkable = false,
|
||||||
|
light_source = default.LIGHT_MAX-7,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 },
|
||||||
|
{ -4/16, -2/16, 11/32, 4/16, 2/16, 6/16 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
digiline =
|
||||||
|
{
|
||||||
|
receptor = {}
|
||||||
|
},
|
||||||
|
groups = {dig_immediate=2, not_in_creative_inventory=1},
|
||||||
|
drop = 'digibutton:button',
|
||||||
|
description = "Digilines Button (on state - you hacker you!)",
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "digibutton:digimese",
|
||||||
|
recipe = {
|
||||||
|
{"digilines:wire_std_00000000","digilines:wire_std_00000000","digilines:wire_std_00000000"},
|
||||||
|
{"digilines:wire_std_00000000","default:mese","digilines:wire_std_00000000"},
|
||||||
|
{"digilines:wire_std_00000000","digilines:wire_std_00000000","digilines:wire_std_00000000"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "digibutton:button",
|
||||||
|
recipe = {
|
||||||
|
{"mesecons_button:button_off"},
|
||||||
|
{"mesecons_luacontroller:luacontroller0000"},
|
||||||
|
{"digilines:wire_std_00000000"}
|
||||||
|
}
|
||||||
|
})
|
BIN
textures/digibutton_off.png
Normal file
BIN
textures/digibutton_off.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 444 B |
BIN
textures/digibutton_on.png
Normal file
BIN
textures/digibutton_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 459 B |
BIN
textures/digibutton_sides.png
Normal file
BIN
textures/digibutton_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 434 B |
BIN
textures/digimese.png
Normal file
BIN
textures/digimese.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 565 B |
Loading…
Reference in New Issue
Block a user