Jump to content
The simFlight Network Forums

list offset variables with address, type and size?


Recommended Posts

Posted (edited)

Is there a list available somewhere with info about address type and size?

 { name: 'transponderState', address: 0x0B46, type: 'int', size: 1 },

Edited by Jingle
  • Jingle changed the title to list offset variables with address, type and size?
Posted

@J Dawson Thanks for your reply. I'm using that document as a reference.

It shows address and size but there's no info about type (int, string, etc..)

Other sources don't seem to give that info either.

https://docs.flightsimulator.com/html/Programming_Tools/SimVars/Simulation_Variables.htm

https://www.projectmagenta.com/all-fsuipc-offsets/

 

I'm writing a client for Paul Henty's included websocket server which asks for a type when declaring an offset.

 // create the request object
        var request = {
            command: 'offsets.declare',
            name: 'myOffsets',
            offsets: [
                { name: 'altitude', address: 0x0570, type: 'int', size: 8 },
                { name: 'avionicsMaster', address: 0x2E80, type: 'uint', size: 4 },
                { name: 'heading', address: 0x0580, type: 'uint', size: 4 },
                { name: 'aircraftName', address: 0x3D00, type: 'string', size: 256 },
            ]
        }

        // send to the server as a JSON string
        if (ws) {
            ws.send(JSON.stringify(request));
        }

 

http://fsuipcwebsockets.paulhenty.com/#cmdoffsetsread

Please sign in to comment

You will be able to leave a comment after signing in



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.