2017年6月12日 星期一

Week 14 碩碩

1. 
修改程式

#include <string.h>
#include <stdlib.h>
#include <GL/glut.h>
#include "glm.h"
GLMmodel* pmodel1 = NULL;
GLMmodel* pmodel2 = NULL;
GLMmodel* pmodel3 = NULL;
GLMmodel* pmodel4 = NULL;
GLMmodel* pmodel5 = NULL;
GLMmodel* pmodel6 = NULL;
float angle=0;
void display()
{
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    glPushMatrix();
        ///angle++;
        glRotatef(180, 0,1,0);
        if (!pmodel1) {
        pmodel1 = glmReadOBJ("data/head.obj");
        if (!pmodel1) exit(0);
        glmUnitize(pmodel1);
        glmFacetNormals(pmodel1);
        glmVertexNormals(pmodel1, 90.0);
        }
        if (!pmodel2) {
        pmodel2 = glmReadOBJ("data/body.obj");
        if (!pmodel2) exit(0);
        glmUnitize(pmodel2);
        glmFacetNormals(pmodel2);
        glmVertexNormals(pmodel2, 90.0);
        }
        if (!pmodel3) {
        pmodel3 = glmReadOBJ("data/leftarm.obj");
        if (!pmodel3) exit(0);
        glmUnitize(pmodel3);
        glmFacetNormals(pmodel3);
        glmVertexNormals(pmodel3, 90.0);
        }
        if (!pmodel4) {
        pmodel4 = glmReadOBJ("data/rightarm.obj");
        if (!pmodel4) exit(0);
        glmUnitize(pmodel4);
        glmFacetNormals(pmodel4);
        glmVertexNormals(pmodel4, 90.0);
        }
        if (!pmodel5) {
        pmodel5 = glmReadOBJ("data/leftleg.obj");
        if (!pmodel5) exit(0);
        glmUnitize(pmodel5);
        glmFacetNormals(pmodel5);
        glmVertexNormals(pmodel5, 90.0);
        }
        if (!pmodel6) {
        pmodel6 = glmReadOBJ("data/rightleg.obj");
        if (!pmodel6) exit(0);
        glmUnitize(pmodel6);
        glmFacetNormals(pmodel6);
        glmVertexNormals(pmodel6, 90.0);
        }

        glPushMatrix();
        glTranslatef(0,0.35,0);
        glScalef(0.6,0.6,0.6);
        glmDraw(pmodel1, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

        glPushMatrix();
        glTranslatef(0,0,0);
        glScalef(0.3,0.3,0.3);
        glmDraw(pmodel2, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

        glPushMatrix();
        glTranslatef(0.28,0,0);
        glScalef(0.3,0.3,0.3);
        glmDraw(pmodel3, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

        glPushMatrix();
        glTranslatef(-0.28,0,0);
        glScalef(0.3,0.3,0.3);
        glmDraw(pmodel4, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

        glPushMatrix();
        glTranslatef(-0.1,-0.38,0);
        glScalef(0.15,0.15,0.15);
        glmDraw(pmodel5, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

        glPushMatrix();
        glTranslatef(0.1,-0.38,0);
        glScalef(0.15,0.15,0.15);
        glmDraw(pmodel6, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

    glPopMatrix();
    glutSwapBuffers();
}
const GLfloat light_ambient[]  = { 0.0f, 0.0f, 0.0f, 1.0f };
const GLfloat light_diffuse[]  = { 1.0f, 1.0f, 1.0f, 1.0f };
const GLfloat light_specular[] = { 1.0f, 1.0f, 1.0f, 1.0f };
const GLfloat light_position[] = { 2.0f, 5.0f, -5.0f, 0.0f };

const GLfloat mat_ambient[]    = { 0.7f, 0.7f, 0.7f, 1.0f };
const GLfloat mat_diffuse[]    = { 0.8f, 0.8f, 0.8f, 1.0f };
const GLfloat mat_specular[]   = { 1.0f, 1.0f, 1.0f, 1.0f };
const GLfloat high_shininess[] = { 100.0f };

int main(int argc, char**argv)
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH | GLUT_RGB);
    glutCreateWindow("Yes, 3D Model Here");

    glutDisplayFunc(display);
    glutIdleFunc(display);

    glClearColor(1,1,1,1);
    //glEnable(GL_CULL_FACE);
    //glCullFace(GL_BACK);

    glEnable(GL_DEPTH_TEST);
    glDepthFunc(GL_LESS);

    glEnable(GL_LIGHT0);
    glEnable(GL_NORMALIZE);
    glEnable(GL_COLOR_MATERIAL);
    glEnable(GL_LIGHTING);

    glLightfv(GL_LIGHT0, GL_AMBIENT,  light_ambient);
    glLightfv(GL_LIGHT0, GL_DIFFUSE,  light_diffuse);
    glLightfv(GL_LIGHT0, GL_SPECULAR, light_specular);
    glLightfv(GL_LIGHT0, GL_POSITION, light_position);

    glMaterialfv(GL_FRONT, GL_AMBIENT,   mat_ambient);
    glMaterialfv(GL_FRONT, GL_DIFFUSE,   mat_diffuse);
    glMaterialfv(GL_FRONT, GL_SPECULAR,  mat_specular);
    glMaterialfv(GL_FRONT, GL_SHININESS, high_shininess);

    glutMainLoop();
}

2. 讓他可以轉動
修改好的程式碼:
#include <string.h>
#include <stdlib.h>
#include <GL/glut.h>
#include "glm.h"
GLMmodel* pmodel1 = NULL;
GLMmodel* pmodel2 = NULL;
GLMmodel* pmodel3 = NULL;
GLMmodel* pmodel4 = NULL;
GLMmodel* pmodel5 = NULL;
GLMmodel* pmodel6 = NULL;
float angle=0;
void display()
{
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    glPushMatrix();
        angle++;
        glRotatef(180, 0,1,0);
        if (!pmodel1) {
        pmodel1 = glmReadOBJ("data/head.obj");
        if (!pmodel1) exit(0);
        glmUnitize(pmodel1);
        glmFacetNormals(pmodel1);
        glmVertexNormals(pmodel1, 90.0);
        }
        if (!pmodel2) {
        pmodel2 = glmReadOBJ("data/body.obj");
        if (!pmodel2) exit(0);
        glmUnitize(pmodel2);
        glmFacetNormals(pmodel2);
        glmVertexNormals(pmodel2, 90.0);
        }
        if (!pmodel3) {
        pmodel3 = glmReadOBJ("data/leftarm.obj");
        if (!pmodel3) exit(0);
        glmUnitize(pmodel3);
        glmFacetNormals(pmodel3);
        glmVertexNormals(pmodel3, 90.0);
        }
        if (!pmodel4) {
        pmodel4 = glmReadOBJ("data/rightarm.obj");
        if (!pmodel4) exit(0);
        glmUnitize(pmodel4);
        glmFacetNormals(pmodel4);
        glmVertexNormals(pmodel4, 90.0);
        }
        if (!pmodel5) {
        pmodel5 = glmReadOBJ("data/leftleg.obj");
        if (!pmodel5) exit(0);
        glmUnitize(pmodel5);
        glmFacetNormals(pmodel5);
        glmVertexNormals(pmodel5, 90.0);
        }
        if (!pmodel6) {
        pmodel6 = glmReadOBJ("data/rightleg.obj");
        if (!pmodel6) exit(0);
        glmUnitize(pmodel6);
        glmFacetNormals(pmodel6);
        glmVertexNormals(pmodel6, 90.0);
        }

        glPushMatrix();///以身體為主旋轉(主體放最下面),做大括號

            glPushMatrix();

                glRotatef(angle,0,1,0);
                glTranslatef(0,0.35,0);
                glScalef(0.6,0.6,0.6);///頭
                glmDraw(pmodel1, GLM_SMOOTH | GLM_MATERIAL);glTranslatef(0,0,0);

            glPopMatrix();

            glPushMatrix();
                glRotatef(angle,0,1,0);
                glTranslatef(0.28,0,0);
                glScalef(0.3,0.3,0.3);///左手
                glmDraw(pmodel3, GLM_SMOOTH | GLM_MATERIAL);
            glPopMatrix();

            glPushMatrix();
                glRotatef(angle,0,1,0);
                glTranslatef(-0.28,0,0);
                glScalef(0.3,0.3,0.3);///右手
                glmDraw(pmodel4, GLM_SMOOTH | GLM_MATERIAL);
            glPopMatrix();

            glRotatef(angle,0,1,0);
            glScalef(0.3,0.3,0.3);///身體
            glmDraw(pmodel2, GLM_SMOOTH | GLM_MATERIAL);

        glPopMatrix();


        glPushMatrix();
        glTranslatef(-0.1,-0.38,0);
        glScalef(0.15,0.15,0.15);
        glmDraw(pmodel5, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

        glPushMatrix();
        glTranslatef(0.1,-0.38,0);
        glScalef(0.15,0.15,0.15);
        glmDraw(pmodel6, GLM_SMOOTH | GLM_MATERIAL);
        glPopMatrix();

    glPopMatrix();
    glutSwapBuffers();
}
const GLfloat light_ambient[]  = { 0.0f, 0.0f, 0.0f, 1.0f };
const GLfloat light_diffuse[]  = { 1.0f, 1.0f, 1.0f, 1.0f };
const GLfloat light_specular[] = { 1.0f, 1.0f, 1.0f, 1.0f };
const GLfloat light_position[] = { 2.0f, 5.0f, -5.0f, 0.0f };

const GLfloat mat_ambient[]    = { 0.7f, 0.7f, 0.7f, 1.0f };
const GLfloat mat_diffuse[]    = { 0.8f, 0.8f, 0.8f, 1.0f };
const GLfloat mat_specular[]   = { 1.0f, 1.0f, 1.0f, 1.0f };
const GLfloat high_shininess[] = { 100.0f };

int main(int argc, char**argv)
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH | GLUT_RGB);
    glutCreateWindow("Yes, 3D Model Here");

    glutDisplayFunc(display);
    glutIdleFunc(display);

    glClearColor(1,1,1,1);
    //glEnable(GL_CULL_FACE);
    //glCullFace(GL_BACK);

    glEnable(GL_DEPTH_TEST);
    glDepthFunc(GL_LESS);

    glEnable(GL_LIGHT0);
    glEnable(GL_NORMALIZE);
    glEnable(GL_COLOR_MATERIAL);
    glEnable(GL_LIGHTING);

    glLightfv(GL_LIGHT0, GL_AMBIENT,  light_ambient);
    glLightfv(GL_LIGHT0, GL_DIFFUSE,  light_diffuse);
    glLightfv(GL_LIGHT0, GL_SPECULAR, light_specular);
    glLightfv(GL_LIGHT0, GL_POSITION, light_position);

    glMaterialfv(GL_FRONT, GL_AMBIENT,   mat_ambient);
    glMaterialfv(GL_FRONT, GL_DIFFUSE,   mat_diffuse);
    glMaterialfv(GL_FRONT, GL_SPECULAR,  mat_specular);
    glMaterialfv(GL_FRONT, GL_SHININESS, high_shininess);

    glutMainLoop();
}

沒有留言:

張貼留言