用于水平滚动文本的OpenGL动画不能滚动

gfttwv5a  于 2022-09-26  发布在  其他
关注(0)|答案(1)|浏览(261)

我正在尝试将文本滚动为横幅。我使用了带有Glut的OpenGL来实现这一点。如果我使用像正方形这样的图形,整个代码都可以工作。正方形在屏幕上滚动。

现在我想用文本来做这件事。每次这个节目开始的时候。文本出现在它的起始位置,但当计时器启动时,它消失了。这可能是因为屏幕在每个时钟时刻都会被清除,但屏幕不会再次堆积起来。

有人能帮我翻译这个动画和文字吗?

  1. # include <stdio.h>
  2. # include <string.h>
  3. # include <math.h>
  4. # include <iostream>
  5. # ifdef WIN32
  6. # include <windows.h>
  7. # endif
  8. # include <GL/gl.h>
  9. # include <GL/glut.h>
  10. using namespace std;
  11. static int font_index = 0;
  12. int state = 1;
  13. void print_bitmap_string(/*void* font,*/ const char* s)
  14. {
  15. while (*s) {
  16. glutBitmapCharacter(GLUT_BITMAP_TIMES_ROMAN_24, *s);
  17. s++;
  18. }
  19. }
  20. void my_reshape(int w, int h)
  21. {
  22. GLdouble size;
  23. GLdouble aspect;
  24. /* Use the whole window. */
  25. glViewport(0, 0, w, h);
  26. /* We are going to do some 2-D orthographic drawing. */
  27. glMatrixMode(GL_PROJECTION);
  28. glLoadIdentity();
  29. size = (GLdouble)((w >= h) ? w : h) / 2.0;
  30. if (w <= h) {
  31. aspect = (GLdouble)h / (GLdouble)w;
  32. glOrtho(-size, size, -size * aspect, size * aspect, -100000.0, 100000.0);
  33. }
  34. else {
  35. aspect = (GLdouble)w / (GLdouble)h;
  36. glOrtho(-size * aspect, size * aspect, -size, size, -100000.0, 100000.0);
  37. }
  38. /* Make the world and window coordinates coincide so that 1.0 in */
  39. /* model space equals one pixel in window space. */
  40. glScaled(aspect, aspect, 1.0);
  41. /* Now determine where to draw things. */
  42. glMatrixMode(GL_MODELVIEW);
  43. glLoadIdentity();
  44. }
  45. float yild;
  46. float ystep;
  47. float x_pos = -200;
  48. float y_pos = 70;
  49. void draw()
  50. {
  51. const char* bitmap_font_names[7] = { "Hello train" };
  52. /* Draw the strings, according to the current mode and font. */
  53. glTranslatef(0.5, -100, 0);
  54. //set the text color
  55. glColor4f(0.0f, 255.0f, 140.0f, 1.0f);
  56. ystep = 100.0;
  57. yild = 20.0;
  58. glRasterPos2f(x_pos, y_pos + 1.25 * yild);
  59. print_bitmap_string(bitmap_font_names[0]);
  60. }
  61. void display(void)
  62. {
  63. //change background color
  64. glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
  65. glClear(GL_COLOR_BUFFER_BIT);
  66. draw();
  67. glColor3f(0.0, 1.0, 0.0);
  68. glBegin(GL_POLYGON);
  69. glVertex2f(x_pos + 0.5f, 0.0f);
  70. glVertex2f(x_pos+1.0f, 0.5f);
  71. glVertex2f(x_pos+0.5f, 0.5f);
  72. glEnd();
  73. glutSwapBuffers();
  74. }
  75. void timer(int) {
  76. glutPostRedisplay();
  77. glutTimerFunc(1000 , timer, 0);
  78. switch (state) {
  79. case 1:
  80. if (x_pos > -295) {
  81. x_pos -= 1;
  82. }
  83. else {
  84. state = -1;
  85. }
  86. break;
  87. case -1:
  88. x_pos = 180;
  89. state = 1;
  90. break;
  91. }
  92. cout << x_pos << endl;
  93. }
  94. int main(int argc, char**argv)
  95. {
  96. glutInitWindowSize(500, 150);
  97. glutInit(&argc, argv);
  98. glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
  99. glutCreateWindow("Train Display");
  100. glutDisplayFunc(display);
  101. glutReshapeFunc(my_reshape);
  102. glutTimerFunc(1000, timer, 0);
  103. glutMainLoop();
  104. return 0;
  105. }
5uzkadbs

5uzkadbs1#

glTranslate不仅设置平移矩阵,还将当前矩阵乘以平移矩阵。您需要在glTranslatef之前加载带有glLoadIdentity的单位矩阵,或者使用glPushMatrix/glPopMatrix保存和恢复当前矩阵:

  1. void draw()
  2. {
  3. const char* bitmap_font_names[7] = { "Hello train" };
  4. glPushMatrix();
  5. /* Draw the strings, according to the current mode and font. */
  6. glTranslatef(0.5, -100, 0);
  7. //set the text color
  8. glColor4f(0.0f, 255.0f, 140.0f, 1.0f);
  9. ystep = 100.0;
  10. yild = 20.0;
  11. glRasterPos2f(x_pos, y_pos + 1.25 * yild);
  12. print_bitmap_string(bitmap_font_names[0]);
  13. glPopMatrix();
  14. }
展开查看全部

相关问题