X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=b47fbe9a9223810bd20a6d34f567d7a057a77370;hp=80c1ee982ab653a99b7e28308edc05cc22dfd49b;hb=4faf81e198a5c745b2be358c9325af6ebaa60094;hpb=e7a92d3985b360bcb688de9976d1adcfae5de583 diff --git a/scene.c b/scene.c index 80c1ee9..b47fbe9 100644 --- a/scene.c +++ b/scene.c @@ -182,25 +182,19 @@ void makeMenu() { * @param w New width * @param h New height */ -void windowReshape(int w, int h) { +/*void windowReshape(int w, int h) { glViewport(0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); - gluPerspective( - 60.0, /* field of view in degree */ - 1.0, /* aspect ratio */ - nearClip, /* Z near */ - farClip /* Z far */ - ); - /*if (w <= h) + if (w <= h) glOrtho(near, far, near*(GLfloat)h/(GLfloat)w, far*(GLfloat)h/(GLfloat)w, -100, 100); else glOrtho(near*(GLfloat)w/(GLfloat)h, far*(GLfloat)w/(GLfloat)h, near, far, nearClip, farClip); - glMatrixMode(GL_MODELVIEW); */ + glMatrixMode(GL_MODELVIEW); glLoadIdentity(); -} +}*/ /** * Called when mouse event occurs @@ -265,17 +259,11 @@ void display() { 0.0, 0.0, 0.0, /* center is at (x,y,z) */ 0.0, 1.0, 0.0 /* up is in postivie Y direction */ ); - gluPerspective( - 60.0, /* field of view in degree */ - 1.0, /* aspect ratio */ - nearClip, /* Z near */ - farClip /* Z far */ - ); // **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(30.0, 1.0, 0.0, 0.0); /* Reposition the light source. */ lightPosition[0] = 12*cos(lightAngle); @@ -323,7 +311,16 @@ void init() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); + gluPerspective( + 60.0, /* field of view in degree */ + 1.0, /* aspect ratio */ + nearClip, /* Z near */ + farClip /* Z far */ + ); + glMatrixMode(GL_MODELVIEW); + glLoadIdentity(); + glLightfv(GL_LIGHT0, GL_POSITION, light0_pos); glLightfv(GL_LIGHT0, GL_AMBIENT, ambient0); glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse0); @@ -338,8 +335,6 @@ void init() { - glMatrixMode(GL_MODELVIEW); - glLoadIdentity(); } /** @@ -378,7 +373,7 @@ int main(int argc, char **argv) { glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); - glutReshapeFunc(windowReshape); + //glutReshapeFunc(windowReshape); glutDisplayFunc(display); glutMouseFunc(mouse); glutMotionFunc(motion);