2025-03-07 12:52:37 +01:00
|
|
|
local _, addon = ...
|
|
|
|
|
|
|
|
local function GetQuestTitle(title, questId)
|
|
|
|
return title .. (CzechQuestsAddon_Store.config.DEBUG_MODE and " (" .. questId .. ")" or "")
|
|
|
|
end
|
|
|
|
|
|
|
|
local function ShowQuestTranslation(event)
|
|
|
|
local frame = addon.QuestFrame
|
|
|
|
frame:Hide()
|
2025-03-01 21:46:55 +01:00
|
|
|
|
|
|
|
-- Classic Era has QuestLogFrame
|
|
|
|
if QuestLogFrame then
|
2025-03-07 12:52:37 +01:00
|
|
|
if QuestLogFrame:IsVisible() then
|
2025-03-01 21:46:55 +01:00
|
|
|
local questIndex = GetQuestLogSelection()
|
|
|
|
if questIndex > 0 then
|
|
|
|
local questId = select(8, GetQuestLogTitle(questIndex))
|
2025-03-07 12:52:37 +01:00
|
|
|
local data = CzechQuestsAddon:GetData("quest", questId)
|
|
|
|
if data then
|
|
|
|
local title = GetQuestTitle(data.title, questId)
|
2025-03-07 13:57:47 +01:00
|
|
|
frame:SetData(title, data.objective, "Popis", data.description, QuestLogFrame, -20, -20)
|
2025-03-01 21:46:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Retail has QuestMapDetailsScrollFrame
|
|
|
|
if QuestMapDetailsScrollFrame then
|
|
|
|
if QuestMapDetailsScrollFrame:IsVisible() then
|
|
|
|
local questId = C_QuestLog.GetSelectedQuest()
|
|
|
|
local hasModel = QuestModelScene:IsVisible()
|
2025-03-07 12:52:37 +01:00
|
|
|
local data = CzechQuestsAddon:GetData("quest", questId)
|
|
|
|
if data then
|
|
|
|
local yOffset = hasModel and 210 or 50
|
|
|
|
local title = GetQuestTitle(data.title, questId)
|
|
|
|
frame:SetData(title, data.objective, "Popis", data.description, QuestMapFrame, 0, yOffset)
|
2025-03-01 21:46:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- If quest is right from NPC, this work for both wow version
|
|
|
|
if event ~= nil then
|
|
|
|
local questId = GetQuestID()
|
2025-03-07 12:52:37 +01:00
|
|
|
if questId == 0 then
|
|
|
|
return
|
|
|
|
end
|
2025-03-01 21:46:55 +01:00
|
|
|
local hasModel = QuestModelScene and QuestModelScene:IsShown() or false
|
|
|
|
if questId then
|
2025-03-07 12:52:37 +01:00
|
|
|
local data = CzechQuestsAddon:GetData("quest", questId)
|
|
|
|
if data then
|
|
|
|
local title = GetQuestTitle(data.title, questId)
|
|
|
|
local xOffset = hasModel and 210 or 10
|
2025-03-08 21:39:43 +01:00
|
|
|
if (WOW_PROJECT_ID == WOW_PROJECT_CLASSIC) then
|
|
|
|
xOffset = -20
|
|
|
|
end
|
2025-03-01 21:46:55 +01:00
|
|
|
if event == "QUEST_PROGRESS" then
|
2025-03-07 12:52:37 +01:00
|
|
|
frame:SetData(title, data.progress, "", "", QuestFrame, -20, xOffset)
|
2025-03-01 21:46:55 +01:00
|
|
|
elseif event == "QUEST_COMPLETE" then
|
2025-03-07 12:52:37 +01:00
|
|
|
frame:SetData(title, data.completion, "", "", QuestFrame, -20, xOffset)
|
2025-03-01 21:46:55 +01:00
|
|
|
elseif event == "QUEST_DETAIL" then
|
2025-03-07 12:52:37 +01:00
|
|
|
frame:SetData(title, data.description, "Cíl úkolu", data.objective, QuestFrame, -20, xOffset)
|
2025-03-01 21:46:55 +01:00
|
|
|
else
|
2025-03-07 12:52:37 +01:00
|
|
|
frame:Hide()
|
2025-03-01 21:46:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2025-03-07 12:52:37 +01:00
|
|
|
local function ShowQuestItemTranslation()
|
|
|
|
local frame = addon.QuestFrame
|
|
|
|
frame:Hide()
|
2025-03-01 21:46:55 +01:00
|
|
|
|
2025-03-07 12:52:37 +01:00
|
|
|
-- classic and retail has same frame
|
|
|
|
if ItemTextFrame:IsVisible() then
|
2025-03-01 21:46:55 +01:00
|
|
|
local itemName = ItemTextGetItem();
|
2025-03-07 12:52:37 +01:00
|
|
|
local itemNameTranslation = CzechQuestsAddon:GetData("item", itemName)
|
|
|
|
if itemNameTranslation then
|
2025-03-01 21:46:55 +01:00
|
|
|
local pageNum = ItemTextGetPage()
|
2025-03-07 12:52:37 +01:00
|
|
|
local itemPageContentTranslation = CzechQuestsAddon:GetData("item", itemName .. '__' .. pageNum)
|
|
|
|
if itemPageContentTranslation then
|
|
|
|
frame:SetData(
|
|
|
|
itemNameTranslation.title,
|
|
|
|
itemPageContentTranslation.text,
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
ItemTextFrame,
|
|
|
|
-20,
|
|
|
|
0
|
|
|
|
)
|
2025-03-01 21:46:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2025-03-07 12:52:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local function InitQuests()
|
|
|
|
local frame = addon.QuestFrame
|
|
|
|
|
|
|
|
frame:RegisterEvent("PLAYER_LOGIN")
|
|
|
|
frame:RegisterEvent("QUEST_PROGRESS")
|
|
|
|
frame:RegisterEvent("QUEST_COMPLETE")
|
|
|
|
frame:RegisterEvent("QUEST_FINISHED")
|
|
|
|
frame:RegisterEvent("QUEST_DETAIL")
|
|
|
|
frame:RegisterEvent("ITEM_TEXT_READY")
|
|
|
|
frame:RegisterEvent("PLAYER_STARTED_MOVING")
|
|
|
|
frame:RegisterEvent("PLAYER_STOPPED_MOVING")
|
|
|
|
|
|
|
|
frame:SetScript("OnEvent", function(_, event)
|
|
|
|
if not CzechQuestsAddon_Store.config.QUEST_ENABLED then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if event == "PLAYER_LOGIN" then
|
|
|
|
-- classic
|
|
|
|
if QuestLogFrame then
|
2025-03-08 21:39:43 +01:00
|
|
|
QuestLogFrame:SetScript("OnEnter", function()
|
|
|
|
ShowQuestTranslation()
|
|
|
|
end)
|
|
|
|
QuestLogFrame:SetScript("OnLeave", function()
|
|
|
|
frame:Hide()
|
|
|
|
end)
|
2025-03-07 12:52:37 +01:00
|
|
|
end
|
|
|
|
-- retail
|
|
|
|
if QuestMapDetailsScrollFrame then
|
2025-03-08 21:39:43 +01:00
|
|
|
QuestMapDetailsScrollFrame:SetScript("OnEnter", function()
|
|
|
|
ShowQuestTranslation()
|
|
|
|
end)
|
|
|
|
QuestMapDetailsScrollFrame:SetScript("OnLeave", function()
|
|
|
|
frame:Hide()
|
|
|
|
end)
|
2025-03-07 12:52:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
frame:Init()
|
|
|
|
end
|
|
|
|
|
|
|
|
if event == "QUEST_PROGRESS" or event == "QUEST_COMPLETE" or event == "QUEST_DETAIL" or event == "QUEST_FINISHED" then
|
|
|
|
ShowQuestTranslation(event)
|
|
|
|
end
|
|
|
|
|
|
|
|
if (event == "ITEM_TEXT_READY") then
|
|
|
|
ShowQuestItemTranslation()
|
|
|
|
end
|
|
|
|
|
|
|
|
if CzechQuestsAddon_Store.config.QUEST_TEXTURE_ALPHA_ONLY_MOVING then
|
|
|
|
if event == "PLAYER_STARTED_MOVING" then
|
|
|
|
frame.Texture:SetAlpha(CzechQuestsAddon_Store.config.QUEST_TEXTURE_ALPHA / 100)
|
|
|
|
elseif event == "PLAYER_STOPPED_MOVING" then
|
|
|
|
frame.Texture:SetAlpha(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
addon.API.InitQuests = InitQuests
|