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

天行健 君子當自強而不息

Timing in Animation and Movement(5)

Defining Routes

A path by its lonesome self does you little good; there are times when you need to string together a series of paths that an object must follow. I'm talking about complex paths that are both straight and curved. In fact, we're no longer discussing paths; we've moved on to the advanced topic of routes!

As you can see in Figure 2.6, a route is a series of paths that are commonly connected from endpoint to endpoint.

As you have probably surmised, you can define a route using an array of path objects. By creating a generic path structure, you can store information for both straight and curved paths in one structure. The secret is to look for commonalities and expand on those. For example, the straight and curved paths both have starting and ending points. Therefore, you can define two sets of coordinates that represent the starting and ending coordinates inside your generic path structure, as follows:

typedef struct {
  D3DXVECTOR3 vecStart, vecEnd;
} sPath;

The only real difference between the two path types is that the curved paths have two additional control points. Adding another two vector objects to your budding sPath structure will work just fine for holding the control point coordinates.

typedef struct {
  D3DXVECTOR3 vecStart, vecEnd;
  D3DXVECTOR3 vecPoint1, vecPoint2;
} sPath;

Now the only thing missing is a flag in the sPath structure to determine which type of path is defined−straight or curved. Include a DWORD variable and an enum declaration to determine which type of path is defined.

enum { PATH_STRAIGHT = 0, PATH_CURVED };

typedef struct {
  DWORD Type;
  D3DXVECTOR3 vecStart, vecEnd;
  D3DXVECTOR3 vecPoint1, vecPoint2;
} sPath;

From here on, you only need to store a PATH_STRAIGHT value or a PATH_CURVED value in the sPath::Type variable to determine the use of the contained data−either for a straight path with starting and ending points or for a curved path with starting, ending, and two mid−path control points.

Allocating an array of sPath structures is easy, and filling that array with your path's data (such as the data shown in Figure 2.7) is as simple as the following code demonstrates.

sPath Path[3] = {
{ PATH_STRAIGHT, D3DXVECTOR3(−50.0f, 0.0f, 0.0f),
D3DXVECTOR3(−50.0f, 0.0f, 25.0f),
D3DXVECTOR3(0.0f, 0.0f, 0.0f),
D3DXVECTOR3(0.0f, 0.0f, 0.0f) },
{ PATH_CURVED, D3DXVECTOR3(−50.0f, 0.0f, 25.0f),
D3DXVECTOR3(0.0f, 0.0f, 50.0f),
D3DXVECTOR3(50.0f, 0.0f, 0.0f),
D3DXVECTOR3(25.0f, 0.0f, −50.0f) },
{ PATH_STRAIGHT, D3DXVECTOR3(25.0f, 0.0f, −50.0f),
D3DXVECTOR3(−50.0f, 0.0f, 0.0f),
D3DXVECTOR3(0.0f, 0.0f, 0.0f),
D3DXVECTOR3(0.0f, 0.0f, 0.0f) }
};

Of course, you really shouldn't hand−code routes into your project; it's best to use an external source such as an .X file to contain your route data.

 

Creating an .X Path Parser

The easiest place from which to obtain your path data is−you guessed it−an .X file! That's right, you can construct a couple simple templates to use with a custom .X parser to obtain the paths you want to use for your project. You can even construct routes from your path templates to make things easier!

You can duplicate the generic path structure you developed in the previous section to use as a template in your .X files. This generic path template will contain four vectors−the first two being the starting and ending coordinates of the path (for either a straight or curved path), and the last two being the handles' coordinates (for curved paths). Take a look at the single template definition you can use.

// {F8569BED−53B6−4923−AF0B−59A09271D556}
// DEFINE_GUID(Path,
// 0xf8569bed, 0x53b6, 0x4923,
// 0xaf, 0xb, 0x59, 0xa0, 0x92, 0x71, 0xd5, 0x56);

