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

天行健 君子當(dāng)自強(qiáng)而不息

使用DirectInput進(jìn)行交互(4)

 

本篇是使用DirectInput進(jìn)行交互(3)的續(xù)篇,當(dāng)時(shí)由于身邊沒有游戲操縱桿,所以拖到現(xiàn)在才寫。

 

使用游戲桿玩游戲

游戲桿是游戲控制的支柱,盡管游戲桿不是游戲惟一可以使用的輸入設(shè)備,但它卻是專門為玩游戲而設(shè)計(jì)的。將游戲桿向左推,游戲人物就會(huì)向左走,按下一個(gè)按鍵,游戲中的英雄就會(huì)揮舞他的劍,還有什么比這更容易的嗎?

游戲桿的形狀和大小千差萬別,商店貨架上的方向盤控制器就是一個(gè)游戲桿。如果去過街機(jī)游戲廳,就可能玩過允許(或要求)玩家站在很大的踏雪板或騎在小摩托車上來控制屏幕上的角色之類的游戲。別驚奇,這些踏雪板和摩托車甚至都可以看成是游戲桿!

游戲桿是一種軸控制器,按鍵很少。方向盤只有一個(gè)用于向左向右轉(zhuǎn)向的控制軸,它可能還有用于剎車和控制油門的控制軸。連基本的兩鍵游戲桿都有兩個(gè)控制軸:一個(gè)用于向上和向下,另外一個(gè)用于向左和向右。

下圖顯示了一些游戲桿,不論外形如何,方向性、旋轉(zhuǎn)型以及推動(dòng)型輸入是游戲桿的共同特征。

控制軸只是一個(gè)電位器(變量寄存器),它控制傳送給電路的電壓。傳送的最小電壓表示一個(gè)軸的范圍(游戲桿能夠被移動(dòng)的最遠(yuǎn)點(diǎn)),而最大電壓表示的是另外一個(gè)范圍,所有電壓就介于這兩個(gè)范圍之間。

電壓會(huì)流向系統(tǒng),多虧經(jīng)過windows(或directinput)處理,因此才能使用它。游戲桿按鍵的工作方式幾乎完全相同,就是根據(jù)電壓是否施加到按鍵上來發(fā)出按鍵是否被按下的信號(hào)。

讀入游戲桿數(shù)據(jù)的方式采用的是絕對(duì)值,這些絕對(duì)值都是相對(duì)于游戲桿中心的值。向左或向右推動(dòng)游戲桿,都會(huì)接收到負(fù)值,負(fù)值表示遠(yuǎn)離游戲桿中心的距離。向下或向右按,就會(huì)得到正值。按鍵都是單個(gè)標(biāo)志,這些標(biāo)志指出了按鍵是否被按下。

各種游戲桿之間惟一較大的差別就是那些帶有數(shù)字控制軸的游戲桿了,這些游戲桿就像是一些按鍵的組合。將游戲桿向左推就像按下一個(gè)表示向左的按鍵一樣,無論程序員何時(shí)查詢游戲桿以得到正在讀取的軸,游戲桿都會(huì)返回軸的可能最低值或最高值。

 

使用DirectInput處理游戲桿

從某種程度上講,游戲桿是最難處理的設(shè)備。最難的地方在于游戲桿的設(shè)置,要找到連接到系統(tǒng)中的游戲桿設(shè)備,必須進(jìn)行枚舉。在枚舉的過程中,必須決定使用哪個(gè)游戲桿,然后再為游戲桿創(chuàng)建COM對(duì)象。

如下所示,該函數(shù)枚舉并返回第一個(gè)枚舉到的游戲桿。

IDirectInput8* g_di;                    // directinput component
IDirectInputDevice8* g_enum_joystick;   // enum joystick device
IDirectInputDevice8* g_joystick;        // joystick device

//--------------------------------------------------------------------------------
// Initialize joystick interface, return a joystick interface pointer.
//--------------------------------------------------------------------------------
IDirectInputDevice8* init_joystick(HWND hwnd, IDirectInput8* di)
{
    g_di->EnumDevices(DI8DEVTYPE_JOYSTICK, enum_joysticks, NULL, DIEDFL_ATTACHEDONLY);
    
    
// everything was a success, return the pointer.
    return g_enum_joystick;
}

