• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            Shuffy

            不斷的學習,不斷的思考,才能不斷的進步.Let's do better together!
            posts - 102, comments - 43, trackbacks - 0, articles - 19

            《基于MFC的OpenGL編程》Part 9 Lighting

            Posted on 2010-03-31 20:37 Shuffy 閱讀(199) 評論(0)  編輯 收藏 引用 所屬分類: MFC,OpenGL
                 本文在8篇文章的基礎上,為其加入燈光效果。

            Materials

            OpenGL materials are description of what objects are made of. It basically specifies how much of light they reflect and this is what we would be seeing. OpenGL lighting goes a long way towards modeling real world lighting. In order achieve proper lighting effects in OpenGL we need to specify material properties. Material properties are of the following types - Diffuse and Ambient properties, Specular and Shininess Properties and Emissive Properties. These are the properties that specify how a surface dissipates light.

            Diffuse and Ambient Properties

            The diffuse and ambient reflective material properties are a type of reflective effect that is independent of the viewpoint. Diffuse lighting is light from a particular direction and ambient lighting is light that is coming from all directions. A particular light source can have both a diffuse and an ambient component. These material properties describe how the material reflects diffuse and ambient light falling on it.

            Specular and Shininess Properties

            The specular and the shininess properties of the surface describe the reflective effects that are affected by the position of the viewpoint. Specular light is reflected from a surface that produces the reflective highlights in a surface. The shininess is a value that describes how focussed the reflective properties are.

            Emissive Property

            This is the light that an object gives off by itself. A typical example of this is a light source itself.

            Specifying a material property

            In order to specify a material property we have to use the OpenGL function - glMaterial*(). We can individually specify the material properties using this function. Another way to go about this is by color tracking. This can be achieved by enabling color tracking and specifying what parameters of the material would be affected by the glColor command. This is an optimization feature that OpenGL provides and is useful in cases where we will be changing only particular properties of the material and not all of them. In this tutorial we will use glMaterial to specify the material properties as we will be individually setting each one of them.

            Choosing the material properties determine how the object will look. We will follow the following steps in choosing the material properties -

            • Decide on the diffuse and ambient colors.
            • Decide on the shininess depending on the type of material object that is being modeled such as silver, wood etc.
            • Decide whether the object would be giving off any light on its own.

            The above values can be obtained by mere trial and error. We will look at how we go about doing this when we write a program.

            Lighting

            OpenGL has two types of lighting: global lighting or ambient lighting and individual light sources which have position and direction. The way an object is lit depends on the material of the object, all the lights and their properties, their positions and direction etc. This means lighting calculations are quite expensive and are hence turned off by OpenGL by default. So we have to turn on lighting before using it. Global lighting parameters can be set using the glLightModel function which specify the lighting model we would be using - such as an infinite viewer or a local viewer (for specular highlights), single sided or two sided lighting and the RGBA value for the ambient light. In addition to this we would be specifying the individual light sources.  

            1,設置燈光和材質屬性

            void CCY457OpenGLView::SetupLighting ()
            {
                
            //Material Properties
                GLfloat matSpecular[] = { 1.0f0.0f0.0f1.0f};
                GLfloat matShininess[] 
            = { 50.0f};
                GLfloat matAmbient[] 
            = { 0.25f0.25f0.25f1.0f};
                GLfloat matDiffuse[] 
            = { 0.5f0.5f0.5f1.0f};
                glMaterialfv(GL_FRONT, GL_SPECULAR, matSpecular);
                glMaterialfv(GL_FRONT, GL_SHININESS, matShininess);
                glMaterialfv(GL_FRONT, GL_DIFFUSE, matDiffuse);
                glMaterialfv(GL_FRONT, GL_AMBIENT, matAmbient);
                
            //Lighting Parameters
                
            //Enable Lighting
                glEnable(GL_LIGHTING);
                
            //Specify a single directional light
                GLfloat ambient1[] = { 0.5f,0.5f,0.5f};
                GLfloat diffuse1[] 
            = { 0.5f,0.5f,0.5f};
                GLfloat specular1[] 
            = { 1.0f,0.0f,0.0f};
                GLfloat position1[] 
            = { 0.0f,0.0f,5.0f,0.0};
                glLightfv(GL_LIGHT0, GL_AMBIENT, ambient1);
                glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse1);
                glLightfv(GL_LIGHT0, GL_SPECULAR, specular1);
                glLightfv(GL_LIGHT0, GL_POSITION, position1);    
                glEnable(GL_LIGHT0);
                
            //Specify a single positional spotlight
                GLfloat ambient2[] = { 1.0f,1.0f,0.0f};
                GLfloat diffuse2[] 
            = { 1.0f,0.0f,0.0f};
                GLfloat position2[] 
            = { 1.0f,0.0f,5.0f,1.0};
                GLfloat direction2[] 
            = {0.0f,0.0f,-5.0f};
                glLightfv(GL_LIGHT1, GL_AMBIENT, ambient2);
                glLightfv(GL_LIGHT1, GL_DIFFUSE, diffuse2);
                glLightfv(GL_LIGHT1, GL_POSITION, position2);    
                glLightfv(GL_LIGHT1, GL_SPOT_DIRECTION, direction2);
                glLightf(GL_LIGHT1, GL_SPOT_CUTOFF, 
            15.0f);
                glEnable(GL_LIGHT1);
            }

            2,在初始化OpenGL時調用上述函數

            BOOL CCY457OpenGLView::InitializeOpenGL()
            {
                
            //Get a DC for the Client Area
                m_pDC = new CClientDC(this);
                
            //Failure to Get DC
                if(m_pDC == NULL)
                {
                    MessageBox(
            "Error Obtaining DC");
                    
            return FALSE;
                }
                
            //Failure to set the pixel format
                if(!SetupPixelFormat())
                {
                    
            return FALSE;
                }
                
            //Create Rendering Context
                m_hRC = ::wglCreateContext (m_pDC->GetSafeHdc ());
                
            //Failure to Create Rendering Context
                if(m_hRC == 0)
                {
                    MessageBox(
            "Error Creating RC");
                    
            return FALSE;
                }
                
            //Make the RC Current
                if(::wglMakeCurrent (m_pDC->GetSafeHdc (), m_hRC)==FALSE)
                {
                    MessageBox(
            "Error making RC Current");
                    
            return FALSE;
                }
                
            //Specify Black as the clear color
                ::glClearColor(0.0f,0.0f,0.0f,0.0f);
                
            //Specify the back of the buffer as clear depth
                ::glClearDepth(1.0f);
                
            //Enable Depth Testing
                ::glEnable(GL_DEPTH_TEST);
                glShadeModel(GL_FLAT);
                SetupLighting();
                
            return TRUE;
            }

             

            作者:洞庭散人

            出處:http://phinecos.cnblogs.com/    

            本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責任的權利。
            原文鏈接:http://www.cnblogs.com/phinecos/archive/2008/11/05/1327595.html
            亚洲人成伊人成综合网久久久 | 久久国产精品久久国产精品| 日韩人妻无码精品久久久不卡| 国产成人综合久久综合| 国产精品成人99久久久久 | 久久成人精品视频| 亚洲婷婷国产精品电影人久久| 色综合久久中文字幕无码| 久久er热视频在这里精品| 漂亮人妻被中出中文字幕久久| 亚洲狠狠婷婷综合久久蜜芽| 久久亚洲国产午夜精品理论片| 久久香蕉一级毛片| 日韩电影久久久被窝网| 精品无码久久久久久午夜| 人妻无码久久精品| 久久精品国产一区二区三区日韩| 少妇久久久久久被弄到高潮| 国产精品久久网| 性色欲网站人妻丰满中文久久不卡 | 国内高清久久久久久| 久久精品国产72国产精福利| 久久精品国产亚洲av麻豆小说| 亚洲欧美日韩久久精品| 狠狠人妻久久久久久综合| 女人香蕉久久**毛片精品| 99久久精品国内| 色欲av伊人久久大香线蕉影院| 伊人伊成久久人综合网777| 久久97久久97精品免视看| 国产精品99久久久久久宅男| 日本精品久久久久中文字幕| 久久国产乱子精品免费女| 97久久精品人妻人人搡人人玩| 欧美噜噜久久久XXX| 久久亚洲中文字幕精品有坂深雪| 人妻精品久久久久中文字幕一冢本| 东方aⅴ免费观看久久av| 99久久国产宗和精品1上映| 久久夜色精品国产亚洲| 亚洲中文精品久久久久久不卡|