Jack McCoy Posted February 8 Posted February 8 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.
Flappie Posted February 8 Posted February 8 I've just found the thread dealing with the MT issue. Can you please provide a simple mission with a script enabling the function? I'll then report this issue to devs. ---
Jack McCoy Posted February 10 Author Posted February 10 (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 February 10 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.
Flappie Posted February 10 Posted February 10 I've just found an internal report. The issue was reported internally a few months ago. 1 ---
Solution Jack McCoy Posted March 16 Author Solution Posted March 16 @Flappie For the vectors to display, this is required: Saved Games\DCS\Config\autoexec.cfg : drawDebugGeometry = true 1 1 i7-7700K@4.8GHz, 16Gb-3200, GTX-1080Ti-Strix-11Gb, Maximus IX Hero, Oculus Rift, Thrustmaster Warthog+F/A-18C, Logitech G940 Pedals.
Recommended Posts