青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

天行健 君子當自強而不息

創(chuàng)建3D圖形引擎(2)

 

本篇是創(chuàng)建3D圖形引擎(1)的續(xù)篇,3D圖形引擎的代碼以創(chuàng)建游戲內(nèi)核中編寫的代碼為基礎進行開發(fā)。

 

下載源碼和工程

 

視錐的介紹

視錐(viewing frustum)是6個平面的集合,它從觀察點向外擴展,以確定某個多邊形是否能夠被觀察到。

首先,可以將視錐看作是一個以觀察者開始擴展的金字塔,如下圖所示:

這個金字塔代表了觀察范圍(field of viewFOV),位于觀察范圍內(nèi)的物體是可見的,而位于觀察范圍外的物體則是不可見的。

三維圖形引擎的每個物體都是由3D點(稱為頂點)構成的,每個視錐包含6個面(前、后、左、右、上、下)。通過一些數(shù)學計算,可以確定哪些頂點位于視錐內(nèi),哪些頂點位于視錐外。位于視錐內(nèi)的頂點被渲染,而位于視錐外的頂點則不被渲染。同樣,當渲染多邊形時,只有那些在視錐內(nèi)的頂點才被渲染。

 

平面與裁剪

視錐的6個側面被稱為剪切平面(clipping plane),Direct3D使用了一個名為D3DXPLANE的特定對象去包含平面數(shù)據(jù),D3DXPLANE包含了4個變量:a、b、c、d,它們都是浮點型數(shù)據(jù)。

定義好一個平面后,為它指定一個特定的方向,并將它從原點移到相應的位置。事實上,一個平面就是由一條法線以及它與原點的距離進行定義的,如下圖所示,它演示了一個平面在三維空間中的方位。

不需要指定XYZ的具體數(shù)值,你只要使用變量AB、C,同時還有一個數(shù)值D來確定平面離原點的距離。為了定義一個平面,將A、B、C設置為法向量的值,這樣就可以使用一個平面去檢測指定的點位于平面的前面或者后面。
 

為了計算視錐的6個平面,可以將當前的觀察變換矩陣和投影矩陣組合起來,然后使用組合矩陣直接計算每個平面的AB、C、D。

 

平面可見性檢測

為了檢測一個頂點位于平面的前方或后方,可以利用點積來計算,通過調用D3DXPlaneCoord函數(shù)來實現(xiàn)。

Computes the dot product of a plane and a 3D vector. The w parameter of the vector is assumed to be 1.

FLOAT D3DXPlaneDotCoord(
CONST D3DXPLANE * pP,
CONST D3DXVECTOR3 * pV
);

Parameters

pP
[in] Pointer to a source D3DXPLANE structure.
pV
[in] Pointer to a source D3DXVECTOR3 structure.

Return Values

The dot product of the plane and 3D vector.

Remarks

Given a plane (a, b, c, d) and a 3D vector (x, y, z) the return value of this function is a*x + b*y + c*z + d*1. The D3DXPlaneDotCoord function is useful for determining the plane's relationship with a coordinate in 3D space.

 

完整視錐的檢測

對于立方體和長方體,需檢測所有的拐角頂點。如果所有的頂點都位于任一平面之后,那么立方體或長方體就位于視錐之外(因而也在視野之外)。如果有任一頂點位于視錐之內(nèi),或者說位于任一平面前(也就是說不是所有的頂點都位于任一平面后),那就意味著立方體或者長方體是可見的。至于球體,只要它與每個平面的距離 等于或大于球形的平面,那么它就是可見的。

 

FRUSTUM

因為每次使用視錐所涉及的數(shù)學運算都是一樣的,所以完全可以創(chuàng)建一個類,讓它處理好數(shù)學方面的問題,包括創(chuàng)建視錐以及使用視錐去檢測一個物體是否可見等。

//==============================================================================
// This class encapsulate for frustum, judge whether other object is in frustum.
//==============================================================================
typedef class FRUSTUM
{
public:
    
// Construct the six planes from current view and projection. 
    // Can override the default depth value.
    BOOL construct(GRAPHICS_PTR graphics, float z_distance = 0.0f);

    
// The following functions check a single point, cube, rectangle, and sphere if 
    // contained in the frustum. A return value of TRUE means visible, FALSE not visible.
    // When checking cubes or rectangles, you can supply a BOOL variable that determines 
    // if all the points are in the frustum.

    BOOL check_point(
float x_pos, float y_pos, float z_pos);

    BOOL check_cube(
float x_center, float y_center, float z_center,
                    
float radius,
                    BOOL* completely_contained = NULL);

    BOOL check_rectangle(
float x_center, float y_center, float z_center,
                         
float x_radius, float y_radius, float z_radius,
                         BOOL* completely_contained = NULL);

    BOOL check_sphere(
float x_center, float y_center, float z_center,
                      
float radius);
    
private:
    D3DXPLANE _planes[6];       
// the frustum planes
} *FRUSTUM_PTR;

