Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

80 linhas
2.3KB

  1. // stolen from NeHe opengl tutorial, thanks! :)
  2. #include <GL/gl.h> // Header File For The OpenGL32 Library
  3. #include <GL/glu.h> // Header File For The GLu32 Library
  4. #include <GL/glut.h> // Header File For The GLut Library
  5. #include "hexapod.c"
  6. #define kWindowWidth 500
  7. #define kWindowHeight 500
  8. GLvoid InitGL(GLvoid);
  9. GLvoid DrawGLScene(GLvoid);
  10. GLvoid ReSizeGLScene(int Width, int Height);
  11. int main(int argc, char** argv)
  12. {
  13. load_calibration("/etc/calibration.bin");
  14. glutInit(&argc, argv);
  15. glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
  16. glutInitWindowSize (kWindowWidth, kWindowHeight);
  17. glutInitWindowPosition (100, 100);
  18. glutCreateWindow (argv[0]);
  19. InitGL();
  20. glutReshapeFunc(ReSizeGLScene);
  21. glutDisplayFunc(DrawGLScene);
  22. glutIdleFunc(DrawGLScene);
  23. glutMainLoop();
  24. return 0;
  25. }
  26. GLvoid ReSizeGLScene(GLsizei width, GLsizei height) // Resize And Initialize The GL Window
  27. {
  28. if (height==0) // Prevent A Divide By Zero By
  29. {
  30. height=1; // Making Height Equal One
  31. }
  32. glViewport(0, 0, width, height); // Reset The Current Viewport
  33. glMatrixMode(GL_PROJECTION); // Select The Projection Matrix
  34. glLoadIdentity(); // Reset The Projection Matrix
  35. // Calculate The Aspect Ratio Of The Window
  36. // gluPerspective(45.0f,(GLfloat)width/(GLfloat)height,0.1f,100.0f);
  37. glMatrixMode(GL_MODELVIEW); // Select The Modelview Matrix
  38. glLoadIdentity(); // Reset The Modelview Matrix
  39. }
  40. GLvoid InitGL(GLvoid) // All Setup For OpenGL Goes Here
  41. {
  42. // glEnable(GL_DEPTH_TEST); // Enables Depth Testing
  43. glShadeModel(GL_SMOOTH); // Enables Smooth Shading
  44. glDisable(GL_LIGHTING);
  45. glColor3f(1.0f,1.0f,1.0f);
  46. glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // Black Background
  47. glClearDepth(1.0f); // Depth Buffer Setup
  48. glDepthFunc(GL_LEQUAL); // The Type Of Depth Test To Do
  49. glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Really Nice Perspective Calculations
  50. glViewport(0,0,500,500);
  51. }
  52. GLvoid DrawGLScene(GLvoid) // Here's Where We Do All The Drawing
  53. {
  54. glClearColor(0.0f,0.0f,0.0f,1.0f);
  55. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear The Screen And The Depth Buffer
  56. glLoadIdentity();
  57. // glTranslatef(0.0f,0.0f,0.2f);
  58. draw_hexapod();
  59. glutSwapBuffers();
  60. usleep(1000);
  61. }