GeekTrack/4.Software/GeekTrackSDK/Project/GeekTrack.cpp

83 lines
1.7 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include"stdafx.h"
#include"GeekTrackSDK.h"
#include<stdio.h>
#include<thread>
#include<winsock2.h>
#include<windows.h>
#pragma comment(lib,"ws2_32.lib")
SOCKET sock;
sockaddr_in from, a;
WSADATA wsdata;
int fromlength = 0;
std::thread* t;
EulerAngles_t Pose;
float yaw = 0.0f, roll = 0.0f, pitch = 0.0f;
void GeekTrackUpdate() {
char buf[256];
int i = 0;
while (1)
{
//从广播地址接收消息,注意用来绑定的地址和接收消息的地址是不一样的
recvfrom(sock, buf, 256, 0, (struct sockaddr FAR*) &from, (int FAR*) & fromlength);
Sleep(10);
int ret = sscanf_s(buf, "%f %f %f\n", &yaw, &roll, &pitch);
if (ret > 0) {
Pose.x = pitch;
Pose.y = roll;
Pose.z = yaw;
}
ZeroMemory(buf, 256);
}
}
void GeekTrack_Init() {
bool optval;
//启动SOCKET库版本为2.0
WSAStartup(0x0202, &wsdata);
optval = true;
//然后赋值给两个地址,一个用来绑定套接字,一个用来从网络上的广播地址接收消息;
a.sin_family = AF_INET;
a.sin_addr.s_addr = 0;
a.sin_port = htons(9000);
//from.sin_family = AF_INET;
//from.sin_addr.s_addr = INADDR_BROADCAST;
//from.sin_port = htons(5050);
fromlength = sizeof(SOCKADDR);
//用UDP初始化套接字
sock = socket(AF_INET, SOCK_DGRAM, 0);
// 设置该套接字为广播类型,
//setsockopt(sock, SOL_SOCKET, SO_BROADCAST, (char FAR *)&optval, sizeof(optval));
// 把该套接字绑定在一个具体的地址上
bind(sock, (sockaddr*)&a, sizeof(sockaddr_in));
t = new std::thread(GeekTrackUpdate);
Pose.x = -1.0f;
Pose.y = -1.0f;
Pose.z = -1.0f;
}
EulerAngles_t GetEulerAngles() {
return Pose;
}
int main()
{
GeekTrack_Init();
while (1) {
Sleep(50);
printf("%f,%f,%f\n", Pose.x, Pose.y, Pose.z);
}
system("pause");
return 0;
}