template Path {
  <F8569BED−53B6−4923−AF0B−59A09271D556>
  DWORD Type; // 0=straight, 1=curved
  Vector Start; // Start point
  Vector Point1; // Midpoint 1
  Vector Point2; // Midpoint 2
  Vector End; // End point
}

After you've defined your .X file Path template, you can instance as many times as you need in your data files. To load those paths, you should create a route template (called Route) that allows you to define multiple path data objects. This route template merely contains an array of Path data objects, as you can see here:

// {18AA1C92−16AB−47a3−B002−6178F9D2D12F}
// DEFINE_GUID(Route,
// 0x18aa1c92, 0x16ab, 0x47a3,
// 0xb0, 0x2, 0x61, 0x78, 0xf9, 0xd2, 0xd1, 0x2f);
template Route {
  <18AA1C92−16AB−47a3−B002−6178F9D2D12F>
  DWORD NumPaths;
  array Path Paths[NumPaths];
}

For an example of using the Route template, take a look at how the route defined in the previous section would look in an .X file.

Route MyRoute {
3; // 3 paths
0; // Straight path type
−50.0, 0.0, 0.0;
0.0, 0.0, 0.0;
0.0, 0.0, 0.0;
−50.0, 0.0, 25.0;,
1; // Curved path type
−50.0, 0.0, 25.0;
0.0, 0.0, 50.0;
50.0, 0.0, 0.0;
25.0, 0.0, −50.0;,
0; // Straight path type
25.0, 0.0, −50.0;
0.0, 0.0, 0.0;
0.0, 0.0, 0.0;
−50.0, 0.0, 0.0;;
}

You can access the route data objects from your .X files by using a custom .X parser. This parser only needs to look for Route objects. When it finds one, it will allocate an array of sPath structures and read in the data. The route data itself is kept inside a linked list of structures so that you can load multiple routes. This route data uses the following class:

class cRoute
{
public:
    
char*        m_name;
    DWORD        m_num_paths;
    sPath
*        m_paths;
    cRoute
*        m_next;

public:
    cRoute()
    {
        m_name  
= NULL;
        m_paths 
= NULL;
        m_next  
= NULL;
    }

    
~cRoute()
    {
        delete[] m_name;    m_name 
= NULL;
        delete[] m_paths;
        delete   m_next;
    }

    cRoute
* find(const char* name)
    {
        
if(name == NULL)
            
return this;

        
if(!stricmp(name, m_name))
            
return this;

        
if(m_next)
            
return m_next->find(name);

        
return NULL;
    }
};

 

The sPath structure also needs to be spruced up a bit. You need to add the length of each path to its respective structure, as well as to the starting position of the path in the series of paths. This is a simple process. The length, as you saw in the previous few sections, is only a floating−point number, and the starting position of the path is the combination of the lengths of all prior paths in the list. Your new sPath structure should look like this:

enum { PATH_STRAIGHT = 0, PATH_CURVED };

struct sPath
{
    DWORD        type;
    D3DXVECTOR3    start, end;
    D3DXVECTOR3    control1, control2;

    
float        start_pos;    // total length of all prior paths
    float        length;        // length of current path
};

The reason to include the length and starting position of the path in the sPath structure is really a matter of speed. By pre−computing the length values loading the path data, you can quickly access that data (the length and starting position) when you are determining the path in which an object is located based on its distance into the route.

I know it sounds strange, but think of it like this−the starting positions and lengths of each path are like key frames; instead of measuring time, you are measuring the lengths of the paths. By taking the position of an object in the route (say 516 units), you can scan through the list of paths and see the path within which the object lies.

Suppose the route uses six paths, and the fourth path starts at 400 units. The fourth path is 128 units long, meaning that it covers the lengths from 400 to 528 units. The object at 516 units is located in the fourth path; by subtracting the object's position (516) from the ending position of the path (528), you can discover the offset in the path that you can use as a scalar value to calculate the object's coordinates along the path. In this case, that position would be 528−516, or 12 units, and the scalar value would be 12/128, or 0.09375.

