亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? dxdw.cpp

?? 使用VC中的Direct Draw 開發(fā)的45度斜角地圖
?? CPP
字號:

#include "DXDW.h"
#include <string.h>
#include <stdio.h>
#include "FPS.h"


LPDIRECTDRAW7              DD;  
LPDIRECTDRAWSURFACE7       DDPri; 
LPDIRECTDRAWSURFACE7       DDBuf; 
int						   mapSum = 5;
LPDIRECTDRAWSURFACE7	   DDtmp[5];
LPDIRECTDRAWSURFACE7	   DDman;
LPDIRECTDRAWSURFACE7	   DDnogo[1];
LPDIRECTDRAWSURFACE7	   c[3];
DDSCAPS2				   DDcaps;
DDSURFACEDESC2             DDde;
DDCOLORKEY                 key;

HRESULT					   result;

HWND tWnd;
HDC hdc,dhdc,winhdc;
HBITMAP bitmap;


//10*15
int locate = 8;
int numMap = locate*8;
int mapIndex[64] = {	1,3,2,2,0,0,1,3, //1
						0,1,2,0,0,0,0,0, //2
						0,0,1,0,1,0,0,0, //3
						0,0,0,1,0,0,0,2, //4
						0,0,0,0,0,0,0,0, //5
						0,0,0,0,0,0,0,0, //6
						0,0,2,2,2,0,1,0, //7
						0,0,2,0,0,0,1,0, //8
					};
int nogoIndex[64] = {
						1,0,0,0,0,0,0,0, //1
						0,0,0,0,0,0,0,0, //2
						0,1,0,0,0,0,0,0, //3
						0,0,1,0,0,0,0,0, //4
						0,0,0,0,0,0,0,0, //5
						0,0,1,0,0,0,0,0, //6
						0,0,0,0,0,0,0,0, //7
						0,0,1,0,0,1,0,0, //8
					}; 

int offset_x = 320, offset_y = 128;

bool fullscreen;
FPS_CLASS fps;

int manX,manY;
int manindex_x=0,manindex_y=0;

tmpXYc cman[3];


DX::DX()
{
	int i;
	DD = NULL;
	DDPri = NULL;
	DDBuf = NULL;
	for(i=0;i<mapSum;i++)
		DDtmp[i] = NULL; 
	for(i=0;i<1;i++)
		DDnogo[i] = NULL; 
	hdc = ::CreateCompatibleDC(NULL);
	manindex = 1;
	rowindex = 0;
	keydown = false;
	manX = (320+32)-12;
	manY = 128-16;

	cman[0].index = 0; cman[0].x = 5; cman[0].y = 5; cman[0].rowindex = 0; cman[0].manindex = 0;
	cman[1].index = 1; cman[1].x = 4; cman[1].y = 6; cman[1].rowindex = 0; cman[1].manindex = 0;
	cman[2].index = 2; cman[2].x = 2; cman[2].y = 3; cman[2].rowindex = 0; cman[2].manindex = 0;
}

DX::~DX()
{
	/*
	delete hdc;
	delete dhdc;
	delete bitmap;
	*/

	int i;

	ReleaseDC(tWnd,winhdc);

	for(i=0;i<mapSum;i++)
	{
		if (DDtmp[i])
		{
			DDtmp[i]->Release(); 
		}
	}
	for(i=0;i<3;i++)
	{
		if (c[i])
		{
			c[i]->Release(); 
		}
	}
	for(i=0;i<1;i++)
	{
		if (DDnogo[i])
		{
			DDnogo[i]->Release(); 
		}
	}
	if (DDBuf) DDBuf->Release();
    if (DDPri) DDPri->Release(); 
	if (DD) DD->Release();
}

void DX::Render()
{ 
	fps.GetFps();
    this->BltBack(); 
	this->BltMap(); 
    //this->BltMan(); 
	this->BltTree(); 
	this->Bltc(); 
	this->Flip(); 
	//TextOut(winhdc,0,0,fps.fpsString,255);
}

void DX::Flip()
{
	if (!fullscreen)
	{
		DDPri->BltFast(0,0,DDBuf,&this->tRect(0,0,640,480),DDBLTFAST_WAIT);
	}else
	{
		DDPri->Flip(NULL,DDFLIP_WAIT);
	}    
}

