2018-12-20 02:51:30 +01:00
|
|
|
print("Hello from Lua!")
|
|
|
|
|
2019-01-07 03:55:37 +01:00
|
|
|
-- FIXME
|
2019-01-07 02:39:39 +01:00
|
|
|
SCREEN_WIDTH = 1600
|
|
|
|
SCREEN_HEIGHT = 1050
|
|
|
|
GUI_SCALE = 3
|
|
|
|
|
2019-01-04 18:05:35 +01:00
|
|
|
mod = LuaMod.new("default")
|
|
|
|
|
2020-01-30 21:53:28 +09:00
|
|
|
dofile("mods/default/blocks.lua")
|
|
|
|
dofile("mods/default/items.lua")
|
|
|
|
dofile("mods/default/recipes.lua")
|
2018-12-20 02:51:30 +01:00
|
|
|
|
2020-02-03 18:53:36 +09:00
|
|
|
openminer:world():terrain_generator():set_blocks({
|
|
|
|
dirt = "default:dirt",
|
|
|
|
grass = "default:grass",
|
|
|
|
stone = "default:stone",
|
|
|
|
log = "default:wood",
|
|
|
|
leaves = "default:leaves",
|
|
|
|
flower = "default:flower",
|
|
|
|
water = "default:water",
|
|
|
|
sand = "default:sand"
|
|
|
|
})
|
|
|
|
|
2019-04-07 18:20:15 +02:00
|
|
|
function init(player)
|
|
|
|
local player_inv = player:inventory()
|
2018-12-28 21:23:26 +01:00
|
|
|
|
2019-01-07 04:56:42 +01:00
|
|
|
player_inv:add_stack("default:workbench", 1);
|
|
|
|
player_inv:add_stack("default:dirt", 64);
|
|
|
|
player_inv:add_stack("default:grass", 64);
|
|
|
|
player_inv:add_stack("default:stone", 64);
|
|
|
|
player_inv:add_stack("default:glass", 64);
|
|
|
|
player_inv:add_stack("default:glowstone", 64);
|
|
|
|
player_inv:add_stack("default:furnace", 1);
|
2020-01-30 15:31:49 +09:00
|
|
|
player_inv:add_stack("default:stone_pickaxe", 1);
|
2020-02-03 19:01:11 +09:00
|
|
|
player_inv:add_stack("default:stone_axe", 1);
|
2019-01-07 04:56:42 +01:00
|
|
|
|
|
|
|
player_inv:add_stack("default:wood", 64);
|
|
|
|
player_inv:add_stack("default:planks", 64);
|
|
|
|
player_inv:add_stack("default:cobblestone", 64);
|
|
|
|
player_inv:add_stack("default:stick", 64);
|
2020-01-30 15:31:49 +09:00
|
|
|
player_inv:add_stack("default:stone_hoe", 1);
|
|
|
|
player_inv:add_stack("default:stone_shovel", 1);
|
|
|
|
player_inv:add_stack("default:iron_ore", 64);
|
2019-01-07 04:56:42 +01:00
|
|
|
player_inv:add_stack("default:coal", 64);
|
2018-12-20 02:51:30 +01:00
|
|
|
end
|
|
|
|
|
2020-02-08 02:48:39 +09:00
|
|
|
function show_inventory(client)
|
|
|
|
local gui = LuaGUI.new()
|
|
|
|
|
|
|
|
-- FIXME: Replace this by gui:set_size() and gui:set_centered()
|
|
|
|
local gui_pos = {
|
|
|
|
x = SCREEN_WIDTH / GUI_SCALE / 2.0 - 176 / 2.0,
|
|
|
|
y = SCREEN_HEIGHT / GUI_SCALE / 2.0 - 166 / 2.0
|
|
|
|
}
|
|
|
|
|
|
|
|
gui:player_inventory {
|
|
|
|
name = "inventory",
|
|
|
|
pos = gui_pos,
|
|
|
|
}
|
|
|
|
|
|
|
|
gui:show(client)
|
|
|
|
end
|
|
|
|
|