Skip to navigation


Wing mirrors

How Revs shows what's behind you, with a dash of shudder from the engines

Unlike most contemporary driving games, the wing mirrors in Revs actually work. Sure, the display is fairly blocky, but in terms of showing what's behind you and where, they do a surprisingly good job. Add in a bit of shudder from the engines, and the wing mirrors not only turn out to be an important part of the driving experience, but they also turn out to be an important part of the game's immersion.

Let's see how they work.

Mirror segments
---------------

There are two wing mirrors, one on each side of the car, and the reflective part of each mirror is split into three segments: outer, middle and inner. Each of these segments corresponds to one character column in the screen mode, so they are each four pixels wide.

The three segments are different heights, with the inner segment being 13 pixels high, the middle segment being 21 pixels high, and the outer segment being 25 pixel high. Each segment is vertically centred along a horizontal line through the middle of each mirror, to match the shape of the mirror casing.

If we colour the mirror, then we can see which parts are covered by each segment. Here's what that looks like, with each segment shown in blue and the centre alignment lines in black:

Outer segment in the left wing mirror
Outer segment in the left wing mirror
Middle segment in the left wing mirror
Middle segment in the left wing mirror
Inner segment in the left wing mirror
Inner segment in the left wing mirror

If we combine these into one image, we can see all the parts of the mirror that can be drawn:

All segments in the left wing mirror

The segments in the right mirror are laid out in a similar fashion, they're just reflected in the y-axis.

When drawing a car in the mirror, we poke directly into screen memory rather than into the game's screen buffer, as the mirrors are outside the track view, and only the track view uses the screen buffer (see the deep dive on drawing the track view for more on the screen buffer). There can be only one car in the mirror at any one time - the car just behind us, assuming it's close enough - and we draw this car as a four-pixel-wide block within just one of the six mirror segments, with the height of the block being proportional to the size of the car object that's behind us (so the more distant the car, the lower the height of the block).

The block is always drawn so that it is vertically centred on the centre line; it doesn't move up or down within each segment in the wing mirror, it only varies in height and in the segment in which it appears. So as a car overtakes us, its block will move along the centre line, from the inner segment to the outer segment, growing in size as the car gets closer, but always remaining centred on the horizontal centre line. The segment is chosen depending on the relative position of the car behind us, so although there are only three segments on each side, the mirrors give a realistic sense of exactly where our nearest competitor is, and how they are driving.

Let's see how the mirror calculations work in more detail.

Working out what to show in the mirrors
---------------------------------------

There are two mirror-drawing routines that take care of everything. The main routine is UpdateMirrors, which is called from part 2 of MainDrivingLoop on every iteration of the main driving loop. This routine works out what to draw in the mirror, and it then calls the DrawCarInMirror routine to do the actual drawing. We'll take a look at UpdateMirrors here, and DrawCarInMirror below.

The first step in UpdateMirrors is to check whether the closest car behind us is visible. If it isn't, then we check to see if any of the segments are currently displaying a car, and if so, we clear those segments by calling the DrawCarInMirror routine with A set to 0. This draws the entire mirror segment in white, thus clearing any existing reflections.

If the car behind is close enough to be visible, then the rest of the routine works out which mirror segment should show that car, if any. The first step is to calculate the size of the car that needs to be drawn in the mirror, which we can then pass to DrawCarInMirror as the non-zero height of the block to draw in A.

Earlier in the main driving loop, before we get to the wing mirrors, the object size for each car in the vicinity gets calculated and put into the objectSize table, as part of the car-building process in the BuildCarObjects routine. We can therefore calculate the size of the car in the mirror by taking the size of the car's object from the objectSize table, dividing it by 8 and putting it in variable T, as follows:

  T = objectSize / 8

This gives us half the number of pixel lines to draw in the mirror, so if T = 1, we will end up drawing a block that's two pixels high, and if T = 4, we'll draw a block that's eight pixels high.

We then calculate the upper and lower offsets of the car block within the mirror segment, by taking the offset of the middle row in the segment, and adding and subtracting T to give us T rows either side of the centre line. The offset for the centre line is defined as &B6, so we can calculate the upper and lower offsets of the car block in TT and N as follows:

  TT = &B6 + T

  N = &B6 - T

