Sprite description
Source position: agraphics.pas line 643
type tVSprite = record |
||
NextVSprite: pVSprite; |
|
GEL linked list forward pointer sorted by y,x value |
PrevVSprite: pVSprite; |
|
GEL linked list backward pointer sorted by y,x value |
DrawPath: pVSprite; |
|
Pointer of overlay drawing |
ClearPath: pVSprite; |
|
Pointer for overlay clearing |
OldY: SmallInt; |
|
Previous x position |
OldX: SmallInt; |
|
Previous y position |
Flags: SmallInt; |
|
VSprite flags |
Y: SmallInt; |
|
Screen y position |
X: SmallInt; |
|
Screen x position |
Height: SmallInt; |
|
Number of lines of image data |
Width: SmallInt; |
|
Number of words per row of image data |
Depth: SmallInt; |
|
Number of planes |
MeMask: SmallInt; |
|
Which types can collide with this VSprite |
HitMask: SmallInt; |
|
Which types this VSprite can collide with |
ImageData: Pointer; |
|
Pointer to VSprite image |
BorderLine: Pointer; |
|
Logical OR of all VSprite bits |
CollMask: Pointer; |
|
Similar to above except this is a matrix |
SprColors: Pointer; |
|
Pointer to this VSprite's color definitions (not used by Bobs) |
VSBob: Pointer; |
|
(PBob) points home if this VSprite is part of a Bob |
PlanePick: ShortInt; |
|
Plane flags |
PlaneOnOff: ShortInt; |
|
|
VUserExt: SmallInt; |
|
User definable |
end; |
The VSprite positions are defined in (y,x) order to make sorting sorting easier, since (y,x) as a long Longint.
BorderLine is the one-dimensional logical OR of all the VSprite bits, used for fast collision detection of edge
PlanePick flag: set bit selects a plane from image, clear bit selects use of shadow mask for that plane OnOff flag: if using shadow mask to fill plane, this bit (corresponding to bit in planePick) describes whether to fill with 0's or 1's
There are two uses for these flags: