See the info for the wrapper at the http://www.wingwalkers.org forum under hardware/software. New wrapper Here
OK, I've updated the DeviceLink Wrapper to version 2.1.1 and I've written a small application showing how one could use it. Actually, I've written another series of classes based off a base Aircraft Class with various component classes. I've totally abstracted away the devicelink layer so you don't need to know anything about it. A simple Aircraft object instantiation will take care of all the networking for you as long as you have the config.ini with the proper IP and port number. Simply takes a
C_Aircraft ac;
in your code and all the UDP client stuff is taken care of.
This sample app is the beginning of an app I'm writing for our squad training office. This first version simply records the following data every 1/2 second to a comma seperated text log file:
IAS, ALT, ANGSPD, AZIMUTH, ROLL, PITCH, TURN, SLIP, VARIO, FUEL
The default name of the text file is "logfile.cvs" but you can pass another name on the command line if you wish. It will, for now, also create a bbbr_debug.txt file with extra debug info. If you have problems running the sample program and want to let me know I'll need that file to help me trouble shoot.
To use the app make sure you've setup your game to work with DeviceLink per the instructions provided in your Devicelink.txt file found in the main IL2 directory. Unzip the app zip file to whereever you want. Be sure to tell your unzip program to extract the paths as well. you'll find the executable in the dl_test\trunk\bin\Release directory and it's called dl_test.exe. You can either just double click on it to run with a default logfile name or run it from the command line and give it a filename as a parameter. IMPORTANT: Your IL2 game must be started first. You don't have to be flying yet, but the game needs to be launched first. I'll fix that later, but this was just an early prototype.
Then again, the program is just meant to serve as an example. I've included allt he source code and build files in the zip. Get it Here
and you can view all the docs Here
You can post questions to me about this at the http://www.wingwalkers.org forum