|
5 | 5 | -- Trigger between emitting game data and frame location data |
6 | 6 | local SETUP_SEQUENCE = false |
7 | 7 | -- Total number of data frames generated |
8 | | -local NUMBER_OF_FRAMES = 111 |
| 8 | +local NUMBER_OF_FRAMES = 112 |
9 | 9 | -- Set number of pixel rows |
10 | 10 | local FRAME_ROWS = 1 |
11 | 11 | -- Size of data squares in px. Varies based on rounding errors as well as dimension size. Use as a guideline, but not 100% accurate. |
@@ -212,6 +212,7 @@ DataToColor.gcdExpirationTime = 0 |
212 | 212 |
|
213 | 213 | DataToColor.lastAutoShot = 0 |
214 | 214 | DataToColor.lastMainHandMeleeSwing = 0 |
| 215 | +DataToColor.lastDamageDoneTime = 0 |
215 | 216 | DataToColor.lastCastEvent = 0 |
216 | 217 | DataToColor.lastCastSpellId = 0 |
217 | 218 | DataToColor.lastCastGCD = 0 |
@@ -938,15 +939,6 @@ function DataToColor:CreateFrames() |
938 | 939 |
|
939 | 940 | Pixel(int, DataToColor.talentQueue:shift(globalTick) or 0, 72) |
940 | 941 |
|
941 | | - -- Key bindings queue (slot 106) |
942 | | - Pixel(int, DataToColor.bindingQueue:shift(globalTick) or 0, 106) |
943 | | - |
944 | | - -- Action bar texture queue (slot 107) |
945 | | - Pixel(int, DataToColor.actionBarTextureQueue:shift(globalTick) or 0, 107) |
946 | | - |
947 | | - -- Action bar macro queue (slot 108) |
948 | | - Pixel(int, DataToColor.actionBarMacroQueue:shift(globalTick) or 0, 108) |
949 | | - |
950 | 942 | local gossipNum = DataToColor.gossipQueue:shift(globalTick) |
951 | 943 | if gossipNum then |
952 | 944 | --DataToColor:Print("gossipQueue: ", gossipNum) |
@@ -1146,6 +1138,18 @@ function DataToColor:CreateFrames() |
1146 | 1138 | Pixel(int, 0, 105) |
1147 | 1139 | end |
1148 | 1140 |
|
| 1141 | + |
| 1142 | + -- Key bindings queue (slot 106) |
| 1143 | + Pixel(int, DataToColor.bindingQueue:shift(globalTick) or 0, 106) |
| 1144 | + |
| 1145 | + -- Action bar texture queue (slot 107) |
| 1146 | + Pixel(int, DataToColor.actionBarTextureQueue:shift(globalTick) or 0, 107) |
| 1147 | + |
| 1148 | + -- Action bar macro queue (slot 108) |
| 1149 | + Pixel(int, DataToColor.actionBarMacroQueue:shift(globalTick) or 0, 108) |
| 1150 | + |
| 1151 | + Pixel(int, DataToColor.lastDamageDoneTime, 109) |
| 1152 | + |
1149 | 1153 | UpdateGlobalTime() |
1150 | 1154 | -- NUMBER_OF_FRAMES - 1 reserved for validation |
1151 | 1155 |
|
|
0 commit comments