2024-08-20 13:09:39 +02:00
|
|
|
function CzechQuestsAddon:ShowTranslationFrame(primaryHeader, primaryText, secondaryHeader, secondaryText, parentFrame, yOffset, xOffset)
|
2024-08-19 13:08:40 +02:00
|
|
|
-- replace placeholders with current values
|
|
|
|
primaryText = CzechQuestsAddon:replacePlaceholders(primaryText);
|
|
|
|
secondaryText = CzechQuestsAddon:replacePlaceholders(secondaryText);
|
|
|
|
|
|
|
|
-- when user change own setting, does not require reload, just apply it
|
|
|
|
CzechQuestsAddon:SetTextureFromSettings(CzechQuestsAddon.translationFrame)
|
|
|
|
|
|
|
|
-- reset all texts
|
|
|
|
CzechQuestsAddon:ResetTranslationText(CzechQuestsAddon.translationFrame)
|
|
|
|
|
|
|
|
-- set text to labels
|
|
|
|
CzechQuestsAddon.translationFrame.primaryHeader:SetText(primaryHeader:upper())
|
|
|
|
CzechQuestsAddon.translationFrame.primaryText:SetText(primaryText)
|
|
|
|
CzechQuestsAddon.translationFrame.secondaryHeader:SetText(secondaryHeader:upper())
|
|
|
|
CzechQuestsAddon.translationFrame.secondaryText:SetText(secondaryText)
|
|
|
|
|
|
|
|
local primaryTextTopMargin = -CzechQuestsAddon.translationFrame.primaryHeader:GetHeight() - 15
|
|
|
|
local secondaryHeaderTopMargin = primaryTextTopMargin - CzechQuestsAddon.translationFrame.primaryText:GetHeight() - 20
|
|
|
|
local secondaryTextTopMargin = secondaryHeaderTopMargin - CzechQuestsAddon.translationFrame.secondaryHeader:GetHeight() - 5
|
|
|
|
|
|
|
|
-- apply gap between headers and texts
|
|
|
|
local gap = 10
|
|
|
|
local function addPadding(text, value)
|
|
|
|
if text ~= "" then
|
|
|
|
gap = gap + value
|
2024-07-07 12:29:29 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
addPadding(primaryHeader, 10)
|
|
|
|
addPadding(primaryText, 5)
|
|
|
|
addPadding(secondaryHeader, 25)
|
|
|
|
addPadding(secondaryText, 5)
|
|
|
|
|
|
|
|
-- apply positions
|
|
|
|
CzechQuestsAddon.translationFrame.primaryHeader:SetPoint("TOPLEFT", 10, -10)
|
|
|
|
CzechQuestsAddon.translationFrame.primaryText:SetPoint("TOPLEFT", 10, primaryTextTopMargin)
|
|
|
|
CzechQuestsAddon.translationFrame.secondaryHeader:SetPoint("TOPLEFT", 10, secondaryHeaderTopMargin)
|
|
|
|
CzechQuestsAddon.translationFrame.secondaryText:SetPoint("TOPLEFT", 10, secondaryTextTopMargin)
|
|
|
|
|
|
|
|
-- apply changes per wow
|
|
|
|
if (WOW_PROJECT_ID == WOW_PROJECT_CLASSIC) then
|
2024-08-20 13:09:39 +02:00
|
|
|
CzechQuestsAddon.translationFrame:SetPoint("TOPLEFT", parentFrame, "TOPRIGHT", -8 + xOffset, yOffset)
|
2024-08-19 13:08:40 +02:00
|
|
|
else
|
2024-08-20 13:09:39 +02:00
|
|
|
CzechQuestsAddon.translationFrame:SetPoint("TOPLEFT", parentFrame, "TOPRIGHT", 8 + xOffset, yOffset)
|
2024-08-13 22:24:45 +02:00
|
|
|
end
|
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
-- calculate height
|
|
|
|
local height = 0;
|
|
|
|
local heights = {
|
|
|
|
CzechQuestsAddon.translationFrame.primaryHeader:GetHeight(),
|
|
|
|
CzechQuestsAddon.translationFrame.primaryText:GetHeight(),
|
|
|
|
CzechQuestsAddon.translationFrame.secondaryHeader:GetHeight(),
|
|
|
|
CzechQuestsAddon.translationFrame.secondaryText:GetHeight(),
|
|
|
|
gap,
|
|
|
|
10
|
|
|
|
}
|
|
|
|
for _, value in ipairs(heights) do
|
|
|
|
height = height + value
|
2024-07-07 12:29:29 +02:00
|
|
|
end
|
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:SetParent(parentFrame)
|
|
|
|
CzechQuestsAddon.translationFrame:SetHeight(height < 200 and 200 or height)
|
2024-07-15 13:37:24 +02:00
|
|
|
end
|
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
function CzechQuestsAddon:ShowQuestTranslation(event)
|
|
|
|
-- Hide frame, may contain old texts
|
|
|
|
CzechQuestsAddon.translationFrame:Hide()
|
|
|
|
|
|
|
|
-- Classic Era has QuestLogFrame
|
|
|
|
if QuestLogFrame then
|
|
|
|
if QuestLogFrame:IsShown() then
|
|
|
|
local questIndex = GetQuestLogSelection()
|
|
|
|
if questIndex > 0 then
|
|
|
|
local questId = select(8, GetQuestLogTitle(questIndex))
|
|
|
|
local questData = CzechQuestsAddon:GetData("quest", questId)
|
|
|
|
if questData then
|
2024-08-25 11:50:46 +02:00
|
|
|
local suffix = CzechQuestsAddon_Store.config.DEBUG_MODE and " (" .. questId .. ")" or ""
|
2024-08-19 13:08:40 +02:00
|
|
|
local questTitle = questData.title .. suffix
|
|
|
|
CzechQuestsAddon:ShowTranslationFrame(
|
|
|
|
questTitle,
|
2024-08-26 09:25:41 +02:00
|
|
|
questData.objective,
|
|
|
|
"Popis",
|
|
|
|
questData.description,
|
|
|
|
QuestLogFrame,
|
|
|
|
-14,
|
|
|
|
0
|
2024-08-19 13:08:40 +02:00
|
|
|
)
|
|
|
|
CzechQuestsAddon.translationFrame:Show()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Retail has QuestMapDetailsScrollFrame
|
|
|
|
if QuestMapDetailsScrollFrame then
|
|
|
|
if QuestMapDetailsScrollFrame:IsShown() then
|
2024-08-20 13:09:39 +02:00
|
|
|
-- get quest ID
|
2024-08-19 13:08:40 +02:00
|
|
|
local questId = C_QuestLog.GetSelectedQuest()
|
2024-08-20 13:09:39 +02:00
|
|
|
-- detect if quest frame does not include npc preview
|
2024-08-21 12:33:41 +02:00
|
|
|
local hasModel = QuestModelScene:IsShown()
|
2024-08-20 13:09:39 +02:00
|
|
|
-- show translation frame
|
2024-08-19 13:08:40 +02:00
|
|
|
local questData = CzechQuestsAddon:GetData("quest", questId)
|
|
|
|
if questData then
|
2024-08-25 11:50:46 +02:00
|
|
|
local suffix = CzechQuestsAddon_Store.config.DEBUG_MODE and " (" .. questId .. ")" or ""
|
2024-08-19 13:08:40 +02:00
|
|
|
local questTitle = questData.title .. suffix
|
2024-08-21 12:33:41 +02:00
|
|
|
local xOffset = hasModel and 210 or 0
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon:ShowTranslationFrame(
|
2024-08-26 09:25:41 +02:00
|
|
|
questTitle,
|
|
|
|
questData.objective,
|
|
|
|
"Popis",
|
|
|
|
questData.description,
|
|
|
|
QuestMapFrame,
|
|
|
|
0,
|
|
|
|
xOffset
|
2024-07-07 12:29:29 +02:00
|
|
|
)
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:Show()
|
2024-07-07 12:29:29 +02:00
|
|
|
else
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:Hide()
|
2024-07-07 12:29:29 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
-- If quest is right from NPC, this work for both wow version
|
2024-07-08 01:16:53 +02:00
|
|
|
if QuestFrame:IsShown() then
|
2024-08-20 13:09:39 +02:00
|
|
|
-- get quest ID
|
2024-08-19 13:08:40 +02:00
|
|
|
local questId = GetQuestID()
|
2024-08-20 13:09:39 +02:00
|
|
|
-- detect if quest frame does not include npc preview
|
2024-08-21 12:33:41 +02:00
|
|
|
local hasModel = QuestModelScene and QuestModelScene:IsShown() or false
|
2024-08-20 13:09:39 +02:00
|
|
|
-- show translation frame
|
2024-07-07 12:29:29 +02:00
|
|
|
if questId then
|
2024-08-19 13:08:40 +02:00
|
|
|
local questData = CzechQuestsAddon:GetData("quest", questId)
|
2024-07-07 12:29:29 +02:00
|
|
|
if questData then
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:Show()
|
2024-08-25 11:50:46 +02:00
|
|
|
local suffix = CzechQuestsAddon_Store.config.DEBUG_MODE and " (" .. questId .. ")" or ""
|
2024-08-19 13:08:40 +02:00
|
|
|
local questTitle = questData.title .. suffix
|
2024-08-21 12:33:41 +02:00
|
|
|
local xOffset = hasModel and 210 or 0
|
2024-08-19 13:08:40 +02:00
|
|
|
if event == "QUEST_PROGRESS" then
|
|
|
|
CzechQuestsAddon:ShowTranslationFrame(
|
2024-08-26 09:25:41 +02:00
|
|
|
questTitle,
|
|
|
|
questData.progress,
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
QuestFrame,
|
|
|
|
-20,
|
|
|
|
xOffset
|
2024-07-07 12:29:29 +02:00
|
|
|
)
|
2024-08-19 13:08:40 +02:00
|
|
|
elseif event == "QUEST_COMPLETE" then
|
|
|
|
CzechQuestsAddon:ShowTranslationFrame(
|
2024-08-26 09:25:41 +02:00
|
|
|
questTitle,
|
|
|
|
questData.completion,
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
QuestFrame,
|
|
|
|
-20,
|
|
|
|
xOffset
|
2024-07-07 12:29:29 +02:00
|
|
|
)
|
2024-08-19 13:08:40 +02:00
|
|
|
elseif event == "QUEST_DETAIL" then
|
|
|
|
CzechQuestsAddon:ShowTranslationFrame(
|
2024-08-26 09:25:41 +02:00
|
|
|
questTitle,
|
|
|
|
questData.description,
|
|
|
|
"Cíl úkolu",
|
|
|
|
questData.objective,
|
|
|
|
QuestFrame,
|
|
|
|
-20,
|
|
|
|
xOffset
|
2024-07-07 12:29:29 +02:00
|
|
|
)
|
2024-08-19 13:08:40 +02:00
|
|
|
else
|
|
|
|
CzechQuestsAddon.translationFrame:Hide()
|
2024-07-07 12:29:29 +02:00
|
|
|
end
|
|
|
|
else
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:Hide()
|
2024-07-07 12:29:29 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2024-08-19 13:08:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function CzechQuestsAddon:ShowQuestItemTranslation()
|
|
|
|
-- Hide frame, may contain old texts
|
|
|
|
CzechQuestsAddon.translationFrame:Hide()
|
2024-07-07 12:29:29 +02:00
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
-- should work for both wow version
|
2024-07-15 13:37:24 +02:00
|
|
|
if ItemTextFrame:IsShown() then
|
2024-08-26 09:25:41 +02:00
|
|
|
local item = {}
|
|
|
|
local itemName = ItemTextGetItem();
|
|
|
|
local titlePage = CzechQuestsAddon:GetData("item", itemName)
|
|
|
|
item.name = titlePage.titleMale;
|
|
|
|
local pageNum = ItemTextGetPage()
|
|
|
|
local contentPage = CzechQuestsAddon:GetData("item", itemName..'__'..pageNum)
|
|
|
|
item.content = contentPage.descriptionMale
|
|
|
|
if item.name ~= nil and item.content ~= nil then
|
2024-08-24 19:46:31 +02:00
|
|
|
CzechQuestsAddon:ShowTranslationFrame(
|
2024-08-26 09:25:41 +02:00
|
|
|
item.name,
|
|
|
|
item.content,
|
2024-08-24 19:46:31 +02:00
|
|
|
"",
|
|
|
|
"",
|
|
|
|
ItemTextFrame,
|
|
|
|
-20,
|
|
|
|
0
|
|
|
|
)
|
|
|
|
end
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:Show()
|
2024-07-15 13:37:24 +02:00
|
|
|
end
|
2024-07-07 12:29:29 +02:00
|
|
|
end
|
|
|
|
|
2024-08-19 13:08:40 +02:00
|
|
|
-- Hover is enabled only for QuestLogFrame and QuestMapDetailsScrollFrame
|
|
|
|
local function SetHoverScripts(frame)
|
2024-07-15 13:37:24 +02:00
|
|
|
local frameName = frame:GetName()
|
|
|
|
|
|
|
|
if not string.find(frameName, "QuestLogItem") and not string.find(frameName, "QuestProgressItem") then
|
|
|
|
frame:SetScript("OnEnter", function()
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon:ShowQuestTranslation()
|
2024-07-15 13:37:24 +02:00
|
|
|
end)
|
2024-07-07 12:29:29 +02:00
|
|
|
|
2024-07-15 13:37:24 +02:00
|
|
|
frame:SetScript("OnLeave", function()
|
2024-08-19 13:08:40 +02:00
|
|
|
CzechQuestsAddon.translationFrame:Hide()
|
2024-07-15 13:37:24 +02:00
|
|
|
end)
|
2024-08-19 13:08:40 +02:00
|
|
|
end
|
|
|
|
end
|
2024-07-15 13:37:24 +02:00
|
|
|
|
2024-08-25 11:50:46 +02:00
|
|
|
function CzechQuestsAddon:InitializeTranslations()
|
|
|
|
-- create translation frame
|
|
|
|
CzechQuestsAddon.translationFrame = CzechQuestsAddon:CreateTranslationFrame()
|
|
|
|
|
|
|
|
-- Register events with the main frame
|
|
|
|
CzechQuestsAddon.translationFrame:RegisterEvent("PLAYER_LOGIN")
|
|
|
|
CzechQuestsAddon.translationFrame:RegisterEvent("QUEST_PROGRESS")
|
|
|
|
CzechQuestsAddon.translationFrame:RegisterEvent("QUEST_COMPLETE")
|
|
|
|
CzechQuestsAddon.translationFrame:RegisterEvent("QUEST_FINISHED")
|
|
|
|
CzechQuestsAddon.translationFrame:RegisterEvent("QUEST_DETAIL")
|
|
|
|
CzechQuestsAddon.translationFrame:RegisterEvent("ITEM_TEXT_READY")
|
|
|
|
|
|
|
|
-- Preparation for eventually show translation when hover quest in quest tracker for retail
|
|
|
|
--if (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE) then
|
|
|
|
-- _G.EventRegistry:RegisterCallback("OnQuestBlockHeader.OnEnter", function(sender, self, questID, isGroup)
|
|
|
|
-- print(questID)
|
|
|
|
-- end)
|
|
|
|
--end
|
|
|
|
|
|
|
|
-- Define event handler for the main frame
|
|
|
|
CzechQuestsAddon.translationFrame:SetScript("OnEvent", function(self, event, ...)
|
|
|
|
if event == "PLAYER_LOGIN" then
|
|
|
|
-- classic
|
|
|
|
if QuestLogFrame then
|
|
|
|
SetHoverScripts(QuestLogFrame)
|
|
|
|
end
|
|
|
|
-- retail
|
|
|
|
if QuestMapDetailsScrollFrame then
|
|
|
|
SetHoverScripts(QuestMapDetailsScrollFrame)
|
|
|
|
end
|
2024-07-15 13:37:24 +02:00
|
|
|
end
|
2024-07-07 12:29:29 +02:00
|
|
|
|
2024-08-25 11:50:46 +02:00
|
|
|
if event == "QUEST_PROGRESS" or event == "QUEST_COMPLETE" or event == "QUEST_DETAIL" or event == "QUEST_FINISHED" then
|
|
|
|
CzechQuestsAddon:ShowQuestTranslation(event)
|
|
|
|
end
|
2024-08-19 13:08:40 +02:00
|
|
|
|
2024-08-25 11:50:46 +02:00
|
|
|
if (event == "ITEM_TEXT_READY") then
|
|
|
|
CzechQuestsAddon:ShowQuestItemTranslation()
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|