void DX::BltBack()
{
	static x;
	static DWORD t2;
	if (fps.T2 - t2 > 1) 
	{
		t2 = fps.T2 ;
		x+=2; if (x>640) x=0;
	}
    DDBuf->BltFast(0,0,DDtmp[0],&this->tRect(x,0,640,480),DDBLTFAST_WAIT); 
	DDBuf->BltFast(640-x,0,DDtmp[0],&this->tRect(0,0,x,480),DDBLTFAST_WAIT); 
}

void DX::BltMap()
{
	for (int i=0;i<numMap;i++)
	{
		 int tx=0,ty=0;
		 int tw0,th0,tw1,th1;

		 this->Mapmath(i,tx,ty) ;

		 tw0 = 0; th0 = 0;
		 tw1 = 64; th1 = 32;

		 DDBuf->BltFast(tx,ty,DDtmp[mapIndex[i]+1],
				 &this->tRect(tw0,th0,tw1,th1),DDBLTFAST_WAIT | DDBLTFAST_SRCCOLORKEY);  
	} 
}

void DX::Mapmath(int index,int &tx,int &ty)
{
	int x_index,y_index;
	int doux,douy;
	int sc_x,sc_y;

	x_index = index%locate;
	y_index = index/locate;
	if (y_index%2 == 1) doux = 32; else doux = 0;
	if (y_index != 0) douy = -16; else douy = 0;
    sc_x = offset_x - y_index*32;
	sc_y = offset_y + y_index*16;
	tx = sc_x + x_index*32;
	ty = sc_y + x_index*16;
	
}

void DX::BltMan()
{
	int tw0,th0,tw1,th1;
	tw0=0+rowindex*24;th0=0+(manindex-1)*34;
	tw1=24+rowindex*24;th1=34+(manindex-1)*34;
	int tmpindex_x = manindex_x ,tmpindex_y = manindex_y;
	if (keydown) 
	{
		keydown = false;
		rowindex++;
		if (rowindex>2) rowindex=0;
		switch (manindex)
		{
		case 1: 
			manindex_y-=1;
			if (manindex_y<0) manindex_y=0;
			break;
		case 2:
			manindex_x+=1;
			if (manindex_x>locate-1) manindex_x=locate-1;
			break;
		case 3:
			manindex_y+=1;
			if (manindex_y>7) manindex_y=7;
			break;
		case 4:
			manindex_x-=1;
			if (manindex_x<0) manindex_x=0;
			break;
		}
	}

	if (nogoIndex[manindex_x+manindex_y*locate]!=0) 
	{
		manindex_x = tmpindex_x;
		manindex_y = tmpindex_y;
	}

	this->Mapmath(manindex_x+manindex_y*locate,manX,manY);
	manX+=(32-24/2);
	manY-=16;

    DDBuf->BltFast(manX,manY,DDman,
				 &this->tRect(tw0,th0,tw1,th1),DDBLTFAST_WAIT | DDBLTFAST_SRCCOLORKEY); 
}

void DX::Bltc()
{
	int tw0,th0,tw1,th1;
	int tmpindex_x,tmpindex_y;
	for (int i=0;i<3;i++)
	{
		tmpindex_x = cman[i].x ,tmpindex_y = cman[i].y;
		tw0=0+cman[i].rowindex*32;th0=0+(cman[i].manindex)*32;
		tw1=32+cman[i].rowindex*32;th1=32+(cman[i].manindex)*32;

		if (fps.T2 - cman[i].t2 > (DWORD)cman[i].DelayT2)
		{
			cman[i].DelayT2 = timeGetTime() % 100*(timeGetTime()%5+3);
			cman[i].t2 = fps.T2; 
		
			cman[i].rowindex++;
			if (cman[i].rowindex>1) cman[i].rowindex=0;

			cman[i].manindex = timeGetTime() % 5;

			switch (cman[i].manindex)
			{
			case 1: 
				cman[i].y-=1;
				if (cman[i].y<0) cman[i].y=0;
				break;
			case 2:
				cman[i].y+=1;
				if (cman[i].y>7) cman[i].y=7;
				break;
			case 3:
				cman[i].x-=1;
				if (cman[i].x<0) cman[i].x=0;
				break;
			case 4:
				cman[i].x+=1;
				if (cman[i].x>locate-1) cman[i].x=locate-1;
				break;
			}
		}


		if (nogoIndex[cman[i].x+cman[i].y*locate]!=0) 
		{
			cman[i].x = tmpindex_x;
			cman[i].y = tmpindex_y;
		}
		int cmanx=0,cmany=0;

		this->Mapmath(cman[i].x+cman[i].y*locate,cmanx,cmany);
		cmanx+=(32-32/2);
		cmany-=16;

		DDBuf->BltFast(cmanx,cmany,c[i],
					 &this->tRect(tw0,th0,tw1,th1),DDBLTFAST_WAIT | DDBLTFAST_SRCCOLORKEY); 
	}

	
}

