14 if (WSAStartup(MAKEWORD(2, 2), &data) != 0)
21 fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
22 if (
fd == SOCKET_ERROR)
25 sprintf_s(msg, 99,
"Xplane::Initialize cannot create socket (error %i)", WSAGetLastError());
31 struct sockaddr_in myaddr;
32 memset(reinterpret_cast<char *>(&myaddr), 0,
sizeof(myaddr));
33 myaddr.sin_family = AF_INET ;
34 myaddr.sin_addr.s_addr = htonl(INADDR_ANY);
36 if (bind(
fd, reinterpret_cast<struct sockaddr *>(&myaddr),
sizeof(myaddr)) == -1)
46 unsigned long bytesWaiting = 0;
47 if (ioctlsocket(
fd, FIONREAD, &bytesWaiting))
54 if (bytesWaiting == 0)
return;
58 int recvlen = recvfrom(
fd, buf,
sizeof(buf), 0,
nullptr,
nullptr);
61 if (buf[0] ==
'D' && buf[1] ==
'A' && buf[2] ==
'T' && buf[3] ==
'A' && buf[4] ==
'@')
64 int bytesLeft = recvlen - b;
65 int sentences = bytesLeft / 36;
66 for (
int i = 0; i < sentences; i++)
69 memcpy(&sent, &buf[b],
sizeof(sent));
110 sprintf_s(msg, 199,
"Xplane::FrameMove Received %i bytes NOT DATA header", recvlen);
117 sprintf_s(msg, 199,
"Xplane::FrameMove Received %i bytes NOT DATA header", recvlen);
float IndicatedAirspeed
(3) Indicated Airspeed in km per second?
float PitchAttitude
(6) Pitch attitude;
okay, the portable keyboard numbers don't work like the outside keypad because the outside keypad is ...
float HeadingTrue
(4) Heading–primary flight crew reference (if selectable, record discrete, true or magnetic); ...
D3DXVECTOR3 NormalAcceleration
(5) vertical (11) longitudinal (18) lateral
float RollAttitude
(7) Roll attitude;
void Log(const char *msg, Level level=Info, int errorCode=0)
These have to be in this order.
union Devices::sentence::@5 data[8]
void Initialize(Logger *logger, XplaneConfig *config, Bus *prmBus)