Rare artifacts should have blue statusbar color
Jesse Adams [02-20-11 - 17:54]
Rare artifacts should have blue statusbar color
Statusbar color should change to yellow when artifact is solvable
Play a sound when something is solvable
diff --git a/README b/README
index 3546d75..3f584d9 100644
--- a/README
+++ b/README
@@ -3,3 +3,22 @@ Solvent - A simple, attractive Archaeology display and helper for World of Warcr
Special Thanks:
daihenka and Archy
Ludus of Naz'jatar-US
+
+Upcoming Changes:
+* When an artifact is solved, it should update all information
+* When a survey is completed, it should update all information
+* initial load bags bugfix
+* Display archaeology skill level next to title, unless skill is maxed
+* Double right-click surveying
+
+Things to Test:
+* All races in queue
+* Archaeology not learned
+* Ensure new race shows up upon first survey
+
+Changelog:
+
+2011-02-20:
+* Rare artifacts should have blue statusbar color
+* Statusbar color should change to yellow when artifact is solvable
+* Play a sound when something is solvable
diff --git a/Solvent.lua b/Solvent.lua
index 2d7098a..a862534 100644
--- a/Solvent.lua
+++ b/Solvent.lua
@@ -96,6 +96,8 @@ function SolventGetCurrentArtifacts()
local raceCount = GetNumArchaeologyRaces();
local artifacts = {}
local lastRaceName
+
+ soundHasPlayed = false
for i=1,raceCount do
local raceName, raceTexture, raceItemID, numFragmentsCollected, numFragmentsRequired = GetArchaeologyRaceInfo(i);
SetSelectedArtifact(i)
@@ -105,18 +107,21 @@ function SolventGetCurrentArtifacts()
--print(i .. ' - ' .. raceName)
if GetNumArtifactsByRace(i) > 0 then
- artifacts[raceName] = {
- name = artifactName,
- collected = numFragmentsCollected,
- required = numFragmentsRequired,
- slots = keystoneCount,
- items = keystones[i]["count"],
- }
-
if SOLVENT_DEBUG then
DEFAULT_CHAT_FRAME:AddMessage(raceName .. ": " .. artifactName .. " - " .. numFragmentsCollected .. "/" .. numFragmentsRequired .. " - " .. keystones[i]["count"] .. " keystones in bags, " .. keystoneCount .. " keystone slots available")
end
+ if keystones[i]["count"] > keystoneCount then
+ usableKeystones = keystoneCount
+ else
+ usableKeystones = keystones[i]["count"]
+ end
+ possibleFragmentsFromKeystones = usableKeystones * 12
+ solvable = false
+ if (possibleFragmentsFromKeystones + numFragmentsCollected) >= numFragmentsRequired then
+ solvable = true
+ end
+
if statusBars[i] == nil then
if SOLVENT_DEBUG then
DEFAULT_CHAT_FRAME:AddMessage("No Frame for " .. raceName .. ", creating...")
@@ -132,7 +137,6 @@ function SolventGetCurrentArtifacts()
statusBar:GetStatusBarTexture():SetHorizTile(false)
--statusBar:SetWidth(200)
--statusBar:SetHeight(12)
- statusBar:SetStatusBarColor(0,1,0)
if i == 1 then
statusBars[i]:SetPoint("TOP", SolventSolveFrameAddonTitleText,"BOTTOM", 0, -15)
else
@@ -140,6 +144,19 @@ function SolventGetCurrentArtifacts()
end
else
statusBar = _G["SolventSolveFrameRow" .. raceName .. "StatusBar"]
+
+ if solvable then
+ if soundHasPlayed == false then
+ PlaySoundFile("Interface\\Addons\\Solvent\\sounds\\shooting_star.mp3")
+ DEFAULT_CHAT_FRAME:AddMessage("Archaeology: " .. raceName .. " Artifact '".. artifactName .. "' is now solvable!")
+ soundHasPlayed = true
+ end
+ statusBar:SetStatusBarColor(1,1,0)
+ elseif artifactRarity == 0 then
+ statusBar:SetStatusBarColor(0,1,0)
+ else
+ statusBar:SetStatusBarColor(0,0.44,0.87)
+ end
end
statusBar:SetMinMaxValues(0, numFragmentsRequired)
@@ -151,13 +168,12 @@ function SolventGetCurrentArtifacts()
statusBar.artifact:SetText(artifactName)
end
_G["SolventSolveFrameRow" .. raceName .. "Icon"].texture:SetTexture(raceTexture)
- _G["SolventSolveFrameRow" .. raceName .. "Keystones"].keystones:SetText(keystones[i]["count"] .. ' / ' .. keystoneCount)
+ --_G["SolventSolveFrameRow" .. raceName .. "Keystones"].keystones:SetText(keystones[i]["count"] .. ' / ' .. keystoneCount)
+ _G["SolventSolveFrameRow" .. raceName .. "Keystones"].keystones:SetText("+" .. possibleFragmentsFromKeystones)
lastRaceName = raceName
end
end
-
- return artifacts
end
function SolventStartup()
diff --git a/sounds/shooting_star.mp3 b/sounds/shooting_star.mp3
new file mode 100644
index 0000000..c2c7f7d
Binary files /dev/null and b/sounds/shooting_star.mp3 differ