If we decide to draw the car, then we can pass N and TT (the latter via A) into the DrawCarInMirror routine to draw the block in the mirror; see the "Drawing a car in the mirror" section below for details of how they are used. Before then, we need to work out if the car is visible in the mirror, which we do by calculating which segment the car might appear in, so let's look at that next.

Calculating the mirror segment
------------------------------

By now we know that the car behind is close enough to be visible, and we've calculated the car's height in the mirror, but before doing any drawing, we need to work out which mirror segment the car should appear in (or whether it is too far to the side to be visible).

We do this by calculating the yaw angle between the player's car and the car behind, but before diving into the maths behind this, let's remind ourselves how yaw angles are measured in Revs. You can read all about them in the deep dive on pitch and yaw angles, but this sums up the important parts:

           0
     -32   |   +32
        \  |  /
         \ | /                 ^
          \|/                  |
  -64 -----+----- +64          +   Overhead view of car, looking forward
          /|\
         / | \
        /  |  \
     -96   |   +96
          128

This diagram shows yaw angles that are relative to the player's car, so a yaw angle of 0 is dead ahead, while a yaw angle of -32 is at 45 degrees to the left of centre. Positive angles are clockwise from dead ahead, while negative angles are anti-clockwise, and a single byte describes an entire circle.

Coming back to the mirror segment calculation, we want to work out the yaw angle between the player and the car behind. The player's current yaw angle in (playerYawAngleHi playerYawAngleLo) is the angle in which the player's car is pointing, relative to the direction of the track, so a yaw angle of 0 means the player is pointing dead ahead. The other driver's yaw angle in (objYawAngleHi objYawAngleLo) is also stored relative to the direction of the track, and denotes the angle between the player and the other driver. So we now calculate the following:

  A = (objYawAngleHi - playerYawAngleHi - 4) / 8

This gives us the difference in yaw angle between the direction that the player is facing along the track, and the angle between the player and the car behind. This is a bit difficult to visualise, but if you imagine that the player's car is facing dead straight along the track, then playerYawAngleHi is 0 and we only need to consider the value of objYawAngleHi, so the angle we want would look like this for positive values of objYawAngleHi:

                            ^
                            |
                            |        -.
                            |          `.  objYawAngleHi
                          Player        | 
                             \          v
                              \
                               \
                                \
                              Car behind

or like this if objYawAngleHi were negative:

                            ^
                            |
                   .-       |
  objYawAngleHi  .´         |
                 |        Player
                 v         /
                          /
                         /
                        /
                   Car behind

If playerYawAngleHi is non-zero, then the player is not pointing straight along the track, so we subtract the angles to get the relative yaw. For example, if playerYawAngleHi is positive, then the player is pointing to the right and we have the following:

              playerYawAngleHi
                              |
                              v
                            :   /
                            :  /
                            : /      -.
                            :/         `.  objYawAngleHi - playerYawAngleHi
                          Player        | 
                             \          v
                              \
                               \
                                \
                              Car behind

Note that we divide the angle by 8 in our calculation above, but only after subtracting 4, which rounds the result down to the integer below (as we simply ignore the fractional part in what would be the low byte of the calculation). This division and rounding converts the standard set of angles to the following:

           0
    -4     |   +3
        \  |  /
         \ | /                 ^
          \|/                  |
   -8 -----+----- +7           +   Overhead view of car, looking forward
          /|\
         / | \
        /  |  \
     -12   |   +11
          +15

It's worth noting that a side effect of this rounding is that the negative angles now have a magnitude of one greater than their positive equivalents, as you can see above.

Overall, the above calculation gives us a signed integer that describes the angle of the car behind the player from the perspective of the player. This integer is rounded so that each integer value represents an angle arc of that integer plus or minus 0.5.

We can now map this result to the segments in each mirror, which we do using the mirrorSegment table. This table maps the divided and rounded yaw angle to the mirror segments as follows:

    | left  |  left  | left  |                | right | right  | right |
    | outer | middle | inner |                | outer | middle | inner |
    |       |        |       |                |       |        |       |
    |       |        |       |                |       |        |       |
       -14     -15      -16         ....         +15     +14      +13

