forked from VoxeLibre/VoxeLibre
Crafting table formspec redo
This commit is contained in:
parent
842363464d
commit
e5ee0c4afc
|
@ -1,34 +1,51 @@
|
||||||
|
---@diagnostic disable lowercase-global
|
||||||
|
|
||||||
local S = minetest.get_translator(minetest.get_current_modname())
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
local formspec_escape = minetest.formspec_escape
|
local F = minetest.formspec_escape
|
||||||
local show_formspec = minetest.show_formspec
|
|
||||||
local C = minetest.colorize
|
local C = minetest.colorize
|
||||||
local text_color = "#313131"
|
local show_formspec = minetest.show_formspec
|
||||||
local itemslot_bg = mcl_formspec.get_itemslot_bg
|
|
||||||
|
|
||||||
mcl_crafting_table = {}
|
mcl_crafting_table = {}
|
||||||
|
|
||||||
function mcl_crafting_table.show_crafting_form(player)
|
mcl_crafting_table.formspec = table.concat({
|
||||||
player:get_inventory():set_width("craft", 3)
|
"formspec_version[4]",
|
||||||
player:get_inventory():set_size("craft", 9)
|
"size[11.75,10.425]",
|
||||||
|
|
||||||
show_formspec(player:get_player_name(), "main",
|
"label[2.25,0.375;" .. F(C(mcl_formspec.label_color, S("Crafting"))) .. "]",
|
||||||
"size[9,8.75]"..
|
|
||||||
"image[4.7,1.5;1.5,1;gui_crafting_arrow.png]"..
|
mcl_formspec.get_itemslot_bg_v4(2.25, 0.75, 3, 3),
|
||||||
"label[0,4;"..formspec_escape(C(text_color, S("Inventory"))).."]"..
|
"list[current_player;craft;2.25,0.75;3,3;]",
|
||||||
"list[current_player;main;0,4.5;9,3;9]"..
|
|
||||||
itemslot_bg(0,4.5,9,3)..
|
"image[6.125,2;1.5,1;gui_crafting_arrow.png]",
|
||||||
"list[current_player;main;0,7.74;9,1;]"..
|
|
||||||
itemslot_bg(0,7.74,9,1)..
|
mcl_formspec.get_itemslot_bg_v4(8.2, 2, 1, 1, 0.2),
|
||||||
"label[1.75,0;"..formspec_escape(C(text_color, S("Crafting"))).."]"..
|
"list[current_player;craftpreview;8.2,2;1,1;]",
|
||||||
"list[current_player;craft;1.75,0.5;3,3;]"..
|
|
||||||
itemslot_bg(1.75,0.5,3,3)..
|
"label[0.375,4.7;" .. F(C(mcl_formspec.label_color, S("Inventory"))) .. "]",
|
||||||
"list[current_player;craftpreview;6.1,1.5;1,1;]"..
|
|
||||||
itemslot_bg(6.1,1.5,1,1)..
|
mcl_formspec.get_itemslot_bg_v4(0.375, 5.1, 9, 3),
|
||||||
"image_button[0.75,1.5;1,1;craftguide_book.png;__mcl_craftguide;]"..
|
"list[current_player;main;0.375,5.1;9,3;9]",
|
||||||
"tooltip[__mcl_craftguide;"..formspec_escape(S("Recipe book")).."]"..
|
|
||||||
"listring[current_player;main]"..
|
mcl_formspec.get_itemslot_bg_v4(0.375, 9.05, 9, 1),
|
||||||
"listring[current_player;craft]"
|
"list[current_player;main;0.375,9.05;9,1;]",
|
||||||
)
|
|
||||||
|
"listring[current_player;craft]",
|
||||||
|
"listring[current_player;main]",
|
||||||
|
|
||||||
|
--Crafting guide button
|
||||||
|
"image_button[0.325,1.95;1.1,1.1;craftguide_book.png;__mcl_craftguide;]",
|
||||||
|
"tooltip[__mcl_craftguide;" .. F(S("Recipe book")) .. "]",
|
||||||
|
})
|
||||||
|
|
||||||
|
---@param player ObjectRef
|
||||||
|
function mcl_crafting_table.show_crafting_form(player)
|
||||||
|
local inv = player:get_inventory()
|
||||||
|
if inv then
|
||||||
|
inv:set_width("craft", 3)
|
||||||
|
inv:set_size("craft", 9)
|
||||||
|
end
|
||||||
|
|
||||||
|
show_formspec(player:get_player_name(), "main", mcl_crafting_table.formspec)
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_node("mcl_crafting_table:crafting_table", {
|
minetest.register_node("mcl_crafting_table:crafting_table", {
|
||||||
|
@ -57,7 +74,7 @@ minetest.register_craft({
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "group:wood", "group:wood" },
|
{ "group:wood", "group:wood" },
|
||||||
{ "group:wood", "group:wood" }
|
{ "group:wood", "group:wood" }
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
Loading…
Reference in New Issue