2013-05-18 16:05:16 +02:00
|
|
|
-- Minetest 0.4 mod: default
|
|
|
|
-- See README.txt for licensing and other information.
|
|
|
|
|
2014-12-07 15:17:09 +01:00
|
|
|
-- The API documentation in here was moved into game_api.txt
|
2013-05-18 16:05:16 +02:00
|
|
|
|
|
|
|
-- Definitions made by this mod that other mods can use too
|
|
|
|
default = {}
|
|
|
|
|
2014-12-07 15:17:09 +01:00
|
|
|
default.LIGHT_MAX = 14
|
|
|
|
|
2014-04-14 22:09:18 +02:00
|
|
|
-- GUI related stuff
|
2018-03-28 18:28:26 +01:00
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
player:set_formspec_prepend([[
|
2019-02-07 13:17:18 +01:00
|
|
|
bgcolor[#080808CC;true]
|
2018-03-28 18:28:26 +01:00
|
|
|
background[5,5;1,1;gui_formbg.png;true]
|
2019-02-07 13:17:18 +01:00
|
|
|
listcolors[#79777639;#8EACE542;#141318;#8EACE599;#8EACE521] ]])
|
2018-03-28 18:28:26 +01:00
|
|
|
end)
|
2014-04-14 22:09:18 +02:00
|
|
|
|
|
|
|
function default.get_hotbar_bg(x,y)
|
|
|
|
local out = ""
|
|
|
|
for i=0,7,1 do
|
|
|
|
out = out .."image["..x+i..","..y..";1,1;gui_hb_bg.png]"
|
|
|
|
end
|
|
|
|
return out
|
|
|
|
end
|
|
|
|
|
2014-12-24 23:13:15 +00:00
|
|
|
default.gui_survival_form = "size[8,8.5]"..
|
2014-04-14 22:09:18 +02:00
|
|
|
"list[current_player;main;0,4.25;8,1;]"..
|
|
|
|
"list[current_player;main;0,5.5;8,3;8]"..
|
|
|
|
"list[current_player;craft;1.75,0.5;3,3;]"..
|
|
|
|
"list[current_player;craftpreview;5.75,1.5;1,1;]"..
|
|
|
|
"image[4.75,1.5;1,1;gui_furnace_arrow_bg.png^[transformR270]"..
|
2015-06-16 16:26:22 +01:00
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[current_player;craft]"..
|
2014-04-14 22:09:18 +02:00
|
|
|
default.get_hotbar_bg(0,4.25)
|
|
|
|
|
2013-05-19 18:43:04 +02:00
|
|
|
-- Load files
|
2016-08-27 18:28:02 -04:00
|
|
|
local default_path = minetest.get_modpath("default")
|
|
|
|
|
|
|
|
dofile(default_path.."/functions.lua")
|
|
|
|
dofile(default_path.."/trees.lua")
|
|
|
|
dofile(default_path.."/nodes.lua")
|
2018-07-10 23:02:22 +01:00
|
|
|
dofile(default_path.."/chests.lua")
|
2016-08-27 18:28:02 -04:00
|
|
|
dofile(default_path.."/furnace.lua")
|
2016-10-11 21:05:10 -07:00
|
|
|
dofile(default_path.."/torch.lua")
|
2016-08-27 18:28:02 -04:00
|
|
|
dofile(default_path.."/tools.lua")
|
2016-09-11 17:24:02 +02:00
|
|
|
dofile(default_path.."/item_entity.lua")
|
2016-08-27 18:28:02 -04:00
|
|
|
dofile(default_path.."/craftitems.lua")
|
|
|
|
dofile(default_path.."/crafting.lua")
|
|
|
|
dofile(default_path.."/mapgen.lua")
|
|
|
|
dofile(default_path.."/aliases.lua")
|
|
|
|
dofile(default_path.."/legacy.lua")
|