Jump to content
The simFlight Network Forums

reading aircraft name from Offset &H3D00


Recommended Posts

Guest stefan braunewell
Posted

Hi guys,

whatever i have tried (reading the aircraft name from the 3D00 offset, my visual basic crashes).

has anyone an idea how to read that? maybe an example?

thanks a lot

stefan :cry:

Guest hsors
Posted

Stefan

You will need special coding techniques to read "0 terminated strings" in VB since there is no VB variable type that fits

Here is the code I used for such strings

Dim b(255) as byte 'defined a byte array (256 values)

Dim result as string 'will contain the final result

Dim i as integer

FSUIPC_Read (&H3D00,256,VarPtr (b(0))) 'read all bytes at offset 3D00 in byte array

FSUIPC_Process

For i=0 to 255

If b(i)=0 then exit for 'leave at last char

result=result+Chr(b(i)) 'otherwise adds to result (don't forget the Chr)

Next

Hope it will helps

Hervé

Guest stefan braunewell
Posted

thanks guys, it works great.

you saved a poor mans life :-)

  • 1 year later...
Posted

I used the VB script on this POST to get the Aircraft name, it works. but it didnt worked on FS98 with FSUPC 2.974

Was that a problem of the FSUIPC version, or just that FS98 does not supper that offset?

Regards

Thomas.

  • 2 weeks later...
Posted
I used the VB script on this POST to get the Aircraft name, it works. but it didnt worked on FS98 with FSUPC 2.974

Was that a problem of the FSUIPC version, or just that FS98 does not supper that offset?

Download the FSUIPC SDK and check the programmer's guide document. As it says against the offset 3D00 "Valid for FS2K only", with columns for FS2002 and FS2004 marked "Ok". This means the information isn't available from FS98.

Further to this, I do not know when FSUIPC started to obtain this data. If it was after version 2.974 then it won't be readable in FS2000 or FS2002 either, with that version. The documentation only refers to the latest version, always.

Regards,

Pete

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.