annotate ProspectMe_Tooltip.lua @ 3:d72291422362

Added tag v1.2.2-Beta for changeset dabd5c6540ca
author Vynn
date Tue, 16 Dec 2014 00:25:18 -0500
parents 69b46322ff1b
children e6eec48ecf14
rev   line source
Vynn@0 1 PM_HERBSUBCLASS = select(6, GetAuctionItemSubClasses(6))
Vynn@0 2 PM_ORESUBCLASS = select(4, GetAuctionItemSubClasses(6))
Vynn@0 3
Vynn@0 4 function PM_FormatPrice(value)
Vynn@0 5
Vynn@0 6 local GSC_GOLD="ffffd100"
Vynn@0 7 local GSC_SILVER="ffe6e6e6"
Vynn@0 8 local GSC_COPPER="ffc8602c"
Vynn@0 9
Vynn@0 10 local g, s, c
Vynn@0 11 local digits = 0
Vynn@0 12 local gsc
Vynn@0 13
Vynn@0 14 g = math.floor(value/10000)
Vynn@0 15 s = math.fmod(math.floor(value/100),100)
Vynn@0 16 c = math.fmod(value,100)
Vynn@0 17
Vynn@0 18
Vynn@0 19 digits = math.floor(math.log10(value)+1)
Vynn@0 20
Vynn@0 21 if ( digits < 3 ) then
Vynn@0 22 gsc = string.format(" |c%s%2d|r", GSC_COPPER, c)
Vynn@0 23 elseif ( digits < 5 ) then
Vynn@0 24 gsc = string.format("|c%s%2d|r |c%s%02d|r", GSC_SILVER, s, GSC_COPPER, c)
Vynn@0 25 elseif ( digits < 7 ) then
Vynn@0 26 gsc = string.format("|c%s%2d|r |c%s%02d|r", GSC_GOLD, g, GSC_SILVER, s)
Vynn@0 27 elseif ( digits < 9 ) then
Vynn@0 28 gsc = string.format("|c%s%5d|r", GSC_GOLD, g)
Vynn@0 29 else
Vynn@0 30 gsc = string.format("|c%s%2.1fk|r", GSC_GOLD, g/1000)
Vynn@0 31 end
Vynn@0 32
Vynn@0 33 return gsc
Vynn@0 34 end
Vynn@0 35
Vynn@0 36 function PM_GetReturn(containerID)
Vynn@0 37 local averageReturn = 0
Vynn@0 38 if PM_ResultsTable[containerID].timesProspected > 0 then
Vynn@0 39 for itemID, num in pairs(PM_ResultsTable[containerID]) do
Vynn@0 40 if itemID ~= "timesProspected" then
Vynn@0 41 averageReturn = averageReturn + PM_ItemTable[itemID].price * num
Vynn@0 42 end
Vynn@0 43 end
Vynn@0 44 averageReturn = averageReturn/PM_ResultsTable[containerID].timesProspected
Vynn@0 45 end
Vynn@0 46 return tonumber(string.format("%.0f", averageReturn))
Vynn@0 47 end
Vynn@0 48
Vynn@0 49 local cleared = true
Vynn@0 50 local function OnTooltipCleared(self)
Vynn@0 51 cleared = true
Vynn@0 52 end
Vynn@0 53
Vynn@0 54 local function OnTooltipSetItem(self)
Vynn@0 55 if cleared then
Vynn@0 56 local name, tooltipLink = self:GetItem()
Vynn@0 57 if tooltipLink then
Vynn@0 58 local item = tooltipLink:match("Hitem:(%d+)")
Vynn@0 59 if PM_ResultsTable[item] then
Vynn@0 60 --NumofEachQuality, Percent of Each Quality
Vynn@0 61 self:AddLine(" ")
Vynn@0 62 self:AddLine("Prospect Me",0.5,1,0.5)
Vynn@0 63 if PM_ItemTable[item].subclass == PM_ORESUBCLASS then
Vynn@0 64 self:AddLine("Times Prospected: " .. PM_ResultsTable[item].timesProspected)
Vynn@0 65 self:AddDoubleLine("Cost to Prospect: " .. PM_FormatPrice(5 * PM_ItemTable[item].price), " Average Return: " .. PM_FormatPrice(PM_GetReturn(item)))
Vynn@0 66 elseif PM_ItemTable[item].subclass == PM_HERBSUBCLASS then
Vynn@0 67 self:AddLine("Times Milled: " .. PM_ResultsTable[item].timesProspected)
Vynn@0 68 self:AddDoubleLine("Cost to Mill: " .. PM_FormatPrice(5 * PM_ItemTable[item].price), " Average Return: " .. PM_FormatPrice(PM_GetReturn(item)))
Vynn@0 69
Vynn@0 70 end
Vynn@0 71 if PM_GetReturn(item)-(5 * PM_ItemTable[item].price) > 0 then
Vynn@0 72 self:AddLine("Estimated Profit: " .. PM_FormatPrice(PM_GetReturn(item)-(5 * PM_ItemTable[item].price)))
Vynn@0 73 self:AddLine(" ")
Vynn@0 74 else
Vynn@0 75 self:AddLine("No profit to be made",1,0,0)
Vynn@0 76 self:AddLine(" ")
Vynn@0 77 end
Vynn@0 78 if PM_Config.results then
Vynn@0 79 local t
Vynn@0 80 if IsAltKeyDown() == PM_Config.session then
Vynn@0 81 t = PM_ResultsTable
Vynn@0 82 self:AddDoubleLine("Lifetime Results","Hold/Release Alt to toggle",0.5,0.5,1,0.5,0.5,0.5)
Vynn@0 83 else
Vynn@0 84 t = PM_SessionTable
Vynn@0 85 self:AddDoubleLine("Session Results","Hold/Release Alt to toggle",0.5,0.5,1,0.5,0.5,0.5)
Vynn@0 86 end
Vynn@0 87 if t[item] then
Vynn@0 88 for q = 7, 0, -1 do
Vynn@0 89 for result, num in pairs(t[item]) do
Vynn@0 90 if result ~= "timesProspected" and PM_ItemTable[result].quality == q and PM_Config.qualities[q] then
Vynn@0 91 local p, n = "", ""
Vynn@0 92 if PM_Config.percent then
Vynn@0 93 p = num/t[item].timesProspected*100
Vynn@0 94 if p < 10 then
Vynn@0 95 p = string.format("[%.1f%%]", p)
Vynn@0 96 else
Vynn@0 97 p = string.format("[%.0f%%]", p)
Vynn@0 98 end
Vynn@0 99 else
Vynn@0 100 p = ""
Vynn@0 101 end
Vynn@0 102 if PM_Config.number then
Vynn@0 103 n = "[" .. num .. "]"
Vynn@0 104 else
Vynn@0 105 n = ""
Vynn@0 106 end
Vynn@0 107 self:AddDoubleLine(p .. PM_ItemTable[result].link .. n, PM_FormatPrice(PM_ItemTable[result].price))
Vynn@0 108 end
Vynn@0 109 end
Vynn@0 110 end
Vynn@0 111 end
Vynn@0 112 self:AddLine(" ")
Vynn@0 113 end
Vynn@0 114 end
Vynn@0 115 cleared = true
Vynn@0 116 end
Vynn@0 117 end
Vynn@0 118 end
Vynn@0 119
Vynn@0 120 GameTooltip:HookScript("OnTooltipCleared", OnTooltipCleared)
Vynn@0 121 GameTooltip:HookScript("OnTooltipSetItem", OnTooltipSetItem)