Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

159 rindas
4.1KB

  1. #include <stdio.h>
  2. #include <stdint.h>
  3. #include <fcntl.h>
  4. #include "servo.h"
  5. #define NUM_LEGS 6
  6. const float x_offsets[NUM_LEGS]={ 0.20, 0.00,-0.20,-0.20, 0.00, 0.20};
  7. const float y_offsets[NUM_LEGS]={ 0.10, 0.15, 0.10,-0.10,-0.15,-0.10};
  8. float phi1[6];
  9. float phi2[6];
  10. float phi3[6];
  11. void
  12. draw_hexapod() {
  13. const float c =0.05f;
  14. const float f =0.20f;
  15. const float t =0.325f;
  16. const float p1=0.025f;
  17. const float thickness=0.005f;
  18. int i,fd;
  19. fd=open("/tmp/servodata",O_RDONLY);
  20. if(fd==-1) {
  21. // perror("/tmp/servodata");
  22. } else {
  23. read(fd,servo_pwm,sizeof(servo_pwm));
  24. close(fd);
  25. for(i=0;i<6;i++) {
  26. phi1[i]=servo_pwm[i*3];
  27. phi1[i]-=servo_offsets[i*3];
  28. phi2[i]=servo_pwm[i*3+1];
  29. phi2[i]-=servo_offsets[i*3+1];
  30. phi3[i]=servo_pwm[i*3+2];
  31. phi3[i]-=servo_offsets[i*3+2];
  32. phi1[i]*=0.1/8.5;
  33. phi2[i]*=-0.1/8.5;
  34. phi3[i]*=-0.1/8.5;
  35. if(i>=3) {
  36. phi2[i]=-phi2[i];
  37. phi3[i]=-phi3[i];
  38. }
  39. }
  40. }
  41. glRotatef(90,0,0,1);
  42. glRotatef(60,0,1,0);
  43. glColor3f(0.8,0.8,0.8);
  44. glBegin(GL_TRIANGLES);
  45. for(i=0;i<NUM_LEGS;i++) {
  46. glVertex3f(x_offsets[i],y_offsets[i],0);
  47. }
  48. glEnd();
  49. glBegin(GL_QUADS);
  50. glVertex3f(x_offsets[0],y_offsets[0],0);
  51. glVertex3f(x_offsets[2],y_offsets[2],0);
  52. glVertex3f(x_offsets[3],y_offsets[3],0);
  53. glVertex3f(x_offsets[5],y_offsets[5],0);
  54. glEnd();
  55. for(i=0;i<NUM_LEGS;i++) {
  56. glPushMatrix();
  57. // move into leg base position
  58. glTranslatef(x_offsets[i],y_offsets[i],0);
  59. // rotate 180 degrees if on other side
  60. if(i>=(NUM_LEGS/2)) {
  61. glRotatef(-180,0,0,1);
  62. }
  63. glRotatef(phi1[i],0,0,1);
  64. glColor3f(1,1,0);
  65. glBegin(GL_QUADS);
  66. glVertex3f(0,0,0);
  67. glVertex3f(0,c,0);
  68. glVertex3f(thickness,c,0);
  69. glVertex3f(thickness,0,0);
  70. glEnd();
  71. glTranslatef(0,c,0);
  72. glRotatef(90,0,1,0);
  73. glRotatef(phi2[i],0,0,1);
  74. glColor3f(0,0,1);
  75. glBegin(GL_QUADS);
  76. glVertex3f(0,0,0);
  77. glVertex3f(0,f,0);
  78. glVertex3f(thickness,f,0);
  79. glVertex3f(thickness,0,0);
  80. glVertex3f(0,f,0);
  81. glVertex3f(0,0,0);
  82. glVertex3f(0,0,thickness);
  83. glVertex3f(0,f,thickness);
  84. glVertex3f(0,f,0);
  85. glVertex3f(thickness,f,0);
  86. glVertex3f(0,f,thickness);
  87. glVertex3f(thickness,f,thickness);
  88. glVertex3f(thickness,f,0);
  89. glVertex3f(thickness,0,0);
  90. glVertex3f(thickness,0,thickness);
  91. glVertex3f(thickness,f,thickness);
  92. glVertex3f(0,0,thickness);
  93. glVertex3f(0,f,thickness);
  94. glVertex3f(thickness,f,thickness);
  95. glVertex3f(thickness,0,thickness);
  96. glEnd();
  97. glTranslatef(0,f,0);
  98. glRotatef(-90-phi3[i],0,0,1);
  99. glColor3f(1,0,0);
  100. glBegin(GL_QUADS);
  101. glVertex3f( p1, 0.0f, thickness/2);
  102. glVertex3f(0.0f, -p1, thickness/2);
  103. glVertex3f( -p1, 0.0f, thickness/2);
  104. glVertex3f(0.0f, t, thickness/2);
  105. glVertex3f( p1, 0.0f, thickness/2);
  106. glVertex3f( p1, 0.0f, -thickness/2);
  107. glVertex3f(0.0f, -p1, thickness/2);
  108. glVertex3f(0.0f, -p1, -thickness/2);
  109. glVertex3f(0.0f, -p1, thickness/2);
  110. glVertex3f(0.0f, -p1, -thickness/2);
  111. glVertex3f( -p1, 0.0f, thickness/2);
  112. glVertex3f( -p1, 0.0f, -thickness/2);
  113. glVertex3f( -p1, 0.0f, thickness/2);
  114. glVertex3f( -p1, 0.0f, -thickness/2);
  115. glVertex3f(0.0f, t, thickness/2);
  116. glVertex3f(0.0f, t, -thickness/2);
  117. glVertex3f(0.0f, t, thickness/2);
  118. glVertex3f( p1, 0.0f, -thickness/2);
  119. glVertex3f( p1, 0.0f, thickness/2);
  120. glVertex3f(0.0f, t, -thickness/2);
  121. glVertex3f( p1, 0.0f, -thickness/2);
  122. glVertex3f(0.0f, -p1, -thickness/2);
  123. glVertex3f( -p1, 0.0f, -thickness/2);
  124. glVertex3f(0.0f, t, -thickness/2);
  125. glEnd();
  126. glPopMatrix();
  127. }
  128. }