void DX::BltTree()
{
	int i;
	int x_index,y_index;
	int doux,douy;
	int tx,ty;
	int tw0,th0,tw1,th1;
	int sc_x,sc_y;

	int sortindex=0;
	tmpXY *a = new tmpXY [numMap];
	for (i=0;i<numMap;i++)
	{
		a[i].index = -1;
		a[i].x = -1;
		a[i].y = -1;
		if (nogoIndex[i] !=0 )
		{
		 x_index = i%locate;
		 y_index = i/locate;
		 if (y_index%2 == 1) doux = 32; else doux = 0;
		 if (y_index != 0) douy = -16; else douy = 0;
         sc_x = offset_x - y_index*32+16;
		 sc_y = offset_y + y_index*16-24;
		 tx = sc_x + x_index*32;
		 ty = sc_y + x_index*16;
		 tw0 = 0; th0 = 0;
		 tw1 = 32; th1 = 40;
		 a[sortindex].index = i;
		 a[sortindex].x = tx;
		 a[sortindex].y = ty+40;
		 sortindex++;
		}
	}

    a[sortindex].index = 99;
	a[sortindex].x = manX;
    a[sortindex].y = manY+34;

	this->sortXY(a); 

	for (i=0;i<numMap;i++)
	{
		 if (a[i].index == -1) break;
         if (a[i].index != 99)
		 {
			DDBuf->BltFast(a[i].x,a[i].y-40,DDnogo[0],
					 &this->tRect(tw0,th0,tw1,th1),DDBLTFAST_WAIT | DDBLTFAST_SRCCOLORKEY);   
		 }else
		 {
            this->BltMan(); 
		 }
	}
}

void DX::sortXY(tmpXY *txy) 
{
	tmpXY mxy;

	for (int i=0;i<numMap;i++)
	{
		if (txy[i].index != -1)
		{
			for(int j=i+1;j<numMap;j++)
			{
				if ( (txy[i].y > txy[j].y) && (txy[j].index != -1) )
				{
					mxy = txy[i];
					txy[i] = txy[j];
					txy[j] = mxy;
				}
			}
		}
	}
}

