diff --git a/init.lua b/init.lua index 51ccc34..ee18e10 100755 --- a/init.lua +++ b/init.lua @@ -31,12 +31,13 @@ local NS = minetest.get_translator('drawers') drawers = {} drawers.drawer_visuals = {} +drawers.mcl_loaded = core.get_modpath("mcl_core") and mcl_core drawers.WOOD_ITEMSTRING = "group:wood" if core.get_modpath("default") and default then drawers.WOOD_SOUNDS = default.node_sound_wood_defaults() drawers.CHEST_ITEMSTRING = "default:chest" -elseif core.get_modpath("mcl_core") and mcl_core then -- MineClone 2 +elseif drawers.mcl_loaded then -- MineClone 2 drawers.CHEST_ITEMSTRING = "mcl_chests:chest" if core.get_modpath("mcl_sounds") and mcl_sounds then drawers.WOOD_SOUNDS = mcl_sounds.node_sound_wood_defaults() @@ -58,9 +59,16 @@ drawers.CONTROLLER_RANGE = 14 drawers.gui_bg = "bgcolor[#080808BB;true]" drawers.gui_slots = "listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]" -drawers.inventory_list = "list[current_player;main;0.5,2.5;8,4;]" -if (core.get_modpath("mcl_core")) and mcl_core then -- MCL2 - drawers.inventory_list = "list[current_player;main;0,2.5;9,4;]" +function drawers.inventory_list(posy) + local hotbar_row_posy = posy + 1.25 + local inventory_list= "list[current_player;main;0.5,"..posy..";8,1;]" .. + "list[current_player;main;0.5,"..hotbar_row_posy..";8,3;8]" + if drawers.mcl_loaded then -- MCL2 + hotbar_row_posy = posy + 3.25 + inventory_list = "list[current_player;main;0,"..posy..";9,3;9]" .. + "list[current_player;main;0,"..hotbar_row_posy..";9,1;]" + end + return inventory_list end -- @@ -143,7 +151,7 @@ if core.get_modpath("default") and default then drawer_stack_max_factor = 32, -- 4 * 8 normal chest size material = "default:pine_wood" }) -elseif core.get_modpath("mcl_core") and mcl_core then +elseif drawers.mcl_loaded then drawers.register_drawer("drawers:oakwood", { description = S("Oak Wood"), tiles1 = drawers.node_tiles_front_other("drawers_oak_wood_front_1.png", @@ -288,7 +296,7 @@ if core.get_modpath("default") and default then groups = {drawer_upgrade = 700}, recipe_item = "default:diamond" }) -elseif core.get_modpath("mcl_core") and mcl_core then +elseif drawers.mcl_loaded then drawers.register_drawer_upgrade("drawers:upgrade_iron", { description = S("Iron Drawer Upgrade (x2)"), inventory_image = "drawers_upgrade_iron.png", @@ -338,7 +346,7 @@ end -- Register drawer trim -- -if core.get_modpath("mcl_core") and mcl_core then +if drawers.mcl_loaded then core.register_node("drawers:trim", { description = S("Wooden Trim"), tiles = {"drawers_trim.png"}, diff --git a/lua/api.lua b/lua/api.lua index 0f9efec..2360e0d 100755 --- a/lua/api.lua +++ b/lua/api.lua @@ -37,7 +37,7 @@ drawers.node_box_simple = { drawers.drawer_formspec = "size[9,6.7]" .. "list[context;upgrades;2,0.5;5,1;]" .. - drawers.inventory_list .. + drawers.inventory_list(2.5) .. "listring[context;upgrades]" .. "listring[current_player;main]" .. drawers.gui_bg .. diff --git a/lua/controller.lua b/lua/controller.lua index 9d2b9cb..7cdb0ad 100644 --- a/lua/controller.lua +++ b/lua/controller.lua @@ -42,20 +42,18 @@ continue scanning drawers. ]]-- local S = minetest.get_translator('drawers') local default_loaded = core.get_modpath("default") and default -local mcl_loaded = core.get_modpath("mcl_core") and mcl_core local pipeworks_loaded = core.get_modpath("pipeworks") and pipeworks local digilines_loaded = core.get_modpath("digilines") and digilines local techage_loaded = core.get_modpath("techage") and techage local function controller_formspec(pos) local formspec = - "size[8,8.5]".. + "size[9,8.5]".. drawers.gui_bg.. drawers.gui_slots.. "label[0,0;" .. S("Drawer Controller") .. "]" .. - "list[current_name;src;3.5,1.75;1,1;]".. - "list[current_player;main;0,4.25;8,1;]".. - "list[current_player;main;0,5.5;8,3;8]".. + "list[current_name;src;4,1.75;1,1;]".. + drawers.inventory_list(4.25) .. "listring[current_player;main]".. "listring[current_name;src]".. "listring[current_player;main]" @@ -445,7 +443,7 @@ local function register_controller() end -- MCL2 requires a few different groups and parameters that MTG does not - if mcl_loaded then + if drawers.mcl_loaded then def.groups = { pickaxey = 1, stone = 1, building_block = 1, material_stone = 1 } @@ -520,7 +518,7 @@ if default_loaded then {'default:steel_ingot', 'default:diamond', 'default:steel_ingot'}, } }) -elseif mcl_loaded then +elseif drawers.mcl_loaded then core.register_craft({ output = 'drawers:controller', recipe = {