TurbofanDude Posted August 2, 2012 Report Posted August 2, 2012 Hello all, I am trying to write a bit of code to record the landing rate of a plane. I have a thread pulling data from the sim 10 times per second, and handling it accordingly. The second the aircraft the plane is on the ground it sets the data to the offset from FSUIPC (to avoid bounces, etc. from being logged as the final rate). That being said, the data that's coming out is completely inaccurate. I know I am at fault, I just do not know where. I have checked the offset within the sim, and it is the same base number my program is receiving (so it is coming out of the sim properly), but it is NOT being converned into feet per minute properly. My code for such is below: int TDRATE; FSUIPC_Read(0x030C,4,&TDRATE,&result); double landingrate = TDRATE; landingrate = landingrate*60*3.28084/256; p->landingrate = (int)landingrate; //p is an aircraft data struct, p->landingrate is an int. Even if I slam the airplane down, it reads between 70 and 160, and I've never seen any rate higher than that (even though I KNOW it is harder). Any ideas? Collin
TurbofanDude Posted August 2, 2012 Author Report Posted August 2, 2012 I'll answer my own question. The issue was reading the landing rate from raw sim data as apposed to the flight flags I set to record it. I apologize.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now