每當觀察或投影矩陣發(fā)生變化時,請調用construct去構造6個測試平面,如果僅希望最接近的物體能被看到,則可以為遠端剪切平面指定一個新的距離值。

//----------------------------------------------------------------------------
// Construct frustum.
//----------------------------------------------------------------------------
BOOL FRUSTUM::construct(GRAPHICS_PTR graphics, float z_distance)
{
    D3DXMATRIX matrix, mat_view, mat_proj;

    
// error checking
    if(graphics == NULL)
        
return FALSE;

    
// calculate FOV data
    graphics->get_device_com()->GetTransform(D3DTS_PROJECTION, &mat_proj);

    
if(! float_equal(z_distance, 0.0f))
    {
        
// Calculate new projection matrix based on distance provided.
        //
        // projection matrix is:
        // 
        // | xScale     0          0               0 |
        // | 0        yScale       0               0 |
        // | 0          0       zf/(zf-zn)         1 |
        // | 0          0       -zn*zf/(zf-zn)     0 |
        //
        // where:
        //      yScale = cot(fovY/2)
        //      xScale = yScale / aspect ratio

        
float z_min = -mat_proj._43 / mat_proj._33;
        
float q = z_distance / (z_distance - z_min);

        mat_proj._33 = q;
        mat_proj._43 = -q * z_min;
    }

    graphics->get_device_com()->GetTransform(D3DTS_VIEW, &mat_view);
    D3DXMatrixMultiply(&matrix, &mat_view, &mat_proj);

    
// calculate the planes
    _planes[0].a = matrix._14 + matrix._13; // Near
    _planes[0].b = matrix._24 + matrix._23;
    _planes[0].c = matrix._34 + matrix._33;
    _planes[0].d = matrix._44 + matrix._43;
    D3DXPlaneNormalize(&_planes[0], &_planes[0]);

    _planes[1].a = matrix._14 - matrix._13; 
// Far
    _planes[1].b = matrix._24 - matrix._23;
    _planes[1].c = matrix._34 - matrix._33;
    _planes[1].d = matrix._44 - matrix._43;
    D3DXPlaneNormalize(&_planes[1], &_planes[1]);

    _planes[2].a = matrix._14 + matrix._11; 
// Left
    _planes[2].b = matrix._24 + matrix._21;
    _planes[2].c = matrix._34 + matrix._31;
    _planes[2].d = matrix._44 + matrix._41;
    D3DXPlaneNormalize(&_planes[2], &_planes[2]);

    _planes[3].a = matrix._14 - matrix._11; 
// Right
    _planes[3].b = matrix._24 - matrix._21;
    _planes[3].c = matrix._34 - matrix._31;
    _planes[3].d = matrix._44 - matrix._41;
    D3DXPlaneNormalize(&_planes[3], &_planes[3]);

    _planes[4].a = matrix._14 - matrix._12; 
// Top
    _planes[4].b = matrix._24 - matrix._22;
    _planes[4].c = matrix._34 - matrix._32;
    _planes[4].d = matrix._44 - matrix._42;
    D3DXPlaneNormalize(&_planes[4], &_planes[4]);

    _planes[5].a = matrix._14 + matrix._12; 
// Bottom
    _planes[5].b = matrix._24 + matrix._22;
    _planes[5].c = matrix._34 + matrix._32;
    _planes[5].d = matrix._44 + matrix._42;
    D3DXPlaneNormalize(&_planes[5], &_planes[5]);

    
return TRUE;
}

使用check系列函數(shù)判斷物體在視錐內(nèi)是否可見。

//----------------------------------------------------------------------------
// Check one point whether in frustum.
//----------------------------------------------------------------------------
BOOL FRUSTUM::check_point(float x_pos, float y_pos, float z_pos)
{
    
// make sure point is in frustum
    for(short i = 0; i < 6; i++)
    {
        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_pos, y_pos, z_pos)) < 0.0f)
            
return FALSE;
    }

    
return TRUE;
}