接著來看看枚舉函數(shù)的實(shí)現(xiàn):

 
//--------------------------------------------------------------------------------
// Enumerate all attached joysticks, return first enumerated joystick.
//--------------------------------------------------------------------------------
BOOL CALLBACK enum_joysticks(LPCDIDEVICEINSTANCE device_inst, LPVOID ref)
{
    DIPROPRANGE prop_range;
    DIPROPDWORD prop_dword;

    g_enum_joystick = NULL;

    
// create the device object using global directinput object
    if(FAILED(g_di->CreateDevice(device_inst->guidInstance, &g_enum_joystick, NULL)))
        
return DIENUM_CONTINUE;

    
// set the data format
    if(FAILED(g_enum_joystick->SetDataFormat(&c_dfDIJoystick)))
        
goto fail;

    
// set the cooperative mode
    if(FAILED(g_enum_joystick->SetCooperativeLevel(g_hwnd, DISCL_FOREGROUND | DISCL_NONEXCLUSIVE)))
        
goto fail;

    
// clear out the structure first
    ZeroMemory(&prop_range, sizeof(DIPROPRANGE));

    prop_range.diph.dwSize       = 
sizeof(DIPROPRANGE);
    prop_range.diph.dwHeaderSize = 
sizeof(DIPROPHEADER);
    prop_range.diph.dwHow        = DIJOFS_X;
    prop_range.diph.dwHow        = DIPH_BYOFFSET;  
// offset into data format
    prop_range.lMin              = -1024;
    prop_range.lMax              = 1024;

    
// Sets properties that define the device behavior. 
    // These properties include input buffer size and axis mode.
    HRESULT rv = g_enum_joystick->SetProperty(DIPROP_RANGE, &prop_range.diph);

    
if(FAILED(rv))
    {
        
if(rv == DIERR_INVALIDPARAM)
            MessageBox(NULL, "invalid param", NULL, MB_OK);
        
else if(rv == DIERR_NOTINITIALIZED)
            MessageBox(NULL, "not initialize", NULL, MB_OK);
        
else if(rv == DIERR_OBJECTNOTFOUND)
            MessageBox(NULL, "object not found", NULL, MB_OK);
        
else if(rv == DIERR_UNSUPPORTED)
            MessageBox(NULL, "unsopported", NULL, MB_OK);

        
goto fail;   
    }

    prop_range.diph.dwObj = DIJOFS_Y;

    
if(FAILED(g_enum_joystick->SetProperty(DIPROP_RANGE, &prop_range.diph)))
        
goto fail;

    
// set x deadzone to 15%
    prop_dword.diph.dwSize       = sizeof(DIPROPDWORD);
    prop_dword.diph.dwHeaderSize = 
sizeof(DIPROPHEADER);
    prop_dword.diph.dwHow        = DIPH_BYOFFSET;
    prop_dword.diph.dwObj        = DIJOFS_X;
    prop_dword.dwData            = 1500;

    
if(FAILED(g_enum_joystick->SetProperty(DIPROP_DEADZONE, &prop_dword.diph)))
        
goto fail;

    
// set Y deadzone
    prop_dword.diph.dwObj = DIJOFS_Y;

    
if(FAILED(g_enum_joystick->SetProperty(DIPROP_DEADZONE, &prop_dword.diph)))
        
goto fail;

    
// acquire the device for use
    if(FAILED(g_enum_joystick->Acquire()))
        
goto fail;

    
// stop enumeration
    return DIENUM_STOP;

fail:
    g_enum_joystick->Release();
    g_enum_joystick = NULL;

    
return DIENUM_CONTINUE;
}

其中涉及到的結(jié)構(gòu)體DIPROPRANGE定義如下:

Contains information about the range of an object within a device. This structure is used with the DIPROP_RANGE flag set in the IDirectInputDevice8::GetProperty and IDirectInputDevice8::SetProperty methods.

typedef struct DIPROPRANGE {
DIPROPHEADER diph;
LONG lMin;
LONG lMax;
} DIPROPRANGE, *LPDIPROPRANGE;

Members

diph
DIPROPHEADER structure.
lMin
Lower limit of the range. If the range of the device is unrestricted, this value is DIPROPRANGE_NOMIN when the IDirectInputDevice8::GetProperty method returns.
lMax
Upper limit of the range. If the range of the device is unrestricted, this value is DIPROPRANGE_NOMAX when the IDirectInputDevice8::GetProperty method returns.

