Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update controller inventory to be compatible with mcl2 #89

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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

--
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"},
Expand Down
2 changes: 1 addition & 1 deletion lua/api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..
Expand Down
12 changes: 5 additions & 7 deletions lua/controller.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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]"
Expand Down Expand Up @@ -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
}
Expand Down Expand Up @@ -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 = {
Expand Down