Opengl placement of statements

Started by
11 comments, last by V-man 16 years, 3 months ago
HELP!!!! I am used to ALLEGRO and i dont know where to place statements like l=l+1 and so on. here is my code. the line in question is marked by <----HERE-- #include <windows.h> #include <gl\gl.h> #include <gl\glut.h> #include <gl\glu.h> /* GLU extention library */ void init(void); void display(void); void keyboard(unsigned char, int, int); void resize(int, int); void drawcube(int, int, int); int is_depth; /* depth testing flag */ int l; int main (int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB); glutInitWindowSize(600, 600); glutInitWindowPosition(40, 40); glutCreateWindow("The Cube World"); init(); glutDisplayFunc(display); glutKeyboardFunc(keyboard); l=-3; /* this time we're going to keep the aspect ratio constant by trapping the window resizes */ glutReshapeFunc(resize); glutMainLoop(); return 0; } void init(void) { glClearColor(0.0, 0.0, 0.0, 0.0); glEnable(GL_DEPTH_TEST); is_depth = 1; glMatrixMode(GL_MODELVIEW); } void display(void) { if (is_depth) glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); else glClear(GL_COLOR_BUFFER_BIT); /* draw the floor */ glBegin(GL_QUADS); glColor3f(0.2f, 0.2f, 0.2f); glVertex3f(-100.0, 0.0, -100.0); glColor3f(0.4f, 0.4f, 0.4f); glVertex3f(-100.0, 0.0, 100.0); glColor3f(0.6f, 0.6f, 0.6f); glVertex3f(100.0, 0.0, 100.0); glColor3f(0.8f, 0.8f, 0.8f); glVertex3f(100.0, 0.0, -100.0); glEnd(); /* draw 12 cubes with different colors */ //drawcube(75, 57, 2); //drawcube(-65, -12, 3); //drawcube(50, -50, 1); //drawcube(-56, 17, 2); //drawcube(67, 12, 3); //drawcube(-87, 32, 1); //drawcube(-26, 75, 2); //drawcube(57, 82, 3); drawcube(l, 12, 1); //drawcube(46, 35, 2); //drawcube(37, -2, 3); glutSwapBuffers(); } void keyboard(unsigned char key, int x, int y) {l=l+1; /////////////////////////////<-----------------HERE---- /* This time the controls are: "a": move left "d": move right "w": move forward "s": move back "t": toggle depth-testing */ switch (key) { case 'a': case 'A': glTranslatef(5.0, 0.0, 0.0); break; case 'd': case 'D': glTranslatef(-5.0, 0.0, 0.0); break; case 'w': case 'W': glTranslatef(0.0, 0.0, 5.0); break; case 's': case 'S': glTranslatef(0.0, 0.0, -5.0); break; case 'u': case 'U': glRotatef(3.0, 0.0, 1.0, 0.0); /* rotate up */ break; case 'y': case 'Y': glRotatef(-3.0, 0.0, 1.0, 0.0); /* rotate up */ break; case 't': case 'T': if (is_depth) { is_depth = 0; glDisable(GL_DEPTH_TEST); } else { is_depth = 1; glEnable(GL_DEPTH_TEST); } } display(); } void resize(int width, int height) { if (height == 0) height = 1; glMatrixMode(GL_PROJECTION); glLoadIdentity(); /* note we divide our width by our height to get the aspect ratio */ gluPerspective(45.0, width / height, 1.0, 400.0); /* set initial position */ glTranslatef(0.0, -5.0, -150.0); glMatrixMode(GL_MODELVIEW); } void drawcube(int x_offset, int z_offset, int color) { /* this function draws a cube centerd at (x_offset, z_offset) x and z _big are the back and rightmost points, x and z _small are the front and leftmost points */ float x_big = (float)x_offset + 5; float z_big = (float)z_offset + 5; float x_small = (float)x_offset - 5; float z_small = (float)z_offset - 5; switch(color) { case 1: glColor3f(1.0,0.0,0.0); break; case 2: glColor3f(0.0,1.0,0.0); break; case 3: glColor3f(0.0,0.0,1.0); break; } glBegin(GL_QUADS); glVertex3f(x_small,10.0,z_big); /* front */ glVertex3f(x_small,0.0,z_big); glVertex3f(x_big,0.0,z_big); glVertex3f(x_big,10.0,z_big); glVertex3f(x_big,10.0,z_small); /* back */ glVertex3f(x_big,0.0,z_small); glVertex3f(x_small,0.0,z_small); glVertex3f(x_small,10.0,z_small); glVertex3f(x_big,10.0,z_big); /* right */ glVertex3f(x_big,0.0,z_big); glVertex3f(x_big,0.0,z_small); glVertex3f(x_big,10.0,z_small); glVertex3f(x_small,10.0,z_small); /* left */ glVertex3f(x_small,0.0,z_small); glVertex3f(x_small,0.0,z_big); glVertex3f(x_small,10.0,z_big); glVertex3f(x_small,10.0,z_big); /* top */ glVertex3f(x_big,10.0,z_big); glVertex3f(x_big,10.0,z_small); glVertex3f(x_small,10.0,z_small); glVertex3f(x_small,0.0,z_small); /* bottom */ glVertex3f(x_big,0.0,z_small); glVertex3f(x_big,0.0,z_big); glVertex3f(x_small,0.0,z_big); glEnd(); } it works but i have to press a button to make it work. I want it to just move across the screen automatically I tried moving it outside of the keyboard loop, but then I get an error like its not supposed to be there. It has to work if placed in the right position in the code, right????? but i dont know where opengl wants me to put it. please help someone.
Advertisement
Of course l is only incremented when you press a key, it is in your keypress calback. Create a timer callback and place the code there instead.
"When you die, if you get a choice between going to regular heaven or pie heaven, choose pie heaven. It might be a trick, but if it's not, mmmmmmm, boy."
How to Ask Questions the Smart Way.
you mean like just before the key loop. something like

