Added some descriptions to the oven operation

This commit is contained in:
ZioPao
2023-11-11 04:15:25 +01:00
parent e8269899b0
commit 78942d2e78
4 changed files with 37 additions and 12 deletions

View File

@@ -20,33 +20,54 @@ local function Cauterize(limbName)
end
---comment
---@param playerNum any
---@param context ISContextMenu
---@param worldObjects any
---@param test any
local function AddOvenContextMenu(playerNum, context, worldObjects, test)
local pl = getSpecificPlayer(playerNum)
if not ModDataHandler.GetInstance():getIsAnyLimbCut() then return end
local amputatedLimbs = PlayerHandler.GetAmputatedLimbs()
local foundStove = false
local stoveObj = nil
for _, obj in pairs(worldObjects) do
if instanceof(obj, "IsoStove") and obj:getCurrentTemperature() > 250 then
foundStove = true
if instanceof(obj, "IsoStove") then
stoveObj = obj
break
end
end
if stoveObj == nil then return end
if foundStove == false then return end
local option = context:addOption(getText("ContextMenu_Cauterize"), nil)
local subMenu = context:getNew(context)
context:addSubMenu(option, subMenu)
if pl:HasTrait("Brave") or pl:getPerkLevel(Perks.Strength) > 5 then
--if pl:HasTrait("Brave") or pl:getPerkLevel(Perks.Strength) > 5 then
local isTempLow = stoveObj:getCurrentTemperature() < 250
local tempTooltip = ISToolTip:new()
tempTooltip:initialise()
tempTooltip:setName("ContextMenu_Cauterize_TempTooLow_tooltip")
tempTooltip.description = getText("Tooltip_Surgery_TempTooLow")
tempTooltip:setVisible(false)
local optionMain = context:addOption(getText("ContextMenu_Cauterize"), nil)
local subMenu = context:getNew(context)
--subMenu.toolTip = tempTooltip
-- if isTempLow then
-- print("TOC: show tooltip")
-- subMenu:showTooltip(subMenu) -- Thank you TIS for this awful overriding you did
-- end
context:addSubMenu(optionMain, subMenu)
for i=1, #amputatedLimbs do
local limbName = amputatedLimbs[i]
subMenu:addOption(getText("ContextMenu_Limb_" .. limbName), limbName, Cauterize)
local option = subMenu:addOption(getText("ContextMenu_Limb_" .. limbName), limbName, Cauterize)
option.notAvailable = isTempLow
if isTempLow then
option.toolTip = tempTooltip
end
end
end
--end
end