X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=892a087b7ad8e49a6baf1cb4ca9870698508cfe0;hp=f748458cbaf01298f122d7de896027694e09119c;hb=0e6f9e61d354ba9e4f4fa9c9efa6fb84374c519f;hpb=d95870a5f740a7ed8c1adbd63b6ffd26fb5a3940 diff --git a/scene.c b/scene.c index f748458..892a087 100644 --- a/scene.c +++ b/scene.c @@ -226,28 +226,38 @@ void mouse(int button, int state, int x, int y) { } } +/** + * Keybord event handler + * w/s increase/decrease the z + * a/d increase/decrease the x + * q/e increase/decrease the y + * @param key Key pressed + * @param x x co-ordinate of mouse + * @param y y co-ordinate of mouse + */ void keyboard(unsigned char key, int x, int y) { switch(key) { case 'w': - z = z - 1; + camz = camz - 1; break; case 'a': - x = x - 1; + camx = camx - 1; break; case 's': - z = z + 1; + camz = camz + 1; break; case 'd': - x = x + 1; + camx = camx + 1; break; case 'q': - y = y + 1; + camy = camy + 1; break; case 'e': - y = y - 1; + camy = camy - 1; break; } - printf("Camera is now at (%f, %f, %f)", x, y, z); + printf("Camera is now at (%f, %f, %f)\n", camx, camy, camz); + glutPostRedisplay(); } /** @@ -279,14 +289,16 @@ void display() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glLoadIdentity(); gluLookAt( - x, y, z, /* eye is at (x,y,z) */ + 0.0, 0.0, 30.0, /* eye is at (x,y,z) */ 0.0, 0.0, 0.0, /* center is at (x,y,z) */ 0.0, 1.0, 0.0 /* up is in postivie Y direction */ ); + glTranslatef(camx, camy, camz); + // **NOTE: Currently this rotation function is all that moves the camera off // the flat surface. Need to integrate function into gluLookAt - glRotatef(30.0, 1.0, 0.0, 0.0); + glRotatef(50.0, 1.0, 0.0, 0.0); /* Reposition the light source. */ lightPosition[0] = 12*cos(lightAngle);