Browse over 10,000 Electronics Projects

Vectron VR – Get in The Game

Vectron VR – Get in The Game

[Authored by Nick A. Bild, MS]
=========================

 

Vectron VR is a virtual reality peripheral for the Vectron 64 6502 CPU-based breadboard computer. It delivers independent 320×240 pixel images to each eye, thereby producing a stereoscopic 3D visual effect.

How Does It Work?

An identical background image is drawn for both eyes. Any element that should be in 3D (asteroid, cockpit control, etc.) is drawn in slightly different positions for each eye. When our eyes recognize a difference between the two images, we perceive that difference as depth. The result is that we perceive that we are seeing a single image, and certain elements appear to be floating at different depths, depending on the distance between them in the pair of screens. See Wikipedia – Stereopsis for more information.

Circuit Diagram (Click to Enlarge)

Hardware Optimizations

The 6502 was first introduced in 1975, so it has very limited processing capabilities.  In order to build a virtual reality headset around such a dated microprocessor required some optimizations.

 

Co-processing

One of the more notable optimizations that allow this to run at a rapid frame rate on a 6502 could be thought of as a primitive form of co-processing.

The TFT LCD screens operate via SPI. This means that each bit needs to be individually clocked to the screen. There are 76,800 addressable pixels, each of which requires 2 bytes of color data (16 bits!) to place a single pixel (plus some additional setup to choose the coordinates). The low clock speed of the 6502 makes clocking in each bit via processor instructions too slow for the rapid refresh rate needed for something like a video game.



Advertisement1


I sped this up greatly by adding hardware that will send exactly 7 square wave pulses at a rate of 7MHz after a signal is given at a specific address. So, I am able to issue the 1st clock for each byte programmatically, then the next 7 happen for free without the need for any control from the CPU (a shift register is storing the byte data before the 1st clock). Since this clocking happens at 7MHz, all 7 pulses will occur in 1 microsecond. The fastest instruction for a 6502 takes 2 clocks to execute (system clock speed 1.75MHz). As such, it is impossible for another instruction to interrupt the automatic clocking after it begins. I can start it, forget it, and continue with normal program execution. No need for any delay cycles!

Clock Speed Increase

The second optimization is a little bump up in the system clock speed. The Vectron 64 normally runs at 1MHz. I’ve increased that to 1.75MHz for a free 75% speed boost. This is well within the boundaries of what the 6502s of old could be clocked at, so the Vectron 64 is still staying true to its retrocomputing roots.

Parallel Screen Updates

A third optimization is the sharing of data and clock lines between the LCD screens. Only the CS (chip select) pins are uniquely addressable. This setup allows common elements to be drawn simultaneously on both screens by enabling the CS on both screens at the same time. This cuts the time required to draw background elements in half.

Asteroids VR

Asteroids VR is a 3D first-person reimagining of the classic Asteroids game, written in 6502 assemblies to demonstrate the abilities of Vectron VR. You sit in the cockpit of your spaceship (with 3D controls), looking out at the black void of space, while you blast away at asteroids that appear to be coming towards you.

Controls

Key Function
A Fly Left
S Fly Right
Q Nose Down
Z Nose Up
L Fire Laser Cannon

One of the drawbacks of a VR system is that without physically using the hardware, it’s very hard to demonstrate. With that caveat, I’ve done my best to capture some images and video of the game to give an idea of what it’s like. Unfortunately, this is a fairly poor representation of what it is like to wear the headset, so you’ll need to use a bit of imagination (or build your own Vectron VR — circuit diagrams available!).

I’ve removed the screens from the headset case to allow for better images (the lenses will distort photographs).

 

YouTube Video

 

 

 


Top