Resource icon

Apps F1 2014/2015 HUD FIX 1.0

Login or Register an account to download this content
Andreas Lorenz submitted a new resource:

F1 2014/2015 HUD FIX - A fixed version of OV1's F1 2014 Hud

This is a fixed version of the OV1 F1 2014 Hud App.

IMPORTANT! This is not my app i just did some slight modifications to the App.

You should delete the previous version of the HUD before installing the new one.

Source: http://www.racedepartment.com/downloads/ff1-2015.4941/
App and Update from this package.
App made by OV1

[1.0]
- 64 Bit Support
- AC 1.3 Support
- DRS functionality
- brake gauge adjusted

Read more about this resource...
 
The brake indicator is only digital showing only 100% or 0% without progression :( (like the throttle). But it's easy to fix. ;)

Under /lib edit file app14.pye, replacing code for under #updating the brake guage with this (from original ov1 F1 2014 app):

Code:
# updating the brake gauge
        # getting the brake value from AC
        ac_brake = round(ac.getCarState(0, acsys.CS.Brake) * 100)
        # there are 46 image files with the brake steps
        brake_steps = 46
        # calculating the current brake step with the AC data
        current_brake_step = str(round(brake_steps * ac_brake / 100)).zfill(2)
        # applying the texture to the object
        self.brake_gauge.setBgTexture(self.app_path + "textures/brake_steps/brake_" + current_brake_step + ".png")

Then, again from the original app, copy the /brake_steps folder into the /textures directory - and whalla, fixed!
 
Last edited:
The brake indicator is only digital showing only 100% or 0% without progression :( (like the throttle). But it's easy to fix. ;)

Under /lib edit file app14.pye, replacing code for under #updating the brake guage with this (from original ov1 F1 2014 app):

Code:
# updating the brake gauge
        # getting the brake value from AC
        ac_brake = round(ac.getCarState(0, acsys.CS.Brake) * 100)
        # there are 46 image files with the brake steps
        brake_steps = 46
        # calculating the current brake step with the AC data
        current_brake_step = str(round(brake_steps * ac_brake / 100)).zfill(2)
        # applying the texture to the object
        self.brake_gauge.setBgTexture(self.app_path + "textures/brake_steps/brake_" + current_brake_step + ".png")

Then, again from the original app, copy the /brake_steps folder into the /textures directory - and whalla, fixed!

Yeah that was intentional, I had that system going before, but if you have a look at the real HUD then you see that it is either 100 or 0 percent :D so there is no error there. But whoever wants to use this fix go ahead!
 
The brake indicator is only digital showing only 100% or 0% without progression :( (like the throttle). But it's easy to fix. ;)

Under /lib edit file app14.pye, replacing code for under #updating the brake guage with this (from original ov1 F1 2014 app):

Code:
# updating the brake gauge
        # getting the brake value from AC
        ac_brake = round(ac.getCarState(0, acsys.CS.Brake) * 100)
        # there are 46 image files with the brake steps
        brake_steps = 46
        # calculating the current brake step with the AC data
        current_brake_step = str(round(brake_steps * ac_brake / 100)).zfill(2)
        # applying the texture to the object
        self.brake_gauge.setBgTexture(self.app_path + "textures/brake_steps/brake_" + current_brake_step + ".png")

Then, again from the original app, copy the /brake_steps folder into the /textures directory - and whalla, fixed!
I tried this (swapped 46 with 34 since this version seems to only have 34 images). Regardless, after updating this file, the icon doesn't show up in the sidebar (I've made sure the app is checked in settings). Any changes I make results in it disappearing from the sidebar.
 
I tried this (swapped 46 with 34 since this version seems to only have 34 images). Regardless, after updating this file, the icon doesn't show up in the sidebar (I've made sure the app is checked in settings). Any changes I make results in it disappearing from the sidebar.

Here's a packaged fix that has been working for me and others I've shared it with.
NB this isn't the whole app just a patch. Hope this is OK with you Andreas.
F12014-15 HUD App Patch Fix
 
Last edited:
Here's a packaged fix that has been working for me and others I've shared it with.
NB this isn't the whole app just a patch. Hope this is OK with you Andreas.
F12014-15 HUD App Patch Fix
Sorry, I've been a little busy these past 2 weeks and I just saw this. This works, but there's a small bug. If I press the brakes quickly, the brake bar only fills up partially (depending on how fast I press the brake). Nothing deal breaking, but just thought I'd mention.

To reproduce, I took an Aventador, put it on Neutral and squeezed my brake paddle (I use a controller).
 

Latest News

Online or Offline racing?

  • 100% online racing

    Votes: 77 7.3%
  • 75% online 25% offline

    Votes: 112 10.6%
  • 50% online 50% offline

    Votes: 155 14.7%
  • 25% online 75% offline

    Votes: 291 27.5%
  • 100% offline racing

    Votes: 419 39.6%
  • Something else, explain in comment

    Votes: 4 0.4%
Back
Top