Sorry
How about setting a value to one of these variables? Is something like this okay?
string variableType = "NULL";
int variableLength = 0;
int address = (int)Enum.Parse(typeof(PMDGConditionVariables.PMDGVarAddress), varName);
int variableTypeC = (int)Enum.Parse(typeof(PMDGConditionVariables.PMDGVarTypes), varName);
SWITCH GOES IN HERE TO GET variableType and variableLength for each varName. Too long and out of the point for copying it here
Offset myOffset = new Offset("", address, variableLength, true);
FSUIPCConnection.Process();
(SWITCH GOES IN HERE FOR EACH TYPE CASE)
in the case of byte type it continues:
String[] strArr = varData.Split('-');
byte[] newValue = new byte[strArr.Length];
for (int i = 0; i < strArr.Length; i++) newValue[i] = Convert.ToByte(strArr[i], 16);
myOffset.SetValue(newValue);
break;
"varData" would be the input data to set the value to, in string type, so this would convert that string into byte array and saves it in "newValue".
I've tested this code in other compilations and it works correctly to convert "01-00-01-00" kind of strings.
For the case of the rest of types i'm thinking on
myOffset.SetValue(varData);
break;
Just this because i see the SetValue() code converts strings in other numbered types.
Then after the break comes this:
myOffset.Disconnect();
This code is not working as of now. After trying it the variable doesn't change and the application stops processing new variable requests, so i wanted to know if maybe it's not the right way to set these values.
Thanks!