Skip to navigation

Aviator on the BBC Micro

Workspaces and configuration

AVIATOR SOURCE Aviator was written by Geoffrey J Crammond and is copyright Acornsoft 1983 The code on this site has been reconstructed from a disassembly of the original game binaries The commentary is copyright Mark Moxon, and any misunderstandings or mistakes in the documentation are entirely my fault The terminology and notations used in this commentary are explained at https://aviator.bbcelite.com/terminology The deep dive articles referred to in this commentary can be found at https://aviator.bbcelite.com/deep_dives
This source file produces the following binary file: * AVIA.bin
GUARD &6000 \ Guard against assembling over screen memory
Configuration variables
LOAD% = &1100 \ The load address of the main code binary CODE% = &0B00 \ The address of the main game code once the code has \ been rearranged. The code starts off at &1100-&5EFF \ and is moved in three stages: \ \ * &5800-&5BFF is copied to &0400-&07FF \ * &5C00-&5DFF is copied to &0B00-&0CFF \ * &0400-&07FF is copied to &0D00-&10FF \ \ This address points to the start of the executable \ code after all these moves, which is at &0B00 nextAxis = 40 \ The xObject, yObject and zObject tables each contain \ 40 bytes, and they are positioned one after the other \ in memory, so if we access, say, the x-coordinate for \ object Y at xObjectHi+Y, then adding #nextAxis to Y \ will point xObjectHi+Y to the y-coordinate, and adding \ it again will point it to the z-coordinate \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckAlienWeakSpot \ * CheckIfAlienIsHit (Part 2 of 2) \ * GetAlienWeakSpot \ * GetTrailVectorStep \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
\ The following configuration variables represent screen \ addresses, with names in the following format: \ \ row1_char2_3 = Row 1, character block 2, byte 3 \ \ The first batch refers to screen addresses in the \ canopy (character rows 0 to 19) row1_char1_0 = &5948 \ Second block on second row \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyCorners \ * FillCanopy \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row1_char38_0 = &5A68 \ Last block but one on second row row1_char39_0 = &5A70 \ Last block on second row \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyCorners \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row3_char1_0 = &5BC8 \ Top-left corner of the on-screen score display \ \ [Show more]
\ \ This variable is used by the following: \ \ * RemoveScore \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row6_char1_0 = &5F88 \ Top-left corner of the canopy-wide rectangle \ containing the gun sights on rows 6, 7 and 8 \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawGunSights \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row6_char20_0 = &6020 \ Top block of the vertical line in the gun sights \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawGunSights \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row7_char20_0 = &6160 \ Bottom block of the vertical line in the gun sights \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawGunSights \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row8_char11_0 = &6258 \ Left end of horizontal bar in the gun sights \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawGunSights \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
\ The second batch refers to screen addresses in the \ dashboard (character rows 20 to 31) row21_char20_7 = &72E7 \ Top block of joystick position display y-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row22_char20_7 = &7427 \ Second block of joystick position display y-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row23_char20_7 = &7567 \ Third block of joystick position display y-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row24_char20_7 = &76A7 \ Fourth block of joystick position display y-axis and \ right-middle block of joystick position display x-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row25_char20_7 = &77E7 \ Fifth block of joystick position display y-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row26_char20_7 = &7927 \ Sixth block of joystick position display y-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row27_char20_7 = &7A67 \ Bottom block of joystick position display y-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row24_char18_7 = &7697 \ Left block of joystick position display x-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row24_char19_7 = &769F \ Left-middle block of joystick position display x-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row24_char21_7 = &76AF \ Right block of joystick position display x-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row23_char12_4 = &7524 \ Left block of artificial horizon centre marker \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawIndicatorLine \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row23_char13_2 = &752A \ Middle block of artificial horizon centre marker \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawIndicatorLine \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row23_char14_4 = &7534 \ Right block of artificial horizon centre marker \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawIndicatorLine \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row25_char13_1 = &77A9 \ Bottom middle block of artificial horizon \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckFlyingSkills (Part 2 of 2) \ * ShowUpsideDownBar \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row25_char34_7 = &7857 \ Left spur of the radar's cross \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row25_char35_6 = &785E \ Bottom pixel of the top spur of the radar's cross \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row25_char35_7 = &785F \ Centre and right spur of the radar's cross \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row26_char35_0 = &7998 \ Top pixel of the bottom spur of the radar's cross \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row26_char35_1 = &7999 \ Bottom pixel of the bottom spur of the radar's cross \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row28_char26_5 = &7BD5 \ Centre block of the slip-and-turn indicator \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateDashboard \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row29_char20_4 = &7CE4 \ Joystick indicator block (above middle of rudder) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ReadJoystick \ * ToggleJoystick \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row30_char0_2 = &7D82 \ Theme indicator \ \ [Show more]
\ \ This variable is used by the following: \ \ * IndicatorT \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row30_char32_2 = &7E82 \ Undercarriage indicator \ \ [Show more]
\ \ This variable is used by the following: \ \ * IndicatorU \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row30_char35_2 = &7E9A \ Flaps indicator \ \ [Show more]
\ \ This variable is used by the following: \ \ * IndicatorF \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
row30_char37_2 = &7EAA \ Brakes indicator \ \ [Show more]
\ \ This variable is used by the following: \ \ * IndicatorB \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
VIA = &FE00 \ Memory-mapped space for accessing internal hardware, \ such as the video ULA, 6845 CRTC and 6522 VIAs (also \ known as SHEILA) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyBumpyRide \ * NewGame \ * ProcessLanding (Part 1 of 7) \ * SetRandomNumber \ * SpawnAlien \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
OSBYTE = &FFF4 \ The address for the OSBYTE routine \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopy \ * Entry \ * ReadADCChannel \ * ReadJoystick \ * ScanKeyboard \ * SetupScreen \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
OSWORD = &FFF1 \ The address for the OSWORD routine \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 12 of 15) \ * MakeSoundEnvelope \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
OSWRCH = &FFEE \ The address for the OSWRCH routine \ \ [Show more]
\ \ This variable is used by the following: \ \ * DisplayScore \ * PrintScore \ * PrintScoreText \ * PrintTooLate \ * SetLogicalColour \ * SetupScreen \ * VduPlot \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
OSCLI = &FFF7 \ The address for the OSCLI routine \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetupScreen \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
Name: Zero page [Show more] Type: Workspace Address: &0070 to &008F Category: Workspaces Summary: Mainly temporary variables that are used a lot
Context: See this workspace on its own page References: No direct references to this workspace in this source file
ORG &0070 .P SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .Q SKIP 1 \ Temporary storage, used in a number of places \ \ This is called DTIP in the original source code \ \ [Show more] .R SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * Add16x16Bit0 \ * AdjustRotation \ * AdjustVelocity \ * ApplyAerodynamics (Part 3 of 3) \ * ApplyFlightControl \ * ApplyFlightModel (Part 7 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * CheckIfAlienIsHit (Part 2 of 2) \ * ClearRows \ * ClipStartOfLine (Part 2 of 5) \ * ClipStartOfLine (Part 3 of 5) \ * ClipStartOfLine (Part 5 of 5) \ * DrawCanopy \ * DrawCanopyCorners \ * DrawCanopyLine (Part 1 of 9) \ * DrawCanopyLine (Part 3 of 9) \ * DrawCanopyLine (Part 8 of 9) \ * DrawCanopyLine (Part 9 of 9) \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 2 of 6) \ * DrawClippedLine (Part 4 of 6) \ * DrawClippedLine (Part 6 of 6) \ * DrawGunSights \ * DrawIndicatorLine \ * EraseCanopyLines \ * ExplodeAlien \ * FillCanopy \ * FillCanopyRows \ * GetHandVector \ * GetMoments \ * GetTrailVectorStep \ * Multiply16x16 \ * Multiply16x16Bit0 \ * Multiply16x16Mix \ * Multiply4x16 \ * Multiply8x16 \ * ProcessLanding (Part 6 of 7) \ * ProcessLanding (Part 7 of 7) \ * ProcessRunwayLine (Part 4 of 5) \ * ProjectAxisAngle \ * ProjectPoint (Part 1 of 3) \ * RemoveScore \ * ScaleByAltitude \ * ScaleFlightForces \ * ScaleUp \ * SetMatrices \ * SetMatrixEntry \ * SetObjPointCoords (Part 1 of 2) \ * SetObjPointCoords (Part 2 of 2) \ * SetPointCoords \ * SwapLinePoints \ * UpdateIndicator (Part 4 of 15) \ * UpdateIndicator (Part 11 of 15) \ * UpdateIndicator (Part 15 of 15) \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.S SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .T SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .U SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ArtificialHorizon \ * ClipStartOfLine (Part 2 of 5) \ * ClipStartOfLine (Part 3 of 5) \ * Delay \ * DivideScaled \ * DrawCanopyLine (Part 1 of 9) \ * DrawCanopyLine (Part 3 of 9) \ * DrawCanopyLine (Part 4 of 9) \ * DrawCanopyLine (Part 8 of 9) \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 5 of 6) \ * DrawClippedLine (Part 6 of 6) \ * DrawFuelPixel \ * DrawIndicatorBar \ * DrawIndicatorLine \ * DrawJoystickCross \ * DrawVectorLine (Part 1 of 3) \ * DrawVectorLine (Part 2 of 3) \ * EraseCanopyLines \ * ExplodeAlien \ * GetRadarVector \ * Multiply4x16 \ * Multiply8x8 \ * UpdateAliens (Part 2 of 5) \ * UpdateIndicator (Part 4 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.V SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .W SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .G SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .H SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * Add16x16Bit0 \ * ApplyAerodynamics (Part 3 of 3) \ * ApplyTurnAndThrust (Part 2 of 2) \ * ClipBestEndOfLine \ * ClipStartOfLine (Part 4 of 5) \ * DrawCanopyLine (Part 8 of 9) \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 3 of 6) \ * DrawIndicatorBar \ * DrawIndicatorHand \ * DrawIndicatorLine \ * DrawJoystickCross \ * DrawOrthoLine \ * Multiply16x16 \ * Multiply16x16Bit0 \ * Multiply16x16Mix \ * SetMatrices \ * SetMatrixEntry \ * SetPointCoords \ * Sine16Bit \ * SwapLinePoints \ * UpdateIndicator (Part 11 of 15) \ * UpdateIndicator (Part 13 of 15) \ * UpdateIndicator (Part 15 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.I SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .J SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * Add16x16Bit0 \ * ApplyAerodynamics (Part 1 of 3) \ * ApplyAerodynamics (Part 2 of 3) \ * ApplyAerodynamics (Part 3 of 3) \ * ClipStartOfLine (Part 2 of 5) \ * ClipStartOfLine (Part 3 of 5) \ * DivideScaled \ * DrawCanopyLine (Part 2 of 9) \ * DrawCanopyLine (Part 6 of 9) \ * DrawCanopyLine (Part 7 of 9) \ * DrawCanopyLine (Part 8 of 9) \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 5 of 6) \ * DrawFuelPixel \ * DrawIndicatorLine \ * DrawOrthoLine \ * DrawRadarBlip \ * DrawVectorLine (Part 2 of 3) \ * DrawVectorLine (Part 3 of 3) \ * Multiply16x16 \ * Multiply16x16Mix \ * SetMatrices \ * SetMatrixEntry \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.K SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * Add16x16Bit0 \ * ApplyAerodynamics (Part 3 of 3) \ * ArtificialHorizon \ * CheckObjDistance \ * ClipStartOfLine (Part 3 of 5) \ * ClipStartOfLine (Part 4 of 5) \ * DivideScaled \ * GetHandVector \ * MakeEngineSound \ * Multiply16x16Bit0 \ * Multiply16x16Mix \ * Multiply4x16 \ * ProjectAxisAngle \ * ProjectPoint (Part 2 of 3) \ * ResizeFeedingAlien \ * SetObjectCoords (Part 1 of 11) \ * SetObjectCoords (Part 2 of 11) \ * SetObjPointCoords (Part 1 of 2) \ * SetPointCoords \ * UpdateIndicator (Part 11 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.L SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 2 of 3) \ * ApplyFlightControl \ * ApplyFlightModel (Part 1 of 7) \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * DrawCanopyView \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 4 of 6) \ * DrawHalfHorizon \ * ProcessHorizonLine \ * ProcessLanding (Part 1 of 7) \ * ProcessLanding (Part 3 of 7) \ * ProcessLine (Part 1 of 7) \ * ProcessLine (Part 7 of 7) \ * ProcessLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.M SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 4 of 6) \ * DrawHalfHorizon \ * ProcessHorizonLine \ * ProcessLine (Part 1 of 7) \ * ProcessLine (Part 7 of 7) \ * ProcessLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.N SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ClipStartOfLine (Part 3 of 5) \ * ClipStartOfLine (Part 4 of 5) \ * DrawFuelPixel \ * DrawIndicatorBar \ * DrawIndicatorLine \ * DrawJoystickCross \ * DrawOrthoLine \ * DrawRadarBlip \ * DrawVectorLine (Part 3 of 3) \ * ProcessLinesToShow \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 3 of 3) \ * SetMatrixEntry \ * SetObjectCoords (Part 1 of 11) \ * SetObjectCoords (Part 3 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.PP SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckAlienWeakSpot \ * CheckIfAlienIsHit (Part 1 of 2) \ * ClipStartOfLine (Part 3 of 5) \ * ClipStartOfLine (Part 4 of 5) \ * DrawVectorLine (Part 1 of 3) \ * DrawVectorLine (Part 2 of 3) \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 2 of 3) \ * ScaleDown (Part 3 of 4) \ * SetObjPointCoords (Part 1 of 2) \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.QQ SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckIfAlienIsHit (Part 1 of 2) \ * ClipBestEndOfLine \ * ClipStartOfLine (Part 4 of 5) \ * ClipStartOfLine (Part 5 of 5) \ * DrawCanopyLine (Part 3 of 9) \ * DrawCanopyLine (Part 4 of 9) \ * DrawCanopyLine (Part 5 of 9) \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 3 of 6) \ * DrawVectorLine (Part 1 of 3) \ * DrawVectorLine (Part 2 of 3) \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 2 of 3) \ * ProjectPoint (Part 3 of 3) \ * ScaleDown (Part 1 of 4) \ * ScaleDown (Part 3 of 4) \ * SetObjPointCoords (Part 1 of 2) \ * SetPointCoords \ * SwapLinePoints \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.RR SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .SS SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more] .TT SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ClipBestEndOfLine \ * ClipStartOfLine (Part 1 of 5) \ * ClipStartOfLine (Part 2 of 5) \ * ClipStartOfLine (Part 4 of 5) \ * DivideScaled \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 2 of 6) \ * DrawClippedLine (Part 4 of 6) \ * ProjectPoint (Part 2 of 3) \ * SetPointCoords \ * SwapLinePoints \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.UU SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ClipBestEndOfLine \ * ClipStartOfLine (Part 2 of 5) \ * ClipStartOfLine (Part 4 of 5) \ * DrawClippedLine (Part 1 of 6) \ * DrawClippedLine (Part 3 of 6) \ * DrawClippedLine (Part 4 of 6) \ * ProjectPoint (Part 2 of 3) \ * ScaleDown (Part 1 of 4) \ * ScaleUp \ * SetObjPointCoords (Part 1 of 2) \ * SetObjPointCoords (Part 2 of 2) \ * SetPointCoords \ * SwapLinePoints \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.VV SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * ApplyFlightControl \ * CheckIfAlienIsHit (Part 2 of 2) \ * ClipStartOfLine (Part 4 of 5) \ * DrawVectorLine (Part 1 of 3) \ * DrawVectorLine (Part 3 of 3) \ * GetMoments \ * Multiply8x16 \ * ProjectPoint (Part 2 of 3) \ * ScaleDown (Part 1 of 4) \ * ScaleFlightForces \ * SetObjPointCoords (Part 1 of 2) \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.WW SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckIfAlienIsHit (Part 2 of 2) \ * ClipStartOfLine (Part 2 of 5) \ * ClipStartOfLine (Part 3 of 5) \ * ClipStartOfLine (Part 5 of 5) \ * DrawIndicatorLine \ * ProjectPoint (Part 2 of 3) \ * ScaleDown (Part 1 of 4) \ * ScaleUp \ * UpdateIndicator (Part 1 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.GG SKIP 1 \ Temporary storage, used in a number of places \ \ This is called PP in the original source code \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ * ApplyFlightModel (Part 2 of 7) \ * ApplyFlightModel (Part 6 of 7) \ * FireGuns \ * ProcessHorizonLine \ * ProcessLine (Part 4 of 7) \ * ProcessLine (Part 6 of 7) \ * ProcessLine (Part 7 of 7) \ * ProcessLinesToShow \ * ProcessRunwayLine (Part 2 of 5) \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 3 of 3) \ * SetObjectCoords (Part 3 of 11) \ * SetObjectCoords (Part 8 of 11) \ * SetObjPointCoords (Part 1 of 2) \ * SetObjPointCoords (Part 2 of 2) \ * SetPointCoords \ * UpdateBullets \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.HH SKIP 1 \ Temporary storage, used in a number of places \ \ [Show more]
\ \ This variable is used by the following: \ \ * ClipStartOfLine (Part 3 of 5) \ * ClipStartOfLine (Part 5 of 5) \ * ProcessLine (Part 7 of 7) \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.linesToShowEnd SKIP 1 \ The index of the first empty entry in the linesToShow \ list \ \ Set to 0 in ResetLineLists \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * MainLoop (Part 1 of 15) \ * ProcessLinesToShow \ * ResetLineLists \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.lineId SKIP 1 \ The line ID, used to pass lines to routines \ \ Line 0 is the horizon \ Lines 1-11 are the runway \ Lines 12-15 are bullets \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * ProcessLine (Part 1 of 7) \ * ProcessLine (Part 7 of 7) \ * ProcessLinesToHide \ * ProcessLinesToShow \ * ProcessRunwayLine (Part 1 of 5) \ * ProcessRunwayLine (Part 3 of 5) \ * ResetLineLists \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.lineCounter SKIP 1 \ Temporary storage, typically used to loop through \ lines \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * ProcessLinesToShow \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.linesToShowPointer SKIP 1 \ A pointer into the linesToShow list to keep track of \ where we have processed up to \ \ Set to 255 in ResetLineLists \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLinesToShow \ * ResetLineLists \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.linesToHidePointer SKIP 1 \ A pointer into the linesToHide list to keep track of \ where we have processed up to \ \ Set to 255 in ResetLineLists \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLinesToHide \ * ResetLineLists \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.linesToHideEnd SKIP 1 \ The index of the last entry in the linesToHide list \ \ Set to 255 in ResetLineLists \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 1 of 15) \ * MainLoop (Part 15 of 15) \ * ProcessLinesToHide \ * ProcessLinesToShow \ * ResetLineLists \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
Name: Stack variables [Show more] Type: Workspace Address: &0100 to &0175 Category: Workspaces Summary: Variables that share page 1 with the stack
Context: See this workspace on its own page References: No direct references to this workspace in this source file
ORG &0100 .lineBufferU SKIP 96 \ Line buffer storage for the line's |y-delta| (U) \ \ Stores information about lines that are drawn \ on-screen, so they can be quickly erased without \ having to spend precious time recalculating the line \ coordinates. The information is stored when a line is \ drawn by the DrawClippedLine routine, and is read by \ the EraseCanopyLines routine when the line is erased \ \ We can buffer up to 96 lines, with 48 in each of the \ two line buffers, so the maximum number of lines on \ screen at any one time is 48 lines out of the 193 \ lines defined in the world \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawClippedLine (Part 6 of 6) \ * EraseCanopyLines \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
ORG &0160 .mx1Lo SKIP 1 \ The value of mx1, used when constructing the rotation \ matrices (low byte) \ \ Stored as a 16-bit value (mx1Hi mx1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProjectAxisAngle \ * SetMatrices \ * SetMatrixEntry \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.my1Lo SKIP 1 \ The value of my1, used when constructing the rotation \ matrices (low byte) \ \ Stored as a 16-bit value (my1Hi my1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.mz1Lo SKIP 1 \ The value of mz1, used when constructing the rotation \ matrices (low byte) \ \ Stored as a 16-bit value (mz1Hi mz1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.mx2Lo SKIP 1 \ The value of mx2, used when constructing the rotation \ matrices (low byte) \ \ Stored as a 16-bit value (mx2Hi mx2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProjectAxisAngle \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.my2Lo SKIP 1 \ The value of my2, used when constructing the rotation \ matrices (low byte) \ \ Stored as a 16-bit value (my2Hi my2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.mz2Lo SKIP 1 \ The value of mz2, used when constructing the rotation \ matrices (low byte) \ \ Stored as a 16-bit value (mz2Hi mz2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
ORG &0170 .mx1Hi SKIP 1 \ The value of mx1, used when constructing the rotation \ matrices (high byte) \ \ Stored as a 16-bit value (mx1Hi mx1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProjectAxisAngle \ * SetMatrices \ * SetMatrixEntry \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.my1Hi SKIP 1 \ The value of my1, used when constructing the rotation \ matrices (high byte) \ \ Stored as a 16-bit value (my1Hi my1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.mz1Hi SKIP 1 \ The value of mz1, used when constructing the rotation \ matrices (high byte) \ \ Stored as a 16-bit value (mz1Hi mz1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.mx2Hi SKIP 1 \ The value of mx2, used when constructing the rotation \ matrices (high byte) \ \ Stored as a 16-bit value (mx2Hi mx2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProjectAxisAngle \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.my2Hi SKIP 1 \ The value of my2, used when constructing the rotation \ matrices (high byte) \ \ Stored as a 16-bit value (my2Hi my2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.mz2Hi SKIP 1 \ The value of mz2, used when constructing the rotation \ matrices (high byte) \ \ Stored as a 16-bit value (mz2Hi mz2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetMatrices \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
Name: Main variable workspace [Show more] Type: Workspace Address: &0400 to &07FF and &0900 to &0CFF Category: Workspaces Summary: The main block of game variables
Context: See this workspace on its own page References: No direct references to this workspace in this source file
ORG &0400 .pointStatus SKIP 216 \ Each point's status byte \ \ * Bit 0: \ \ * 0 = we have not yet projected this point \ \ * 1 = we have already projected this point \ \ * Bit 2: \ \ * 0 = yPoint is positive \ \ * 1 = yPoint is negative \ \ * Bit 3: \ \ * 0 = xPoint is positive \ \ * 1 = xPoint is negative \ \ * Bit 4: \ \ * 0 = |yPoint| * 2 < |zPoint| \ \ * 1 = |yPoint| * 2 >= |zPoint| \ \ * Bit 5: \ \ * 0 = |xPoint| < |zPoint| \ \ * 1 = |xPoint| >= |zPoint| \ \ * Bit 7: \ \ * 0 = the point's coordinates and visibility have \ not been calculated \ \ * 1 = the point's coordinates and visibility have \ already been calculated \ \ Zeroed in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * MainLoop (Part 15 of 15) \ * ProcessHorizonLine \ * ProcessLine (Part 3 of 7) \ * ProcessLine (Part 6 of 7) \ * ProcessLine (Part 7 of 7) \ * ProcessLinesToShow \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 3 of 3) \ * ResetVariables \ * SetPointVisibility \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.objectStatus SKIP 40 \ Each object's status byte \ \ * Bit 6: \ \ * 0 = the object's coordinates and visibility have \ not been calculated in this iteration of the \ main loop \ \ * 1 = the object's coordinates and visibility have \ already been calculated in this iteration of \ the main loop \ \ * Bit 7: \ \ * 0 = the object is not visible \ \ * 1 = the object is visible \ \ Zeroed in ResetVariables and in part 2 of the main \ loop \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 1 of 15) \ * MainLoop (Part 2 of 15) \ * ProcessLine (Part 4 of 7) \ * ProcessLine (Part 5 of 7) \ * ProcessRunwayLine (Part 1 of 5) \ * ProcessRunwayLine (Part 2 of 5) \ * SetObjectCoords (Part 11 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.linesToShow SKIP 200 \ A list of line IDs for lines that are visible \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * MainLoop (Part 1 of 15) \ * ProcessLinesToShow \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.relatedPoints SKIP 56 \ Contains a list, from relatedPoints+1 onwards, with \ the list size in relatedPoints \ \ Point IDs get added in part 3 of ProcessLine when \ those points are part of an object - only points \ that we haven't already processed are added \ \ The maximum size of the list is 49 \ \ Zeroed in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 2 of 15) \ * MainLoop (Part 12 of 15) \ * ProcessLine (Part 3 of 7) \ * ProcessLinesToShow \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.linesToHide SKIP 256 \ A list of line IDs for lines that are not visible \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 15 of 15) \ * ProcessLinesToHide \ * ProcessLinesToShow \ * ShowOrHideLine \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zPointLo SKIP 252 \ The low byte of the z-coordinate for the point with \ ID X is at zPointLo,X \ \ Stored as a 16-bit value (zPointHi zPointLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddPointToObject \ * AddTempToPoint (Part 1 of 2) \ * CopyPointToWork \ * CopyTempToPoint \ * CopyWorkToPoint \ * DrawRadarBlip \ * FireGuns \ * ProjectPoint (Part 1 of 3) \ * SetObjectCoords (Part 8 of 11) \ * SetPoint \ * SetPointCoords \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zLinearLo SKIP 1 \ Low byte of point 252 (z-coordinate) \ \ Point 252 is used to store the sum of all the forces \ on the plane when calculating the flight model \ \ Stored as a 16-bit value (zLinearHi zLinearLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zGravityLo SKIP 1 \ Low byte of point 253 (z-coordinate) \ \ Point 253 is used to store the gravity vector when \ calculating the flight model \ \ Stored as a 16-bit value (zGravityHi zGravityLo) .zTempPoint1Lo SKIP 1 \ Low byte of point 254 (z-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (zTempPoint1Hi zTempPoint1Lo) .zTempPoint2Lo SKIP 1 \ Low byte of point 255 (z-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (zTempPoint2Hi zTempPoint2Lo) ORG &0900 .xPointLo SKIP 252 \ The low byte of the x-coordinate for the point with \ ID X is at xPointLo,X \ \ Stored as a 16-bit value (xPointHi xPointLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddPointToObject \ * AddTempToPoint (Part 1 of 2) \ * CopyPointToWork \ * CopyTempToPoint \ * CopyWorkToPoint \ * DrawClippedLine (Part 1 of 6) \ * DrawHalfHorizon \ * DrawRadarBlip \ * FireGuns \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 3 of 3) \ * ResetRadar \ * SetObjectCoords (Part 8 of 11) \ * SetPoint \ * SetPointCoords \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xLinearLo SKIP 1 \ Low byte of point 252 (x-coordinate) \ \ Point 252 is used to store the sum of all the forces \ on the plane when calculating the flight model \ \ Stored as a 16-bit value (xLinearHi xLinearLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 4 of 7) \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xGravityLo SKIP 1 \ Low byte of point 253 (x-coordinate) \ \ Point 253 is used to store the gravity vector when \ calculating the flight model \ \ Stored as a 16-bit value (xGravityHi xGravityLo) .xTempPoint1Lo SKIP 1 \ Low byte of point 254 (x-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (xTempPoint1Hi xTempPoint1Lo) .xTempPoint2Lo SKIP 1 \ Low byte of point 255 (x-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (xTempPoint2Hi xTempPoint2Lo) .yPointLo SKIP 252 \ The low byte of the y-coordinate for the point with \ ID X is at yPointLo,X \ \ Stored as a 16-bit value (yPointHi yPointLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddPointToObject \ * AddTempToPoint (Part 1 of 2) \ * CopyPointToWork \ * CopyTempToPoint \ * CopyWorkToPoint \ * DrawClippedLine (Part 1 of 6) \ * DrawHalfHorizon \ * FireGuns \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 3 of 3) \ * SetObjectCoords (Part 8 of 11) \ * SetPoint \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLinearLo SKIP 1 \ Low byte of point 252 (y-coordinate) \ \ Point 252 is used to store the sum of all the forces \ on the plane when calculating the flight model \ \ Stored as a 16-bit value (yLinearHi yLinearLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yGravityLo SKIP 1 \ Low byte of point 253 (y-coordinate) \ \ Point 253 is used to store the gravity vector when \ calculating the flight model \ \ Stored as a 16-bit value (yGravityHi yGravityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTempPoint1Lo SKIP 1 \ Low byte of point 254 (y-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (yTempPoint1Hi yTempPoint1Lo) .yTempPoint2Lo SKIP 1 \ Low byte of point 255 (z-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (yTempPoint2Hi yTempPoint2Lo) .yPointHi SKIP 252 \ The high byte of the y-coordinate for the point with \ ID X is at yPointHi,X \ \ Stored as a 16-bit value (yPointHi yPointLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddPointToObject \ * AddTempToPoint (Part 1 of 2) \ * CheckLineDistance \ * CopyPointToWork \ * CopyTempToPoint \ * CopyWorkToPoint \ * DrawClippedLine (Part 1 of 6) \ * DrawHalfHorizon \ * ProjectPoint (Part 1 of 3) \ * ProjectPoint (Part 3 of 3) \ * SetObjectCoords (Part 8 of 11) \ * SetPoint \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLinearHi SKIP 1 \ High byte of point 252 (y-coordinate) \ \ Point 252 is used to store the sum of all the forces \ on the plane when calculating the flight model \ \ Stored as a 16-bit value (yLinearHi yLinearLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 6 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yGravityHi SKIP 1 \ High byte of point 253 (y-coordinate) \ \ Point 253 is used to store the gravity vector when \ calculating the flight model \ \ Stored as a 16-bit value (yGravityHi yGravityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTempPoint1Hi SKIP 1 \ High byte of point 254 (y-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (yTempPoint1Hi yTempPoint1Lo) .yTempPoint2Hi SKIP 1 \ High byte of point 255 (y-coordinate) \ \ Used as temporary point storage when rotating points \ in space \ \ Stored as a 16-bit value (yTempPoint2Hi yTempPoint2Lo) .xTurnHi SKIP 1 \ Turn rate around the x-axis (high byte) \ \ Stored as a 24-bit value (xTurnTop xTurnHi xTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddScaled \ * AdjustTurn \ * ApplyFlightModel (Part 6 of 7) \ * CopyPointToWork \ * CopyWorkToPoint \ * GetMoments \ * ResetVariable \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTurnHi SKIP 1 \ Turn rate around the y-axis (high byte) \ \ Stored as 35 * the turn rate in 180 degrees per minute \ \ Shown on indicator 5 \ \ Stored as a 24-bit value (yTurnTop yTurnHi yTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 5 of 7) \ * CopyPointToWork \ * CopyWorkToPoint \ * UpdateIndicator (Part 9 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zTurnHi SKIP 1 \ Turn rate around the z-axis (high byte) \ \ Stored as a 24-bit value (zTurnTop zTurnHi zTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * CopyPointToWork \ * CopyWorkToPoint \ * GetMoments \ * ProcessLanding (Part 7 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xVelocityPLo SKIP 1 \ Plane velocity along the x-axis from the perspective \ of the pilot (low byte) \ \ Stored as a 16-bit value (xVelocityPHi xVelocityPLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 1 of 3) \ * ApplyFlightModel (Part 2 of 7) \ * ApplyFlightModel (Part 5 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yVelocityPLo SKIP 1 \ Plane velocity along the y-axis from the perspective \ of the pilot (low byte) \ \ Stored as a 16-bit value (yVelocityPHi yVelocityPLo) .zVelocityPLo SKIP 1 \ Plane velocity along the a-axis from the perspective \ of the pilot (low byte) \ \ This is the same as the forward airspeed \ \ 100 mph is stored as 9.25 * 256 = 2368 \ \ so 50 mph = 0.5 * 2368 = 1184 = (4 160) \ so 70 mph = 0.7 * 2368 = 1658 = (6 122) \ so 100 mph = 1 * 2368 = 2368 = (9 64) \ so 400 mph = 4 * 2368 = 9472 = (37 00) \ \ Shown on indicator 1 \ \ Stored as a 16-bit value (zVelocityPHi zVelocityPLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 2 of 3) \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * UpdateIndicator (Part 3 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xTemp3Lo SKIP 1 \ The low byte of the xTemp3 temporary variable \ \ Stored as a 16-bit value (xTemp3Hi xTemp3Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * GetMoments \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp3Lo SKIP 1 \ The low byte of the yTemp3 temporary variable \ \ Stored as a 16-bit value (yTemp3Hi yTemp3Lo) .zTemp3Lo SKIP 1 \ The low byte of the zTemp3 temporary variable \ \ Stored as a 16-bit value (zTemp3Hi zTemp3Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * GetMoments \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xPlaneBot SKIP 1 \ The bottom byte of the plane's coordinate (x-axis) \ \ Stored as a 32-bit value (xPlaneTop xPlaneHi xPlaneLo \ xPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yPlaneBot SKIP 1 \ The bottom byte of the plane's coordinate (y-axis) \ \ Stored as a 32-bit value (yPlaneTop yPlaneHi yPlaneLo \ yPlaneBot) .zPlaneBot SKIP 1 \ The bottom byte of the plane's coordinate (z-axis) \ \ Stored as a 32-bit value (zPlaneTop zPlaneHi zPlaneLo \ zPlaneBot) .elevatorPosition SKIP 1 \ Elevator position (pitch) \ \ The controls that affect rotation around the x-axis \ \ Shown on indicator 8 or 10 as the joystick y-position \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightControl \ * ReadJoystick \ * UpdateFlightModel (Part 1 of 4) \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.rudderPosition SKIP 1 \ Rudder position (yaw) \ \ The controls that affect rotation around the y-axis \ \ Shown on indicator 9 \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 5 of 7) \ * UpdateIndicator (Part 13 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.aileronPosition SKIP 1 \ Aileron position (roll) \ \ The controls that affect rotation around the z-axis \ \ Shown on indicator 8 or 10 as the joystick x-position \ \ [Show more]
\ \ This variable is used by the following: \ \ * ReadJoystick \ * UpdateIndicator (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.thrustLo SKIP 1 \ Thrust (low byte) \ \ Thrust is in the range 0 to 1280 \ \ Shown on indicator 11 \ \ Stored as a 16-bit value (thrustHi thrustLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 7 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * MakeEngineSound \ * UpdateFlightModel (Part 2 of 4) \ * UpdateIndicator (Part 15 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xTurnTop SKIP 1 \ Turn rate around the x-axis (top byte) \ \ Stored as a 24-bit value (xTurnTop xTurnHi xTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddScaled \ * AdjustTurn \ * ApplyAerodynamics (Part 2 of 3) \ * CopyPointToWork \ * CopyWorkToPoint \ * GetMoments \ * ProcessLanding (Part 5 of 7) \ * ResetVariable \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTurnTop SKIP 1 \ Turn rate around the y-axis (top byte) \ \ Stored as 35 * the turn rate in 180 degrees per minute \ \ Shown on indicator 5 \ \ Stored as a 24-bit value (yTurnTop yTurnHi yTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 2 of 3) \ * ApplyFlightModel (Part 5 of 7) \ * CopyPointToWork \ * CopyWorkToPoint \ * UpdateIndicator (Part 9 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zTurnTop SKIP 1 \ Turn rate around the z-axis (top byte) \ \ Stored as a 24-bit value (zTurnTop zTurnHi zTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * CopyPointToWork \ * CopyWorkToPoint \ * GetMoments \ * ProcessLanding (Part 7 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xVelocityPHi SKIP 1 \ Plane velocity along the x-axis from the perspective \ of the pilot (high byte) \ \ Stored as a 16-bit value (xVelocityPHi xVelocityPLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 1 of 3) \ * ApplyFlightModel (Part 5 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yVelocityPHi SKIP 1 \ Plane velocity along the y-axis from the perspective \ of the pilot (high byte) \ \ Stored as a 16-bit value (yVelocityPHi yVelocityPLo) .zVelocityPHi SKIP 1 \ Plane velocity along the z-axis from the perspective \ of the pilot (high byte) \ \ This is the same as the forward airspeed \ \ 100 mph is stored as 9.25 * 256 = 2368 \ \ so 50 mph = 0.5 * 2368 = 1184 = (4 160) \ so 70 mph = 0.7 * 2368 = 1658 = (6 122) \ so 100 mph = 1 * 2368 = 2368 = (9 64) \ so 400 mph = 4 * 2368 = 9472 = (37 00) \ \ Shown on indicator 1 \ \ Stored as a 16-bit value (zVelocityPHi zVelocityPLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 2 of 3) \ * ApplyBumpyRide \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * FireGuns \ * MakeEngineSound \ * UpdateIndicator (Part 3 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xTemp3Hi SKIP 1 \ The high byte of the xTemp3 temporary variable \ \ Stored as a 16-bit value (xTemp3Hi xTemp3Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * GetMoments \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp3Hi SKIP 1 \ The high byte of the yTemp3 temporary variable \ \ Stored as a 16-bit value (yTemp3Hi yTemp3Lo) .zTemp3Hi SKIP 1 \ The high byte of the zTemp3 temporary variable \ \ Stored as a 16-bit value (zTemp3Hi zTemp3Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * GetMoments \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xTurnLo SKIP 1 \ Turn rate around the x-axis (low byte) \ \ Stored as a 24-bit value (xTurnTop xTurnHi xTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustTurn \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTurnLo SKIP 1 \ Turn rate around the y-axis (low byte) \ \ Stored as a 24-bit value (yTurnTop yTurnHi yTurnLo) .zTurnLo SKIP 1 \ Turn rate around the z-axis (low byte) \ \ Stored as a 24-bit value (zTurnTop zTurnHi zTurnLo) SKIP 3 \ These bytes appear to be unused .thrustHi SKIP 1 \ Thrust (high byte) \ \ Thrust is in the range 0 to 1280 \ \ Shown on indicator 11 \ \ Stored as a 16-bit value (thrustHi thrustLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 7 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * MakeEngineSound \ * UpdateFlightModel (Part 2 of 4) \ * UpdateIndicator (Part 15 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xMomentsScLo SKIP 1 \ Scaled angular force due to forces on the plane in \ the x-axis (low byte) \ \ Stored as a 24-bit value (xMomentsScTop xMomentsScHi \ xMomentsScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ * ScaleFlightForces \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yMomentsScLo SKIP 1 \ Scaled angular force due to forces on the plane in \ the y-axis (low byte) \ \ Stored as a 24-bit value (yMomentsScTop yMomentsScHi \ yMomentsScLo) .zMomentsScLo SKIP 1 \ Scaled angular force due to forces on the plane in \ the z-axis (low byte) \ \ Stored as a 24-bit value (zMomentsScTop zMomentsScHi \ zMomentsScLo) .xLiftDragScLo SKIP 1 \ Scaled linear force due to lift in the x-axis (low \ byte) \ \ Stored as a 24-bit value (xLiftDragScTop xLiftDragScHi \ xLiftDragScLo) .yLiftDragScLo SKIP 1 \ Scaled linear force due to side forces in the y-axis \ (low byte) \ \ Stored as a 24-bit value (yLiftDragScTop yLiftDragScHi \ yLiftDragScLo) .zLiftDragScLo SKIP 1 \ Scaled linear force due to drag in the z-axis (low \ byte) \ \ Stored as a 24-bit value (zLiftDragScTop zLiftDragScHi \ zLiftDragScLo) .zSlipMomentScLo SKIP 1 \ Scaled angular force in the z-axis due to aircraft \ slip (low byte) \ \ Stored as a 24-bit value (zSlipMomentScTop \ zSlipMomentScHi zSlipMomentScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yFlapsLiftScLo SKIP 1 \ Scaled linear force in the y-axis due to lift from the \ flaps (low byte) \ \ Stored as a 24-bit value (yFlapsLiftScTop \ yFlapsLiftScHi yFlapsLiftScLo) SKIP 2 \ These bytes appear to be unused .xControlsScLo SKIP 1 \ Scaled angular force due to the plane's controls in \ the x-axis (low byte) \ \ Stored as a 24-bit value (xControlsScTop xControlsScHi \ xControlsScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yControlsScLo SKIP 1 \ Scaled angular force due to the plane's controls in \ the y-axis (low byte) \ \ Stored as a 24-bit value (yControlsScTop yControlsScHi \ yControlsScLo) .zControlsScLo SKIP 1 \ Scaled angular force due to the plane's controls in \ the z-axis (low byte) \ \ Stored as a 24-bit value (zControlsScTop zControlsScHi \ zControlsScLo) .axisKeyUsage SKIP 3 \ The following locations are updated when keys are \ pressed in UpdateFlightModel: \ \ * axisKeyUsage = elevator \ \ * axisKeyUsage+1 = rudder \ \ * axisKeyUsage+2 = aileron \ \ In each case, the value is updated by adding the \ relevant keyLoggerLo value, which is 1 in each case, \ so these count up by 1 every time a relevant axis \ control key is pressed (in any direction), so they \ measure "axis control key usage" \ \ [Show more]
\ \ This variable is used by the following: \ \ * UpdateFlightModel (Part 1 of 4) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dxTurnLo SKIP 1 \ Rate of change of the plane's turn rate in the x-axis \ (low byte) \ \ Stored as a 24-bit value (dxTurnTop dxTurnHi dxTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustTurn \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyTurnLo SKIP 1 \ Rate of change of the plane's turn rate in the y-axis \ (low byte) \ \ Stored as a 24-bit value (dyTurnTop dyTurnHi dyTurnLo) .dzTurnLo SKIP 1 \ Rate of change of the plane's turn rate in the z-axis \ (low byte) \ \ Stored as a 24-bit value (dzTurnTop dzTurnHi dzTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 13 \ These bytes appear to be unused .xMomentsLo SKIP 1 \ Angular force due to airflow over the plane in the \ x-axis (low byte) \ \ Stored as a 16-bit value (xMomentsHi xMomentsLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * ScaleFlightForces \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yMomentsLo SKIP 1 \ Angular force due to airflow over the plane in the \ y-axis (low byte) \ \ Stored as a 16-bit value (yMomentsHi yMomentsLo) .zMomentsLo SKIP 1 \ Angular force due to airflow over the plane in the \ z-axis (low byte) \ \ Stored as a 16-bit value (zMomentsHi zMomentsLo) .xLiftDragLo SKIP 1 \ Linear force due to lift in the x-axis (low byte) \ \ Stored as a 16-bit value (xLiftDragHi xLiftDragLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 1 of 3) \ * ApplyAerodynamics (Part 3 of 3) \ * GetMoments \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLiftDragLo SKIP 1 \ Linear force due to side forces in the y-axis (low \ byte) \ \ Stored as a 16-bit value (yLiftDragHi yLiftDragLo) .zLiftDragLo SKIP 1 \ Linear force due to drag in the z-axis (low byte) \ \ Stored as a 16-bit value (zLiftDragHi zLiftDragLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * ApplyFlightControl \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zSlipMomentLo SKIP 1 \ Angular force in the z-axis due to aircraft slip (low \ byte) \ \ Stored as a 16-bit value (zSlipMomentHi zSlipMomentLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yFlapsLiftLo SKIP 1 \ Linear force in the y-axis due to lift from the flaps \ (low byte) \ \ Stored as a 16-bit value (yFlapsLiftHi yFlapsLiftLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 2 \ These bytes appear to be unused .xControlsLo SKIP 1 \ Angular force due to the plane's controls in the \ x-axis (low byte) \ \ Stored as a 16-bit value (xControlsHi xControlsLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightControl \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yControlsLo SKIP 1 \ Angular force due to the plane's controls in the \ y-axis (low byte) \ \ Stored as a 16-bit value (yControlsHi yControlsLo) .zControlsLo SKIP 1 \ Angular force due to the plane's controls in the \ z-axis (low byte) \ \ Stored as a 16-bit value (zControlsHi zControlsLo) SKIP 3 \ These bytes appear to be unused .xMomentsHi SKIP 1 \ Angular force due to airflow over the plane in the \ x-axis (high byte) \ \ Stored as a 16-bit value (xMomentsHi xMomentsLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * ScaleFlightForces \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yMomentsHi SKIP 1 \ Angular force due to airflow over the plane in the \ y-axis (high byte) \ \ Stored as a 16-bit value (yMomentsHi yMomentsLo) .zMomentsHi SKIP 1 \ Angular force due to airflow over the plane in the \ z-axis (high byte) \ \ Stored as a 16-bit value (zMomentsHi zMomentsLo) .xLiftDragHi SKIP 1 \ Linear force due to lift in the x-axis (high byte) \ \ Stored as a 16-bit value (xLiftDragHi xLiftDragLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 1 of 3) \ * ApplyAerodynamics (Part 3 of 3) \ * GetMoments \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLiftDragHi SKIP 1 \ Linear force due to side forces in the y-axis (high \ byte) \ \ Stored as a 16-bit value (yLiftDragHi yLiftDragLo) .zLiftDragHi SKIP 1 \ Linear force due to drag in the z-axis (high byte) \ \ Stored as a 16-bit value (zLiftDragHi zLiftDragLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * ApplyFlightControl \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zSlipMomentHi SKIP 1 \ Angular force in the z-axis due to aircraft slip (high \ byte) \ \ Stored as a 16-bit value (zSlipMomentHi zSlipMomentLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yFlapsLiftHi SKIP 1 \ Linear force in the y-axis due to lift from the flaps \ (high byte) \ \ Stored as a 16-bit value (yFlapsLiftHi yFlapsLiftLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 2 \ These bytes appear to be unused .xControlsHi SKIP 1 \ Angular force due to the plane's controls in the \ x-axis (high byte) \ \ Stored as a 16-bit value (xControlsHi xControlsLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightControl \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yControlsHi SKIP 1 \ Angular force due to the plane's controls in the \ y-axis (high byte) \ \ Stored as a 16-bit value (yControlsHi yControlsLo) .zControlsHi SKIP 1 \ Angular force due to the plane's controls in the \ z-axis (high byte) \ \ Stored as a 16-bit value (zControlsHi zControlsLo) SKIP 3 \ These bytes appear to be unused .xMomentsScHi SKIP 1 \ Scaled angular force due to forces on the plane in \ the x-axis (high byte) \ \ Stored as a 24-bit value (xMomentsScTop xMomentsScHi \ xMomentsScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ * ScaleFlightForces \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yMomentsScHi SKIP 1 \ Scaled angular force due to forces on the plane in \ the y-axis (high byte) \ \ Stored as a 24-bit value (yMomentsScTop yMomentsScHi \ yMomentsScLo) .zMomentsScHi SKIP 1 \ Scaled angular force due to forces on the plane in \ the z-axis (high byte) \ \ Stored as a 24-bit value (zMomentsScTop zMomentsScHi \ zMomentsScLo) .xLiftDragScHi SKIP 1 \ Scaled linear force due to lift in the x-axis (high \ byte) \ \ Stored as a 24-bit value (xLiftDragScTop xLiftDragScHi \ xLiftDragScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLiftDragScHi SKIP 1 \ Scaled linear force due to side forces in the y-axis \ (high byte) \ \ Stored as a 24-bit value (yLiftDragScTop yLiftDragScHi \ yLiftDragScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zLiftDragScHi SKIP 1 \ Scaled linear force due to drag in the z-axis (high \ byte) \ \ Stored as a 24-bit value (zLiftDragScTop zLiftDragScHi \ zLiftDragScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zSlipMomentScHi SKIP 1 \ Scaled angular force in the z-axis due to aircraft \ slip (high byte) \ \ Stored as a 24-bit value (zSlipMomentScTop \ zSlipMomentScHi zSlipMomentScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yFlapsLiftScHi SKIP 1 \ Scaled linear force in the y-axis due to lift from the \ flaps (high byte) \ \ Stored as a 24-bit value (yFlapsLiftScTop \ yFlapsLiftScHi yFlapsLiftScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 2 \ These bytes appear to be unused .xControlsScHi SKIP 1 \ Scaled angular force due to the plane's controls in \ the x-axis (high byte) \ \ Stored as a 24-bit value (xControlsScTop xControlsScHi \ xControlsScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yControlsScHi SKIP 1 \ Scaled angular force due to the plane's controls in \ the y-axis (high byte) \ \ Stored as a 24-bit value (yControlsScTop yControlsScHi \ yControlsScLo) .zControlsScHi SKIP 1 \ Scaled angular force due to the plane's controls in \ the z-axis (high byte) \ \ Stored as a 24-bit value (zControlsScTop zControlsScHi \ zControlsScLo) .xPlaneTop SKIP 1 \ The top byte of the plane's location, which is the \ byte above the high byte in xPlaneHi \ \ Stored as a 32-bit value (xPlaneTop xPlaneHi xPlaneLo \ xPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * SetObjectCoords (Part 8 of 11) \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yPlaneTop SKIP 1 \ The top byte of the plane's location, which is the \ byte above the high byte in yPlaneHi \ \ Stored as a 32-bit value (yPlaneTop yPlaneHi yPlaneLo \ yPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetObjectCoords (Part 8 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zPlaneTop SKIP 1 \ The top byte of the plane's location, which is the \ byte above the high byte in zPlaneHi \ \ Stored as a 32-bit value (zPlaneTop zPlaneHi zPlaneLo \ zPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetObjectCoords (Part 8 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xMomentsScTop SKIP 1 \ Scaled angular force due to forces on the plane in \ the x-axis (top byte) \ \ Stored as a 24-bit value (xMomentsScTop xMomentsScHi \ xMomentsScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ * ScaleFlightForces \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yMomentsScTop SKIP 1 \ Scaled angular force due to forces on the plane in \ the y-axis (top byte) \ \ Stored as a 24-bit value (yMomentsScTop yMomentsScHi \ yMomentsScLo) .zMomentsScTop SKIP 1 \ Scaled angular force due to forces on the plane in \ the z-axis (top byte) \ \ Stored as a 24-bit value (zMomentsScTop zMomentsScHi \ zMomentsScLo) .xLiftDragScTop SKIP 1 \ Scaled linear force due to lift in the x-axis (top \ byte) \ \ Stored as a 24-bit value (xLiftDragScTop xLiftDragScHi \ xLiftDragScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLiftDragScTop SKIP 1 \ Scaled linear force due to side forces in the y-axis \ (top byte) \ \ Stored as a 24-bit value (yLiftDragScTop yLiftDragScHi \ yLiftDragScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zLiftDragScTop SKIP 1 \ Scaled linear force due to drag in the z-axis (top \ byte) \ \ Stored as a 24-bit value (zLiftDragScTop zLiftDragScHi \ zLiftDragScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zSlipMomentScTop SKIP 1 \ Scaled angular force in the z-axis due to aircraft \ slip (top byte) \ \ Stored as a 24-bit value (zSlipMomentScTop \ zSlipMomentScHi zSlipMomentScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yFlapsLiftScTop SKIP 1 \ Scaled linear force in the y-axis due to lift from the \ flaps (top byte) \ \ Stored as a 24-bit value (yFlapsLiftScTop \ yFlapsLiftScHi yFlapsLiftScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 2 \ These bytes appear to be unused .xControlsScTop SKIP 1 \ Scaled angular force due to the plane's controls in \ the x-axis (top byte) \ \ Stored as a 24-bit value (xControlsScTop xControlsScHi \ xControlsScLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yControlsScTop SKIP 1 \ Scaled angular force due to the plane's controls in \ the y-axis (top byte) \ \ Stored as a 24-bit value (yControlsScTop yControlsScHi \ yControlsScLo) .zControlsScTop SKIP 1 \ Scaled angular force due to the plane's controls in \ the z-axis (top byte) \ \ Stored as a 24-bit value (zControlsScTop zControlsScHi \ zControlsScLo) SKIP 3 \ These bytes appear to be unused .dxTurnHi SKIP 1 \ Rate of change of the plane's turn rate in the x-axis \ (high byte) \ \ Stored as a 24-bit value (dxTurnTop dxTurnHi dxTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustTurn \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyTurnHi SKIP 1 \ Rate of change of the plane's rate turn in the y-axis \ (high byte) \ \ Stored as a 24-bit value (dyTurnTop dyTurnHi dyTurnLo) .dzTurnHi SKIP 1 \ Rate of change of the plane's rate turn in the z-axis \ (high byte) \ \ Stored as a 24-bit value (dzTurnTop dzTurnHi dzTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dxVelocityLo SKIP 1 \ Rate of change of the plane's velocity in the x-axis \ (low byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustVelocity \ * ApplyFlightModel (Part 6 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyVelocityLo SKIP 1 \ Rate of change of the plane's velocity in the y-axis \ (low byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dzVelocityLo SKIP 1 \ Rate of change of the plane's velocity in the z-axis \ (low byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) .dxRotationLo SKIP 1 \ Rate of change of the plane's rotation in the x-axis \ (low byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * ApplyFlightModel (Part 6 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyRotationLo SKIP 1 \ Rate of change of the plane's rotation in the y-axis \ (low byte) \ \ Stored as a 16-bit value (dyVelocityHi dyVelocityLo) .dzRotationLo SKIP 1 \ Rate of change of the plane's rotation in the z-axis \ (low byte) \ \ Stored as a 16-bit value (dzVelocityHi dzVelocityLo) .xVelocityHi SKIP 1 \ Plane velocity in the x-axis from the perspective \ of the outside world (high byte) \ \ Stored as a 24-bit value (xVelocityTop xVelocityHi \ xVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * AdjustVelocity \ * ApplyFlightModel (Part 2 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yVelocityHi SKIP 1 \ Plane velocity in the y-axis from the perspective \ of the outside world (high byte) \ \ This is the same as the vertical speed, and is from \ the perspective of the world outside the plane, so \ yVelocity is the vertical speed of the plane, \ irrespective of how the plane is orientated \ \ For the plane's speed from the point of view of the \ plane, see (xVelocityP yVelocityP zVelocityP) \ \ Stored as 128/425 * vertical speed in feet per minute, \ so: \ \ 1000 feet/minute is stored as 128/425 * 1000 = 301 \ \ 4000 feet/minute is stored as 128/425 * 4000 = 1205 \ \ Shown on indicator 4 \ \ Stored as a 24-bit value (yVelocityTop yVelocityHi \ yVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLanding (Part 6 of 7) \ * UpdateIndicator (Part 7 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zVelocityHi SKIP 1 \ Plane velocity in the z-axis from the perspective \ of the outside world (high byte) \ \ Stored as a 24-bit value (zVelocityTop zVelocityHi \ zVelocityLo) .xVelocityLo SKIP 1 \ Plane velocity in the x-axis from the perspective \ of the outside world (low byte) \ \ Stored as a 24-bit value (xVelocityTop xVelocityHi \ xVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustVelocity \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yVelocityLo SKIP 1 \ Plane velocity in the y-axis from the perspective \ of the outside world (low byte) \ \ This is the same as the vertical speed, and is from \ the perspective of the world outside the plane, so \ yVelocity is the vertical speed of the plane, \ irrespective of how the plane is orientated \ \ For the plane's speed from the point of view of the \ plane, see (xVelocityP yVelocityP zVelocityP) \ \ Stored as 128/425 * vertical speed in feet per minute, \ so: \ \ 1000 feet/minute is stored as 128/425 * 1000 = 301 \ \ 4000 feet/minute is stored as 128/425 * 4000 = 1205 \ \ Shown on indicator 4 \ \ Stored as a 24-bit value (yVelocityTop yVelocityHi \ yVelocityLo) .zVelocityLo SKIP 1 \ Plane velocity in the z-axis from the perspective \ of the outside world (low byte) \ \ Stored as a 24-bit value (zVelocityTop zVelocityHi \ zVelocityLo) SKIP 1 \ This byte appears to be unused .dxTurnTop SKIP 1 \ Rate of change of the plane's turn rate in the x-axis \ (top byte) \ \ Stored as a 24-bit value (dxTurnTop dxTurnHi dxTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustTurn \ * ApplyFlightModel (Part 5 of 7) \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyTurnTop SKIP 1 \ Rate of change of the plane's turn rate in the y-axis \ (top byte) \ \ Stored as a 24-bit value (dyTurnTop dyTurnHi dyTurnLo) .dzTurnTop SKIP 1 \ Rate of change of the plane's turn rate in the z-axis \ (top byte) \ \ Stored as a 24-bit value (dzTurnTop dzTurnHi dzTurnLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyTurnAndThrust (Part 1 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dxVelocityHi SKIP 1 \ Rate of change of the plane's velocity in the x-axis \ (high byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustVelocity \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyVelocityHi SKIP 1 \ Rate of change of the plane's velocity in the y-axis \ (high byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dzVelocityHi SKIP 1 \ Rate of change of the plane's velocity in the z-axis \ (high byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) .dxRotationHi SKIP 1 \ Rate of change of the plane's rotation in the x-axis \ (high byte) \ \ Stored as a 16-bit value (dxVelocityHi dxVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.dyRotationHi SKIP 1 \ Rate of change of the plane's rotation in the y-axis \ (high byte) \ \ Stored as a 16-bit value (dyVelocityHi dyVelocityLo) .dzRotationHi SKIP 1 \ Rate of change of the plane's rotation in the z-axis \ (high byte) \ \ Stored as a 16-bit value (dzVelocityHi dzVelocityLo) .xVelocityTop SKIP 1 \ Plane velocity in the x-axis from the perspective \ of the outside world (top byte) \ \ Stored as a 24-bit value (xVelocityTop xVelocityHi \ xVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * AdjustVelocity \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yVelocityTop SKIP 1 \ Plane velocity in the y-axis from the perspective \ of the outside world (top byte) \ \ This is the same as the vertical speed, and is from \ the perspective of the world outside the plane, so \ yVelocity is the vertical speed of the plane, \ irrespective of how the plane is orientated \ \ For the plane's speed from the point of view of the \ plane, see (xVelocityP yVelocityP zVelocityP) \ \ Stored as 128/425 * vertical speed in feet per minute, \ so: \ \ 1000 feet/minute is stored as 128/425 * 1000 = 301 \ \ 4000 feet/minute is stored as 128/425 * 4000 = 1205 \ \ Shown on indicator 4 \ \ Stored as a 24-bit value (yVelocityTop yVelocityHi \ yVelocityLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLanding (Part 3 of 7) \ * ProcessLanding (Part 6 of 7) \ * UpdateIndicator (Part 7 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zVelocityTop SKIP 1 \ Plane velocity in the z-axis from the perspective \ of the outside world (top byte) \ \ Stored as a 24-bit value (zVelocityTop zVelocityHi \ zVelocityLo) .slipRate SKIP 1 \ Slip rate \ \ Shown on indicator 6 \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 4 of 7) \ * ApplyFlightModel (Part 5 of 7) \ * UpdateIndicator (Part 10 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 3 \ These bytes appear to be unused .keyLoggerLo SKIP 6 \ Key logger (low byte) \ \ Populated with values from keyTable1Lo or keyTable2Lo \ when a key is pressed, or 0 if neither is pressed: \ \ L or < (elevator dive/pitch) = -1 or 1 \ A or + (rudder yaw left/right) = -1 or 1 \ S or D (aileron bank left/right) = -1 or 1 \ W or E (throttle down/up) = -15 or 15 \ U or B (undercarriage, brakes) = 4 or 7 \ F or SHIFT (flaps, fire) = 5 or 8 \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightControl \ * ProcessOtherKeys \ * ReadJoystick \ * UpdateFlightModel (Part 1 of 4) \ * UpdateFlightModel (Part 2 of 4) \ * UpdateKeyLogger \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 2 \ These bytes appear to be unused .xTemp2Lo SKIP 1 \ The low byte of the xTemp2 temporary variable \ \ Stored as a 24-bit value (xTemp2Top xTemp2Hi xTemp2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckIfAlienIsHit (Part 2 of 2) \ * ExplodeAlien \ * ProcessRunwayLine (Part 4 of 5) \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp2Lo SKIP 1 \ The low byte of the yTemp2 temporary variable \ \ Stored as a 24-bit value (yTemp2Top yTemp2Hi yTemp2Lo) .zTemp2Lo SKIP 1 \ The low byte of the zTemp2 temporary variable \ \ Stored as a 24-bit value (zTemp2Top zTemp2Hi zTemp2Lo) SKIP 5 \ These bytes appear to be unused .keyLoggerHi SKIP 6 \ Key logger (high byte) \ \ Populated with values from keyTable1Hi or keyTable2Hi \ when a key is pressed, or 0 if neither is pressed: \ \ L or < (elevator dive/pitch) = -1 or 1 \ A or + (rudder yaw left/right) = -1 or 1 \ S or D (aileron bank left/right) = -1 or 1 \ W or E (throttle down/up) = -15 or 15 \ U or B (undercarriage, brakes) = 4 or 7 \ F or SHIFT (flaps, fire) = 5 or 8 \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightControl \ * UpdateFlightModel (Part 1 of 4) \ * UpdateFlightModel (Part 2 of 4) \ * UpdateKeyLogger \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 2 \ These bytes appear to be unused .xTemp2Hi SKIP 1 \ The high byte of the xTemp2 temporary variable \ \ Stored as a 24-bit value (xTemp2Top xTemp2Hi xTemp2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckIfAlienIsHit (Part 2 of 2) \ * ExplodeAlien \ * ProcessRunwayLine (Part 2 of 5) \ * ProcessRunwayLine (Part 4 of 5) \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp2Hi SKIP 1 \ The high byte of the yTemp2 temporary variable \ \ Stored as a 24-bit value (yTemp2Top yTemp2Hi yTemp2Lo) .zTemp2Hi SKIP 1 \ The high byte of the zTemp2 temporary variable \ \ Stored as a 24-bit value (zTemp2Top zTemp2Hi zTemp2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ExplodeAlien \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xTemp2Top SKIP 1 \ The top byte of the xTemp2 temporary variable \ \ Stored as a 24-bit value (xTemp2Top xTemp2Hi xTemp2Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessRunwayLine (Part 4 of 5) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp2Top SKIP 1 \ The top byte of the yTemp2 temporary variable \ \ Stored as a 24-bit value (yTemp2Top yTemp2Hi yTemp2Lo) .zTemp2Top SKIP 1 \ The top byte of the zTemp2 temporary variable \ \ Stored as a 24-bit value (zTemp2Top zTemp2Hi zTemp2Lo) .gunSights SKIP 1 \ Gun sights status \ \ * Bit 6 = 1 while "I" is being held down \ \ * Bit 7 = 1 when sights are being shown \ 0 when sights are not being shown \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawGunSights \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.isObject SKIP 1 \ Temporary storage, used to store the object ID when we \ check the visibility of an object in ProcessLine and \ call SetObjectCoords to set its coordinates \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLine (Part 1 of 7) \ * ProcessLine (Part 7 of 7) \ * SetObjectCoords (Part 1 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.pointId SKIP 1 \ Temporary storage, used to store the ID of the current \ point when checking a line's visibility in the \ ProcessLine routine \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLine (Part 3 of 7) \ * ProcessLine (Part 5 of 7) \ * ProcessLine (Part 6 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.maxCoord SKIP 1 \ Temporary storage, used to store the maximum start \ point coordinate when clipping lines \ \ [Show more]
\ \ This variable is used by the following: \ \ * ClipBestEndOfLine \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.colourLogic SKIP 1 \ Determines the logic and bit patterns used to draw the \ canopy view: \ \ * %00000000 = erase lines \ Gets set to this value after each screen flip \ Sets AND logic for screen writing \ Sets bit patterns to erase the screen \ See EraseCanopyLines \ \ * %01000000 when colourCycle is %11110000 \ Sets ORA logic for screen writing \ See FlipColours \ \ * %10000000 when colourCycle is %00001111 \ Sets ORA logic for screen writing \ See ResetLineLists, FlipColours \ \ Set to %10000000 for each new game \ \ [Show more]
\ \ This variable is used by the following: \ \ * EraseCanopyLines \ * FlipColours \ * ModifyDrawRoutine \ * ResetLineLists \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.colourCycle SKIP 1 \ Determines which of the two canopy screens we are \ showing, so we can use colour cycling for smooth \ animation \ \ * %00001111 = show colour 1, hide colour 2 \ \ * %11110000 = show colour 2, hide colour 1 \ \ We show a colour by mapping it to white, and hide a \ colour by mapping it to black \ \ Set to %00001111 for each new game \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawCanopyView \ * DrawClippedLine (Part 6 of 6) \ * EraseCanopyLines \ * FlipColours \ * ModifyDrawRoutine \ * ResetLineLists \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.matrixAxis SKIP 1 \ The axis to be processed by the matrix routines, \ specifically those that populate the matrices \ \ * 0 = x-axis \ \ * 1 = y-axis \ \ * 2 = z-axis \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLine (Part 6 of 7) \ * ProjectAxisAngle \ * SetMatrices \ * SetMatrixEntry \ * UpdateFlightModel (Part 4 of 4) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.onGround SKIP 1 \ "On the ground" status \ \ * 0 = we are not on the ground \ \ * 1 = we are on the ground \ \ Set to 1 in ResetVariables (on the ground) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ * IndicatorU \ * MainLoop (Part 7 of 15) \ * ProcessLanding (Part 2 of 7) \ * ProcessLanding (Part 7 of 7) \ * ResetVariables \ * SpawnAlien \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.previousListEnd SKIP 1 \ Used to store the value of linesToHideEnd at the \ start of each iteration of the main loop, so we can \ refer to it at the end of the main loop to see if \ we have added anything to the list during the main \ loop \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 1 of 15) \ * MainLoop (Part 15 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.startStatus SKIP 1 \ Temporary storage, used to store the point status byte \ for the start point of a projected line \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.pointCount SKIP 1 \ Temporary storage, used as a counter in ProcessLine \ to check the start and end points of the line \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLine (Part 3 of 7) \ * ProcessLine (Part 7 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.pressingT SKIP 1 \ Set to 0 in the main loop if "T" is not being pressed, \ otherwise set to 1, to prevent holding down "T" from \ constantly switching the engine on and off \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 11 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.showRunwayDashes SKIP 1 \ Determines whether the dashes down the middle of the \ runway are close enough to be visible: \ \ * Bit 7: \ \ * 0 = the runway dashes are visible \ \ * 1 = the runway dashes are not visible \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 2 of 15) \ * ProcessRunwayLine (Part 1 of 5) \ * ProcessRunwayLine (Part 3 of 5) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.matrixNumber SKIP 1 \ The matrix used in matrix operations: \ \ * 0 = matrix 1 \ * 9 = matrix 2 \ * 18 = matrix 3 \ * 27 = matrix 4 \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ * ApplyFlightModel (Part 2 of 7) \ * ApplyFlightModel (Part 6 of 7) \ * FireGuns \ * ProcessHorizonLine \ * ProcessLine (Part 6 of 7) \ * ProcessRunwayLine (Part 2 of 5) \ * SetMatrices \ * SetMatrixEntry \ * SetObjectCoords (Part 8 of 11) \ * SetObjPointCoords (Part 1 of 2) \ * SetPointCoords \ * UpdateFlightModel (Part 4 of 4) \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.objectId SKIP 1 \ Temporary storage for an object ID (0 to 39) \ \ This is called OB in the original source code \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckAlienWeakSpot \ * CheckIfAlienIsHit (Part 2 of 2) \ * MainLoop (Part 6 of 15) \ * ProcessLine (Part 5 of 7) \ * ProcessRunwayLine (Part 2 of 5) \ * SetObjectCoords (Part 1 of 11) \ * SetObjectCoords (Part 8 of 11) \ * UpdateBullets \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.pressingTab SKIP 1 \ Bit 7 determines whether TAB is being pressed \ \ * 0 = not being pressed \ \ * 128 = being pressed \ \ This value is set in the ToggleJoystick routine \ \ [Show more]
\ \ This variable is used by the following: \ \ * ToggleJoystick \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.showLine SKIP 1 \ Determines whether a line is visible: \ \ * Bit 6: \ \ * 0 = the line fits into Aviator's 3D world \ \ * 1 = the line calculations overflowed, so the \ line does not fit into Aviator's 3D world \ \ * Bit 7: \ \ * 0 = the line is visible \ \ * 1 = the line is not visible \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 2 of 2) \ * CheckLineDistance \ * ProcessLine (Part 1 of 7) \ * ProcessLine (Part 4 of 7) \ * ProcessLine (Part 5 of 7) \ * ProcessLine (Part 6 of 7) \ * ProcessLine (Part 7 of 7) \ * ProcessRunwayLine (Part 1 of 5) \ * ProcessRunwayLine (Part 2 of 5) \ * ProcessRunwayLine (Part 3 of 5) \ * SetObjectCoords (Part 8 of 11) \ * SetPointCoords \ * ShowOrHideLine \ * UpdateBullets \ * UpdateLinesToShow \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.objectAnchorPoint SKIP 1 \ Used to store the anchor point of the current object \ \ This is the point to which all the other points in \ the object, i.e. those in xObjectPoint, yObjectPoint \ and zObjectPoint, are relative \ \ In other words, this is effectively the object's \ coordinate \ \ [Show more]
\ \ This variable is used by the following: \ \ * FireGuns \ * ProcessLine (Part 3 of 7) \ * ProcessLine (Part 5 of 7) \ * ProcessLine (Part 6 of 7) \ * ProcessRunwayLine (Part 2 of 5) \ * SetObjPointCoords (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.lineBuffer1Count SKIP 1 \ Offset of the last line stored in buffer 1 \ \ * -1 = buffer 1 is empty \ \ * 0 to 46 = buffer 1 contains lineBuffer1Count + 1 \ lines but is not full \ \ * 47 = buffer 1 is full and contains 48 lines \ \ We can buffer up to 96 lines, with 48 in each of the \ two line buffers, so the maximum number of lines on \ screen at any one time is 48 lines out of the 193 \ lines defined in the world \ \ Set to -1 in ResetVariables (buffer 1 empty) \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawClippedLine (Part 6 of 6) \ * EraseCanopyLines \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.lineBuffer2Count SKIP 1 \ Offset of the last line stored in buffer 2 \ \ * 47 = buffer 2 is empty \ \ * 48 to 94 = buffer 2 contains lineBuffer2Count + 1 \ lines but is not full \ \ * 95 = buffer 2 is full, contains 48 lines \ \ We can buffer up to 96 lines, with 48 in each of the \ two line buffers, so the maximum number of lines on \ screen at any one time is 48 lines out of the 193 \ lines defined in the world \ \ Set to 47 in ResetVariables (buffer 2 empty) \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawClippedLine (Part 6 of 6) \ * EraseCanopyLines \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.pressingUFBS SKIP 5 \ Determines whether any of the following keys are \ being pressed: \ \ * pressingUFBS = 1 while the undercarriage key "U" \ is being pressed, 0 otherwise \ \ * pressingUFBS+1 = 1 while the flaps key "F" is \ being pressed, 0 otherwise \ \ * pressingUFBS+2 is not used \ \ * pressingUFBS+3 = 1 while the brake key "B" is \ being pressed, 0 otherwise \ \ * pressingUFBS+4 = 1 while the fire key SHIFT is \ being pressed, 0 otherwise \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessOtherKeys \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.pointsToAward SKIP 1 \ Used to store the points scored from flying skills, so \ they can be added to the score once the task has been \ completed \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckFlyingSkills (Part 2 of 2) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.scoreDisplayTimer SKIP 1 \ Counter for removing the score after displaying it \ for a fixed amount of time \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 14 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.gunSoundCounter SKIP 1 \ Counter for the number of firing sounds we make when \ firing our guns (which makes the sound of two shots) \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 1 of 15) \ * MainLoop (Part 3 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xDashesVectorLo SKIP 1 \ The low byte of the xDashesVector temporary variable \ \ Stored as a 16-bit value (xDashesVectorHi \ xDashesVectorLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessRunwayLine (Part 4 of 5) \ * ProcessRunwayLine (Part 5 of 5) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yDashesVectorLo SKIP 1 \ The low byte of the yDashesVector temporary variable \ \ Stored as a 16-bit value (yDashesVectorHi \ yDashesVectorLo) .zDashesVectorLo SKIP 1 \ The low byte of the yDashesVector temporary variable \ \ Stored as a 16-bit value (zDashesVectorHi \ zDashesVectorLo) .xDashesVectorHi SKIP 1 \ The high byte of the xDashesVector temporary variable \ \ Stored as a 16-bit value (xDashesVectorHi \ xDashesVectorLo) .yDashesVectorHi SKIP 1 \ The high byte of the yDashesVector temporary variable \ \ Stored as a 16-bit value (yDashesVectorHi \ yDashesVectorLo) .zDashesVectorHi SKIP 1 \ The high byte of the yDashesVector temporary variable \ \ Stored as a 16-bit value (zDashesVectorHi \ zDashesVectorLo) .xTemp1Lo SKIP 1 \ The low byte of the xTemp1 temporary variable \ \ Stored as a 16-bit value (xTemp1Hi xTemp1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 1 of 2) \ * CheckIfAlienIsHit (Part 2 of 2) \ * ClipStartOfLine (Part 5 of 5) \ * CopyTempToPoint \ * DrawCanopyLine (Part 9 of 9) \ * EraseCanopyLines \ * ProcessRunwayLine (Part 2 of 5) \ * ProcessRunwayLine (Part 4 of 5) \ * ProcessRunwayLine (Part 5 of 5) \ * SetMatrices \ * SetObjPointCoords (Part 1 of 2) \ * SetObjPointCoords (Part 2 of 2) \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp1Lo SKIP 1 \ The low byte of the yTemp1 temporary variable \ \ Stored as a 16-bit value (yTemp1Hi yTemp1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 1 of 2) \ * ClipStartOfLine (Part 5 of 5) \ * CopyTempToPoint \ * DrawCanopyLine (Part 9 of 9) \ * EraseCanopyLines \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zTemp1Lo SKIP 1 \ The low byte of the zTemp1 temporary variable \ \ Stored as a 16-bit value (zTemp1Hi zTemp1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 1 of 2) \ * CopyTempToPoint \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xTemp1Hi SKIP 1 \ The high byte of the xTemp1 temporary variable \ \ Stored as a 16-bit value (xTemp1Hi xTemp1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 1 of 2) \ * CopyTempToPoint \ * ProcessRunwayLine (Part 4 of 5) \ * ProcessRunwayLine (Part 5 of 5) \ * SetMatrices \ * SetObjPointCoords (Part 1 of 2) \ * SetObjPointCoords (Part 2 of 2) \ * SetPointCoords \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yTemp1Hi SKIP 1 \ The high byte of the yTemp1 temporary variable \ \ Stored as a 16-bit value (yTemp1Hi yTemp1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 1 of 2) \ * CopyTempToPoint \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zTemp1Hi SKIP 1 \ The high byte of the zTemp1 temporary variable \ \ Stored as a 16-bit value (zTemp1Hi zTemp1Lo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AddTempToPoint (Part 1 of 2) \ * CopyTempToPoint \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.alien SKIP 0 \ Temporary storage, used as a flag to indicate the \ alien when updating the radar (shares a memory \ location with the objCount variable) \ \ [Show more]
\ \ This variable is used by the following: \ \ * DrawRadarBlip \ * ResetRadar \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.objCount SKIP 1 \ Temporary storage, used as a loop counter in the \ object group visibility checks (shares a memory \ location with the alien variable) \ \ [Show more]
\ \ This variable is used by the following: \ \ * SetObjectCoords (Part 4 of 11) \ * SetObjectCoords (Part 6 of 11) \ * SetObjectCoords (Part 9 of 11) \ * SetObjectCoords (Part 10 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.themeStatus SKIP 1 \ Theme status \ \ * Positive (bit 7 = 0) = the Theme is enabled and \ the value is the number of aliens we still have \ to add to the current wave (this starts at 8 and \ decreases down to 0 as each new alien is added) \ \ * Negative (bit 7 = 1) = the Theme is not enabled \ \ Set to 255 (Theme not enabled) in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * IndicatorT \ * MainLoop (Part 4 of 15) \ * MainLoop (Part 6 of 15) \ * MainLoop (Part 8 of 15) \ * ResetVariables \ * SetObjectCoords (Part 6 of 11) \ * SpawnAlien \ * UpdateAliens (Part 5 of 5) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.landingStatus SKIP 1 \ The current landing status \ \ A flag that determines whether we have landed safely \ on the runway, and therefore whether we fill up with \ fuel and so on \ \ * Positive = do all the landing-based tasks \ mentioned below \ \ * 0 = do not enable the Theme on firing \ do not fill up with fuel \ do not award points for landing \ \ * Negative = do not enable the Theme on firing \ do not fill up with fuel \ \ Set to 1 in ResetVariables (do all landing tasks) \ \ Set to %01000000 when speed is 0 in ApplyFlightModel \ \ Gets shifted left with a 1 inserted in bit 0 in \ ProcessLanding if we are doing an emergency landing \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 5 of 7) \ * FillUpFuelTank \ * MainLoop (Part 8 of 15) \ * ProcessLanding (Part 1 of 7) \ * ProcessLanding (Part 4 of 7) \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.engineStatus SKIP 1 \ Engine status \ \ * 0 = engine is off \ \ * Non-zero = engine is on \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 7 of 7) \ * ApplyTurnAndThrust (Part 2 of 2) \ * MainLoop (Part 9 of 15) \ * MainLoop (Part 11 of 15) \ * MakeEngineSound \ * SetEngine \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xRotationLo SKIP 1 \ Plane rotation angle around the x-axis (low byte) \ \ Same as the plane's pitch angle \ \ Stored as a 16-bit value (xRotationHi xRotationLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * ProcessLanding (Part 5 of 7) \ * ProjectAxisAngle \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yRotationLo SKIP 1 \ Plane rotation angle around the y-axis (low byte) \ \ Same as the plane's yaw angle, which is also the \ direction of the compass (i.e. the plane's heading) \ \ Stored as a 16-bit value (yRotationHi yRotationLo) .zRotationLo SKIP 1 \ Plane rotation angle around the z-axis (low byte) \ \ Same as the plane's roll angle \ \ Stored as a 16-bit value (zRotationHi zRotationLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLanding (Part 7 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xPlaneLo SKIP 1 \ Plane longitude/x-coordinate (low byte) \ \ Set to &C6E5 in ResetVariables \ \ Stored as a 32-bit value (xPlaneTop xPlaneHi xPlaneLo \ xPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * CheckBridgeAndTown \ * CheckPlaneOnRunway \ * FireGuns \ * ResetVariables \ * SetObjectCoords (Part 8 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yPlaneLo SKIP 1 \ Plane altitude/y-coordinate (low byte) \ \ Stored as the altitude in feet x 4 \ \ Shown on indicator 2 \ \ Set to (0 10) in ResetVariables \ \ Stored as a 32-bit value (yPlaneTop yPlaneHi yPlaneLo \ yPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 2 of 3) \ * ProcessLanding (Part 2 of 7) \ * ProcessLanding (Part 3 of 7) \ * ProcessLanding (Part 6 of 7) \ * ProcessLanding (Part 7 of 7) \ * ResetVariables \ * SetObjectCoords (Part 8 of 11) \ * UpdateIndicator (Part 4 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zPlaneLo SKIP 1 \ Plane latitude/z-coordinate (low byte) \ \ Set to &485C in ResetVariables \ \ Stored as a 32-bit value (zPlaneTop zPlaneHi zPlaneLo \ zPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckPlaneOnRunway \ * ResetVariables \ * SetObjectCoords (Part 8 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yLandingGear SKIP 1 \ The vertical distance between the cockpit and the \ lowest part of the plane \ \ * 5 when undercarriage is up \ \ * 10 when undercarriage is down \ \ [Show more]
\ \ This variable is used by the following: \ \ * IndicatorU \ * ProcessLanding (Part 2 of 7) \ * ProcessLanding (Part 6 of 7) \ * ProcessLanding (Part 7 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.firingStatus SKIP 1 \ Firing status \ \ * 0 = no bullets in the air \ \ * Non-zero = guns fired, bullets in the air \ \ This is called FRFLAG in the original source code \ \ [Show more]
\ \ This variable is used by the following: \ \ * FireGuns \ * MainLoop (Part 1 of 15) \ * MainLoop (Part 3 of 15) \ * MainLoop (Part 6 of 15) \ * MainLoop (Part 8 of 15) \ * UpdateBullets \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.ucStatus SKIP 1 \ Undercarriage status \ \ * 0 = undercarriage is up \ \ * Non-zero = undercarriage is down \ \ Set to 1 (undercarriage is down) in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 1 of 7) \ * ApplyFlightModel (Part 5 of 7) \ * IndicatorU \ * ProcessLanding (Part 3 of 7) \ * ProcessLanding (Part 6 of 7) \ * ProcessLanding (Part 7 of 7) \ * ProcessOtherKeys \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.flapsStatus SKIP 1 \ Flaps status \ \ * 0 = flaps are off (raised) \ \ * Non-zero = flaps are on (dropped) \ \ Set to 0 (flaps are off) in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 3 of 3) \ * IndicatorF \ * RetractFlapsIfFast \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 1 \ This byte appears to be unused .brakesStatus SKIP 1 \ Brakes status \ \ * 0 = brakes are off \ \ * Non-zero = brakes are on \ \ Set to 1 (brakes are on) in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyFlightModel (Part 5 of 7) \ * IndicatorB \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
SKIP 1 \ This byte appears to be unused .propellorStatus SKIP 1 \ Propellor status \ \ * 0 = propellor is working \ \ * Non-zero = propellor is broken \ \ If we make a crash landing with the undercarriage up, \ the propellor breaks and we can't turn the engine on \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 11 of 15) \ * ProcessLanding (Part 6 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.alienSpeed SKIP 1 \ The speed at which the aliens move, which starts at 10 \ for the first wave, then 14 for the second, 18 for the \ third, and 22 for all subsequent waves \ \ Set to 10 in ResetVariables \ \ [Show more]
\ \ This variable is used by the following: \ \ * AlienInAcornsville \ * ResetVariables \ * UpdateAliens (Part 5 of 5) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.reached512ft SKIP 1 \ Have we reached 512 feet in altitude since taking off? \ \ * 0 = no \ \ * Non-zero = yes \ \ The height measured is 512 feet, rather than the 500 \ feet mentioned in the manual, as this is set to \ non-zero when the plane's altitude in yPlaneHi >= 2 \ \ [Show more]
\ \ This variable is used by the following: \ \ * MainLoop (Part 10 of 15) \ * ProcessLanding (Part 2 of 7) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xRotationHi SKIP 1 \ Plane rotation angle around the x-axis (high byte) \ \ Same as the plane's pitch angle \ \ * 0 = straight ahead (bit 6 clear, bit 7 clear) \ * 64 = vertical up (bit 6 set, bit 7 clear) \ * 128 = backwards (bit 6 clear, bit 7 set) \ * 192 = nosedive (bit 6 set, bit 7 set) \ \ Set to 7 in ResetVariables \ \ Stored as a 16-bit value (xRotationHi xRotationLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * ApplyFlightModel (Part 5 of 7) \ * ProcessHorizonLine \ * ProcessLanding (Part 4 of 7) \ * ProcessLanding (Part 5 of 7) \ * ProcessLanding (Part 7 of 7) \ * ProjectAxisAngle \ * ResetVariables \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yRotationHi SKIP 1 \ Plane rotation angle around the y-axis (high byte) \ \ Same as the plane's yaw angle, which is also the \ direction of the compass (i.e. the plane's heading) \ \ * 0 = north (bit 6 clear, bit 7 clear) \ * 64 = east (bit 6 set, bit 7 clear) \ * 128 = south (bit 6 clear, bit 7 set) \ * 192 = west (bit 6 set, bit 7 set) \ \ Shown on indicator 0 \ \ Stored as a 16-bit value (yRotationHi yRotationLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * DrawRadarBlip \ * UpdateIndicator (Part 2 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zRotationHi SKIP 1 \ Plane rotation angle around the z-axis (high byte) \ \ Same as the plane's roll angle \ \ * 0 = horizontal (bit 6 clear, bit 7 clear) \ * 64 = vertical right (bit 6 set, bit 7 clear) \ * 128 = upside down (bit 6 clear, bit 7 set) \ * 192 = vertical left (bit 6 set, bit 7 set) \ \ Stored as a 16-bit value (zRotationHi zRotationLo) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ProcessLanding (Part 7 of 7) \ * ShowUpsideDownBar \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.xPlaneHi SKIP 1 \ Plane longitude/x-coordinate (high byte) \ \ Set to &C6E5 in ResetVariables \ \ Stored as a 32-bit value (xPlaneTop xPlaneHi xPlaneLo \ xPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * AdjustRotation \ * CheckBridgeAndTown \ * CheckFlyingSkills (Part 1 of 2) \ * CheckPlaneOnRunway \ * ResetVariables \ * SetObjectCoords (Part 8 of 11) \ * UpdateRadarBlip \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.yPlaneHi SKIP 1 \ Plane altitude/y-coordinate (high byte) \ \ Stored as the altitude in feet x 4 \ \ Shown on indicator 2 \ \ Set to (0 10) in ResetVariables \ \ Stored as a 32-bit value (yPlaneTop yPlaneHi yPlaneLo \ yPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * ApplyAerodynamics (Part 2 of 3) \ * ProcessLanding (Part 2 of 7) \ * ScaleByAltitude \ * SetObjectCoords (Part 8 of 11) \ * UpdateIndicator (Part 4 of 15) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above
.zPlaneHi SKIP 1 \ Plane latitude/z-coordinate (high byte) \ \ Set to &485C in ResetVariables \ \ Stored as a 32-bit value (zPlaneTop zPlaneHi zPlaneLo \ zPlaneBot) \ \ [Show more]
\ \ This variable is used by the following: \ \ * CheckFlyingSkills (Part 1 of 2) \ * CheckPlaneOnRunway \ * ResetVariables \ * SetObjectCoords (Part 8 of 11) \ \ This list only includes code that refers to the \ variable by name; there may be other references to \ this memory location that don't use this label, and \ these will not be mentioned above