2011-08-20 07:41:29 -04:00
|
|
|
ChoreTracker = LibStub('AceAddon-3.0'):NewAddon('ChoreTracker','AceConsole-3.0','AceEvent-3.0')
|
|
|
|
local core = ChoreTracker
|
|
|
|
|
2011-08-21 10:59:28 -04:00
|
|
|
local trackedInstances = {
|
|
|
|
['Baradin Hold'] = true,
|
|
|
|
['Firelands'] = true,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-20 07:41:29 -04:00
|
|
|
local defaults = {
|
|
|
|
profile = {
|
|
|
|
valorPoints = {},
|
|
|
|
lockouts = {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function core:OnInitialize()
|
|
|
|
self.db = LibStub('AceDB-3.0'):New('ChoreTrackerDB',defaults,'Default')
|
|
|
|
end
|
|
|
|
|
|
|
|
function core:OnEnable()
|
2011-08-21 10:59:28 -04:00
|
|
|
self:RegisterEvent('PLAYER_ENTERING_WORLD','StoreChores')
|
2011-08-20 07:41:29 -04:00
|
|
|
end
|
|
|
|
|
2011-08-21 10:59:28 -04:00
|
|
|
function core:StoreChores()
|
2011-08-20 07:41:29 -04:00
|
|
|
local _,_,_,earnedThisWeek = GetCurrencyInfo(396)
|
|
|
|
local name = UnitName('player')
|
2011-08-21 00:03:50 -04:00
|
|
|
local level = UnitLevel('player')
|
2011-08-20 07:41:29 -04:00
|
|
|
|
2011-08-21 00:03:50 -04:00
|
|
|
if(level == 85) then
|
|
|
|
self.db.profile.valorPoints[name] = earnedThisWeek
|
|
|
|
print('Storing',earnedThisWeek,'for',name)
|
2011-08-21 10:59:28 -04:00
|
|
|
|
|
|
|
savedInstances = GetNumSavedInstances()
|
|
|
|
|
|
|
|
for i = 0, savedInstances do
|
|
|
|
local instanceName,_,instanceReset,_,_,_,_,_,_,_,_,defeatedBosses = GetSavedInstanceInfo(i)
|
|
|
|
|
|
|
|
if trackedInstances[instanceName] == true then
|
|
|
|
print('Found',instanceName)
|
|
|
|
if self.db.profile.lockouts[name] == nil then
|
|
|
|
self.db.profile.lockouts[name] = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
if instanceReset > 0 then
|
|
|
|
print('saving',instanceName,'for',name,'with',defeatedBosses,'defeated')
|
|
|
|
self.db.profile.lockouts[name][instanceName] = defeatedBosses
|
|
|
|
else
|
|
|
|
print('resetting',instanceName)
|
|
|
|
self.db.profile.lockouts[name][instanceName] = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-21 00:03:50 -04:00
|
|
|
end
|
2011-08-20 07:41:29 -04:00
|
|
|
end
|