Enough talk, let's get to some code! The following class, cXRouteParser, is derived from the cXParser class, meaning that you have access to the data−object parsing code. All you want to do with the cXRouteParser class is scan for Route data objects and load the appropriate path data into a newly allocated Route class that is linked to a list of routes.

Check out the cXRouteParser declaration, which contains the root Route class pointer and six functions (three of which contain code inline to the class).

class cXRouteParser : public cXParser
{
public:
    cRoute
*        m_root_route;

public:
    cXRouteParser()        { m_root_route 
= NULL; }
    
~cXRouteParser()    { free(); }

    
void free()            { delete m_root_route; m_root_route = NULL; }

    
bool  load(const char* filename);
    
void  locate(const char* name, float distance, D3DXVECTOR3* pos);
    
float get_length(const char* name);

protected:
    
virtual bool parse_objects(ID3DXFileData* xfile_data,
                               ID3DXFileData
* parent_xfile_data,
                               DWORD  depth,
                               
void** data,
                               
bool   force_ref);
};

 

The most important function of cXRouteParser is the template data object parser, of course. I'll show you the parser function in a moment. The load function merely sets up the call to parse, which in turn loads all your Route templates into the linked list. The locate function calculates the position along the route's path that you can use to position an object. Again, I'll get to the locate function in a moment. For now, I want to get back to the parse_objects function.

The parse_objects function only scans for one template data object−Route. Once it is found, a cRoute class and the path structures are allocated, and the data is loaded. The cRoute class is linked in the list of loaded routes, and the parsing of the .X file continues. Here's what the parse_objects function code looks like:

// {F8569BED-53B6-4923-AF0B-59A09271D556}
DEFINE_GUID(PATH_GUID,
            
0xf8569bed0x53b60x4923
            
0xaf0xb0x590xa00x920x710xd50x56);

// {18AA1C92-16AB-47a3-B002-6178F9D2D12F}
DEFINE_GUID(ROUTE_GUID,
            
0x18aa1c920x16ab0x47a3
            
0xb00x20x610x780xf90xd20xd10x2f);

///////////////////////////////////////////////////////////////////////////////////////////

