mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-12-22 16:10:18 +01:00
Merciiiiii @Grossam
This commit is contained in:
commit
25d73d8c8d
@ -4,6 +4,12 @@
|
||||
|
||||
Minetest mod that adds scifi themed blocks, doors, materials, plants and other assets.
|
||||
|
||||
# Changes log
|
||||
|
||||
* 05/09/2019 : door opening on rightclick is disabled (maybe reactivated via a mod option)
|
||||
* 05/08/2019 :
|
||||
* digicodes now work
|
||||
* new (and cleaner) implementation for palm scanner
|
||||
* 05/05/2019 : added palm_scanner, which emmits mesecon signal when rightclicked by owner
|
||||
* 05/01/2019 : create aliases to deal with old namming policy un doors.lua
|
||||
* 04/26/2019 :
|
||||
|
15
doors.lua
15
doors.lua
@ -14,6 +14,11 @@
|
||||
-- will the authors be held liable for any damages arising from the use of this content.
|
||||
|
||||
|
||||
-- Retrieving mod settings
|
||||
local scifi_nodes = {}
|
||||
scifi_nodes.doors_open_with_mesecon_only = minetest.settings:get_bool("scifi_nodes.doors_open_with_mesecon_only", true)
|
||||
print("Ici !"..dump(scifi_nodes))
|
||||
|
||||
-- Some aliases to deal with old namming policy --
|
||||
minetest.register_alias("scifi_nodes:doors_1a","scifi_nodes:Doom_door_closed")
|
||||
minetest.register_alias("scifi_nodes:doors_1b","scifi_nodes:Doom_door_closed_top")
|
||||
@ -53,6 +58,7 @@ for _, current_door in ipairs(doors) do
|
||||
local base_name = current_door.base_name
|
||||
local base_ingredient = current_door.base_ingredient
|
||||
local sound = current_door.sound
|
||||
local doors_rightclick
|
||||
|
||||
minetest.register_craft({
|
||||
output = closed .. " 2",
|
||||
@ -121,7 +127,7 @@ for _, current_door in ipairs(doors) do
|
||||
minetest.set_node({x=pos.x,y=pos.y+1,z=pos.z},{name="air"})
|
||||
end
|
||||
|
||||
function rightclick(pos, node, player, itemstack, pointed_thing)
|
||||
function open_door(pos, node, player, itemstack, pointed_thing)
|
||||
-- play sound
|
||||
minetest.sound_play(sound,{
|
||||
max_hear_distance = 16,
|
||||
@ -177,6 +183,7 @@ for _, current_door in ipairs(doors) do
|
||||
end
|
||||
timer:start(3)
|
||||
end
|
||||
if scifi_nodes.doors_open_with_mesecon_only then rightclick = nil end
|
||||
|
||||
function afterplace(pos, placer, itemstack, pointed_thing)
|
||||
minetest.set_node({x=pos.x,y=pos.y+1,z=pos.z},{name=opened_top,param2=nodeu.param2})
|
||||
@ -256,10 +263,13 @@ for _, current_door in ipairs(doors) do
|
||||
|
||||
local mesecons_doors_def = {
|
||||
effector = {
|
||||
action_on = rightclick,
|
||||
action_on = open_door,
|
||||
rules = mesecons_doors_rules
|
||||
},
|
||||
}
|
||||
local doors_rightclick
|
||||
if scifi_nodes.doors_open_with_mesecon_only then doors_rightclick = {}
|
||||
else doors_rightclick = open_door end
|
||||
|
||||
minetest.register_node(closed, {
|
||||
description = current_door.base_name.." sliding door",
|
||||
@ -290,7 +300,6 @@ for _, current_door in ipairs(doors) do
|
||||
}
|
||||
},
|
||||
mesecons = mesecons_doors_def,
|
||||
|
||||
on_place = onplace,
|
||||
after_destruct = afterdestruct,
|
||||
on_rightclick = rightclick,
|
||||
|
243
nodeboxes.lua
243
nodeboxes.lua
@ -1203,6 +1203,7 @@ minetest.register_node("scifi_nodes:windowpanel", {
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
|
||||
--------------
|
||||
-- Switches --
|
||||
--------------
|
||||
@ -1286,39 +1287,110 @@ minetest.register_craft({
|
||||
recipe = {{"mesecons_button:button_off", "scifi_nodes:grey", ""}}
|
||||
})
|
||||
|
||||
|
||||
--------------
|
||||
-- Digicode --
|
||||
--------------
|
||||
|
||||
local secret_code = {"1234"}
|
||||
local allowed_chars = {"0123456789"}
|
||||
local secret_code = "1234"
|
||||
local allowed_chars = "0123456789"
|
||||
local code_length = 4
|
||||
local digicode_context = {}
|
||||
|
||||
-- after_place_node, use by digicode and palm_scanner
|
||||
-- placer is a player object
|
||||
local function set_owner(pos, placer, itemstack, pointed_thing)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("owner", placer:get_player_name())
|
||||
meta:set_string("code", secret_code)
|
||||
end
|
||||
|
||||
local function toggle_digicode(pos)
|
||||
local node = minetest.get_node(pos)
|
||||
local name = node.name
|
||||
if name == "scifi_nodes:digicode_off" then
|
||||
minetest.sound_play("scifi_nodes_digicode", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
minetest.set_node(pos, {name="scifi_nodes:digicode_on", param2=node.param2})
|
||||
minetest.swap_node(pos, {name="scifi_nodes:digicode_on", param2=node.param2})
|
||||
mesecon.receptor_on(pos, get_switch_rules(node.param2))
|
||||
minetest.get_node_timer(pos):start(2)
|
||||
elseif name == "scifi_nodes:digicode_on" then
|
||||
minetest.set_node(pos, {name="scifi_nodes:digicode_off", param2=node.param2})
|
||||
minetest.swap_node(pos, {name="scifi_nodes:digicode_off", param2=node.param2})
|
||||
mesecon.receptor_off(pos, get_switch_rules(node.param2))
|
||||
end
|
||||
end
|
||||
|
||||
local function code_is_valid(code)
|
||||
local valid = true
|
||||
local valid = false
|
||||
if type(code) == "string" and #code == code_length then
|
||||
valid = true
|
||||
end
|
||||
for i=1, #code do
|
||||
if not string.find(allowed_chars, string.sub(code,i,i)) then
|
||||
valid = false
|
||||
end
|
||||
end
|
||||
return valid
|
||||
end
|
||||
|
||||
-- local function digicode_turn_off (pos)
|
||||
-- local node = minetest.get_node(pos)
|
||||
-- minetest.set_node (pos, {name = "scifi_nodes:digicode_off", param2 = node.param2})
|
||||
-- mesecon.receptor_off(pos, get_switch_rules(node.param2))
|
||||
-- return false
|
||||
-- end
|
||||
local function update_code(pos, code)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("code", code)
|
||||
end
|
||||
|
||||
local function show_digicode_formspec(pos, node, player, itemstack, pointed_thing)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local owner = meta:get_string("owner")
|
||||
local current_code = meta:get_string("code")
|
||||
local current_player = player:get_player_name()
|
||||
|
||||
-- Gathering datas that will be used by callback function
|
||||
digicode_context[current_player] = {code = current_code, pos = pos}
|
||||
|
||||
if current_player == owner then
|
||||
minetest.show_formspec(current_player, "digicode_formspec",
|
||||
"size[6,3]"..
|
||||
"field[1,1;3,1;code;Code;]".. -- type, position, size, name, label
|
||||
"button_exit[1,2;2,1;change;Change code]"..
|
||||
"button_exit[3,2;2,1;open;Open door]")
|
||||
else
|
||||
minetest.show_formspec(current_player, "digicode_formspec",
|
||||
"size[6,3]"..
|
||||
"field[2,1;3,1;code;Code;]"..
|
||||
"button_exit[2,2;3,1;open;Open door]")
|
||||
end
|
||||
end
|
||||
|
||||
-- Process datas from digicode_formspec
|
||||
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
if formname ~= "digicode_formspec" then
|
||||
return false
|
||||
end
|
||||
|
||||
local sounds = {"scifi_nodes_scanner_granted","scifi_nodes_scanner_refused",
|
||||
"scifi_nodes_digicode_granted","scifi_nodes_digicode_refused"
|
||||
}
|
||||
local sound_index
|
||||
|
||||
-- We have the right formspec so we can proceed it.
|
||||
-- Let's retrieve the datas we need :
|
||||
local context = digicode_context[player:get_player_name()]
|
||||
|
||||
if fields.change and code_is_valid(fields.code) then
|
||||
update_code(context.pos, fields.code)
|
||||
sound_index = 1
|
||||
elseif
|
||||
fields.change and not code_is_valid(fields.code) then
|
||||
sound_index = 2
|
||||
elseif
|
||||
fields.open and fields.code == context.code then
|
||||
toggle_digicode(context.pos)
|
||||
sound_index = 3
|
||||
elseif
|
||||
fields.open and fields.code ~= context.code then
|
||||
sound_index = 4
|
||||
end
|
||||
minetest.sound_play(sounds[sound_index])
|
||||
context[player:get_player_name()] = nil -- we don't need it anymore
|
||||
end)
|
||||
|
||||
minetest.register_node("scifi_nodes:digicode_on", {
|
||||
description = "Digicode",
|
||||
@ -1334,6 +1406,7 @@ minetest.register_node("scifi_nodes:digicode_on", {
|
||||
paramtype2 = "wallmounted",
|
||||
light_source = 5,
|
||||
groups = {cracky=1, oddly_breakable_by_hand=1, not_in_creative_inventory=1, mesecon_needs_receiver = 1},
|
||||
drop = {items = {"scifi_nodes:digicode_off"}},
|
||||
mesecons = {receptor = {state = mesecon.state.on,}},
|
||||
on_timer = toggle_digicode,
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
@ -1342,8 +1415,8 @@ minetest.register_node("scifi_nodes:digicode_on", {
|
||||
minetest.register_node("scifi_nodes:digicode_off", {
|
||||
description = "Digicode",
|
||||
tiles = {"scifi_nodes_digicode_off.png",},
|
||||
inventory_image = "scifi_nodes_digicode_on.png",
|
||||
wield_image = "scifi_nodes_digicode_on.png",
|
||||
inventory_image = "scifi_nodes_digicode_off.png",
|
||||
wield_image = "scifi_nodes_digicode_off.png",
|
||||
drawtype = "signlike",
|
||||
sunlight_propagates = true,
|
||||
buildable_to = false,
|
||||
@ -1353,7 +1426,8 @@ minetest.register_node("scifi_nodes:digicode_off", {
|
||||
paramtype2 = "wallmounted",
|
||||
groups = {cracky=1, oddly_breakable_by_hand=1, mesecon_needs_receiver = 1},
|
||||
mesecons = {receptor = {state = mesecon.state.off,}},
|
||||
on_rightclick = toggle_digicode,
|
||||
after_place_node = set_owner,
|
||||
on_rightclick = show_digicode_formspec,
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
@ -1362,55 +1436,98 @@ minetest.register_craft({
|
||||
recipe = {{"mesecons_switch:mesecon_switch_off", "scifi_nodes:grey", ""}}
|
||||
})
|
||||
|
||||
------------------
|
||||
-- Palm scanner --
|
||||
------------------
|
||||
|
||||
-----------------------------------------------
|
||||
-- Palm scanner --
|
||||
-----------------------------------------------
|
||||
-- /!\ When "overriding" a callback function --
|
||||
-- re-use all the parameters in same order ! --
|
||||
-----------------------------------------------
|
||||
|
||||
local function toggle_palm_scanner(pos)
|
||||
local node = minetest.get_node(pos)
|
||||
local name = node.name
|
||||
minetest.swap_node(pos, {name="scifi_nodes:palm_scanner_off", param2=node.param2})
|
||||
mesecon.receptor_off(pos, get_switch_rules(node.param2))
|
||||
end
|
||||
|
||||
-- after_place_node
|
||||
-- placer is a player object
|
||||
local function set_owner(pos, placer, itemstack, pointed_thing)
|
||||
local function set_scanner_owner(pos, placer, itemstack, pointed_thing)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("owner", placer:get_player_name())
|
||||
end
|
||||
|
||||
-- on_rightclick
|
||||
-- player is a player object
|
||||
local function check_owner(pos, node, player, itemstack, pointed_thing)
|
||||
local function toggle_palm_scanner(pos, node, player, itemstack, pointed_thing)
|
||||
-- Some calling function don't send node param, but everybody sends a pos, so :
|
||||
local node = minetest.get_node(pos)
|
||||
if node.name == "scifi_nodes:palm_scanner_off" then
|
||||
local meta = minetest.get_meta(pos)
|
||||
local owner = meta:get_string("owner")
|
||||
local tested_player = player:get_player_name()
|
||||
meta:set_string("clicker", player:get_player_name()) -- need to keep it somewhere
|
||||
minetest.swap_node(pos, {name = "scifi_nodes:palm_scanner_checking", param2 = node.param2})
|
||||
minetest.sound_play("scifi_nodes_palm_scanner", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
minetest.chat_send_player(tested_player, "Checking : please wait.")
|
||||
|
||||
-- wait for a bit please !
|
||||
minetest.after(1.5, function(pos, node, tested_player, owner)
|
||||
if tested_player == owner then
|
||||
minetest.sound_play("scifi_nodes_access_granted", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
minetest.chat_send_player(tested_player, "Access granted !")
|
||||
minetest.chat_send_player(player:get_player_name(), "Checking : please wait.")
|
||||
minetest.get_node_timer(pos):start(2)
|
||||
elseif node.name == "scifi_nodes:palm_scanner_checking" then
|
||||
minetest.swap_node(pos,{name = "scifi_nodes:palm_scanner_on", param2 = node.param2})
|
||||
mesecon.receptor_on(pos, get_switch_rules(node.param2))
|
||||
minetest.get_node_timer(pos):start(2)
|
||||
else
|
||||
minetest.chat_send_player(tested_player, "Access refused !")
|
||||
minetest.sound_play("scifi_nodes_access_refused", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
elseif node.name == "scifi_nodes:palm_scanner_on" then
|
||||
minetest.sound_play("scifi_nodes_switch", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
minetest.swap_node(pos, {name = "scifi_nodes:palm_scanner_off", param2 = node.param2})
|
||||
mesecon.receptor_off (pos, get_switch_rules(node.param2))
|
||||
end
|
||||
end, pos, node, tested_player, owner) -- end of anonymous function
|
||||
end
|
||||
|
||||
-- palm_scanner_checking.on_timer
|
||||
local function check_owner(pos, elapsed)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local owner = meta:get_string("owner")
|
||||
local clicker = meta:get_string("clicker")
|
||||
local node = minetest.get_node(pos)
|
||||
if clicker == owner then
|
||||
minetest.sound_play("scifi_nodes_scanner_granted", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
minetest.chat_send_player(clicker, "Access granted !")
|
||||
toggle_palm_scanner (pos)
|
||||
else
|
||||
minetest.chat_send_player(clicker, "Access refused !")
|
||||
minetest.sound_play("scifi_nodes_scanner_refused", {max_hear_distance = 8, pos = pos, gain = 1.0})
|
||||
minetest.swap_node(pos, {name = "scifi_nodes:palm_scanner_off", param2 = node.param2})
|
||||
mesecon.receptor_off(pos, get_switch_rules(node.param2))
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_node("scifi_nodes:palm_scanner_off", {
|
||||
description = "Palm scanner",
|
||||
tiles = {"scifi_nodes_palm_scanner_off.png",},
|
||||
inventory_image = "scifi_nodes_palm_scanner_off.png",
|
||||
wield_image = "scifi_nodes_palm_scanner_on.png",
|
||||
drawtype = "signlike",
|
||||
sunlight_propagates = true,
|
||||
buildable_to = false,
|
||||
node_box = {type = "wallmounted",},
|
||||
selection_box = {type = "wallmounted",},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
groups = {cracky=1, oddly_breakable_by_hand=1, mesecon_needs_receiver = 1},
|
||||
mesecons = {receptor = {state = mesecon.state.off,}},
|
||||
after_place_node = set_scanner_owner,
|
||||
on_rightclick = toggle_palm_scanner,
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:palm_scanner_checking", {
|
||||
description = "Palm scanner",
|
||||
tiles = {{
|
||||
name = "scifi_nodes_palm_scanner_checking.png",
|
||||
animation = {type = "vertical_frames",aspect_w = 16,aspect_h = 16,length = 1.5}
|
||||
}},
|
||||
drawtype = "signlike",
|
||||
sunlight_propagates = true,
|
||||
buildable_to = false,
|
||||
node_box = {type = "wallmounted",},
|
||||
selection_box = {type = "wallmounted",},
|
||||
paramtype = "light",
|
||||
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 = default.node_sound_glass_defaults(),
|
||||
on_timer = check_owner,
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:palm_scanner_on", {
|
||||
description = "Palm scanner",
|
||||
sunlight_propagates = true,
|
||||
@ -1425,51 +1542,13 @@ minetest.register_node("scifi_nodes:palm_scanner_on", {
|
||||
paramtype2 = "wallmounted",
|
||||
light_source = 5,
|
||||
groups = {cracky=1, oddly_breakable_by_hand=1, not_in_creative_inventory=1, mesecon_needs_receiver = 1},
|
||||
drop = "scifi_nodes:palm_scanner_off",
|
||||
mesecons = {receptor = {state = mesecon.state.on,}},
|
||||
on_timer = toggle_palm_scanner,
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:palm_scanner_off", {
|
||||
description = "Palm scanner",
|
||||
tiles = {"scifi_nodes_palm_scanner_off.png",},
|
||||
inventory_image = "scifi_nodes_palm_scanner_on.png",
|
||||
wield_image = "scifi_nodes_palm_scanner_on.png",
|
||||
drawtype = "signlike",
|
||||
sunlight_propagates = true,
|
||||
buildable_to = false,
|
||||
node_box = {type = "wallmounted",},
|
||||
selection_box = {type = "wallmounted",},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
groups = {cracky=1, oddly_breakable_by_hand=1, mesecon_needs_receiver = 1},
|
||||
mesecons = {receptor = {state = mesecon.state.off,}},
|
||||
after_place_node = set_owner,
|
||||
on_rightclick = check_owner,
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:palm_scanner_checking", {
|
||||
description = "Palm scanner",
|
||||
tiles = {{
|
||||
name = "scifi_nodes_palm_scanner_checking.png",
|
||||
animation = {type = "vertical_frames",aspect_w = 16,aspect_h = 16,length = 1.5}
|
||||
}},
|
||||
wield_image = "scifi_nodes_palm_scanner_on.png",
|
||||
inventory_image = "scifi_nodes_palm_scanner_on.png",
|
||||
drawtype = "signlike",
|
||||
sunlight_propagates = true,
|
||||
buildable_to = false,
|
||||
node_box = {type = "wallmounted",},
|
||||
selection_box = {type = "wallmounted",},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
groups = {cracky=1, oddly_breakable_by_hand=1, not_in_creative_inventory=1, mesecon_needs_receiver = 1},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "scifi_nodes:palm_scanner_off 2",
|
||||
recipe = {
|
||||
{"mesecons_powerplant:power_plant", "scifi_nodes:grey", ""}
|
||||
}
|
||||
recipe = {{"mesecons_powerplant:power_plant", "scifi_nodes:grey", ""}}
|
||||
})
|
||||
|
2
settingtypes.txt
Normal file
2
settingtypes.txt
Normal file
@ -0,0 +1,2 @@
|
||||
# Doors can only be opened by mesecon signal
|
||||
scifi_nodes.doors_open_with_mesecon_only (disables right click on doors) bool true
|
BIN
sounds/scifi_nodes_digicode_granted.ogg
Normal file
BIN
sounds/scifi_nodes_digicode_granted.ogg
Normal file
Binary file not shown.
BIN
sounds/scifi_nodes_digicode_refused.ogg
Normal file
BIN
sounds/scifi_nodes_digicode_refused.ogg
Normal file
Binary file not shown.
BIN
sounds/scifi_nodes_scanner_granted.ogg
Normal file
BIN
sounds/scifi_nodes_scanner_granted.ogg
Normal file
Binary file not shown.
BIN
sounds/scifi_nodes_scanner_refused.ogg
Normal file
BIN
sounds/scifi_nodes_scanner_refused.ogg
Normal file
Binary file not shown.
BIN
sounds/scifi_nodes_wrong.ogg
Normal file
BIN
sounds/scifi_nodes_wrong.ogg
Normal file
Binary file not shown.
BIN
textures/scifi_nodes_palm_scanner_checking.png
Normal file
BIN
textures/scifi_nodes_palm_scanner_checking.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
textures/scifi_nodes_palm_scanner_off.png
Normal file
BIN
textures/scifi_nodes_palm_scanner_off.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 408 B |
BIN
textures/scifi_nodes_palm_scanner_on.png
Normal file
BIN
textures/scifi_nodes_palm_scanner_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 409 B |
Loading…
Reference in New Issue
Block a user