Jump to content

EFM: ed_fm_enable_debug_info() not working in multithread


Go to solution Solved by Jack McCoy,

Recommended Posts

Posted

It was "documented" that the force and moment components display only worked in the single-threaded version.

Now that there is only a multithread version, are there any plans of making this feature work?

i7-7700K@4.8GHz, 16Gb-3200, GTX-1080Ti-Strix-11Gb, Maximus IX Hero, Oculus Rift, Thrustmaster Warthog+F/A-18C, Logitech G940 Pedals.

Posted (edited)

Hi Flappie. The issue is not related to any mission and I wouldn't know how to enable via lua script (if even possible!).

This is related to development of my External Flight Model (EFM), in file ED_FM_Template.cpp.

The thread you found mentions the vectors not being displayed even when:

//ED_FM_Template.cpp
bool ed_fm_enable_debug_info()
{
    return showVectors;

    /*
    When set to true, DCS draws lines on the aircraft.
    The blue box is the center of mass, green line is net force vector, pink line is the velocity vector.
    */
}

This worked in single-thread and doesn't work in multi-thread.
 

I think the following is a related issue:

//ED_FM_Template.cpp
size_t ed_fm_debug_watch(int level, char *buffer, size_t maxlen)
{
    return sprintf_s(buffer, maxlen, "ENGINE RPM %f.0", engine.rpm);
}

In multi-thread, it does not display "ENGINE RPM NNNN" in the "extended" screen, i.e. pressing RCtrl-Pause twice. Am I looking in the right place?

I never tried in single-thread.

Edited by Jack McCoy

i7-7700K@4.8GHz, 16Gb-3200, GTX-1080Ti-Strix-11Gb, Maximus IX Hero, Oculus Rift, Thrustmaster Warthog+F/A-18C, Logitech G940 Pedals.

  • 1 month later...
  • Solution
Posted

@Flappie For the vectors to display, this is required:

Saved Games\DCS\Config\autoexec.cfg : drawDebugGeometry = true

  • Like 1
  • Thanks 1

i7-7700K@4.8GHz, 16Gb-3200, GTX-1080Ti-Strix-11Gb, Maximus IX Hero, Oculus Rift, Thrustmaster Warthog+F/A-18C, Logitech G940 Pedals.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...