Search found 5 matches

by laiyokabc
Thu Aug 31, 2017 11:41 am
Forum: Software Development Kit (SDK) Questions
Topic: Who can share A2A P-51 Mustang variables list, thank you!
Replies: 0
Views: 4232

Who can share A2A P-51 Mustang variables list, thank you!

Who can share A2A P-51 Mustang variables list

Such as :

(L:AirspeedIndicatedNeedle,number)
(A:ATTITUDE INDICATOR PITCH DEGREES:1,degrees)
(>K:TOGGLE_ELECT_FUEL_PUMP1)
....

thank you!
by laiyokabc
Tue Mar 21, 2017 3:05 am
Forum: Software Development Kit (SDK) Questions
Topic: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?
Replies: 6
Views: 11843

Re: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?

Use the IAircraftCCallback, IPanelCCallback, and IGaugeCCallback interfaces. https://forums.vrsimulations.com/support/index.php/TacPack_SDK#CVars_via_C.2B.2B As WarpD pointed out, trying to access the panel functions in your own separate thread from the system is asking for a crash. Rather create a...
by laiyokabc
Mon Mar 20, 2017 3:23 pm
Forum: Software Development Kit (SDK) Questions
Topic: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?
Replies: 6
Views: 11843

Re: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?

I have never had to make a module that accesses GPS via execute_calculator_code... and it really doesn't matter a great deal as to what you're using the function for. A module should remain dormant except for when it actually has a purpose. Since there is no GPS information except for when there is...
by laiyokabc
Mon Mar 20, 2017 2:16 pm
Forum: Software Development Kit (SDK) Questions
Topic: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?
Replies: 6
Views: 11843

Re: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?

Your entire approach is flawed and has nothing to do with execute_calculator_code itself. I'm not certain what you're trying to create, but the DLL for CabinComfort is a module that is loaded by the sim whenever the sim is started. The variables you are wanting to read are only valid during an actu...
by laiyokabc
Mon Mar 20, 2017 4:34 am
Forum: Software Development Kit (SDK) Questions
Topic: How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?
Replies: 6
Views: 11843

How to use execute_calculator_code function to read GPS Variables (C:fs9gps) in any aircraft?

Hi, I hope that use c++ language to read GPS Variables (C:fs9gps) in any aircraft,My code is based on the example of P3D C++/XML Mixed Mode Sample 'CabinComfort' modification,I met two problems: 1.The Sample code only used to one aircraft(The sample is Mooney_Bravo),I hope that in any aircraft. 2.I ...