mirror of
https://github.com/brendanhaines/RasPi.git
synced 2024-11-09 16:44:40 -07:00
151 lines
3.7 KiB
C++
151 lines
3.7 KiB
C++
|
#include <iostream>
|
||
|
#include <cstdio>
|
||
|
#include <unistd.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netinet/in.h>
|
||
|
#include <netdb.h>
|
||
|
#include <sys/ioctl.h>
|
||
|
#include "fcntl.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
// TCP vars
|
||
|
#define TCP_PORT 51718
|
||
|
int sockfd, newsockfd;
|
||
|
char buffer[ 256 ];
|
||
|
struct sockaddr_in serv_addr, cli_addr;
|
||
|
socklen_t clilen;
|
||
|
|
||
|
// Status vars
|
||
|
bool motorsEnabled;
|
||
|
int motorValues[ 4 ];
|
||
|
int controlValues[ 6 ];
|
||
|
//Quaternion q;
|
||
|
|
||
|
bool setupTcp( int portNum )
|
||
|
{
|
||
|
struct sockaddr_in serv_addr, cli_addr;
|
||
|
socklen_t clilen;
|
||
|
|
||
|
cout << "setting up TCP..." << endl;
|
||
|
|
||
|
sockfd = socket( AF_INET, SOCK_STREAM, 0 );
|
||
|
if( sockfd < 0 )
|
||
|
{
|
||
|
cerr << "ERROR opening socket" << endl;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bzero( (char*) &serv_addr, sizeof(serv_addr) );
|
||
|
serv_addr.sin_family = AF_INET;
|
||
|
serv_addr.sin_addr.s_addr = INADDR_ANY;
|
||
|
serv_addr.sin_port = htons(portNum);
|
||
|
|
||
|
cout << "binding socket to port " << portNum << endl;
|
||
|
if( bind( sockfd, (struct sockaddr*) &serv_addr, sizeof(serv_addr) ) )
|
||
|
{
|
||
|
cerr << "ERROR binding socket to port " << portNum << endl;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
cout << "listening to socket" << endl;
|
||
|
listen( sockfd, 5 );
|
||
|
clilen = sizeof( cli_addr );
|
||
|
|
||
|
cout << "waiting for connection" << endl;
|
||
|
newsockfd = accept( sockfd, (struct sockaddr *) &cli_addr, &clilen );
|
||
|
if( newsockfd < 0 )
|
||
|
{
|
||
|
cerr << "ERROR on accept" << endl;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bzero( buffer, 256 );
|
||
|
fcntl( newsockfd, F_SETFL, O_NONBLOCK );
|
||
|
|
||
|
cout << "connection established" << endl;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void shutdown()
|
||
|
{
|
||
|
cout << "shutting down..." << endl;
|
||
|
|
||
|
close( newsockfd );
|
||
|
close( sockfd );
|
||
|
cout << "sockets closed" << endl;
|
||
|
|
||
|
exit( EXIT_SUCCESS );
|
||
|
}
|
||
|
|
||
|
void readTcp()
|
||
|
{
|
||
|
int n; // number of bytes read
|
||
|
int carotPos;
|
||
|
n = read( newsockfd, buffer, 255 );
|
||
|
if( n > 0 )
|
||
|
{
|
||
|
motorsEnabled = false;
|
||
|
carotPos = 0;
|
||
|
while( carotPos < n )
|
||
|
{
|
||
|
if( strncmp( buffer + carotPos, "DISCONNECT", strlen("DISCONNECT") ) == 0 && strlen("DISCONNECT") + carotPos <= n ) shutdown();
|
||
|
else if( strncmp( buffer + carotPos, "D", strlen("D") ) == 0 && strlen("D") + carotPos <= n ) shutdown();
|
||
|
else if( strncmp( buffer + carotPos, "H", strlen("H") ) == 0 && strlen("H") + carotPos <= n ) carotPos++;
|
||
|
else if( strncmp( buffer + carotPos, "E", strlen("E") ) == 0 && strlen("E") + carotPos <= n )
|
||
|
{
|
||
|
motorsEnabled = true;
|
||
|
cout << "E ";
|
||
|
carotPos += strlen("E ");
|
||
|
}
|
||
|
else if( strncmp( buffer + carotPos, "M", strlen("M") ) == 0 && strlen("Mxx_xxxx") + carotPos <= n )
|
||
|
{
|
||
|
motorValues[ atoi( buffer + carotPos + 1 ) ] = atoi( buffer + carotPos + 4 );
|
||
|
carotPos += strlen("Mxx_xxxx ");
|
||
|
}
|
||
|
else if( strncmp( buffer + carotPos, "C", strlen("C") ) == 0 && strlen("Cxx_xxxx") + carotPos <= n )
|
||
|
{
|
||
|
controlValues[ atoi( buffer + carotPos + 1 ) ] = atoi( buffer + carotPos + 4 );
|
||
|
carotPos += strlen("Cxx_xxxx ");
|
||
|
}
|
||
|
else carotPos++;
|
||
|
}
|
||
|
cout << endl;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void writeTcp()
|
||
|
{
|
||
|
int i;
|
||
|
char temp[256];
|
||
|
char outBuffer[] = "H ";
|
||
|
|
||
|
if( motorsEnabled ) {
|
||
|
strcat( outBuffer, "E " );
|
||
|
|
||
|
for( i = 0; i < 4; i++ )
|
||
|
{
|
||
|
sprintf( temp, "M%2d_%4d ", i, motorValues[ i ] );
|
||
|
strcat( outBuffer, temp );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main( int argc, char* argv[] )
|
||
|
{
|
||
|
//if( !setupTcp( TCP_PORT ) ) exit( EXIT_FAILURE );
|
||
|
setupTcp( TCP_PORT );
|
||
|
while( true )
|
||
|
{
|
||
|
readTcp();
|
||
|
writeTcp();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|