Fix retail translation frame when Quest has Model preview
This commit is contained in:
parent
4b6bac21a0
commit
4e03a1f31a
3 changed files with 30 additions and 27 deletions
|
@ -97,24 +97,14 @@ function CzechQuestsAddon:ShowQuestTranslation(event)
|
||||||
if QuestMapDetailsScrollFrame:IsShown() then
|
if QuestMapDetailsScrollFrame:IsShown() then
|
||||||
-- get quest ID
|
-- get quest ID
|
||||||
local questId = C_QuestLog.GetSelectedQuest()
|
local questId = C_QuestLog.GetSelectedQuest()
|
||||||
|
|
||||||
-- detect if quest frame does not include npc preview
|
-- detect if quest frame does not include npc preview
|
||||||
local hasObjective = false;
|
local hasModel = QuestModelScene:IsShown()
|
||||||
if C_QuestLog.GetQuestObjectives then
|
|
||||||
local objectives = C_QuestLog.GetQuestObjectives(questId)
|
|
||||||
if objectives then
|
|
||||||
for _, __ in ipairs(objectives) do
|
|
||||||
hasObjective = true;
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- show translation frame
|
-- show translation frame
|
||||||
local questData = CzechQuestsAddon:GetData("quest", questId)
|
local questData = CzechQuestsAddon:GetData("quest", questId)
|
||||||
if questData then
|
if questData then
|
||||||
local suffix = CzechQuestsAddon.options.DEBUG_MODE and " (" .. questId .. ")" or ""
|
local suffix = CzechQuestsAddon.options.DEBUG_MODE and " (" .. questId .. ")" or ""
|
||||||
local questTitle = questData.title .. suffix
|
local questTitle = questData.title .. suffix
|
||||||
local xOffset = hasObjective and 210 or 0
|
local xOffset = hasModel and 210 or 0
|
||||||
CzechQuestsAddon:ShowTranslationFrame(
|
CzechQuestsAddon:ShowTranslationFrame(
|
||||||
questTitle,
|
questTitle,
|
||||||
questData.objective,
|
questData.objective,
|
||||||
|
@ -135,18 +125,8 @@ function CzechQuestsAddon:ShowQuestTranslation(event)
|
||||||
if QuestFrame:IsShown() then
|
if QuestFrame:IsShown() then
|
||||||
-- get quest ID
|
-- get quest ID
|
||||||
local questId = GetQuestID()
|
local questId = GetQuestID()
|
||||||
|
|
||||||
-- detect if quest frame does not include npc preview
|
-- detect if quest frame does not include npc preview
|
||||||
local hasObjective = false;
|
local hasModel = QuestModelScene and QuestModelScene:IsShown() or 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
|
|
||||||
|
|
||||||
-- show translation frame
|
-- show translation frame
|
||||||
if questId then
|
if questId then
|
||||||
local questData = CzechQuestsAddon:GetData("quest", questId)
|
local questData = CzechQuestsAddon:GetData("quest", questId)
|
||||||
|
@ -154,7 +134,7 @@ function CzechQuestsAddon:ShowQuestTranslation(event)
|
||||||
CzechQuestsAddon.translationFrame:Show()
|
CzechQuestsAddon.translationFrame:Show()
|
||||||
local suffix = CzechQuestsAddon.options.DEBUG_MODE and " (" .. questId .. ")" or ""
|
local suffix = CzechQuestsAddon.options.DEBUG_MODE and " (" .. questId .. ")" or ""
|
||||||
local questTitle = questData.title .. suffix
|
local questTitle = questData.title .. suffix
|
||||||
local xOffset = hasObjective and 210 or 0
|
local xOffset = hasModel and 210 or 0
|
||||||
if event == "QUEST_PROGRESS" then
|
if event == "QUEST_PROGRESS" then
|
||||||
CzechQuestsAddon:ShowTranslationFrame(
|
CzechQuestsAddon:ShowTranslationFrame(
|
||||||
questTitle,
|
questTitle,
|
||||||
|
|
|
@ -79,4 +79,28 @@ function CzechQuestsAddon:replacePlaceholders(text)
|
||||||
formatted = string.gsub(formatted, '<rP3>', race.p3);
|
formatted = string.gsub(formatted, '<rP3>', race.p3);
|
||||||
|
|
||||||
return formatted
|
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
|
end
|
5
sync.sh
5
sync.sh
|
@ -3,8 +3,8 @@
|
||||||
src_folder="."
|
src_folder="."
|
||||||
|
|
||||||
# RETAIL
|
# RETAIL
|
||||||
wow_folder="beta"
|
#wow_folder="beta"
|
||||||
#wow_folder="classic_era"
|
wow_folder="classic_era"
|
||||||
|
|
||||||
# CLASSIC ERA
|
# CLASSIC ERA
|
||||||
dest_folder="/Applications/World of Warcraft/_${wow_folder}_/Interface/AddOns/CzechQuests"
|
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/"
|
rsync -au --delete "$src_folder/Quests/Data/$wow_folder/" "$dest_folder/Quests/Data/"
|
||||||
cp "$src_folder/Quests/Data/other.lua" "$dest_folder/Quests/Data/"
|
cp "$src_folder/Quests/Data/other.lua" "$dest_folder/Quests/Data/"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue