Recent content by dlecoutre

  1. dlecoutre

    Getting the 3d track path and road width.

    Thanks, I found it. In the *.aiw file, look for the variables "wp_width", it gives the road width in meters. You can compute the x,y,z coordinate of the borders by using "wp_pos" value and the perpendicular vector of the road called wp_perp. e.g. for the left border : Point3D leftBorder =...
  2. dlecoutre

    Live Delta-Speed and Delta-Time Telemetry

    Yeah I'm thinking about making an app for it if I have the time...
  3. dlecoutre

    Live Delta-Speed and Delta-Time Telemetry

    Sounds good, I'm working on that, I'll see what I can do.
  4. dlecoutre

    Live Delta-Speed and Delta-Time Telemetry

    Ok, I see what you mean, it's technically possible to do but it require some work since the API doesn't provide that. I'm not sure if knowing the real time delta will improve positively your performance. I'm afraid that you might use too much visual workload on the timer and less on the track...
  5. dlecoutre

    Live Delta-Speed and Delta-Time Telemetry

    I see... It's good to know what people are looking for. My actual plugin is only for a work project yet, I need to figure out what I can release. I do have the delta time for each section, it's working for rF1 and rF2. The delta I compute is against your last lap and / or your best lap. It's...
  6. dlecoutre

    Live Delta-Speed and Delta-Time Telemetry

    I'm already computing the delta time in my plugin. Do you want it for each section or do you want it in real time ?
  7. dlecoutre

    Getting the 3d track path and road width.

    I figured out few things. The track map is in the *.AIW files, and the track name is in the corresponding *.gdb files. With this two files I can figure out which map to load. For rFactor2, I had to extract the *.aiw and *.gdb with the mas extractor. I'm not sure yet if I can automatize that...
  8. dlecoutre

    Getting the 3d track path and road width.

    Hi, I need to implement something similar than the TrackMap plugin for our simulator, and I'd like to implement some other features on top of that. For that purpose I need to know the track path and road width. I found where to get the data point with rFactor1 ( "rFactor\GameData\Locations"...
  9. dlecoutre

    Shift point indicator

    If you set the camera view inside the car and the RPM is too high, there is a light indicator above the dashboard that tells you it's time to shift. Is there a way to get that information via the plugin ? If not it's fine, I would have to code that feature based on the RPM and gear. I was just...
  10. dlecoutre

    VM LiveView Lite for rFactor & rFactor2

    It blink each time it refresh under safari. It's fine under Chrome. It should be easy to map the x-y coordinate with a 2d map. You'll just have to scale it with any map.
  11. dlecoutre

    Programming for Android

    Maybe I didn't explain myself clearly. Right, I would have had to do threading in c++ cause the TCP/IP was slowing down the game, but I didn't go that way. Yes c++ is faster, but Java was an easiest and fastest solution for me. Both solutions are good, just pick the one that fit you the best.
  12. dlecoutre

    VM LiveView Lite for rFactor & rFactor2

    I was just thinking, it would be nice to be able to translate the x,y,z coordinate into a GPS coordinate and plot your position on google map. I'll have a look at that.
  13. dlecoutre

    Programming for Android

    Since you will develop in Java because your project is on Android. I would make a telemetry Java class, and add some JNI code that would load the the plugin example dll. In the DLL, you should have a buffer of telemetric data ( of size n * TelemInfoV01 ) and share this buffer between the dll...
  14. dlecoutre

    UpdateGraphics?

    I've never check UpdateGraphics since I don't use it. I made a test in my plugin. I see the same things happening. I'm using the latest build ( 60 ). It's maybe something that you should report.
  15. dlecoutre

    VM LiveView Lite for rFactor & rFactor2

    Interesting. It would be nice if you could do it with GWT, that way the page will stop blinking because of the refresh.
Back
Top