//----------------------------------------------------------------------------
// Check whether a cube in frustum, if total cube in frustum then 
// completely_contained will be set TRUE.
//----------------------------------------------------------------------------
BOOL FRUSTUM::check_cube(float x_center, float y_center, float z_center, 
                         
float radius, 
                         BOOL* completely_contained)
{
    DWORD num_points_in_frustum = 0;

    
// count the number of points inside the frustum
    for(short i = 0; i < 6; i++)
    {
        DWORD count = 8;
        BOOL in_all_planes = TRUE;

        
// test all eight points against plane

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center - radius, y_center - radius, z_center - radius)) < 0.0f)
        {
            in_all_planes = FALSE;
            count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center + radius, y_center - radius, z_center - radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center - radius, y_center + radius, z_center - radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center + radius, y_center + radius, z_center - radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center - radius, y_center - radius, z_center + radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center + radius, y_center - radius, z_center + radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center - radius, y_center + radius, z_center + radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center + radius, y_center + radius, z_center + radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
// if none contained, return FALSE.
        if(count == 0)
            
return FALSE;

        
// update counter if they were all in front of plane.
        if(in_all_planes)
            ++num_points_in_frustum;
    }

    
// store BOOL flag if completely contained
    if(completely_contained)
        *completely_contained = (num_points_in_frustum == 6);

    
return TRUE;
}

//----------------------------------------------------------------------------
// Check whether a rectangle is in frustum, if total in then completely_contained
// will be set TRUE.
//----------------------------------------------------------------------------
BOOL FRUSTUM::check_rectangle(float x_center, float y_center, float z_center, 
                              
float x_radius, float y_radius, float z_radius, 
                              BOOL* completely_contained)
{
    DWORD num_points_in_frustum = 0;

    
// count the number of points inside the frustum
    for(short i = 0; i < 6; i++) 
    {
        DWORD count = 8;
        BOOL  in_all_planes = TRUE;
        
        
// Test all eight points against plane

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center - x_radius, y_center - y_radius, z_center - z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center + x_radius, y_center - y_radius, z_center - z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center - x_radius, y_center + y_radius, z_center - z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center + x_radius, y_center + y_radius, z_center - z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center - x_radius, y_center - y_radius, z_center + z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center + x_radius, y_center - y_radius, z_center + z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center - x_radius, y_center + y_radius, z_center + z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
if(D3DXPlaneDotCoord(&_planes[i], 
            &D3DXVECTOR3(x_center + x_radius, y_center + y_radius, z_center + z_radius)) < 0.0f) 
        {
          in_all_planes = FALSE;
          count--;
        }

        
// If none contained, return FALSE
        if(count == 0)
          
return FALSE;

        
// Update counter if they were all in front of plane
        if(in_all_planes)
            ++num_points_in_frustum;
    }

    
// Store BOOL flag if completely contained
    if(completely_contained)
        *completely_contained = (num_points_in_frustum == 6);

    
return TRUE;
}

//----------------------------------------------------------------------------
// Check whether a sphere is in frustum. 
//----------------------------------------------------------------------------
BOOL FRUSTUM::check_sphere(float x_center, float y_center, float z_center, 
                           
float radius)
{
    
// make sure radius is in frustum
    for(short i = 0; i < 6; i++)
    {
        
if(D3DXPlaneDotCoord(&_planes[i], &D3DXVECTOR3(x_center, y_center, z_center)) < -radius)
            
return FALSE;
    }

    
return TRUE;
}

測試代碼:

/************************************************************************************
PURPOSE:
    frustum test.
************************************************************************************/


#include "core_global.h"
#include "frustum.h"

#define MAX_OBJECTS 256

class APP : public APPLICATION
{
public:
    APP()
    {
        _width  = 640;
        _height = 480;
        
        APPLICATION::_x_pos = (get_screen_width()  - _width) / 2;
        APPLICATION::_y_pos = (get_screen_height() - _height) / 4;

        _style = WS_BORDER | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU;

        strcpy(_class_name, "object clipping class");
        strcpy(_caption, "object clipping demo");
    }

    BOOL init()
    {
        
// initialize graphics and set display mode
        _graphics.init();
        _graphics.set_mode(get_hwnd(), TRUE, TRUE);
        _graphics.set_perspective(D3DX_PI / 4, 1.3333f, 1.0f, 10000.0f);

        
// create a font
        _font.create(&_graphics, "Arial", 16, TRUE, FALSE);

        
// initialize input and input device
        _input.init(get_hwnd(), get_inst());        
        _mouse.create(&_input, MOUSE, TRUE);

        
// load mesh
        if(! _mesh.load(&_graphics, "..\\Data\\Yodan.x", "..\\Data\\"))
            
return FALSE;

        
for(short i = 0; i < MAX_OBJECTS; i++)
        {
            _objects[i].create(&_graphics, &_mesh);

            _objects[i].move((
float) (rand() % 4000) - 2000.0f, 0.0f, (float) (rand() % 4000) - 2000.0f);
        }

        
return TRUE;
    }

