v9.7.2: Ebonhold Database integration and core logic refinements

This commit is contained in:
Xurkon
2026-02-14 21:13:44 -06:00
parent 0a2cc15641
commit 6ef85d4e2d
573 changed files with 1751730 additions and 2 deletions
+248
View File
@@ -0,0 +1,248 @@
local band = bit.band
-------------------------
--Import modules.
-------------------------
---@type QuestieOptionsDefaults
local QuestieOptionsDefaults = QuestieLoader:ImportModule("QuestieOptionsDefaults")
---@type QuestieEventHandler
local QuestieEventHandler = QuestieLoader:ImportModule("QuestieEventHandler")
---@type QuestieQuest
local QuestieQuest = QuestieLoader:ImportModule("QuestieQuest")
---@type TrackerBaseFrame
local TrackerBaseFrame = QuestieLoader:ImportModule("TrackerBaseFrame")
---@type QuestieValidateGameCache
local QuestieValidateGameCache = QuestieLoader:ImportModule("QuestieValidateGameCache")
---@type QuestieLib
local QuestieLib = QuestieLoader:ImportModule("QuestieLib");
function Questie:OnInitialize()
-- This has to happen OnInitialize to be available asap
Questie.db = LibStub("AceDB-3.0"):New("QuestieConfig", QuestieOptionsDefaults:Load(), true)
-- These events basically all mean the same: The active profile changed.
Questie.db.RegisterCallback(Questie, "OnProfileChanged", "RefreshConfig")
Questie.db.RegisterCallback(Questie, "OnProfileCopied", "RefreshConfig")
Questie.db.RegisterCallback(Questie, "OnProfileReset", "RefreshConfig")
QuestieEventHandler:RegisterEarlyEvents()
end
function Questie:OnEnable()
if Questie.IsWotlk or QuestieCompat.Is335 then
-- Called when the addon is enabled
if (Questie.db.profile.trackerEnabled and not Questie.db.profile.showBlizzardQuestTimer) then
WatchFrame:Hide()
end
end
end
function Questie:OnDisable()
if Questie.IsWotlk or QuestieCompat.Is335 then
-- Called when the addon is disabled
WatchFrame:Show()
end
end
function Questie:RefreshConfig(_, db, profileName)
Questie:SetIcons()
QuestieQuest:SmoothReset()
TrackerBaseFrame:OnProfileChange()
Questie:Debug(Questie.DEBUG_DEVELOP, "Switched Ace Profile!")
end
--- Colorize a string with a color code
---@param str string @The string colorize
--Name or string in the format "RRGGBB" i.e "FF0000" for red
---@param color "red"|"gray"|"purple"|"blue"|"lightBlue"|"reputationBlue"|"yellow"|"orange"|"green"|"white"|"gold"|string
---@return string
function Questie:Colorize(str, color)
local c = "|cFF" .. color;
if color == "red" then
c = "|cFFff0000";
elseif color == "gray" then
c = "|cFFa6a6a6";
elseif color == "purple" then
c = "|cFFB900FF";
elseif color == "blue" then
c = "|cB900FFFF";
elseif color == "lightBlue" then
c = "|cB900FFFF";
elseif color == "reputationBlue" then
c = "|cFF8080ff";
elseif color == "yellow" then
c = "|cFFffff00";
elseif color == "orange" then
c = "|cFFFF6F22";
elseif color == "green" then
c = "|cFF00ff00";
elseif color == "white" then
c = "|cFFffffff";
elseif color == "gold" then
c = "|cFFffd100" -- this is the default game font
end
return c .. str .. "|r"
end
function Questie:GetClassColor(class)
class = string.lower(class);
if class == 'druid' then
return '|cFFFF7D0A';
elseif class == 'hunter' then
return '|cFFABD473';
elseif class == 'mage' then
return '|cFF69CCF0';
elseif class == 'paladin' then
return '|cFFF58CBA';
elseif class == 'priest' then
return '|cFFFFFFFF';
elseif class == 'rogue' then
return '|cFFFFF569';
elseif class == 'shaman' then
return '|cFF0070DE';
elseif class == 'warlock' then
return '|cFF9482C9';
elseif class == 'warrior' then
return '|cFFC79C6E';
else
return '|cffff0000'; -- error red
end
end
function Questie:Error(...)
Questie:Print("|cffff0000[ERROR]|r", ...)
end
function Questie:Warning(...)
if Questie.db.profile.debugEnabled then -- prints regardless of "debugPrint" toggle
Questie:Print("|cffffff00[WARNING]|r", ...)
end
end
-- Global debug levels
-- When adding a new level here it MUST be assigned a corresponding number and name in
-- `debugLevel.values` of QuestieOptionsAdvanced.lua as well as text in Questie:Debug below
Questie.DEBUG_CRITICAL = 2 ^ 0
Questie.DEBUG_ELEVATED = 2 ^ 1
Questie.DEBUG_INFO = 2 ^ 2
Questie.DEBUG_DEVELOP = 2 ^ 3
Questie.DEBUG_SPAM = 2 ^ 4
function Questie:Debug(msgDebugLevel, ...)
if (Questie.db.profile.debugEnabled) then
local optionsDebugLevel = Questie.db.profile.debugLevel
if (band(optionsDebugLevel, msgDebugLevel) == 0) or (not Questie.db.profile.debugEnabledPrint) then
return
end
local prefix = ""
if (band(msgDebugLevel, Questie.DEBUG_CRITICAL) ~= 0) then prefix = prefix.."|cff00f2e6[CRITICAL]|r" end
if (band(msgDebugLevel, Questie.DEBUG_ELEVATED) ~= 0) then prefix = prefix.."|cffebf441[ELEVATED]|r" end
if (band(msgDebugLevel, Questie.DEBUG_INFO) ~= 0) then prefix = prefix.."|cff00bc32[INFO]|r" end
if (band(msgDebugLevel, Questie.DEBUG_DEVELOP) ~= 0) then prefix = prefix.."|cff7c83ff[DEVELOP]|r" end
if (band(msgDebugLevel, Questie.DEBUG_SPAM) ~= 0) then prefix = prefix.."|cffff8484[SPAM]|r" end
Questie:Print(prefix, ...)
end
end
Questie.icons = {
["slay"] = QuestieLib.AddonPath.."Icons\\slay.blp",
["loot"] = QuestieLib.AddonPath.."Icons\\loot.blp",
["event"] = QuestieLib.AddonPath.."Icons\\event.blp",
["object"] = QuestieLib.AddonPath.."Icons\\object.blp",
["talk"] = QuestieLib.AddonPath.."Icons\\chatbubblegossipicon.blp",
["available"] = QuestieLib.AddonPath.."Icons\\available.blp",
["available_gray"] = QuestieLib.AddonPath.."Icons\\available_gray.blp",
["complete"] = QuestieLib.AddonPath.."Icons\\complete.blp",
["incomplete"] = QuestieLib.AddonPath.."Icons\\incomplete.blp",
["interact"] = QuestieLib.AddonPath.."Icons\\interact.blp",
["glow"] = QuestieLib.AddonPath.."Icons\\glow.blp",
["repeatable"] = QuestieLib.AddonPath.."Icons\\repeatable.blp",
["repeatable_complete"] = QuestieLib.AddonPath.."Icons\\repeatable_complete.blp",
["eventquest"] = QuestieLib.AddonPath.."Icons\\eventquest.blp",
["eventquest_complete"] = QuestieLib.AddonPath.."Icons\\eventquest_complete.blp",
["pvpquest"] = QuestieLib.AddonPath.."Icons\\pvpquest.blp",
["pvpquest_complete"] = QuestieLib.AddonPath.."Icons\\pvpquest_complete.blp",
["node"] = QuestieLib.AddonPath.."Icons\\node.tga",
["player"] = "Interface\\WorldMap\\WorldMapPartyIcon",
["fav"] = QuestieLib.AddonPath.."Icons\\fav.tga",
["faction_alliance"] = QuestieLib.AddonPath.."Icons\\icon_alliance.tga",
["faction_horde"] = QuestieLib.AddonPath.."Icons\\icon_horde.tga",
["loot_mono"] = QuestieLib.AddonPath.."Icons\\loot_mono.tga",
["node_cut"] = QuestieLib.AddonPath.."Icons\\node_cut.tga",
["object_mono"] = QuestieLib.AddonPath.."Icons\\object_mono.tga",
["route"] = QuestieLib.AddonPath.."Icons\\route.tga",
["slay_mono"] = QuestieLib.AddonPath.."Icons\\slay_mono.tga",
["sod_rune"] = QuestieLib.AddonPath.."Icons\\sod_rune.tga",
["startend"] = QuestieLib.AddonPath.."Icons\\startend.tga",
["startendstart"] = QuestieLib.AddonPath.."Icons\\startendstart.tga",
["tracker_clean"] = QuestieLib.AddonPath.."Icons\\tracker_clean.tga",
["tracker_close"] = QuestieLib.AddonPath.."Icons\\tracker_close.tga",
["tracker_database"] = QuestieLib.AddonPath.."Icons\\tracker_database.tga",
["tracker_giver"] = QuestieLib.AddonPath.."Icons\\tracker_giver.tga",
["tracker_quests"] = QuestieLib.AddonPath.."Icons\\tracker_quests.tga",
["tracker_search"] = QuestieLib.AddonPath.."Icons\\tracker_search.tga",
["tracker_settings"] = QuestieLib.AddonPath.."Icons\\tracker_settings.tga",
}
Questie.usedIcons = {}
Questie.ICON_TYPE_SLAY = 1
Questie.ICON_TYPE_LOOT = 2
Questie.ICON_TYPE_EVENT = 3
Questie.ICON_TYPE_OBJECT = 4
Questie.ICON_TYPE_TALK = 5
Questie.ICON_TYPE_AVAILABLE = 6
Questie.ICON_TYPE_AVAILABLE_GRAY = 7
Questie.ICON_TYPE_COMPLETE = 8
Questie.ICON_TYPE_GLOW = 9
Questie.ICON_TYPE_REPEATABLE = 10
Questie.ICON_TYPE_REPEATABLE_COMPLETE = 11
Questie.ICON_TYPE_INCOMPLETE = 12
Questie.ICON_TYPE_EVENTQUEST = 13
Questie.ICON_TYPE_EVENTQUEST_COMPLETE = 14
Questie.ICON_TYPE_PVPQUEST = 15
Questie.ICON_TYPE_PVPQUEST_COMPLETE = 16
Questie.ICON_TYPE_INTERACT = 17
Questie.ICON_TYPE_SODRUNE = 18
-- Load icon pathes from SavedVariables or set the default ones
function Questie:SetIcons()
Questie.usedIcons[Questie.ICON_TYPE_SLAY] = Questie.db.profile.ICON_SLAY or Questie.icons["slay"]
Questie.usedIcons[Questie.ICON_TYPE_LOOT] = Questie.db.profile.ICON_LOOT or Questie.icons["loot"]
Questie.usedIcons[Questie.ICON_TYPE_EVENT] = Questie.db.profile.ICON_EVENT or Questie.icons["event"]
Questie.usedIcons[Questie.ICON_TYPE_OBJECT] = Questie.db.profile.ICON_OBJECT or Questie.icons["object"]
Questie.usedIcons[Questie.ICON_TYPE_TALK] = Questie.db.profile.ICON_TALK or Questie.icons["talk"]
Questie.usedIcons[Questie.ICON_TYPE_AVAILABLE] = Questie.db.profile.ICON_AVAILABLE or Questie.icons["available"]
Questie.usedIcons[Questie.ICON_TYPE_AVAILABLE_GRAY] = Questie.db.profile.ICON_AVAILABLE_GRAY or Questie.icons["available_gray"]
Questie.usedIcons[Questie.ICON_TYPE_COMPLETE] = Questie.db.profile.ICON_COMPLETE or Questie.icons["complete"]
Questie.usedIcons[Questie.ICON_TYPE_INCOMPLETE] = Questie.db.profile.ICON_INCOMPLETE or Questie.icons["incomplete"]
Questie.usedIcons[Questie.ICON_TYPE_GLOW] = Questie.db.profile.ICON_GLOW or Questie.icons["glow"]
Questie.usedIcons[Questie.ICON_TYPE_REPEATABLE] = Questie.db.profile.ICON_REPEATABLE or Questie.icons["repeatable"]
Questie.usedIcons[Questie.ICON_TYPE_REPEATABLE_COMPLETE] = Questie.db.profile.ICON_REPEATABLE_COMPLETE or Questie.icons["complete"]
Questie.usedIcons[Questie.ICON_TYPE_EVENTQUEST] = Questie.db.profile.ICON_EVENTQUEST or Questie.icons["eventquest"]
Questie.usedIcons[Questie.ICON_TYPE_EVENTQUEST_COMPLETE] = Questie.db.profile.ICON_EVENTQUEST_COMPLETE or Questie.icons["complete"]
Questie.usedIcons[Questie.ICON_TYPE_PVPQUEST] = Questie.db.profile.ICON_PVPQUEST or Questie.icons["pvpquest"]
Questie.usedIcons[Questie.ICON_TYPE_PVPQUEST_COMPLETE] = Questie.db.profile.ICON_PVPQUEST_COMPLETE or Questie.icons["complete"]
Questie.usedIcons[Questie.ICON_TYPE_INTERACT] = Questie.db.profile.ICON_TYPE_INTERACT or Questie.icons["interact"]
Questie.usedIcons[Questie.ICON_TYPE_SODRUNE] = Questie.icons["sod_rune"]
end
function Questie:GetIconNameFromPath(path)
for k, v in pairs(Questie.icons) do
if path == v then return k end
end
end
Questie.LOWLEVEL_NONE = 1
Questie.LOWLEVEL_ALL = 2
Questie.LOWLEVEL_OFFSET = 3
Questie.LOWLEVEL_RANGE = 4
-- Start checking the game's cache.
QuestieValidateGameCache.StartCheck()