bool cXRouteParser::parse_objects(ID3DXFileData* xfile_data, 
                                  ID3DXFileData
* parent_xfile_data, 
                                  DWORD depth, 
void** data, bool force_ref)
{
    GUID type;
    get_object_guid(xfile_data, 
&type);

    
if(type == ROUTE_GUID)    // only process route templates
    {
        SIZE_T size;
        
const DWORD* data_ptr;
        xfile_data
->Lock(&size, (const void **&data_ptr);

        
// allocate and link in a route
        cRoute* route = new cRoute;
        route
->m_next = m_root_route;
        m_root_route  
= route;

        route
->m_name = get_object_name(xfile_data);

        route
->m_num_paths = *data_ptr++;
        route
->m_paths = new sPath[route->m_num_paths];

        
// get path data
        for(DWORD i = 0; i < route->m_num_paths; i++)
        {
            sPath
& path = route->m_paths[i];

            path.type 
= *data_ptr++;

            D3DXVECTOR3
* pos_ptr = (D3DXVECTOR3*) data_ptr;
            data_ptr 
+= 12;    // start, end, control1, control2; total 12 elements.

            path.start        
= *pos_ptr++;
            path.control1    
= *pos_ptr++;
            path.control2    
= *pos_ptr++;
            path.end        
= *pos_ptr++;

            D3DXVECTOR3 line;

            
// calculate path length based on type
            if(path.type == PATH_STRAIGHT)
            {
                line 
= path.end - path.start;
                path.length 
= D3DXVec3Length(&line);
            }
            
else
            {
                line 
= path.control1 - path.start;
                
float length01 = D3DXVec3Length(&line);

                line 
= path.control2 - path.control1;
                
float length12 = D3DXVec3Length(&line);

                line 
= path.end - path.control2;
                
float length23 = D3DXVec3Length(&line);

                line 
= path.end - path.start;
                
float length03 = D3DXVec3Length(&line);

                path.length 
= (length01 + length12 + length23) * 0.5f + length03 * 0.5f;
            }

            
// storing starting position of path
            if(i != 0)
                path.start_pos 
= route->m_paths[i-1].start_pos + route->m_paths[i-1].length;
            
else
                path.start_pos 
= 0.0f;
        }

        xfile_data
->Unlock();
    }

    
return parse_child_objects(xfile_data, depth, data, force_ref);
}

 

As usual, you don't call parse_objects directly−it's up to your cXRouteParser::Load function to call Parse, which in turn calls parse_objects. Knowing this, take a look at the Load function (which takes the file name of the .X file to parse as the only parameter).

bool cXRouteParser::load(const char* filename)
{
    free();

    
return parse(filename, NULL);
}

Short and sweet, just how I like them! The load function is really just a gateway to ensure that prior route data is freed and the Parse function is called. There's not much more to it!

Now that you've defined the templates, created your custom class, and loaded the route data, it's time to start moving those objects! It's time to get back to the cXRouteParser::locate function.

By taking the current time and the distance (in 3D units) that an object can move, you can iterate through each path in your route to determine exactly which path an object would be on at a specific time. From there, you can calculate exactly how far between the beginning and end of that path the object lies and correctly position your object.

Suppose you have an object that is moving at 200 units per second, which is 0.2 units per millisecond. Multiply the distance per second by the total time along the path to obtain the object's location within the route. You'll use this total distance inside the route as the distance parameter in the call to locate.

The locate function takes the distance you provided and scans through each path contained in the route. Remember, you've already calculated the starting position and length for each path, so this is merely a check to see whether the object's distance is greater than the start of the path and less than the distance of the path. Take a look at locate's code to see what I mean.

void cXRouteParser::locate(const char* name, float distance, D3DXVECTOR3* pos)
{
    cRoute
* route = m_root_route->find(name);

    
if(route == NULL)
        
return;

    
// scan through each path in route
    for(DWORD i = 0; i < route->m_num_paths; i++)
    {
        sPath
& path = route->m_paths[i];

        
// see if distance falls into current path
        if(distance >= path.start_pos && distance < (path.start_pos + path.length))
        {
            
// distance is within current path, use that get offset into path using start.
            distance -= path.start_pos;

            
// calculate the scalar value to use
            float scalar = distance / path.length;

            
// calculate coordinate based on path type
            if(path.type == PATH_STRAIGHT)
                
*pos = (path.end - path.start) * scalar + path.start;
            
else
                cubic_bezier_curve(
&path.start, &path.control1, &path.control2, &path.end, scalar, pos);
        }
    }
}

///////////////////////////////////////////////////////////////////////////////////////////

float cXRouteParser::get_length(const char* name)
{
    cRoute
* route = m_root_route->find(name);

    
if(route == NULL)
        
return 0.0f;

    
// compute the total length of all paths

    
float length = 0.0f;

    
for(DWORD i = 0; i < route->m_num_paths; i++)
        length 
+= route->m_paths[i].length;

    
return length;
}

///////////////////////////////////////////////////////////////////////////////////////////

void cubic_bezier_curve(D3DXVECTOR3* start,
                        D3DXVECTOR3
* control1,
                        D3DXVECTOR3
* control2,
                        D3DXVECTOR3
* end,
                        
float scalar, 
                        D3DXVECTOR3
* out)
{  
  
*out = (*start) * (1.0f - scalar) * (1.0f - scalar) * (1.0f - scalar) +    
         (
*control1) * 3.0f * scalar * (1.0f - scalar) * (1.0f - scalar) +    
         (
*control2) * 3.0f * scalar * scalar * (1.0f - scalar) +
         (
*end) * scalar * scalar * scalar;
}

 

WinMain.cpp:
#include <windows.h>
#include 
<d3d9.h>
#include 
<d3dx9.h>
#include 
"Direct3D.h"
#include 
"route.h"

struct sBackdropVertex
{
    
float x, y, z, rhw;
    
float u, v;        
};

#define BACKDROP_FVF (D3DFVF_XYZRHW | D3DFVF_TEX1)

////////////////////////////////////////////////////////////////////////////////////////////////

IDirect3D9
*                g_d3d;
IDirect3DDevice9
*        g_device;
IDirect3DVertexBuffer9
*    g_backdrop_vb;
IDirect3DTexture9
*        g_backdrop_texture;
D3DXMESHCONTAINER_EX
*    g_robot_mesh_container;
D3DXMESHCONTAINER_EX
*    g_ground_mesh_container;

cXRouteParser            g_route_parser;

D3DXVECTOR3 g_robot_pos, g_robot_last_pos;    


const char CLASS_NAME[] = "RouteClass";
const char CAPTION[]    = "Route Demo";

////////////////////////////////////////////////////////////////////////////////////////////////

LRESULT FAR PASCAL window_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);