Remarks

The diph member must be initialized as follows:

Member Value
dwSize sizeof(DIPROPRANGE)
dwHeaderSize sizeof(DIPROPHEADER)
dwObj If the dwHow member is DIPH_DEVICE, this member must be 0.

If the dwHow member is DIPH_BYID, this member must be the identifier for the object whose property setting is to be set or retrieved.

If the dwHow member is DIPH_BYOFFSET, this member must be a data format offset for the object whose property setting is to be set or retrieved. For example, if the c_dfDIMouse data format is selected, it must be one of the DIMOFS_* values.Identifier of the object whose property is being retrieved or set.

If the dwHow member is DIPH_BYUSAGE, the device must be a Human Interface Device (human interface device). The device object will be identified by the HID usage page and usage values in packed form.

dwHow Specifies how the dwObj member should be interpreted. See the preceding description of the dwObj member for details.

The range values for devices whose ranges are unrestricted wraparound.

 

DIPROPDWORD結(jié)構(gòu)體的定義如下:

Used to access DWORD properties.

typedef struct DIPROPDWORD {
DIPROPHEADER diph;
DWORD dwData;
} DIPROPDWORD, *LPDIPROPDWORD;

Members

diph
DIPROPHEADER structure.
dwData
Property-specific value being set or retrieved.
 

DIPROPHEADER的定義如下:

Serves as a header for all property structures.

typedef struct DIPROPHEADER {
DWORD dwSize;
DWORD dwHeaderSize;
DWORD dwObj;
DWORD dwHow;
} DIPROPHEADER, *LPDIPROPHEADER;

Members

dwSize
Size of the enclosing structure. This member must be initialized before the structure is used.
dwHeaderSize
Size of the DIPROPHEADER structure.
dwObj
Object for which the property is to be accessed. The value set for this member depends on the value specified in the dwHow member.
dwHow
Value that specifies how the dwObj member should be interpreted. This value can be one of the following:
DIPH_DEVICE
The dwObj member must be 0.
DIPH_BYOFFSET
The dwObj member is the offset into the current data format of the object whose property is being accessed.
DIPH_BYUSAGE
The dwObj member is the human interface device usage page and usage values in packed form.
DIPH_BYID
The dwObj member is the object type/instance identifier. This identifier is returned in the dwType member of the DIDEVICEOBJECTINSTANCE structure returned from a previous call to the IDirectInputDevice8::EnumObjects member.

 

如果有游戲桿被初始化,g_enum_joystick就成了指向新對(duì)象的指針,反之如果沒有游戲桿被初始化,它就等于NULL。一旦設(shè)備對(duì)象被初始化,就能像前面讀取鍵盤和鼠標(biāo)的信息一樣讀取游戲桿的信息,但是read_joystick函數(shù)要使用DIJOYSTATE結(jié)構(gòu)體。

Describes the state of a joystick device. This structure is used with the IDirectInputDevice8::GetDeviceState method.

typedef struct DIJOYSTATE {
LONG lX;
LONG lY;
LONG lZ;
LONG lRx;
LONG lRy;
LONG lRz;
LONG rglSlider[2];
DWORD rgdwPOV[4];
BYTE rgbButtons[32];
} DIJOYSTATE, *LPDIJOYSTATE;

Members

lX
X-axis, usually the left-right movement of a stick.
lY
Y-axis, usually the forward-backward movement of a stick.
lZ
Z-axis, often the throttle control. If the joystick does not have this axis, the value is 0.
lRx
X-axis rotation. If the joystick does not have this axis, the value is 0.
lRy
Y-axis rotation. If the joystick does not have this axis, the value is 0.
lRz
Z-axis rotation (often called the rudder). If the joystick does not have this axis, the value is 0.
rglSlider
Two additional axes, formerly called the u-axis and v-axis, whose semantics depend on the joystick. Use the IDirectInputDevice8::GetObjectInfo method to obtain semantic information about these values.
rgdwPOV
Direction controllers, such as point-of-view hats. The position is indicated in hundredths of a degree clockwise from north (away from the user). The center position is normally reported as - 1; but see Remarks. For indicators that have only five positions, the value for a controller is - 1, 0, 9,000, 18,000, or 27,000.
rgbButtons
Array of buttons. The high-order bit of the byte is set if the corresponding button is down, and clear if the button is up or does not exist.

Remarks