If we consider how this would work if we used the unrounded yaw angle in (objYawAngleHi - playerYawAngleHi) / 8, we would get the following ranges for each segment:

    | left  |  left  | left  |                | right | right  | right |
    | outer | middle | inner |                | outer | middle | inner |
    |       |        |       |                |       |        |       |
    |       |        |       |                |       |        |       |
   -13     -14      -15     -16    ....      +16     +15      +14     +13

In other words, each segment maps to a range of size 1 in our divided yaw angle, which is the equivalent of an undivided angle of 8. Given that 128 is equivalent to 180 degrees, that means that each mirror segment covers an arc of 180 * (8 / 128) = 11.25 degrees. So in terms of degrees, the mirror segments cover the angles behind the driver as follows:

    | left  |  left  | left  |                | right | right  | right |
    | outer | middle | inner |                | outer | middle | inner |
    |       |        |       |                |       |        |       |
    |       |        |       |                |       |        |       |
  -33.75  -22.5    -11.25    0     ....       0     +11.25   +22.5   +33.75

So the mirrors show what's behind the player, covering a 67.5 degree arc from the back of the car that's split into six segments of 11.25 degrees each, and we now have a corresponding integer in A that maps to the mirrorSegment table to tell us which of those segments should reflect the image of the car behind us.

The next step is to draw the car in the mirror, so let's take a look at what's involved.

Drawing a car in the mirror
---------------------------

Now that we know which segment the car behind us should appear in, we loop through the six mirror segments in turn, iterating from the right outer segment to the left outer segment. For each one, we decide whether to call the DrawCarInMirror routine to clear or draw the segment as appropriate.

We pass the following values to the routine:

  • Y contains the segment number (0 for the left outer segment, 5 for the right outer segment).
  • N contains the start offset within the segment for the car lines, as calculated above.
  • A contains one of the following:
    • If we are drawing a car in this segment, it contains the non-zero end offset within the segment for the car lines, from the value of TT that we calculated above
    • If we need to clear this segment, because it is still showing a car from the previous iteration that has since moved on, it contains 0

The routine draws all the pixel lines in the specified mirror segment, drawing either white or black lines depending on this calculation:

  If N <= offset < A              then draw a black line (draw a car)

  If N > offset or offset >= A    then draw a white line (clear the mirror)

where offset runs from the startMirror value for this segment to the endMirror value for this segment. In other words, when we draw a car, we draw it between offset N and offset A - 1, and if A = 0, then we end up clearing the mirror segment, as the offset is always greater or equal to zero.

A reminder that we calculated A and N above, from the car size in T, as follows (we passed TT to the DrawCarInMirror in A):

  TT = &B6 + T

  N = &B6 - T

Offset &B6 is the centre line of each mirror, so our calculations above work out the top and bottom of the car block, with larger values of T (i.e. bigger car objects) giving larger blocks.

So, for example, segment 2 (the inner segment of the left mirror) has a startMirror value of &B0 and an endMirror value of &BC, so the offset will run from &BC down to &B0, one for each of the 13 pixel lines in the segment. If this value is between A and N, then we draw a black pixel line, otherwise we draw a white pixel line to clear that line in the mirror. In other words, we restrict the size of the car that's drawn by setting A and N to values within the range for this segment.

This process is made slightly more complicated because the segments cover multiple character rows, so we have to factor that in when drawing each pixel byte in the car block (and when clearing the mirrors). There are &140 bytes in each character row and we draw each segment from the bottom character row upwards, so when we want to move from the top of the character block on the current row to the bottom of the character block on the row above, we subtract &140 to go up to the top of the character block on the row above, and then add 8 to jump down to the bottom row. In all, we subtract &140 - 8 = &138, as we do this subtraction after we have already moved out of the top of the current character row.

The base screen address for each mirror segment is stored in the configuration variables mirror0 through mirror5. To calculate the screen address for the bottom of each mirror segment, we take the base address and add the offset (e.g. &B6 for the centre line), making sure we subtract the relevant number of &138s to cater for the character rows. Putting this all together, the segments are defined as follows, moving from left outer (segment 0) to right outer (segment 5):

