Prev: 46335 Up: Map Next: 46528
46336: Play area column pointers (Q values)
Used by the routine at 24684. Each byte (Q value) here corresponds to one of the 192 columns of the play area (x-coordinates 0-191). The Q value for an x-coordinate uniquely determines the appearance of the corresponding column of the play area; in other words, play area columns that have the same Q value are identical in appearance.
The first 32 Q values correspond to x-coordinates 0-31. In this range, x-coordinates 11 and 13 have the same Q value (11), and x-coordinates 28 and 29 have the same Q value (27).
qvalues1
46336 DEFB 0,1,2,3,4,5,6,7 0<=x<=31
46344 DEFB 8,9,10,11,12,11,13,14
46352 DEFB 15,16,17,18,19,20,21,22
46360 DEFB 23,24,25,26,27,27,28,29
The next 32 Q values correspond to x-coordinates 32-63. No two x-coordinates in this range have the same Q value.
qvalues2
46368 DEFB 30,31,32,33,34,35,36,37 32<=x<=63
46376 DEFB 38,39,40,41,42,43,44,45
46384 DEFB 46,47,48,49,50,51,52,53
46392 DEFB 54,55,56,57,58,59,60,61
The next 32 Q values correspond to x-coordinates 64-95. In this range, x-coordinates 64, 66 and 68 have the same Q value (62), and x-coordinates 65, 67 and 69 have the same Q value (63).
qvalues3
46400 DEFB 62,63,62,63,62,63,64,65 64<=x<=95
46408 DEFB 66,67,68,69,70,71,72,73
46416 DEFB 74,75,76,77,78,79,80,81
46424 DEFB 82,83,84,85,86,87,88,89
The next 32 Q values correspond to x-coordinates 96-127. In this range, x-coordinates 110, 112-120 and 122-127 have the same Q value (104).
qvalues4
46432 DEFB 90,91,92,93,94,95,96,97 96<=x<=127
46440 DEFB 98,99,100,101,102,103,104,105
46448 DEFB 104,104,104,104,104,104,104,104
46456 DEFB 104,106,104,104,104,104,104,104
The next 32 Q values correspond to x-coordinates 128-159. In this range, x-coordinates 128-130, 138-146 and 148-157 have the same Q value (104).
qvalues5
46464 DEFB 104,104,104,107,108,109,110,111 128<=x<=159
46472 DEFB 112,113,104,104,104,104,104,104
46480 DEFB 104,104,104,114,104,104,104,104
46488 DEFB 104,104,104,104,104,104,115,116
The next 32 Q values correspond to x-coordinates 160-191. In this range, x-coordinates 169, 171, 173 and 175 have the same Q value (126), and x-coordinates 170, 172 and 174 have the same Q value (127).
qvalues6
46496 DEFB 117,118,119,120,121,122,123,124 160<=x<=191
46504 DEFB 125,126,127,126,127,126,127,126
46512 DEFB 128,129,130,131,132,133,134,135
46520 DEFB 136,137,138,139,140,141,142,143
Prev: 46335 Up: Map Next: 46528