You must prepare the device for joystick-style access by calling the IDirectInputDevice8::SetDataFormat method, passing the c_dfDIJoystick global data format variable.

If an axis is in relative mode, the appropriate member contains the change in position. If it is in absolute mode, the member contains the absolute axis position.

Some drivers report the centered position of the POV indicator as 65,535. Determine whether the indicator is centered as follows:

BOOL POVCentered = (LOWORD(dwPOV) == 0xFFFF);

Note    Under DirectX 7.0, sliders on some joysticks could be assigned to the Z axis, with subsequent code retrieving data from that member. Using DirectX 8.0 and later, those same sliders will be assigned to the rglSlider array. This should be taken into account when porting applications to later versions of DirectX. Make any necessary alterations to ensure that slider data is retrieved from the rglSlider array.

來看看read_joystick的實(shí)現(xiàn):

//--------------------------------------------------------------------------------
// Read joystick buffer.
//--------------------------------------------------------------------------------
BOOL read_joystick(void* buffer, long buffer_size)
{
    HRESULT rv;

    
while(1)
    {
        
// poll device
        g_joystick->Poll();

        
// read in state
        if(SUCCEEDED(rv = g_joystick->GetDeviceState(buffer_size, buffer)))
            
break;

        
// return when an unknown error
        if(rv != DIERR_INPUTLOST || rv != DIERR_NOTACQUIRED)
            
return FALSE;

        
// re-acquire and try again
        if(FAILED(g_joystick->Acquire()))
            
return FALSE;
    }

    
return TRUE;
}

用于讀取按鍵狀態(tài)的宏在這里仍然起作用:

#define JOYSTICK_BUTTON_STATE(x) ((joy_state.rgbButtons[x] &0x80) ? TRUE : FALSE)

 

完整代碼示例如下:

點(diǎn)擊下載源碼和工程

/***************************************************************************************
PURPOSE:
    Joystick device Demo
 ***************************************************************************************/


#define DIRECTINPUT_VERSION 0x0800

#include <windows.h>
#include <stdio.h>
#include <dinput.h>
#include "resource.h"

#pragma comment(lib, "dxguid.lib")
#pragma comment(lib, "dinput8.lib")

#pragma warning(disable : 4996)

#define Safe_Release(p) if((p)) (p)->Release();

// window handles, class and caption text.
HWND g_hwnd;
char g_class_name[] = "JoystickClass";

IDirectInput8* g_di;                    
// directinput component
IDirectInputDevice8* g_enum_joystick;   // enum joystick device
IDirectInputDevice8* g_joystick;        // joystick device

BOOL CALLBACK enum_joysticks(LPCDIDEVICEINSTANCE device_inst, LPVOID 
ref);

//--------------------------------------------------------------------------------
// Window procedure.
//--------------------------------------------------------------------------------
long WINAPI window_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    
switch(msg)
    {
    
case WM_DESTROY:
        PostQuitMessage(0);
        
return 0;
    }

    
return (long) DefWindowProc(hwnd, msg, wParam, lParam);
}

//--------------------------------------------------------------------------------
// Initialize joystick interface, return a joystick interface pointer.
//--------------------------------------------------------------------------------
IDirectInputDevice8* init_joystick(HWND hwnd, IDirectInput8* di)
{
    g_di->EnumDevices(DI8DEVTYPE_JOYSTICK, enum_joysticks, NULL, DIEDFL_ATTACHEDONLY);
    
    
// everything was a success, return the pointer.
    return g_enum_joystick;
}

//--------------------------------------------------------------------------------
// Read joystick buffer.
//--------------------------------------------------------------------------------
BOOL read_joystick(void* buffer, long buffer_size)
{
    HRESULT rv;

    
while(1)
    {
        
// poll device
        g_joystick->Poll();

        
// read in state
        if(SUCCEEDED(rv = g_joystick->GetDeviceState(buffer_size, buffer)))
            
break;

        
// return when an unknown error
        if(rv != DIERR_INPUTLOST || rv != DIERR_NOTACQUIRED)
            
return FALSE;

        
// re-acquire and try again
        if(FAILED(g_joystick->Acquire()))
            
return FALSE;
    }

    
return TRUE;
}

