Add files via upload

master
Gerold55 2019-02-27 23:38:46 -05:00 committed by GitHub
parent ce227c0632
commit f070e1e2b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 124 additions and 7 deletions

View File

@ -1,10 +1,10 @@
function ma_pops_furniture.sit(pos, node, clicker)
local meta = minetest.get_meta(pos)
local param2 = node.param2
local sitting = meta:get_string("is_sit")
local name = clicker:get_player_name()
if sitting == name then
if name == meta:get_string("is_sit") then
print 'player should be standing.'
meta:set_string("is_sit", "")
pos.y = pos.y-0.5
clicker:setpos(pos)
@ -12,11 +12,12 @@ function ma_pops_furniture.sit(pos, node, clicker)
clicker:set_physics_override(1, 1, 1)
default.player_attached[name] = false
default.player_set_animation(clicker, "stand", 30)
elseif sitting == "" and not default.player_attached[name] then
else
meta:set_string("is_sit", clicker:get_player_name())
clicker:setpos(pos)
print 'player should be sitting.'
clicker:set_eye_offset({x=0,y=-7,z=2}, {x=0,y=0,z=0})
clicker:set_physics_override(0, 0, 0)
clicker:setpos(pos)
default.player_attached[name] = true
default.player_set_animation(clicker, "sit", 30)
if param2 == 0 then
@ -27,7 +28,7 @@ function ma_pops_furniture.sit(pos, node, clicker)
clicker:set_look_yaw(6.28)
elseif param2 == 3 then
clicker:set_look_yaw(4.75)
end
else return end
end
end
@ -52,12 +53,12 @@ ma_pops_furniture.window_operate = function( pos, old_node_state_name, new_node_
for i,v in ipairs(offsets) do
local node = minetest.env:get_node_or_nil( {x=pos.x, y=(pos.y+v), z=pos.z } );
local node = minetest.get_node_or_nil( {x=pos.x, y=(pos.y+v), z=pos.z } );
if( node and node.name and node.name==old_node_state_name
and ( (v > 0 and stop_up == 0 )
or (v < 0 and stop_down == 0 ))) then
minetest.env:add_node({x=pos.x, y=(pos.y+v), z=pos.z }, {name = new_node_state_name, param2 = node.param2})
minetest.add_node({x=pos.x, y=(pos.y+v), z=pos.z }, {name = new_node_state_name, param2 = node.param2})
-- found a diffrent node - no need to search further up
elseif( v > 0 and stop_up == 0 ) then
@ -68,3 +69,119 @@ ma_pops_furniture.window_operate = function( pos, old_node_state_name, new_node_
end
end
end
--[[
minetest.register_abm({
nodenames = {"ma_pops_furniture:table_wood"},
interval = 1, --This will be checked every second
action = function(pos, node, active_object_count, active_object_count_wider)
if pos then
if minetest.get_item_group(minetest.get_node({x = pos.x+1, y = pos.y, z = pos.z}).name, "table") == 1
and minetest.get_item_group(minetest.get_node({x = pos.x-1, y = pos.y, z = pos.z}).name, "table") == 1 then
minetest.set_node(pos, {name = "ma_pops_furniture:table_c2_wood"})
elseif minetest.get_item_group(minetest.get_node({x = pos.x, y = pos.y, z = pos.z+1}).name, "table") == 1
and minetest.get_item_group(minetest.get_node({x = pos.x, y = pos.y, z = pos.z-1}).name, "table") == 1 then
minetest.set_node(pos, {name = "ma_pops_furniture:table_c2_wood"})
end
end
end
})
--]]
function ma_pops_furniture.check_table(pos, material, check_this, check_others)
if pos then
local north_table = minetest.get_node({x = pos.x, y = pos.y, z = pos.z+1})
local north_table_exists = minetest.get_item_group(north_table.name, "table") == 1
local east_table = minetest.get_node({x = pos.x+1, y = pos.y, z = pos.z})
local east_table_exists = minetest.get_item_group(east_table.name, "table") == 1
local south_table = minetest.get_node({x = pos.x, y = pos.y, z = pos.z-1})
local south_table_exists = minetest.get_item_group(south_table.name, "table") == 1
local west_table = minetest.get_node({x = pos.x-1, y = pos.y, z = pos.z})
local west_table_exists = minetest.get_item_group(west_table.name, "table") == 1
if check_this then
if north_table_exists and east_table_exists and south_table_exists and west_table_exists then
minetest.set_node(pos, {name = "ma_pops_furniture:table_center_"..material})
elseif east_table_exists and west_table_exists then
if north_table_exists then
minetest.set_node(pos, {name = "ma_pops_furniture:table_c_"..material, param2 = 3})
elseif south_table_exists then
minetest.set_node(pos, {name = "ma_pops_furniture:table_c_"..material, param2 = 1})
else
minetest.set_node(pos, {name = "ma_pops_furniture:table_center_"..material})
end
elseif north_table_exists and south_table_exists then
if east_table_exists then
minetest.set_node(pos, {name = "ma_pops_furniture:table_c_"..material, param2 = 0})
elseif west_table_exists then
minetest.set_node(pos, {name = "ma_pops_furniture:table_c_"..material, param2 = 2})
else
minetest.set_node(pos, {name = "ma_pops_furniture:table_center_"..material})
end
elseif north_table_exists ~= east_table_exists ~= south_table_exists ~= west_table_exists then
local facedir
if north_table_exists then facedir = 3
elseif east_table_exists then facedir = 0
elseif south_table_exists then facedir = 1
else facedir = 2
end
minetest.set_node(pos, {name = "ma_pops_furniture:table_c_"..material, param2 = facedir})
else
minetest.set_node(pos, {name = "ma_pops_furniture:table_"..material})
end
end
if check_others then
if north_table_exists then
if north_table.name:sub(24, 31) == "_center_" then
ma_pops_furniture.check_table({x = pos.x, y = pos.y, z = pos.z+1}, north_table.name:sub(32), true, false)
elseif north_table.name:sub(24, 26) == "_c_" then
ma_pops_furniture.check_table({x = pos.x, y = pos.y, z = pos.z+1}, north_table.name:sub(27), true, false)
else
ma_pops_furniture.check_table({x = pos.x, y = pos.y, z = pos.z+1}, north_table.name:sub(25), true, false)
end
end
if east_table_exists then
if east_table.name:sub(24, 31) == "_center_" then
ma_pops_furniture.check_table({x = pos.x+1, y = pos.y, z = pos.z}, east_table.name:sub(32), true, false)
elseif east_table.name:sub(24, 26) == "_c_" then
ma_pops_furniture.check_table({x = pos.x+1, y = pos.y, z = pos.z}, east_table.name:sub(27), true, false)
else
ma_pops_furniture.check_table({x = pos.x+1, y = pos.y, z = pos.z}, east_table.name:sub(25), true, false)
end
end
if south_table_exists then
if south_table.name:sub(24, 31) == "_center_" then
ma_pops_furniture.check_table({x = pos.x, y = pos.y, z = pos.z-1}, south_table.name:sub(32), true, false)
elseif south_table.name:sub(24, 26) == "_c_" then
ma_pops_furniture.check_table({x = pos.x, y = pos.y, z = pos.z-1}, south_table.name:sub(27), true, false)
else
ma_pops_furniture.check_table({x = pos.x, y = pos.y, z = pos.z-1}, south_table.name:sub(25), true, false)
end
end
if west_table_exists then
if west_table.name:sub(24, 31) == "_center_" then
ma_pops_furniture.check_table({x = pos.x-1, y = pos.y, z = pos.z}, west_table.name:sub(32), true, false)
elseif west_table.name:sub(24, 26) == "_c_" then
ma_pops_furniture.check_table({x = pos.x-1, y = pos.y, z = pos.z}, west_table.name:sub(27), true, false)
else
ma_pops_furniture.check_table({x = pos.x-1, y = pos.y, z = pos.z}, west_table.name:sub(25), true, false)
end
end
end
end
end