Forza Dash iOS App

Forza Dash iOS App displaying real-time HUD information
In August of 2019, I released an iOS App to display realtime HUD info from Forza Motorsport 7 while you are racing. It has since been removed as I didn't bother to keep it updated, but others have created some you can still find in the app store.
Forza Motorsport 7 had just released an update that allowed you to send telemetry data to another device real-time. This is done over UDP at 60 frames per second and works with XBOX or PC!
Implementation Details
The data interface was primarily designed for people building motion sleds and the like. It contains lots of data useful to those devices like individual tire slippage, angular velocity, etc. I decided to build a native iOS app that receives this data and allows you to use the app on your phone as a secondary dash. The amount of information I can use that is helpful is limited, but the app did display:
- Tachometer (RPM)
- Speedometer
- Drivetrain (tells you what your car has…AWD, FWD, RWD)
- Shift light
Normally, to determine optimum shift point you have to take a lot of things into consideration including gear ratios but that data is not available, at least not yet. So, I set a threshold of 80% of max RPM for the car you are driving.
Video demonstration of Forza Dash iOS App
Technical Details
I wrote this app in Objective-C. I haven't worked with raw UDP packets since the Quake days! It is amazing how fast everything is processed. There is no visible lag as you can see in the video above which is me playing on an XBOX that is streaming data to my iPhone app.
This was pretty easy..I simply defined a STRUCT for the Forza UDP datagram and popped the data packet into that to pick out what I needed. Hardest part was figuring out what unit of measure is used for velocity values. The documentation does not tell you, but I finally figured out it was meters per second.