Skip to content

jldowson/FSUIPC_WAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FSUIPC_WAPI

API for connection to the FSUIPC WASM Module

FSUIPC_WAPI is a client-side API library for communication with the FSUIPC WASM module. This allows for the retrieval/listing of lvars and hvars, for the setting/changing the value of lvars, the activation of hvars and the execution of calculator code.

The WASMIF class is the main interface. To use, first instantiate a WASMIF object:
    WASMIF* WASMPtr = WASMIF::getInstance();
You can also provide your own logging function to the getInstance method if you don't want to use the default log file, which is FSUIPC_WAPI.log.

Then start the service:
    WASMPtr->start();
Once the service is started, it will connect to the FSUIPC WASM module when available. You can then get/set/list lvars and list/activate hvars using the provided member functions, e,g.
    WASMPtr->getLvarValues(map<string, double> lvars);
    WASMPtr->getHvarList(unordered_map<int, string> hvars);
    double value = WASMPtr->getLvar(const char* lvarName);
    WASMPtr->setHvar(int id);
    WASMPtr->executeCalclatorCode(const char* ccode);
    WASMPtr->setLvar(int id, double value);
    etc

You can register for a callback function to be called when the lvars/hvars have been loaded and are available using the following function:
    void registerUpdateCallback(void (*callbackFunction)(void));
You should do this before starting the service.

You can also register for a callback to be received when lvars have been updated, using the following functions:
    void registerLvarUpdateCallback(void* (callbackFunction)(int id[], double newValue[]));
    void registerLvarUpdateCallback(void* (callbackFunction)(const char* lvarName[], double newValue[]));
You can do this at any time, but best done before starting the service. Once this callback has been registered, you can flag individual lvars to have this callback called when their value changes using one of the following methods:
    void flagLvarForUpdateCallback(int lvarId);
    void flagLvarForUpdateCallback(const char* lvarName);
Note that this is best done in the callback registered with the registerUpdateCallback method.
One callback will be received per CDA (if data held in that CDA that has been flagged has changed), and the argument list provided to the callback (id or name and value) will contain a terminating element of -1 (for id based callbask) or NULL (for lvar name based callback). Note also that if you register for both callbacks by id and callbacks by name, both callback functions will be called.

A demo test client using this API is available here: https://github.com/jldowson/WASMClient

For any problems, questions or requests, please use the FSUIPC7 support forum:     https://forum.simflight.com/forum/183-fsuipc7-msfs/

John Dowson
19th May 2021