Fix retail translation frame when Quest has Model preview

This commit is contained in:
Roman Jaroš 2024-08-21 12:33:41 +02:00
parent 4b6bac21a0
commit 4e03a1f31a
3 changed files with 30 additions and 27 deletions

View file

@ -97,24 +97,14 @@ function CzechQuestsAddon:ShowQuestTranslation(event)
if QuestMapDetailsScrollFrame:IsShown() then
-- get quest ID
local questId = C_QuestLog.GetSelectedQuest()
-- detect if quest frame does not include npc preview
local hasObjective = false;
if C_QuestLog.GetQuestObjectives then
local objectives = C_QuestLog.GetQuestObjectives(questId)
if objectives then
for _, __ in ipairs(objectives) do
hasObjective = true;
end
end
end
local hasModel = QuestModelScene:IsShown()
-- show translation frame
local questData = CzechQuestsAddon:GetData("quest", questId)
if questData then
local suffix = CzechQuestsAddon.options.DEBUG_MODE and " (" .. questId .. ")" or ""
local questTitle = questData.title .. suffix
local xOffset = hasObjective and 210 or 0
local xOffset = hasModel and 210 or 0
CzechQuestsAddon:ShowTranslationFrame(
questTitle,
questData.objective,
@ -135,18 +125,8 @@ function CzechQuestsAddon:ShowQuestTranslation(event)
if QuestFrame:IsShown() then
-- get quest ID
local questId = GetQuestID()
-- detect if quest frame does not include npc preview
local hasObjective = false;
if C_QuestLog.GetQuestObjectives then
local objectives = C_QuestLog.GetQuestObjectives(questId)
if objectives then
for _, __ in ipairs(objectives) do
hasObjective = true;
end
end
end
local hasModel = QuestModelScene and QuestModelScene:IsShown() or false
-- show translation frame
if questId then
local questData = CzechQuestsAddon:GetData("quest", questId)
@ -154,7 +134,7 @@ function CzechQuestsAddon:ShowQuestTranslation(event)
CzechQuestsAddon.translationFrame:Show()
local suffix = CzechQuestsAddon.options.DEBUG_MODE and " (" .. questId .. ")" or ""
local questTitle = questData.title .. suffix
local xOffset = hasObjective and 210 or 0
local xOffset = hasModel and 210 or 0
if event == "QUEST_PROGRESS" then
CzechQuestsAddon:ShowTranslationFrame(
questTitle,

View file

@ -80,3 +80,27 @@ function CzechQuestsAddon:replacePlaceholders(text)
return formatted
end
function CzechQuestsAddon:dumpTable(tbl, indent)
-- Initialize indent if not provided
indent = indent or 0
-- Check if the input is actually a table
if type(tbl) ~= "table" then
print(string.rep(" ", indent) .. tostring(tbl))
return
end
-- Iterate through the table and print keys and values
for k, v in pairs(tbl) do
local formatting = string.rep(" ", indent) .. tostring(k) .. ": "
if type(v) == "table" then
print(formatting)
CzechQuestsAddon:dumpTable(v, indent + 1)
elseif type(v) == "boolean" then
print(formatting .. (v and "true" or "false"))
else
print(formatting .. tostring(v))
end
end
end

View file

@ -3,8 +3,8 @@
src_folder="."
# RETAIL
wow_folder="beta"
#wow_folder="classic_era"
#wow_folder="beta"
wow_folder="classic_era"
# CLASSIC ERA
dest_folder="/Applications/World of Warcraft/_${wow_folder}_/Interface/AddOns/CzechQuests"
@ -14,4 +14,3 @@ fswatch -o "$src_folder" | while read -r change; do
rsync -au --delete "$src_folder/Quests/Data/$wow_folder/" "$dest_folder/Quests/Data/"
cp "$src_folder/Quests/Data/other.lua" "$dest_folder/Quests/Data/"
done