Keith Carter, every element there needs an explanation:
1. Site background texture. You can change it by replacing r2la/static/images/nasty_fabric.png file. Keep the name, change png to something different.
2. Top navbar is a complex uikit element. I can tell you how to change its background color, but I can not change all other elements properties, i.e. hoover/press colors, drop-down elements colors, css is to complex for me there. You can change its background color by adding this line to app.css (set your own color value):
3. Custom banner div background. You can change it by adding this line to app.css:Code:.uk-navbar {background-color: #F0D1FF;}
4. Blue line highlight color in Results Viewer can be changed by finding and changing this existing lines in app.css:Code:#custom_site_banner > div {background-color: #F0D1FF;}
5. Race/qual/practice badges. I added .uk-badge-race .uk-badge-qual .uk-badge-practice classes to app.css just now and re-uploaded r2la archive without version change. Re-download it, install, find and change that values.Code:.log_panel:hover {background-color:#ccf1ff} .log_panel {cursor:default} .log_panel_active {background-color:#ccf1ff}
6. Session report background. Its pretty complex panel. If you change its background it looks really bad, all tabs and tables there were created around default background color. If you really want, you can change it by adding this line to app.css:
There are other report_wrapper ids in code on other pages, so it can break something else. Really I don't recommend changing this and can not make it changeable, because I would need to make all reports design elements to work with other bg colors, that's too much work.Code:#report_wrapper .uk-panel {background-color: #F0D1FF;}
5. Race/qual/practice badges. I added .uk-badge-race .uk-badge-qual .uk-badge-practice classes to app.css just now and re-uploaded r2la archive without version change. Re-download it, install, find and change that values.
I did not change anything in new version about that file. Google says that error can happen when using windows in-build zip to open archives. Try using 7zip to unzip it, it can handle long paths. Or try using other unzip target location with minimal folders in path, like c:/temp.
Not possible to change class colors on telemetry page, since live timing module is independent of r2la championships and its classes. It can only show car class name that exists in live game data stream in shared memory, which is not the same.
I think can add fuel column to live timing table, it will be number in percent and will be optional. But I will need to see if this value really exists in data stream for all cars.
As soon as server is running you should see LiveTiming working. No drivers needed. Something is not working for you. Make sure you put plugin dll in correct folder and tuned it on in rF2: check that your rFactor 2\UserData\player\CustomPluginVariables.JSON file has this lines:
Code:"rFactor2SharedMemoryMapPlugin64.dll":{ " Enabled":1, "DebugISIInternals":0, "DebugOutputLevel":2, "DedicatedServerMapGlobally":0, "EnableStockCarRulesPlugin":0 }
Make sure that you start r2la with r2la_live_timing.bat
I do not support telemetry for DEDI version. You can still host your non-DEDI version (start it by rF2 Log Analyzer ver. 2.058.13\web2py\web2py.exe like you do for DEDI) if you really want to show your telemetry to friend.
Updated to 2.058.32
- Added optional AI fuel column to LiveTiming (in liters). Default option is Off. To turn it On, change "show_ai_fuel_data" parameter from 0 to 1 in rF2 Log Analyzer ver. 2.058.x\web2py\applications\r2la\live_timing_settings.json file. Works only for AI cars.
- Fixed a bug with color of fastest lap time in LiveTiming in race mode.
- Added "Live Timing troubleshooting" section to Help page.
Fuel is shown in liters and works only for AI cars. Dedicated server does not provide this value for human players in data stream.
I think all parameters that I have on telemetry page should be available for AI in dedicated server stream, but I need to check. But there is no place in live timing table for more columns, I can add tire wear probably, if I will be able to put 4 numbers in one cell. If you need more live AI data I will have to make separate page and table for that (it will probably run from its own .bat file). I don't quite understand for what are you using this? Are you debugging mod AI? What parameters from telemetry do you need for AI?