HRESULT DX::InitDX(HWND thWnd,bool tfullscreen)
{
	fullscreen = tfullscreen;
	tWnd = thWnd;
	winhdc = GetDC(tWnd);

	result = DirectDrawCreateEx(NULL, (VOID**)&DD, IID_IDirectDraw7, NULL);
    if (result != DD_OK)
	{
		MessageBox(NULL,"建立DirectDraw對象失敗!","失敗!",MB_OK);
		return result;
	}

	if (!tfullscreen)
	{
	      result = DD->SetCooperativeLevel(thWnd,DDSCL_NORMAL);
	}else
	{
	      result = DD->SetCooperativeLevel(thWnd,DDSCL_EXCLUSIVE |
		                                 DDSCL_FULLSCREEN|DDSCL_ALLOWREBOOT );
	}
	if(result != DD_OK)
	{
		MessageBox(NULL,"設(shè)定程序協(xié)調(diào)層級失敗!","失敗!",MB_OK);
		return result;
	}


	if (tfullscreen)
	{
		result = DD->SetDisplayMode(640,480,16,0,DDSDM_STANDARDVGAMODE); 
		if(result !=DD_OK)
		{
			MessageBox(NULL,"設(shè)定屏幕顯示模式失敗!","失敗!",MB_OK);
			return result;
		}
	}


	memset(&DDde,0,sizeof(DDde));       
	DDde.dwSize = sizeof(DDde);                   
	if (tfullscreen)
	{
		DDde.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
		DDde.dwBackBufferCount = 1;
		DDde.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_COMPLEX | DDSCAPS_FLIP;
	}else
	{
		DDde.dwFlags = DDSD_CAPS;
		DDde.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE;
	}

	result = DD->CreateSurface(&DDde,&DDPri,NULL);
	if(result !=DD_OK)
	{
		MessageBox(NULL,"建立主繪圖頁失敗!","失敗!",MB_OK);
		return result;
	}


	if (tfullscreen)
	{
		DDcaps.dwCaps = DDSCAPS_BACKBUFFER;  
		result = DDPri->GetAttachedSurface(&DDcaps,&DDBuf); 
	}else
	{
		memset(&DDde,0,sizeof(DDde));        
		DDde.dwSize = sizeof(DDde);
		DDde.dwFlags = DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH; 
		DDde.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN ; 
		DDde.dwWidth = 640;
		DDde.dwHeight = 480;
		result = DD->CreateSurface(&DDde,&DDBuf,NULL);
	}
	if(result !=DD_OK)
	{
		MessageBox(NULL,"連接后緩沖區(qū)失敗!","失敗!",MB_OK);
		return result;
	}

	return result;

	/*

	HINSTANCE hinst = AfxGetInstanceHandle(); 
	result = DirectInputCreateEx(hinst, DIRECTINPUT_VERSION,IID_IDirectInput7, (void**)&DI, NULL); 
	if(result != DI_OK)
	{
		MessageBox("建立 DirectInput 對象失敗!");
		return;
	}
 
	result = DI->CreateDeviceEx(GUID_SysMouse, IID_IDirectInputDevice7,(void**)&DIms, NULL); 
	if(result != DI_OK)
	{
		MessageBox("建立鼠標(biāo)輸入設(shè)備失敗!");
		return;
	}

	result = DIms->SetDataFormat(&c_dfDIMouse2);
	if(result != DI_OK)
	{
		MessageBox("設(shè)定數(shù)據(jù)格式失敗!");
		return;
	}

	result = DIms->SetCooperativeLevel(m_hWnd,DISCL_BACKGROUND | DISCL_NONEXCLUSIVE); 
	if(result != DI_OK)
	{
		MessageBox("設(shè)定程序協(xié)調(diào)層級失敗!");
		return;
	}

	result = DIms->Acquire();
	if(result != DI_OK)
	{
		MessageBox("取用輸入設(shè)備失敗!");
		return;
	}
	*/
}

HRESULT DX::InitBmp()
{
	int i;
    result = CreateBMP(72,136,"man.bmp",DDman);
	if(result !=DD_OK)
	{
		MessageBox(NULL,"建立 man.bmp 暫存區(qū)失敗!","失敗!",MB_OK);
		return result;
	}

	result = CreateBMP(64,160,"c0.bmp",c[0]);
	if(result !=DD_OK)
	{
		MessageBox(NULL,"建立 c0.bmp 暫存區(qū)失敗!","失敗!",MB_OK);
		return result;
	}

	result = CreateBMP(64,160,"c1.bmp",c[1]);
	if(result !=DD_OK)
	{
		MessageBox(NULL,"建立 c1.bmp 暫存區(qū)失敗!","失敗!",MB_OK);
		return result;
	}

	result = CreateBMP(64,160,"c2.bmp",c[2]);
	if(result !=DD_OK)
	{
		MessageBox(NULL,"建立 c2.bmp 暫存區(qū)失敗!","失敗!",MB_OK);
		return result;
	}

	result = CreateBMP(32,40,"tree.bmp",DDnogo[0]);
	if(result !=DD_OK)
	{
		MessageBox(NULL,"建立 tree.bmp 暫存區(qū)失敗!","失敗!",MB_OK);
		return result;
	}


	for (i=0;i<mapSum;i++)
	{
		int tw,th;
		char tfilename[255];
		if (i==0)
		{
			strcpy(tfilename,"back.bmp");
			tw = 640; th=480; 
		}else
		{
			tw = 64; th = 32;
			switch (i)
			{
			case 1:
				strcpy(tfilename,"map0.bmp");
				break;
			case 2:
				strcpy(tfilename,"map1.bmp");
				break;
			case 3:
				strcpy(tfilename,"map2.bmp");
				break;
			case 4:
				strcpy(tfilename,"map3.bmp");
				break;
			}
		}

	    result = CreateBMP(tw,th,tfilename,DDtmp[i]);
		if(result !=DD_OK)
		{
			MessageBox(NULL,"建立幕后暫存區(qū)失敗!","失敗!",MB_OK);
			return result;
		}
	}

	return result;
}