//--------------------------------------------------------------------------------
// Enumerate all attached joysticks, return first enumerated joystick.
//--------------------------------------------------------------------------------
BOOL CALLBACK enum_joysticks(LPCDIDEVICEINSTANCE device_inst, LPVOID ref)
{
    DIPROPRANGE prop_range;
    DIPROPDWORD prop_dword;

    g_enum_joystick = NULL;

    
// create the device object using global directinput object
    if(FAILED(g_di->CreateDevice(device_inst->guidInstance, &g_enum_joystick, NULL)))
        
return DIENUM_CONTINUE;

    
// set the data format
    if(FAILED(g_enum_joystick->SetDataFormat(&c_dfDIJoystick)))
        
goto fail;

    
// set the cooperative mode
    if(FAILED(g_enum_joystick->SetCooperativeLevel(g_hwnd, DISCL_FOREGROUND | DISCL_NONEXCLUSIVE)))
        
goto fail;

    
// clear out the structure first
    ZeroMemory(&prop_range, sizeof(DIPROPRANGE));

    prop_range.diph.dwSize       = 
sizeof(DIPROPRANGE);
    prop_range.diph.dwHeaderSize = 
sizeof(DIPROPHEADER);
    prop_range.diph.dwHow        = DIJOFS_X;
    prop_range.diph.dwHow        = DIPH_BYOFFSET;  
// offset into data format
    prop_range.lMin              = -1024;
    prop_range.lMax              = 1024;

    
// Sets properties that define the device behavior. 
    // These properties include input buffer size and axis mode.
    HRESULT rv = g_enum_joystick->SetProperty(DIPROP_RANGE, &prop_range.diph);

    
if(FAILED(rv))
    {
        
if(rv == DIERR_INVALIDPARAM)
            MessageBox(NULL, "invalid param", NULL, MB_OK);
        
else if(rv == DIERR_NOTINITIALIZED)
            MessageBox(NULL, "not initialize", NULL, MB_OK);
        
else if(rv == DIERR_OBJECTNOTFOUND)
            MessageBox(NULL, "object not found", NULL, MB_OK);
        
else if(rv == DIERR_UNSUPPORTED)
            MessageBox(NULL, "unsopported", NULL, MB_OK);

        
goto fail;   
    }

    prop_range.diph.dwObj = DIJOFS_Y;

    
if(FAILED(g_enum_joystick->SetProperty(DIPROP_RANGE, &prop_range.diph)))
        
goto fail;

    
// set x deadzone to 15%
    prop_dword.diph.dwSize       = sizeof(DIPROPDWORD);
    prop_dword.diph.dwHeaderSize = 
sizeof(DIPROPHEADER);
    prop_dword.diph.dwHow        = DIPH_BYOFFSET;
    prop_dword.diph.dwObj        = DIJOFS_X;
    prop_dword.dwData            = 1500;

    
if(FAILED(g_enum_joystick->SetProperty(DIPROP_DEADZONE, &prop_dword.diph)))
        
goto fail;

    
// set Y deadzone
    prop_dword.diph.dwObj = DIJOFS_Y;

    
if(FAILED(g_enum_joystick->SetProperty(DIPROP_DEADZONE, &prop_dword.diph)))
        
goto fail;

    
// acquire the device for use
    if(FAILED(g_enum_joystick->Acquire()))
        
goto fail;

    
// stop enumeration
    return DIENUM_STOP;

fail:
    g_enum_joystick->Release();
    g_enum_joystick = NULL;

    
return DIENUM_CONTINUE;
}

