Mercurial > wow > buffalo2
comparison ObjectiveTracker/AutoQuestPopups.lua @ 30:7583684becf4
- implement procedural block contents generation
- redo anchor calculations to allow for transitional animation
- attempt to sort out event handling quirks related to autopopup quest completion and turn-in
- revise the data structures created by the different GetInfo's
- start on trimming out redundant variables
| author | Nenue |
|---|---|
| date | Thu, 14 Apr 2016 17:11:13 -0400 |
| parents | adcd7c328d07 |
| children | 48b3e3959a0a |
comparison
equal
deleted
inserted
replaced
| 29:adcd7c328d07 | 30:7583684becf4 |
|---|---|
| 25 local questLogIndex = GetQuestLogIndexByID(questID) | 25 local questLogIndex = GetQuestLogIndexByID(questID) |
| 26 local title, level, suggestedGroup, isHeader, isCollapsed, isComplete, frequency, questID, startEvent, displayQuestID, isOnMap, hasLocalPOI, isTask, isStory = GetQuestLogTitle(questLogIndex) | 26 local title, level, suggestedGroup, isHeader, isCollapsed, isComplete, frequency, questID, startEvent, displayQuestID, isOnMap, hasLocalPOI, isTask, isStory = GetQuestLogTitle(questLogIndex) |
| 27 | 27 |
| 28 self.Info[questID] = self.Info[questID] or {} | 28 self.Info[questID] = self.Info[questID] or {} |
| 29 local popup = self.Info[questID] | 29 local popup = self.Info[questID] |
| 30 popup.questID = questID | |
| 31 popup.id = questID | |
| 30 popup.title = title | 32 popup.title = title |
| 31 popup.description = type | 33 popup.description = type |
| 32 popup.popupType = type | 34 popup.popupType = type |
| 33 popup.questID = questID | |
| 34 popup.questLogIndex = questLogIndex | 35 popup.questLogIndex = questLogIndex |
| 35 popup.popupIndex = popupIndex | 36 popup.popupIndex = popupIndex |
| 36 | 37 |
| 37 self.Info[questID] = popup | 38 self.Info[questID] = popup |
| 38 self.WatchInfo[popupIndex] = popup | 39 self.WatchInfo[popupIndex] = popup |
