DAY 6 MB, simple day results screen
- joelpurnell115
- Aug 26, 2023
- 2 min read
Hi again, next day on the project, i still have not seemed to be able to work out this NASCAR and F1 boot issue as it seems to boot the majority of the time but sometimes not, karting is still perfectly consistant but that makes sense as its the first playerPref to be changed, so instead i decided to concerntrate on some other BIG guns, the Results screen, now Assetto Corsa handles there results in two ways, Server and Client side, i found this out by looking at Simresults, a website that is open source and is able to read AC json files, however this only allowed me to understand that where Assetto stored the files and not how they worked, so i used a JSON Visualizer called JSONCRACK, This gave me outputs that i could read which looked like this:
Using this i could determine that the JSON file called Race_out holds infomation on 1 the players, 2 the positions, 3 laps completed and 4 best laps, it does contain ALOT more infomation then that but these would be are target areas, after a TON of work and reading of documentation on how to use Newtonsoft.json in C# and how to read files and so on, we got this:
We decided in the end to just go for position, names and how many laps completed as this created such a better view.
Anyhow now thats done i think we move back to bug fixing again :((
References:
simresults.net. (n.d.). Simresults - rFactor, Assetto Corsa and Project Cars results log viewer, parser, converter, analyzer and reader. [online] Available at: https://simresults.net/ [Accessed 23 Jan. 2024].
jsoncrack.com. (n.d.). JSON Crack - Visualize Data to Graphs. [online] Available at: https://jsoncrack.com.
Comments