(no commit message)
[atyndall/cits2231.git] / scene.c
diff --git a/scene.c b/scene.c
index 10c0bde..242a104 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -118,7 +118,15 @@ static GLfloat floorVertices[4][3] = {
 \r
 static GLfloat lightColor[] = {1.0, 1.0, 1.0, 1.0}; // White light\r
 static GLfloat lightPosition[4];\r
-static float lightAngle = 10.0, lightHeight = 20;\r
+\r
+int moving, startx, starty;\r
+int lightMoving = 0, lightStartX, lightStartY;\r
+\r
+/* Time varying or user-controled variables. */\r
+static float jump = 0.0;\r
+static float lightAngle = 0.0, lightHeight = 20;\r
+GLfloat angle = -150;   /* in degrees */\r
+GLfloat angle2 = 30;   /* in degrees */\r
 \r
 /**\r
  * Prints out error message when file cannot be read\r
@@ -498,10 +506,54 @@ void windowReshape(int w, int h) {
  * @param x Mouse x position\r
  * @param y Mouse y position\r
  */\r
-void mouse(int btn, int state, int x, int y) {\r
+/*void mouse(int btn, int state, int x, int y) {\r
   \r
+}*/\r
+static void\r
+mouse(int button, int state, int x, int y)\r
+{\r
+  if (button == GLUT_LEFT_BUTTON) {\r
+    if (state == GLUT_DOWN) {\r
+      moving = 1;\r
+      startx = x;\r
+      starty = y;\r
+    }\r
+    if (state == GLUT_UP) {\r
+      moving = 0;\r
+    }\r
+  }\r
+  if (button == GLUT_MIDDLE_BUTTON) {\r
+    if (state == GLUT_DOWN) {\r
+      lightMoving = 1;\r
+      lightStartX = x;\r
+      lightStartY = y;\r
+    }\r
+    if (state == GLUT_UP) {\r
+      lightMoving = 0;\r
+    }\r
+  }\r
 }\r
 \r
+static void\r
+motion(int x, int y)\r
+{\r
+  if (moving) {\r
+    angle = angle + (x - startx);\r
+    angle2 = angle2 + (y - starty);\r
+    startx = x;\r
+    starty = y;\r
+    glutPostRedisplay();\r
+  }\r
+  if (lightMoving) {\r
+    lightAngle += (x - lightStartX)/40.0;\r
+    lightHeight += (lightStartY - y)/20.0;\r
+    lightStartX = x;\r
+    lightStartY = y;\r
+    glutPostRedisplay();\r
+  }\r
+}\r
+\r
+\r
 /**\r
  * Draw a floor.\r
  */\r
@@ -512,7 +564,7 @@ void drawFloor() {
   //  glEnable(GL_TEXTURE_2D);\r
   //}\r
 \r
-  glBegin(GL_QUADS);\r
+  /*glBegin(GL_QUADS);\r
     glTexCoord2f(0.0, 0.0);\r
     glVertex3fv(floorVertices[0]);\r
     glTexCoord2f(0.0, 16.0);\r
@@ -521,7 +573,7 @@ void drawFloor() {
     glVertex3fv(floorVertices[2]);\r
     glTexCoord2f(16.0, 0.0);\r
     glVertex3fv(floorVertices[3]);\r
-  glEnd();\r
+  glEnd();*/\r
 \r
   /*if (useTexture) {\r
     glDisable(GL_TEXTURE_2D);\r
@@ -537,9 +589,9 @@ void display() {
   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);\r
   glLoadIdentity();\r
   gluLookAt(\r
-    0.0, 8.0, 60.0,  /* eye is at (0,8,60) */\r
-    0.0, 8.0,  0.0,  /* center is at (0,8,0) */\r
-    0.0, 1.0,  0.0   /* up is in postivie Y direction */\r
+    0.0, 0.0, 60.0,  /* eye is at (x,y,z) */\r
+    0.0, 0.0,  0.0,  /* center is at (x,y,z) */\r
+    0.0, -1.0,  0.0   /* up is in postivie Y direction */\r
     );\r
 \r
   /* Reposition the light source. */\r
@@ -549,6 +601,10 @@ void display() {
   lightPosition[3] = 0.0;\r
 \r
   glPushMatrix();\r
+      /* Perform scene rotations based on user mouse input. */\r
+    glRotatef(angle2, 1.0, 0.0, 0.0);\r
+    glRotatef(angle, 0.0, 1.0, 0.0);\r
+\r
     glLightfv(GL_LIGHT0, GL_POSITION, lightPosition);\r
 \r
     glEnable(GL_BLEND);\r
@@ -556,11 +612,11 @@ void display() {
     drawFloor();\r
     glDisable(GL_BLEND);\r
 \r
-    glPushMatrix(); \r
-      glColor3f(1.0, 0.0, 1.0);\r
-      glTranslatef(-8.0, 0.0, -10.0);\r
-\r
-      glutSolidTeapot(0.5); // Draw teapot for test\r
+    glPushMatrix();\r
+    \r
+      //glTranslatef(0.0, 0.0, 0.0);\r
\r
+      glutSolidTeapot(30); // Draw teapot for test\r
     glPopMatrix();\r
 \r
     glPushMatrix();\r
@@ -584,6 +640,7 @@ void display() {
  */\r
 void init() {\r
   glMatrixMode(GL_PROJECTION);\r
+  glLoadIdentity();\r
 \r
   gluPerspective(\r
      60.0,  /* field of view in degree */\r
@@ -600,6 +657,7 @@ void init() {
   glEnable(GL_LIGHTING);\r
 \r
   glMatrixMode(GL_MODELVIEW);\r
+  glLoadIdentity();\r
 }\r
 \r
 /**\r
@@ -641,6 +699,7 @@ int main(int argc, char **argv) {
   glutReshapeFunc(windowReshape);\r
   glutDisplayFunc(display);\r
   glutMouseFunc(mouse);\r
+  glutMotionFunc(motion);\r
 \r
   makeMenu();\r
 \r

UCC git Repository :: git.ucc.asn.au