//--------------------------------------------------------------------------------
// Main function, routine entry.
//--------------------------------------------------------------------------------
int WINAPI WinMain(HINSTANCE inst, HINSTANCE, LPSTR cmd_line, int cmd_show)
{
    WNDCLASS        win_class;
    MSG             msg;
    DIJOYSTATE      joy_state;
    
char            text[256];    

    LONG joystick_x = 0, joystick_y = 0; 
    BOOL is_first_render = TRUE;

    
// create window class and register it
    win_class.style         = CS_HREDRAW | CS_VREDRAW;
    win_class.lpfnWndProc   = window_proc;
    win_class.cbClsExtra    = 0;
    win_class.cbWndExtra    = DLGWINDOWEXTRA;
    win_class.hInstance     = inst;
    win_class.hIcon         = LoadIcon(inst, IDI_APPLICATION);
    win_class.hCursor       = LoadCursor(NULL, IDC_ARROW);
    win_class.hbrBackground = (HBRUSH) (COLOR_BTNFACE + 1);
    win_class.lpszMenuName  = NULL;
    win_class.lpszClassName = g_class_name;    

    
if(! RegisterClass(&win_class))
        
return FALSE;

    
// create the main window
    g_hwnd = CreateDialog(inst, MAKEINTRESOURCE(IDD_Joystick), 0, NULL);

    ShowWindow(g_hwnd, cmd_show);
    UpdateWindow(g_hwnd);

    
// initialize directinput and get keyboard device
    DirectInput8Create(inst, DIRECTINPUT_VERSION, IID_IDirectInput8, (void **) &g_di, NULL);

    
// initialize mouse
    g_joystick = init_joystick(g_hwnd, g_di);

    
if(g_joystick != NULL)
    {
        
// start message pump, waiting for signal to quit.
        ZeroMemory(&msg, sizeof(MSG));

        
while(msg.message != WM_QUIT)
        {
            
if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
            {
                TranslateMessage(&msg);
                DispatchMessage(&msg);
            }
            
            
// read in mouse and display coordinates
            read_joystick(&joy_state, sizeof(DIJOYSTATE));

            
if(is_first_render || (joystick_x != joy_state.lX || joystick_y != joy_state.lY))
            {
                is_first_render = FALSE;
                
                sprintf(text, "%ld, %ld", joy_state.lX, joy_state.lY);
                SetWindowText(GetDlgItem(g_hwnd, IDC_COORDINATES), text);        
            }     

            joystick_x = joy_state.lX;
            joystick_y = joy_state.lY;
        }
    }
    
else
    {
        MessageBox(g_hwnd, "No Joysticks!", "Error", MB_OK);
        
return 0;
    }    

    
// release directinput objects
    g_joystick->Unacquire();
    g_joystick->Release();
    g_di->Release();

    UnregisterClass(g_class_name, inst);
    
    
return (int) msg.wParam;
}
 

程序截圖:

 

 

posted on 2007-09-19 00:39 lovedday 閱讀(1355) 評(píng)論(0)  編輯 收藏 引用


只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


公告

導(dǎo)航

統(tǒng)計(jì)

常用鏈接

隨筆分類(178)

3D游戲編程相關(guān)鏈接

搜索