#FromToRowsBase addressCentre line address
0&AA&C225&7540&7540 - &138 - &138 + &B6 = &7386
1&AC&C021&7548&7548 - &138 - &138 + &B6 = &738E
2&B0&BC13&7418&7418 - &138 + &B6 = &7396
3&B0&BC13&7530&7530 - &138 + &B6 = &74AE
4&AC&C021&7670&7670 - &138 - &138 + &B6 = &74B6
5&AA&C225&7678&7678 - &138 - &138 + &B6 = &74BE

The last column in this table shows how we can calculate the screen address of the centre line from the base address, offset and character row subtractions. You can see that for the inner segments (2 and 3), we have to cross one character row boundary to get from the bottom of the segment to the centre line, while for the other segments we have to cross two character row boundaries.

Specifically, the segments cover the following spans, working from the bottom of the segment to the top:

  • The inner segments (2 and 3) span 5 lines in the bottom character row (offsets &BC down to &B8), then 8 lines in the top character row (offsets &B7 down to &B0), giving a total of 13 pixels.
  • The middle segments (1 and 4) span 1 line in the bottom character row (offset &C0), then 8 lines in the next character row up (offsets &BF down to &B8), then 8 lines in the next character row up (offsets &B7 down to &B0), then 4 lines in the top character row (offsets &AF down to &AC), giving a total of 21 pixels.
  • The outer segments (0 and 5) span 3 lines in the bottom character row (offsets &C2 down to &C0), then 8 lines in the next character row up (offsets &BF down to &B8), then 8 lines in the next character row up (offsets &B7 down to &B0), then 6 lines in the next character row (offsets &AF down to &AA), giving a total of 25 pixels.

The mirror maths a bit of a mind-bender, but the end result is a block, drawn horizontally centred on the centre line and in the correct segment, and with a height that's proportional to the size of the car object, so closer objects appear larger in the mirror.

The final touch is to add engine shudder, and we're done.

Applying engine shudder
-----------------------

When the engine is turned off, cars in the wing mirrors appear as solid black blocks. When the engine is on, however, they shudder into a mess of black and white pixels that's only vaguely in the same shape, as the engine shakes the mirrors and blurs the reflection.

This is a small touch, and a brilliant one... but even more impressive is just how tiny the code is that implements this detail. These are the instructions in the DrawCarInMirror routine that apply the magic:

  LDX VIA+&68
  AND &2000,X
  AND engineStatus

These lines are run when A already contains a value of %11110000, to represent four pixels of colour 2 (white) in screen memory. This is left over from the logic that checks whether we are clearing the mirror, which we do by filling the segment with white, hence setting A to four white pixels. In this case we don't clear the mirror, but we still have this value left over in A.

The first line above sets X to a random number by reading the 6522 User VIA T1C-L timer 2 low-order counter (SHEILA &68), which decrements one million times a second and will therefore be pretty random.

The second line then ANDs the value of A with the X-th byte from location &2000. This contains game code - specifically parts of the DrawObject, ScaleObject and DrawObjectEdges routines - so this randomly switches some of the white pixels (colour 2) to black (colour 0) in the pixel byte in A. If we just used the value of X from the 6522 timer for our engine judder, then there's a risk that the random values for sequential pixel bytes in the mirror wouldn't be random, but would actually count downwards in sequence, as that's what the 6522 timer does; by AND'ing with the game code, this relationship gets broken.

The third line then either zeroes the entire byte (when engineStatus is zero, which is the case when the engine is off), or it leaves it alone (when engineStatus is &FF, which is the case when the engine is on). This leaves us with a value in A that gets poked into screen memory to update the relevant pixel byte in the correct mirror segment, and once the process is repeated for each pixel line in the segment, we're done.

So these three instructions ensure that cars in the mirror are shown in solid black when the engine is off, or as randomised versions of their original shape when the engine is on. In other words, they implement randomised engine shudder into the reflections in the wing mirrors, in just three instructions that together take up a grand total of eight bytes.

For fans of the concise nature of 8-bit assembly language - myself included - this is very elegant stuff indeed.