HRESULT DX::CreateBMP(int width,int height,char* filename,LPDIRECTDRAWSURFACE7 &tsurf)
{
	DDde.dwWidth = width; 
	DDde.dwHeight = height; 
	result = DD->CreateSurface(&DDde, &tsurf, NULL); 


	DDCOLORKEY dcolor;
	dcolor.dwColorSpaceHighValue = 0x00ff00;
	dcolor.dwColorSpaceLowValue  = 0x00ff00;

	tsurf->SetColorKey(DDCKEY_SRCBLT,&dcolor);

	if(result !=DD_OK)
	{
		return result;
	}

	bitmap = (HBITMAP)::LoadImage(NULL,filename,IMAGE_BITMAP,width,height,LR_LOADFROMFILE); 
	if(bitmap==NULL)
	{
		MessageBox(NULL,"無法載入位圖!","失敗!",MB_OK);
		return result;
	}

	::SelectObject(hdc,bitmap);
	tsurf->GetDC( &dhdc );
	::BitBlt( dhdc , 0 , 0 ,width,height, hdc , 0 , 0 , SRCCOPY );
	tsurf->ReleaseDC(dhdc);

	return result;
}

RECT DX::tRect(int left,int top,int right,int bottom)
{
	RECT tr;
	tr.left = left;
	tr.top = top;
	tr.right = right;
	tr.bottom = bottom;
    return tr;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区视频在线看| 亚洲不卡一区二区三区| 美女视频黄频大全不卡视频在线播放| 成人网页在线观看| 国产亚洲欧美日韩俺去了| 麻豆国产精品官网| 伊人一区二区三区| 91久久精品一区二区三| 亚洲一区在线看| 69精品人人人人| 久久激情五月激情| 亚洲精品一区二区三区香蕉| 国内外成人在线视频| 久久久美女毛片| 99久久久久久99| 亚洲一区二区三区四区的| 国产日韩av一区二区| 不卡的av网站| 婷婷丁香久久五月婷婷| 精品久久国产老人久久综合| 国产成人免费在线观看| 成人免费小视频| 欧美精品粉嫩高潮一区二区| 精品一区二区三区久久久| 国产精品久久久久桃色tv| 欧美性感一区二区三区| 久久国产精品99精品国产| 亚洲va在线va天堂| 亚洲午夜精品一区二区三区他趣| 日韩欧美中文字幕精品| 成人精品一区二区三区中文字幕| 精品一区二区免费看| 日韩精品成人一区二区三区| 国产欧美日韩不卡| 久久久久国产成人精品亚洲午夜| 日韩欧美专区在线| 日韩欧美一区二区在线视频| 国产乱子伦一区二区三区国色天香| 精品国产一区二区三区忘忧草| 91麻豆精品国产91久久久久久久久| 欧美午夜精品久久久| 欧美色手机在线观看| 国产激情一区二区三区桃花岛亚洲| 久久精品国产亚洲高清剧情介绍| 蜜桃视频在线观看一区| 奇米精品一区二区三区四区| 亚洲欧美日韩国产手机在线 | 色婷婷国产精品综合在线观看| 日韩电影在线一区| 国产精品福利电影一区二区三区四区 | 丝袜亚洲精品中文字幕一区| 三级不卡在线观看| 美女尤物国产一区| 国产一区二三区好的| 国产成人亚洲综合色影视| 成人av第一页| 欧美性受xxxx黑人xyx| 欧美人牲a欧美精品| 92国产精品观看| 在线一区二区三区四区五区| 欧美精品色一区二区三区| 日韩视频一区二区| 国产婷婷一区二区| 亚洲色欲色欲www在线观看| 久久久噜噜噜久噜久久综合| 中文字幕av一区二区三区| 精品国产乱码久久久久久久久 | 国产精品久久影院| 亚洲精品中文字幕在线观看| 亚洲18影院在线观看| 久久99蜜桃精品| 成人avav影音| 91精品国产综合久久久久| 欧美精品一区二区三区视频| 中文字幕一区二区在线观看 | 国产综合色在线| 成人国产视频在线观看| 欧美日韩另类一区| 久久久91精品国产一区二区精品 | 国模一区二区三区白浆| 成人av网站在线| 在线成人av网站| 国产午夜亚洲精品理论片色戒| 亚洲免费观看高清完整版在线观看熊 | 色8久久精品久久久久久蜜| 欧美一区二区黄| 3d成人h动漫网站入口| 久久婷婷久久一区二区三区| 精品久久久久久久久久久院品网| 欧美经典一区二区三区| 五月天激情小说综合| 国产69精品久久久久777| 高清shemale亚洲人妖| 欧美日韩不卡一区二区| 国产丝袜美腿一区二区三区| 亚洲一卡二卡三卡四卡五卡| 国产激情视频一区二区三区欧美| 欧美日韩精品一区二区三区蜜桃 | 午夜精品视频一区| 精品理论电影在线| 亚洲一区二区三区四区的| 国产成人精品免费在线| 91精品国产高清一区二区三区蜜臀 | 高清视频一区二区| 日韩网站在线看片你懂的| 亚洲精品免费看| 国产成人精品免费网站| 欧美大片一区二区三区| 亚洲一区二区三区中文字幕在线| 国v精品久久久网| 精品国产乱码久久久久久影片| 韩国精品久久久| 日韩一区二区三区视频| 亚洲一区在线观看网站| 91网址在线看| 欧美日韩三级一区二区| 亚洲天堂中文字幕| 成人丝袜高跟foot| 久久久精品国产免大香伊| 美女视频黄a大片欧美| 欧美日韩国产小视频| 一区二区三区免费观看| 99久久er热在这里只有精品15| 久久精品夜夜夜夜久久| 国产综合色产在线精品| 精品久久久久久无| 久久精品国产一区二区三| 日韩亚洲欧美综合| 蜜臀av性久久久久av蜜臀妖精| 欧美日韩国产片| 午夜婷婷国产麻豆精品| 欧美性猛片aaaaaaa做受| 亚洲一区二三区| 欧美日韩一区二区不卡| 亚洲成人一二三| 欧美日韩中文国产| 日韩中文字幕麻豆| 91精品免费在线观看| 亚洲 欧美综合在线网络| 精品视频在线免费| 性感美女久久精品| 91麻豆精品国产91久久久久久久久| 亚洲成a人片在线观看中文| 欧美日本精品一区二区三区| 午夜视黄欧洲亚洲| 日韩小视频在线观看专区| 久久精品二区亚洲w码| 久久婷婷色综合| 久久综合色婷婷| 国产精品一区二区久激情瑜伽| 国产欧美日韩一区二区三区在线观看 | 欧美电影免费观看高清完整版在 | 蜜臀a∨国产成人精品| 亚洲精品一区二区三区在线观看| 国产综合色产在线精品| 欧美激情在线一区二区三区| voyeur盗摄精品| 精品国产一区二区三区av性色| 黄色成人免费在线| 国产精品丝袜一区| 国产一区二区三区在线观看免费| 国产人妖乱国产精品人妖| av不卡在线播放| 午夜精品一区在线观看| 欧美mv和日韩mv国产网站| 国产高清亚洲一区| 玉米视频成人免费看| 91精品国产手机| 国产精品亚洲人在线观看| 亚洲欧洲国产日韩| 91麻豆精品国产91久久久久久| 国内精品伊人久久久久av一坑| 国产精品视频免费看| 欧美在线观看视频一区二区三区 | 欧美激情中文字幕一区二区| 在线视频欧美精品| 国产综合色在线| 亚洲精品乱码久久久久久久久| 欧美一级在线视频| 波多野洁衣一区| 丝袜国产日韩另类美女| 久久精品男人天堂av| 欧美亚日韩国产aⅴ精品中极品| 黑人巨大精品欧美黑白配亚洲| 亚洲欧美成aⅴ人在线观看| 欧美一三区三区四区免费在线看| 国产成人精品一区二| 日韩国产成人精品| 国产精品电影一区二区三区| 欧美精品v国产精品v日韩精品| 成人午夜精品在线| 美国三级日本三级久久99| 亚洲人成精品久久久久| 2017欧美狠狠色| 欧美三级视频在线| www.亚洲国产| 国精产品一区一区三区mba视频| 亚洲一区av在线| ...中文天堂在线一区| 26uuu另类欧美亚洲曰本|