    BOOL frame()
    {
        
// read mouse data        
        _mouse.read();

        
// position camera and rotate based on mouse position

        _camera.move(0.0f, 100.0f, 0.0f);

        
// _mouse.get_y_delta():
        //      get mouse's relative x movement coordinate.
        //
        // _mouse.get_x_delta():
        //      get mouse's relative y movement coordinate.

        _camera.rotate_rel(_mouse.get_y_delta() / 200.0f, _mouse.get_x_delta() / 200.0f, 0.0f);

        
// set camera
        _graphics.set_camera(&_camera);
        
        
// render everything
        _graphics.clear(D3DCOLOR_RGBA(0, 64, 128, 255));               

        
// begin render now
        if(_graphics.begin_scene())
        {
            FRUSTUM frustum;
            frustum.construct(&_graphics); 

            
long num_drawn = 0;

            
// render each object in frustums
            for(short i = 0; i < MAX_OBJECTS; i++)
            {
                
float radius;
                
                _objects[i].get_bounds(NULL, NULL, NULL, NULL, NULL, NULL, &radius);

                
if(frustum.check_sphere(_objects[i].get_x_pos(), _objects[i].get_y_pos(), _objects[i].get_z_pos(),
                                        radius))
                {
                    _objects[i].render();
                    num_drawn++;
                }                
            }

            
char stats[128];

            
// display statistics
            sprintf(stats, "%lu of 256 objects drawn.", num_drawn);
            _font.print(stats, 0, 0, 400, 100);
                
            _graphics.end_scene();
        }

        _graphics.display();

        
return TRUE;
    }

    BOOL shutdown()
    {
        
return TRUE;
    }

private:  
    GRAPHICS        _graphics;
    CAMERA          _camera;
    FONT            _font;

    INPUT           _input;
    INPUT_DEVICE    _mouse;    

    MESH            _mesh;
    OBJECT          _objects[MAX_OBJECTS];
};

int WINAPI WinMain(HINSTANCE inst, HINSTANCE, LPSTR cmd_line, int cmd_show)
{
    APP app;

    
return app.run();
}

截圖:


posted on 2007-10-19 19:59 lovedday 閱讀(1180) 評論(0)  編輯 收藏 引用

公告

導航

統(tǒng)計

常用鏈接

隨筆分類(178)