bool do_init(HWND hwnd);
void do_shutdown();
void do_frame();


//////////////////////////////////////////////////////////////////////////////////////////////

int PASCAL WinMain(HINSTANCE inst, HINSTANCE, LPSTR, int cmd_show)
{      
    CoInitialize(NULL);    
// Initialize the COM system

    
// Create the window class here and register it

    WNDCLASSEX win_class;  

    win_class.cbSize        
= sizeof(win_class);
    win_class.style         
= CS_CLASSDC;
    win_class.lpfnWndProc   
= window_proc;
    win_class.cbClsExtra    
= 0;
    win_class.cbWndExtra    
= 0;
    win_class.hInstance     
= inst;
    win_class.hIcon         
= LoadIcon(NULL, IDI_APPLICATION);
    win_class.hCursor       
= LoadCursor(NULL, IDC_ARROW);
    win_class.hbrBackground 
= NULL;
    win_class.lpszMenuName  
= NULL;
    win_class.lpszClassName 
= CLASS_NAME;
    win_class.hIconSm       
= LoadIcon(NULL, IDI_APPLICATION);

    
if(!RegisterClassEx(&win_class))
        
return -1;

    
// Create the main window
    HWND hwnd = CreateWindow(CLASS_NAME, CAPTION, WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX,
                             
00640480, NULL, NULL, inst, NULL);

    
if(hwnd == NULL)
        
return -1;

    ShowWindow(hwnd, cmd_show);
    UpdateWindow(hwnd);

    
// Call init function and enter message pump
    if(do_init(hwnd)) 
    {
        MSG msg;    
        ZeroMemory(
&msg, sizeof(MSG));

        
// Start message pump, waiting for user to exit
        while(msg.message != WM_QUIT) 
        {
            
if(PeekMessage(&msg, NULL, 00, PM_REMOVE)) 
            {
                TranslateMessage(
&msg);
                DispatchMessage(
&msg);
            }
      
            do_frame();    
// Render a single frame
        }
    }
  
    do_shutdown();
    UnregisterClass(CLASS_NAME, inst);
    CoUninitialize();

    
return 0;
}

LRESULT FAR PASCAL window_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    
// Only handle window destruction messages
    switch(msg) 
    {
    
case WM_DESTROY:
        PostQuitMessage(
0);
        
break;

    
case WM_KEYDOWN:
        
if(wParam == VK_ESCAPE)
            DestroyWindow(hwnd);

        
break;
    }

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