最新評(píng)論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            女人天堂亚洲aⅴ在线观看| 国产欧美日韩激情| 亚洲最新在线| 亚洲理论在线| 中文国产成人精品久久一| 亚洲一区二区免费| 久久不射网站| 欧美成人免费在线| 欧美午夜电影在线观看| 国产精品综合av一区二区国产馆| 国产麻豆91精品| 亚洲高清不卡在线| 一本久久知道综合久久| 欧美久久综合| 欧美特黄一级大片| 狠狠色综合色区| 亚洲乱亚洲高清| 欧美一区二区在线看| 久久国产精品电影| 欧美sm视频| 一本一道久久综合狠狠老精东影业 | 国产精品yjizz| 国产视频一区免费看| 亚洲国产精品小视频| 一区二区三区免费观看| 久久久久综合一区二区三区| 欧美激情视频给我| 亚洲专区在线| 欧美精品123区| 国产欧美精品国产国产专区| 最新成人在线| 久热成人在线视频| 亚洲欧美日韩精品在线| 欧美精品成人| 亚洲国产欧美精品| 欧美在线免费视频| 日韩一级免费观看| 欧美成人三级在线| 在线欧美三区| 久久高清福利视频| 亚洲神马久久| 欧美日本在线播放| 亚洲精品国产精品国自产观看浪潮| 欧美亚洲一区二区在线观看| 亚洲片在线观看| 亚洲欧美一区二区三区久久 | 性欧美精品高清| 亚洲精品永久免费精品| 免费的成人av| 亚洲国产午夜| 欧美成年人网站| 久久精品99国产精品| 国产偷国产偷亚洲高清97cao | 亚洲伊人久久综合| 亚洲精品在线视频观看| 欧美韩日一区二区三区| 91久久亚洲| 亚洲激情在线观看| 欧美激情综合色| 99riav1国产精品视频| 亚洲国产日日夜夜| 日韩亚洲欧美在线观看| 欧美激情精品久久久久久变态| 亚洲福利视频三区| 欧美高清在线播放| 久久综合久色欧美综合狠狠| 国内成+人亚洲| 久久亚洲综合网| 久久久久久久一区二区三区| 伊人久久久大香线蕉综合直播 | 欧美日韩中文字幕精品| 亚洲午夜女主播在线直播| 亚洲精品美女在线观看播放| 欧美激情按摩| 宅男噜噜噜66国产日韩在线观看| 亚洲三级毛片| 国产精品专区h在线观看| 久久青青草综合| 欧美不卡视频一区| 亚洲一区国产精品| 欧美在线看片a免费观看| 国外成人在线| 亚洲国产精品一区在线观看不卡| 欧美精品在线极品| 性色av一区二区三区在线观看| 午夜日韩激情| 亚洲人www| 亚洲综合色网站| 亚洲高清免费视频| 中文网丁香综合网| 狠狠干成人综合网| 亚洲精品国产精品久久清纯直播| 国产精品久久综合| 久久久精品欧美丰满| 欧美屁股在线| 久久亚洲一区二区| 欧美性做爰毛片| 欧美成人在线免费观看| 国产精品久久久久久久久久久久久 | 亚洲精品国产品国语在线app | 国产日韩一区二区三区| 亚洲成色www久久网站| 国产精品一区二区你懂得| 久久亚洲综合色一区二区三区| 欧美日韩激情网| 另类图片综合电影| 国产精品视频你懂的| 亚洲国产欧美另类丝袜| 国产毛片精品国产一区二区三区| 免费在线观看成人av| 国产精品实拍| 日韩亚洲不卡在线| 亚洲人成毛片在线播放女女| 午夜精品一区二区在线观看| 国产精品99久久久久久久女警| 久久深夜福利免费观看| 久久精品国产免费| 国产精品美女| 久久gogo国模裸体人体| 欧美精品一区二区蜜臀亚洲 | 亚洲国产岛国毛片在线| 国产偷国产偷精品高清尤物| 亚洲精品综合在线| 91久久精品国产91性色| 久久久91精品| 久久久久久久999精品视频| 国产精品久久久久久久久婷婷| 亚洲国产天堂网精品网站| 在线看日韩av| 久久久蜜臀国产一区二区| 久久国产精品高清| 国产视频一区在线观看| 亚洲欧美日韩国产一区| 欧美一级午夜免费电影| 国产精品一区二区久久久久| 国产精品99久久久久久宅男| 亚洲欧美日韩成人| 国产免费观看久久| 午夜欧美大尺度福利影院在线看| 欧美一区二区高清| 国产色综合网| 久久午夜电影网| 亚洲国产精品va| 一区二区三区www| 国产精品免费一区豆花| 亚洲午夜三级在线| 久久久久久午夜| 亚洲国产欧美一区二区三区久久| 欧美插天视频在线播放| 日韩小视频在线观看专区| 午夜亚洲一区| 国产在线精品自拍| 免费成人在线视频网站| 91久久国产综合久久| 亚洲性视频网站| 国产午夜精品久久久久久免费视| 久久国产精品久久久| 欧美黄色大片网站| 一区二区三区导航| 国产亚洲网站| 欧美大香线蕉线伊人久久国产精品| 亚洲欧洲综合| 久久9热精品视频| 亚洲国产精品欧美一二99| 欧美日本不卡视频| 午夜老司机精品| 欧美黄色成人网| 欧美一区二区三区在线免费观看| 黄色欧美日韩| 欧美视频日韩| 久久免费偷拍视频| 中文在线不卡视频| 欧美www在线| 亚洲欧美日韩一区在线| 在线精品视频免费观看| 欧美精品激情blacked18| 亚洲欧美春色| 亚洲欧洲精品一区二区| 久久疯狂做爰流白浆xx| 一本久久a久久免费精品不卡| 国产精品久久久久7777婷婷| 老牛国产精品一区的观看方式| 一区二区三区精品在线| 欧美福利视频网站| 久久精品国产久精国产一老狼| 99re6这里只有精品| 国产一区二区三区的电影| 欧美日本一区二区视频在线观看 | 欧美一进一出视频| 亚洲精美视频| 国产一区二区剧情av在线| 欧美日韩色一区| 美女视频网站黄色亚洲| 欧美影院视频| 亚洲综合国产激情另类一区| 亚洲国产日韩欧美在线99| 狼狼综合久久久久综合网| 欧美一区在线视频| 亚洲综合精品| 亚洲免费av观看|