3D游戲編程相關鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            久久久999精品免费| 欧美sm视频| 午夜精品视频在线观看| 亚洲国产另类久久久精品极度| 欧美丝袜一区二区三区| 欧美日韩99| 欧美视频在线观看视频极品| 欧美日韩在线第一页| 欧美日韩午夜视频在线观看| 国产精品久久午夜夜伦鲁鲁| 国产精品亚洲成人| 影音先锋国产精品| 99香蕉国产精品偷在线观看| 亚洲欧美日韩精品综合在线观看| 亚洲欧美自拍偷拍| 老司机精品福利视频| 亚洲高清毛片| 亚洲午夜激情网站| 久久亚洲精品一区二区| 欧美日韩一区二区高清| 国产一区二区三区精品欧美日韩一区二区三区 | 校园激情久久| 麻豆91精品91久久久的内涵| 亚洲茄子视频| 欧美一区二区免费| 欧美刺激午夜性久久久久久久| 国产精品日韩电影| 亚洲精品裸体| 久久国产精品久久精品国产| 亚洲欧洲综合另类| 欧美一区二区成人| 欧美日韩视频一区二区| 影院欧美亚洲| 久久激情五月婷婷| 一本久道综合久久精品| 久久中文欧美| 国产一区二区三区免费在线观看| 一本色道久久综合亚洲精品小说| 快射av在线播放一区| 亚洲私拍自拍| 欧美精品二区三区四区免费看视频| 国产丝袜一区二区三区| 亚洲午夜三级在线| 91久久久久久久久| 麻豆久久久9性大片| 韩国亚洲精品| 久久九九精品| 午夜视频精品| 国产精品一区毛片| 午夜精品久久久久久99热| 亚洲人午夜精品免费| 蜜桃久久av一区| 在线精品国产欧美| 免费在线观看一区二区| 久久精品99国产精品日本| 亚洲人成网站色ww在线| 久久久久在线| 午夜精品视频一区| 国产精品色一区二区三区| 亚洲色图在线视频| 日韩午夜激情av| 欧美日韩国产在线播放| 在线一区二区三区四区五区| 亚洲欧洲综合| 欧美日韩中字| 亚洲欧美在线看| 亚洲欧美日韩一区| 韩国一区二区在线观看| 免费久久99精品国产| 久久午夜精品一区二区| 最新成人av在线| 亚洲人成网站在线播| 欧美日韩国产小视频| 亚洲影院免费| 午夜精品久久久久久| 国产亚洲制服色| 欧美v国产在线一区二区三区| 美女视频黄免费的久久| 亚洲精品欧美日韩专区| 99国产精品久久久久久久| 国产精品毛片| 免费成人小视频| 欧美日本一道本| 午夜免费日韩视频| 久久久久久久高潮| av成人老司机| 亚洲欧美日韩另类| 亚洲国产精品专区久久| 一本久道综合久久精品| 国产综合欧美| 91久久久亚洲精品| 国产色综合久久| 亚洲国产一二三| 国产精品一二三视频| 美玉足脚交一区二区三区图片| 欧美国产三区| 久久国产精品久久w女人spa| 欧美成人一区在线| 久久精品国产第一区二区三区最新章节 | 亚洲日本一区二区三区| 一区二区三区国产盗摄| 黄色av日韩| 在线性视频日韩欧美| 在线播放亚洲一区| 在线一区欧美| 亚洲国产日韩欧美一区二区三区| 一区二区欧美亚洲| 亚洲高清在线| 香港久久久电影| 一区二区三区精密机械公司 | 一区二区三区自拍| 亚洲欧洲精品天堂一级| 国产日韩视频| 一本色道久久综合狠狠躁篇的优点| 狠狠久久亚洲欧美| a4yy欧美一区二区三区| 亚洲第一精品影视| 午夜视频一区| 亚洲欧美日韩在线高清直播| 欧美电影美腿模特1979在线看| 久久精品国产v日韩v亚洲| 国产精品高清在线| 亚洲日本理论电影| 亚洲国产欧美日韩另类综合| 亚欧成人在线| 欧美一区二区三区四区视频| 欧美日韩亚洲一区二区三区四区| 欧美成人乱码一区二区三区| 激情一区二区三区| 欧美一区二区三区在线看| 午夜精品视频在线观看| 国产精品老女人精品视频| 亚洲人午夜精品免费| 日韩视频免费在线观看| 欧美韩日亚洲| 亚洲日韩第九十九页| 一区二区三区精品视频在线观看| 欧美韩日高清| 亚洲伦理在线| 亚洲婷婷综合久久一本伊一区| 欧美日韩精品二区第二页| 亚洲最新合集| 午夜一区不卡| 国产一区二区高清不卡| 欧美在线视频日韩| 欧美a级在线| 日韩视频一区二区在线观看 | 国产精品三上| 午夜在线观看免费一区| 久久五月激情| 亚洲激情偷拍| 欧美日韩精品免费看| 亚洲视频一起| 久久国产天堂福利天堂| 黄网动漫久久久| 欧美激情视频网站| 亚洲婷婷免费| 久久久久久久一区| 亚洲国产小视频| 欧美视频二区36p| 午夜视频久久久| 欧美国产免费| 亚洲自拍三区| 国产一区二区久久| 欧美成人在线免费观看| 亚洲私拍自拍| 免费高清在线一区| 在线视频欧美精品| 国内精品视频在线观看| 欧美伦理91i| 亚洲你懂的在线视频| 久久嫩草精品久久久精品| 欧美日韩免费看| 欧美四级剧情无删版影片| 一本久道久久综合中文字幕| 久久久精品视频成人| 亚洲精品日产精品乱码不卡| 国产精品久久激情| 久久婷婷蜜乳一本欲蜜臀| 99热精品在线观看| 欧美福利精品| 久久激情五月婷婷| 亚洲视频专区在线| 亚洲电影网站| 国产精品嫩草影院一区二区 | 欧美日韩一区二区高清| 欧美在线视频观看免费网站| 亚洲精品自在久久| 免费成人美女女| 欧美一区二区黄色| 日韩网站在线| 亚洲第一在线视频| 国产三级欧美三级| 欧美午夜免费| 欧美黄色成人网| 久久综合九色综合欧美狠狠| 先锋影音一区二区三区| 亚洲午夜精品一区二区| 亚洲另类在线视频| 亚洲国内精品|