You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.6KB

  1. #include <assert.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <unistd.h>
  6. #include <math.h>
  7. #include <arpa/inet.h>
  8. #include <sys/socket.h>
  9. #include <netinet/in.h>
  10. #include "linalg.h"
  11. #include "licks_message.h"
  12. licks_message message;
  13. licks_net_message net_message;
  14. int udp_socket_fd;
  15. struct sockaddr_in localaddr;
  16. struct sockaddr_in remoteaddr;
  17. int
  18. main(int argc, char **argv) {
  19. int quit=0;
  20. udp_socket_fd=socket(PF_INET,SOCK_DGRAM,0);
  21. if(udp_socket_fd==-1) {
  22. perror("socket");
  23. exit(0);
  24. }
  25. localaddr.sin_family=AF_INET;
  26. localaddr.sin_port=htons(1337);
  27. inet_aton("0.0.0.0",&localaddr.sin_addr);;
  28. if(bind(udp_socket_fd,(struct sockaddr *)&localaddr,sizeof(struct sockaddr_in))) {
  29. perror("bind");
  30. exit(0);
  31. }
  32. licks_socket_open("/tmp/udpproxy");
  33. while(!quit) {
  34. read(udp_socket_fd,&net_message,sizeof(licks_net_message));
  35. switch(net_message.type) {
  36. case MSG_QUIT:
  37. message.type=MSG_QUIT;
  38. send_message(&message,ikd_path);
  39. break;
  40. case MSG_POWER:
  41. message.type=MSG_POWER;
  42. message.i=net_message.i;
  43. send_message(&message,ikd_path);
  44. break;
  45. case MSG_MOVE_BODY:
  46. message.type=MSG_MOVE_BODY;
  47. message.move_parameters.v.x=net_message.move_parameters.v.x/1000.0;
  48. message.move_parameters.v.y=net_message.move_parameters.v.y/1000.0;
  49. message.move_parameters.v.z=net_message.move_parameters.v.z/1000.0;
  50. message.move_parameters.duration=net_message.move_parameters.duration;
  51. send_message(&message,ikd_path);
  52. break;
  53. case MSG_WALK:
  54. message.type=MSG_WALK;
  55. message.walk_parameters.step_direction.x=net_message.move_parameters.v.x/1000.0;
  56. message.walk_parameters.step_direction.y=net_message.move_parameters.v.y/1000.0;
  57. message.walk_parameters.step_rotation=net_message.move_parameters.v.z/1000.0;
  58. send_message(&message,ikd_path);
  59. break;
  60. case MSG_ROTATE_BODY:
  61. message.type=MSG_ROTATE_BODY;
  62. message.move_parameters.v.x=net_message.move_parameters.v.x/3276.8;
  63. message.move_parameters.v.y=net_message.move_parameters.v.y/3276.8;
  64. message.move_parameters.v.z=net_message.move_parameters.v.z/3276.8;
  65. message.move_parameters.duration=net_message.move_parameters.duration;
  66. send_message(&message,ikd_path);
  67. break;
  68. }
  69. }
  70. licks_socket_close();
  71. close(udp_socket_fd);
  72. return 0;
  73. }