2012-07-12 23:56:15 +02:00
|
|
|
-- Home Decor mod by VanessaE
|
|
|
|
--
|
|
|
|
-- Mostly my own code, with bits and pieces lifted from Minetest's default
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
-- 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
|
|
|
--
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +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
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
homedecor = {}
|
|
|
|
|
2013-10-10 02:14:52 +02:00
|
|
|
homedecor.debug = 0
|
2013-10-09 18:47:22 +02:00
|
|
|
|
|
|
|
homedecor.modpath = minetest.get_modpath("homedecor")
|
|
|
|
homedecor.intllib_modpath = minetest.get_modpath("intllib")
|
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.
|
2013-10-16 16:30:41 +02:00
|
|
|
local S
|
|
|
|
if homedecor.intllib_modpath then
|
|
|
|
dofile(homedecor.intllib_modpath.."/intllib.lua")
|
|
|
|
S = intllib.Getter(minetest.get_current_modname())
|
|
|
|
else
|
|
|
|
S = function ( s ) return s end
|
|
|
|
end
|
2013-10-22 02:31:54 +02:00
|
|
|
homedecor.gettext = S
|
2013-03-05 08:18:56 +01:00
|
|
|
|
2013-10-28 03:51:56 +01:00
|
|
|
-- debug
|
|
|
|
|
2012-07-12 23:56:15 +02:00
|
|
|
local dbg = function(s)
|
2013-10-09 18:47:22 +02:00
|
|
|
if homedecor.debug == 1 then
|
2012-07-12 23:56:15 +02:00
|
|
|
print('[HomeDecor] ' .. s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-28 03:51:56 +01:00
|
|
|
-- infinite stacks
|
|
|
|
|
2013-04-17 09:14:09 +02:00
|
|
|
if minetest.get_modpath("unified_inventory") or not minetest.setting_getbool("creative_mode") then
|
2013-10-09 18:47:22 +02:00
|
|
|
homedecor.expect_infinite_stacks = false
|
2013-04-17 09:14:09 +02:00
|
|
|
else
|
2013-10-09 18:47:22 +02:00
|
|
|
homedecor.expect_infinite_stacks = true
|
2013-04-17 09:14:09 +02:00
|
|
|
end
|
|
|
|
|
2013-10-28 03:51:56 +01:00
|
|
|
--table copy
|
|
|
|
|
|
|
|
function homedecor.table_copy(t)
|
|
|
|
local nt = { };
|
|
|
|
for k, v in pairs(t) do
|
|
|
|
if type(v) == "table" then
|
|
|
|
nt[k] = homedecor.table_copy(v)
|
|
|
|
else
|
|
|
|
nt[k] = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return nt
|
|
|
|
end
|
|
|
|
|
2014-06-29 16:47:25 +02:00
|
|
|
--
|
|
|
|
|
|
|
|
function homedecor.get_nodedef_field(nodename, fieldname)
|
|
|
|
if not minetest.registered_nodes[nodename] then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
return minetest.registered_nodes[nodename][fieldname]
|
|
|
|
end
|
2013-11-08 03:22:16 +01:00
|
|
|
|
|
|
|
-- load various other components
|
|
|
|
|
2014-06-27 03:33:27 +02:00
|
|
|
dofile(homedecor.modpath.."/misc-nodes.lua") -- the catch-all for all misc nodes
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/tables.lua")
|
|
|
|
dofile(homedecor.modpath.."/electronics.lua")
|
|
|
|
dofile(homedecor.modpath.."/shutters.lua")
|
|
|
|
dofile(homedecor.modpath.."/shingles.lua")
|
|
|
|
dofile(homedecor.modpath.."/slopes.lua")
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/door_models.lua")
|
|
|
|
dofile(homedecor.modpath.."/doors_and_gates.lua")
|
2013-01-23 11:45:42 +01:00
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/fences.lua")
|
2013-02-08 08:31:40 +01:00
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/lighting.lua")
|
|
|
|
dofile(homedecor.modpath.."/kitchen_cabinet.lua")
|
|
|
|
dofile(homedecor.modpath.."/refrigerator.lua")
|
2014-06-25 07:02:26 +02:00
|
|
|
|
2014-06-27 03:33:27 +02:00
|
|
|
dofile(homedecor.modpath.."/misc-bathroom.lua")
|
|
|
|
|
2014-06-25 07:02:26 +02:00
|
|
|
dofile(homedecor.modpath.."/laundry.lua")
|
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/furnaces.lua")
|
|
|
|
dofile(homedecor.modpath.."/nightstands.lua")
|
2014-06-25 11:59:34 +02:00
|
|
|
dofile(homedecor.modpath.."/clocks.lua")
|
2014-06-26 05:08:20 +02:00
|
|
|
dofile(homedecor.modpath.."/misc-electrical.lua")
|
|
|
|
|
2014-06-25 13:31:50 +02:00
|
|
|
dofile(homedecor.modpath.."/paintings.lua")
|
2014-06-27 02:13:16 +02:00
|
|
|
dofile(homedecor.modpath.."/window_treatments.lua")
|
2013-01-23 11:45:42 +01:00
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/crafts.lua")
|
2014-06-18 06:45:45 +02:00
|
|
|
dofile(homedecor.modpath.."/crafts_nomoreblocks.lua")
|
2013-01-23 11:45:42 +01:00
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/furniture.lua")
|
|
|
|
dofile(homedecor.modpath.."/furniture_medieval.lua")
|
|
|
|
dofile(homedecor.modpath.."/furniture_bathroom.lua")
|
|
|
|
dofile(homedecor.modpath.."/furniture_recipes.lua")
|
2013-03-26 12:05:22 +01:00
|
|
|
|
2013-10-09 18:47:22 +02:00
|
|
|
dofile(homedecor.modpath.."/locked.lua")
|
2013-07-12 22:41:11 +02:00
|
|
|
|
2013-03-05 08:18:56 +01:00
|
|
|
print("[HomeDecor] "..S("Loaded!"))
|