for(l<100)
{l=l+1;}

if that is what you mean then i have already tried this and i get an error message...."expected unqualified id"
so I don't know what to do or where to turn. I mean Opengl should be able to handle a for loop right???
Quote:Original post by sakares
you mean like just before the key loop. something like

for(l<100)
{l=l+1;}

if that is what you mean then i have already tried this and i get an error message...."expected unqualified id"
so I don't know what to do or where to turn. I mean Opengl should be able to handle a for loop right???


First of all, OpenGL doesn't 'handle' for loops. OpenGL is simply a set of functions that let you talk to your graphics hardware. Second, you may want to look into the proper syntax for a for loop. Third, if you do get that for loop properly set up, the object isn't going to move smoothly (its going to jump, and disappear before you see anything). This is because your program will stop until the for loop is completed, and effectively just increment l by 100.

I'm not even sure why you would need a for loop in this instance. Probably the quickest and easiest (although, not necessarily the 'best') thing to do is simply most the l=l+1 statement to the top of your display function. As I recall, GLUT allows you to set up an idle function callback. Creating one of those, as CodeMunkie suggested, and putting the code there, is probably a better way to go.

And, although the code may work, there are certainly a number of things that should be done. Among other things, you really should have a call to glLoadIdentity at the start of your display function. However, this means you'll need to make some changes to your keyboard handling. The transformations will have to be stored in some variables, and the transformations moved into the display function.
funny I was taken literally about opengl handling a for loop...anyway, i think this is great advice and thank you for it, although I odnt know what you mean by proper syntax, my syntax for for loops has been fine in all my other c++ application, but I am no expert. anyway I moved my l=l+1 to the top of the display function an it works but i need to press a key still for my cube to move across the screen. I htink the secret may lay in this callback function, I have not been able to find an example of this would you be able to or would anyone for this matter be able to provide me an example of this and what its purpose is???
Look up glutTimerFunc. It is very similar to the way you set up your glutDisplayFunc and glutKeyboardFunc, but it also takes in a timeout parameter that determines how often the function is called.
"When you die, if you get a choice between going to regular heaven or pie heaven, choose pie heaven. It might be a trick, but if it's not, mmmmmmm, boy."
How to Ask Questions the Smart Way.
Man you guys are being so nice to me helping me out I really appreciate it. i looked up the gluttimer thing and got this.

void glutTimerFunc(unsigned int msecs, void (*func)(int value), value);

how to use it this is another question. ummmm... is it a really complicated thing or would someone be able to put it in the right place for me. I just need to see things in the right place and then I can figure them out from there. so basically when I figure this out and figure out how to display variables such as l on the screen i will be set.

and which things need to be filled in??? msec i assume that I put the time that i want to elapse between loops and *func what is this??? int value also????
anyway any more help would be appreciated.
I GOT IT!!!!!! NOW I JUST HAVE TO FIGURE OUT HOW TO DISPLAY MY VARIBALE AS A TEXT ON THE SCREEN ANY SUGESSTIONS???
There's dozens of ways to display text on the screen. None are very easy. And I get the impression that you need to slow down. Your original question shows that you need to spend more time learning C++, rather than hopping into OpenGL. Getting a good foundation is very important, and is difficult to do if you get ahead of yourself. Write some Allegro programs totally from scratch. Don't copy a single line from any program (be it yours or a tutorial). This will help you solve problems like your first one on your own. I understand that you're excited and want to do as much as possible, but you will be able to do far more if you take it easy and make sure to get a strong understanding, rather than the bare minimum understanding, of base information.

Well, that's my take on it. Use it as you want.

Oh, and Allegro can handle OpenGL for you. This would let you learn just OpenGL instead of GLut along with OpenGL.
actually i am pretty comfortable with c++ and have written several programs in allegro 2d games and such, its just the opengl syntax is quite different to me.but to anyone that can help me out with this it would be greatly appreciated.

This topic is closed to new replies.

Advertisement