bool do_init(HWND hwnd)
{
    init_d3d(
&g_d3d, &g_device, hwnd, falsefalse);

    
if(FAILED(load_mesh(&g_robot_mesh_container, g_device, "..\\Data\\robot.x""..\\Data\\"00)))
        
return FALSE;

    
if(FAILED(load_mesh(&g_ground_mesh_container, g_device, "..\\Data\\ground.x""..\\Data\\"00)))
        
return FALSE;

    
// create the backdrop

    sBackdropVertex backdrop_verts[
4= 
    {
        {   
0.0f,   0.01.01.0f0.0f0.0f },
        { 
640.0f,   0.01.01.0f1.0f0.0f },
        {   
0.0f480.01.01.0f0.0f1.0f },
        { 
640.0f480.01.01.0f1.0f1.0f }            
    };

    g_device
->CreateVertexBuffer(sizeof(backdrop_verts), D3DUSAGE_WRITEONLY, BACKDROP_FVF, D3DPOOL_DEFAULT,
                                 
&g_backdrop_vb, NULL);

    
char* ptr;

    g_backdrop_vb
->Lock(00, (void**)&ptr, 0);
    memcpy(ptr, backdrop_verts, 
sizeof(backdrop_verts));
    g_backdrop_vb
->Unlock();

    D3DXCreateTextureFromFile(g_device, 
"..\\Data\\Backdrop.bmp"&g_backdrop_texture);

    
// setup a directional light

    D3DLIGHT9 light;
    ZeroMemory(
&light, sizeof(D3DLIGHT9));

    light.Type 
= D3DLIGHT_DIRECTIONAL;
    light.Diffuse.r 
= light.Diffuse.g = light.Diffuse.b = light.Diffuse.a = 1.0f;
    light.Direction 
= D3DXVECTOR3(0.0f-0.5f0.5f);

    g_device
->SetLight(0&light);
    g_device
->LightEnable(0, TRUE);

    
if(! g_route_parser.load("..\\Data\\Route.x"))
        
return false;

    
return true;
}

void do_shutdown()
{
    
// free mesh data
    delete g_robot_mesh_container;    g_robot_mesh_container  = NULL;
    delete g_ground_mesh_container;    g_ground_mesh_container 
= NULL;

    release_com(g_backdrop_vb);
    release_com(g_backdrop_texture);

    
// release D3D objects
    release_com(g_device);
    release_com(g_d3d);
}

void do_frame()
{
    
static DWORD start_time = timeGetTime();

    
// calculate the position in which to place the robot along the path based on time and length of route.
    float length = g_route_parser.get_length(NULL);
    DWORD dist 
= (timeGetTime() - start_time) / 10;
    dist 
%= ((DWORD)length + 1);

    
// update the positions of the robot
    g_robot_last_pos = g_robot_pos;
    g_route_parser.locate(NULL, (
float)dist, &g_robot_pos);

    
// set a view transformation matrix

    D3DXMATRIX  mat_view;
    D3DXVECTOR3 eye(
0.0f120.0f-350.0f);
    D3DXVECTOR3 at(
0.0f0.0f0.0f);
    D3DXVECTOR3 up(
0.0f1.0f0.0f);

    D3DXMatrixLookAtLH(
&mat_view, &eye, &at, &up);
    g_device
->SetTransform(D3DTS_VIEW, &mat_view);

    
// clear the device and start drawing the scene

    g_device
->Clear(0, NULL, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, D3DCOLOR_RGBA(000255), 1.0f0);

    g_device
->BeginScene();

    
// draw the backdrop
    g_device->SetFVF(BACKDROP_FVF);
    g_device
->SetStreamSource(0, g_backdrop_vb, 0sizeof(sBackdropVertex));
    g_device
->SetTexture(0, g_backdrop_texture);
    g_device
->DrawPrimitive(D3DPT_TRIANGLESTRIP, 02);

    g_device
->SetRenderState(D3DRS_LIGHTING, TRUE);

    
// draw the ground mesh

    D3DXMATRIX mat_world;
    D3DXMatrixIdentity(
&mat_world);
    g_device
->SetTransform(D3DTS_WORLD, &mat_world);

    draw_mesh(g_ground_mesh_container);

    
// calculate the rotation of the robots based on last known position, and update last position once done.

    D3DXVECTOR3 diff 
= g_robot_pos - g_robot_last_pos;

    
float rot_x =  atan2(diff.y, diff.z);
    
float rot_y = -atan2(diff.z, diff.x);

    
// rotate the robot to point in direction of movement
    D3DXMatrixRotationYawPitchRoll(&mat_world, rot_y, rot_x, 0.0f);

    
// position the robot by setting the coordinates directly in the world transformation matrix

    mat_world._41 
= g_robot_pos.x;
    mat_world._42 
= g_robot_pos.y;
    mat_world._43 
= g_robot_pos.z;

    g_device
->SetTransform(D3DTS_WORLD, &mat_world);

    draw_mesh(g_robot_mesh_container);

    g_device
->SetRenderState(D3DRS_LIGHTING, FALSE);

    g_device
->EndScene();

    g_device
->Present(NULL, NULL, NULL, NULL);
}


Runtime Snap:

 

download soure file

 

posted on 2008-04-20 19:48 lovedday 閱讀(444) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


公告

導航

統計

常用鏈接

隨筆分類(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>
            欧美三级电影大全| 欧美一级播放| 欧美一区二区在线播放| 亚洲精品人人| 久久久久久久久久久久久女国产乱 | 夜夜爽www精品| 国内一区二区在线视频观看| 日韩亚洲在线观看| 91久久线看在观草草青青| 午夜一区在线| 久久精品2019中文字幕| 欧美视频中文字幕| 亚洲精品综合精品自拍| 亚洲精品综合| 美国三级日本三级久久99| 美女黄网久久| 亚洲成色最大综合在线| 久久久久国产精品人| 久久久久国色av免费观看性色| 国产精品国产三级国产普通话三级| 欧美激情第4页| 亚洲国产女人aaa毛片在线| 久久免费黄色| 欧美 日韩 国产在线| 原创国产精品91| 久久视频精品在线| 女女同性女同一区二区三区91| 精品51国产黑色丝袜高跟鞋| 欧美一级专区免费大片| 久久久久久久尹人综合网亚洲 | 亚洲国产二区| 久久三级视频| 91久久久亚洲精品| 日韩写真在线| 国产精品美女久久久久aⅴ国产馆| 一区二区免费在线观看| 欧美一区二区三区精品电影| 国产日韩亚洲| 久久一区二区三区四区| 91久久久在线| 亚洲女人天堂av| 国产一级久久| 麻豆精品一区二区综合av| 亚洲激情在线激情| 亚洲自拍啪啪| 国产婷婷精品| 免费成人美女女| 9久草视频在线视频精品| 午夜在线精品偷拍| 在线观看不卡av| 欧美视频四区| 久久国产精品色婷婷| 亚洲高清123| 亚洲女ⅴideoshd黑人| 黄色成人91| 欧美看片网站| 欧美综合国产精品久久丁香| 亚洲激情成人在线| 久久av一区| 亚洲免费观看高清完整版在线观看| 国产精品成人v| 久久中文欧美| 99精品国产热久久91蜜凸| 欧美中文字幕久久| 亚洲免费电影在线| 国产在线播精品第三| 欧美日韩国产丝袜另类| 午夜国产欧美理论在线播放| 亚洲电影在线播放| 欧美一区二区三区另类| 亚洲麻豆av| 一区二区三区在线看| 国产精品久久久久婷婷| 欧美高清视频一区二区三区在线观看 | 久久超碰97人人做人人爱| 亚洲黄色高清| 久久免费午夜影院| 亚洲午夜一级| 亚洲激精日韩激精欧美精品| 国产精品日韩欧美综合| 欧美日韩成人综合在线一区二区| 先锋资源久久| 亚洲午夜视频在线| 亚洲激情女人| 久久久水蜜桃| 久久爱www久久做| 亚洲自拍高清| 亚洲午夜小视频| 在线视频欧美日韩| 亚洲日本va午夜在线电影| 国内精品久久久久伊人av| 国产精品久久久亚洲一区| 欧美日韩国产另类不卡| 欧美成人久久| 鲁鲁狠狠狠7777一区二区| 久久精品理论片| 午夜精品一区二区三区电影天堂| 一区二区三区国产精品| 亚洲免费观看| 日韩视频免费看| 日韩亚洲欧美中文三级| 亚洲韩国青草视频| 亚洲高清一二三区| 亚洲第一成人在线| 欧美激情第1页| 91久久嫩草影院一区二区| 亚洲大胆在线| 亚洲激情在线观看| 亚洲精品免费网站| 99亚洲精品| 亚洲一二三级电影| 亚洲欧美另类国产| 午夜亚洲影视| 久久久久免费视频| 免费观看30秒视频久久| 蜜臀久久99精品久久久久久9| 欧美jizzhd精品欧美巨大免费| 蜜臀av一级做a爰片久久| 免费欧美高清视频| 欧美精品一区二区精品网| 欧美日韩一区综合| 国产欧美三级| 在线观看欧美日本| 亚洲精品国久久99热| 亚洲视频在线观看一区| 亚洲免费在线视频一区 二区| 性做久久久久久久免费看| 久久婷婷国产综合尤物精品| 欧美激情按摩在线| 亚洲精品色图| 亚洲欧美经典视频| 久久婷婷国产综合国色天香| 欧美精品1区2区| 国产精品一区二区久久久| 国内精品久久久久久久果冻传媒| 亚洲第一网站免费视频| 宅男精品视频| 久久久精品999| 亚洲第一精品在线| 亚洲午夜一区二区| 久久婷婷国产综合国色天香| 欧美国产亚洲视频| 国产欧美在线观看| 亚洲人屁股眼子交8| 亚洲一区二区免费| 久久一区精品| 一区二区三区免费观看| 欧美资源在线观看| 欧美日韩在线不卡一区| 国产一区二区三区精品久久久| 亚洲人久久久| 久久久久久高潮国产精品视| 亚洲国产日韩欧美在线图片| 午夜精品999| 欧美日韩精品综合| 亚洲小视频在线| 欧美黑人在线观看| 亚洲精品一区二区三区四区高清| 亚洲精品视频在线观看免费| 欧美在线亚洲综合一区| 欧美精品一区二区三区在线看午夜 | 亚洲免费久久| 久久久噜噜噜久久人人看| 日韩亚洲国产精品| 噜噜噜在线观看免费视频日韩| 国产精品一二三| 一区二区冒白浆视频| 免费成人高清在线视频| 亚洲一区欧美激情| 欧美日韩精品一区二区在线播放| 一区二区三区在线观看欧美| 午夜在线观看免费一区| 日韩视频一区二区在线观看| 看欧美日韩国产| 狠狠入ady亚洲精品经典电影| 亚洲欧美国产高清va在线播| 亚洲精品极品| 欧美激情a∨在线视频播放| 一区二区三区在线观看欧美| 久久国产精品一区二区| 亚洲综合成人婷婷小说| 国产精品国码视频| aa级大片欧美三级| 亚洲国产精品一区二区久| 蜜臀99久久精品久久久久久软件 | 亚洲激情一区二区| 麻豆成人在线播放| 久久激情中文| 国产最新精品精品你懂的| 香蕉成人久久| 午夜精品久久久久久99热软件| 欧美亚韩一区| 亚洲欧美影院| 亚洲一区三区视频在线观看| 国产精品国产精品| 亚洲中无吗在线| 亚洲曰本av电影| 国产一区二区精品久久99| 久久精品在线| 久久婷婷国产麻豆91天堂|