homedecor_modpack/init.lua

91 lines
3.0 KiB
Lua
Raw Normal View History

2012-07-12 23:56:15 +02:00
-- Home Decor mod by VanessaE
-- 2013-03-17
2012-07-12 23:56:15 +02:00
--
-- Mostly my own code, with bits and pieces lifted from Minetest's default
-- lua files and from ironzorg's flowers mod. Many thanks to GloopMaster
-- for helping me figure out the inventories used in the nightstands/dressers.
2012-07-12 23:56:15 +02:00
--
-- The code for ovens, nightstands, refrigerators are basically modified
-- copies of the code for chests and furnaces.
2012-07-12 23:56:15 +02:00
--
-- License: LGPL 2.0 or higher
2012-07-12 23:56:15 +02:00
--
2012-07-31 17:37:24 +02:00
local DEBUG = 0
2012-07-12 23:56:15 +02:00
2013-03-05 08:18:56 +01:00
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function ( s ) return s end
end
-- Various Functions
2012-07-12 23:56:15 +02:00
local dbg = function(s)
if DEBUG == 1 then
print('[HomeDecor] ' .. s)
end
end
function homedecor_node_is_owned(pos, placer)
local ownername = false
if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod
if HasOwner(pos, placer) then -- returns true if the node is owned
if not IsPlayerNodeOwner(pos, placer:get_player_name()) then
if type(getLastOwner) == "function" then -- ...is an old version
ownername = getLastOwner(pos)
elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version
ownername = GetNodeOwnerName(pos)
else
2013-03-05 08:18:56 +01:00
ownername = S("someone")
end
end
end
elseif type(isprotect)=="function" then -- glomie's protection mod
if not isprotect(5, pos, placer) then
2013-03-05 08:18:56 +01:00
ownername = S("someone")
end
end
if ownername ~= false then
2013-03-05 08:18:56 +01:00
minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) )
return true
else
return false
end
end
dofile(minetest.get_modpath("homedecor").."/nodes.lua") -- the catch-all for all misc nodes
dofile(minetest.get_modpath("homedecor").."/tables.lua")
dofile(minetest.get_modpath("homedecor").."/electronics.lua")
dofile(minetest.get_modpath("homedecor").."/shutters.lua")
dofile(minetest.get_modpath("homedecor").."/shingles.lua")
dofile(minetest.get_modpath("homedecor").."/door_models.lua")
dofile(minetest.get_modpath("homedecor").."/door_nodes.lua")
dofile(minetest.get_modpath("homedecor").."/signs_lib.lua")
dofile(minetest.get_modpath("homedecor").."/fences.lua")
dofile(minetest.get_modpath("homedecor").."/lighting.lua")
dofile(minetest.get_modpath("homedecor").."/kitchen_cabinet.lua")
dofile(minetest.get_modpath("homedecor").."/refrigerator.lua")
dofile(minetest.get_modpath("homedecor").."/oven.lua")
2013-04-05 12:00:34 +02:00
dofile(minetest.get_modpath("homedecor").."/microwave_oven.lua")
dofile(minetest.get_modpath("homedecor").."/nightstands.lua")
dofile(minetest.get_modpath("homedecor").."/crafts.lua")
2013-02-25 18:02:42 +01:00
dofile(minetest.get_modpath("homedecor").."/locked.lua")
2013-03-26 12:05:22 +01:00
dofile(minetest.get_modpath("homedecor").."/furniture.lua")
dofile(minetest.get_modpath("homedecor").."/furniture_medieval.lua")
dofile(minetest.get_modpath("homedecor").."/furniture_bathroom.lua")
2013-03-27 02:13:48 +01:00
dofile(minetest.get_modpath("homedecor").."/furniture_recipes.lua")
2013-03-26 12:05:22 +01:00
2013-03-05 08:18:56 +01:00
print("[HomeDecor] "..S("Loaded!"))