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

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

?? textoutmgr.cpp

?? DragonRaja Client source version 1.4+ this source allow players join in (Hades Warfield or Monsters
?? CPP
字號(hào):
// TextOutMgr.cpp: implementation of the CTextOutMgr class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include <ddraw.h>
#include "Hangul.h"
#include "dragon.h"
#include "Menu.h"
#include "Hong_Sprite.h"
#include "SmallMenuSet.h"
#include "stdio.h"
#include "directsound.h"
#include "directinput.h"
#include "Char.h"
#include "SmallMenu.h"
#include "Hong_Sub.h"
#include "Effect.h"
#include "map.h"
#include "tool.h"
#include "MenuSet.h"
#include "skill.h"
#include "Item.h"
#include "MenuNetwork.h"
#include "MouseCursor.h"
#include "CharDataTable.h"
#include "gameproc.h"
#include "kh_cpp.h"
#include "skill_lsw.h"
#include "menudef.h"
#include "menudef2.h"
#include "TextOutMgr.h"
#include "Chat.h"
extern int HR, HB, HG;

// THAI YGI
ThaiBreakIterator TBreak((unsigned char*) "ftwbrk.lex"); // CSD-030324

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CTextOutMgr TxtOut ;
CTextOutMgr::CTextOutMgr()
{
	m_iBlankGabSize = 3;
	m_iLineGab		= DEFAULT_LINE_GAB;
	SetAlphaValue(23);
	m_iBlendType	= 1;
	
	Init(COLOR_BLACK,TXT_BG_NORMAL_WIDTH);
}

void CTextOutMgr::SetAlphaValue(const int iValue)
{
	m_iAlpha	= iValue;
}

int CTextOutMgr::SetBgImgColor(const int iColor)
{
	switch(iColor)
	{
	case COLOR_BLACK :
		{
			m_iImgGroup = TXT_BG_BLACK_IMG;
		}break;
	case COLOR_BLUE:
		{
			m_iImgGroup = TXT_BG_BLUE_IMG;
		}break;
	case COLOR_RED:
		{
			m_iImgGroup = TXT_BG_RED_IMG;
		}break;
	case COLOR_BLUEGREEN:
		{
			m_iImgGroup = TXT_BG_BLUEGREEN_IMG;
		}break;
	case COLOR_BROWN:
		{
			m_iImgGroup = TXT_BG_BROWN_IMG;
		}break;
	case COLOR_GREEN:
		{
			m_iImgGroup = TXT_BG_GREEN_IMG;
		}break;
	default:
		{
			m_iImgGroup = TXT_BG_BLACK_IMG;
			return 0;
		}break;
	}
	return 1;
}

CTextOutMgr::~CTextOutMgr()
{
}

int CTextOutMgr::Init(const WORD iColor, const int iBGWidth, const int iAlphaValue)
{//扼牢 案闌 官層好磊 歸弊扼款靛啊 嘛灑綽巴籃 扼牢 案撈 煉例 瞪薦 絕嚼聰促. 撈蠟綽 案闌 嘛絹具 竅扁 錠鞏澇聰促.
	SetBgImgColor(iColor);
	SetAlphaValue(iAlphaValue);
	switch(iBGWidth)
	{
	case TXT_BG_SHORT_WIDTH://150 辨撈 
		{
			m_iHeadImgNo = 17;
			m_iBodyImgNo = 15;	
			m_iTailImgNo = 16;
			m_iBlkImgNo	 = 5;
		}break;
	case TXT_BG_LONG_WIDTH://250 辨撈
		{
			m_iHeadImgNo = 23;
			m_iBodyImgNo = 21;	
			m_iTailImgNo = 22;
			m_iBlkImgNo	 = 7;
		}break;
	case TXT_BG_VERY_LONG_WIDTH://300 辨撈
		{
			m_iHeadImgNo = 26;
			m_iBodyImgNo = 24;	
			m_iTailImgNo = 25;
			m_iBlkImgNo	 = 8;
		}break;
	case TXT_BG_NORMAL_WIDTH://200 辨撈
	default:
		{
			m_iHeadImgNo = 20;
			m_iBodyImgNo = 18;	
			m_iTailImgNo = 19;
			m_iBlkImgNo	 = 6;
		}break;
	}
	return 0;
}

int	CTextOutMgr::RcTXTOut(const int iExplainX, const int iExplainY, const int iWidth, const int iGab,char* msg,...)
{
	char temp[ MAX_PATH] = {0,};
    va_list arg;
    va_start( arg, msg );
    vsprintf( temp, msg, arg );
    va_end( arg );

	const int line	= GetLineRectTextPut( iWidth-iGab, temp);
	for( int i = 0; i<line; i++ )
	{	// m_iImgGroup
		FieldTypeNomalPutFx3( iExplainX-4, iExplainY+BG_HEIGHT*i-1, 0,0,m_iBodyImgNo , m_iImgGroup,GetAlpha(), GetBlendType() );
	}
	RectTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY, iWidth-iGab, temp,BG_HEIGHT);
	return line;
}

int	CTextOutMgr::RcTXTOutNoBG(const int iExplainX, const int iExplainY, const int iWidth, const int iGab,char* msg,...)
{
	char temp[ MAX_PATH] = {0,};
    va_list arg;
    va_start( arg, msg );
    vsprintf( temp, msg, arg );
    va_end( arg );

	const int line	= GetLineRectTextPut( iWidth-iGab, temp);
	RectTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY, iWidth-iGab, temp,GetLineGab());
	return line;
}

int	CTextOutMgr::RcTXTOutB(const int iExplainX, const int iExplainY, const int iWidth, const int iGab,char* msg,...)
{
	char temp[ MAX_PATH] = {0,};
    va_list arg;
    va_start( arg, msg );
    vsprintf( temp, msg, arg );
    va_end( arg );

	const int line	= GetLineRectTextPut( iWidth-iGab, temp);
	for( int i = 0; i<line; i++ )
	{	// m_iImgGroup
		FieldTypeNomalPutFx3( iExplainX-4, iExplainY+BG_HEIGHT*i-1, 0,0, m_iBodyImgNo, m_iImgGroup,GetAlpha(), GetBlendType() );
	}
	RectBoldTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY, iWidth-iGab, temp,BG_HEIGHT);//020823 lsw
	return line;
}

int	CTextOutMgr::RcTXTOutBNoBG(const int iExplainX, const int iExplainY, const int iWidth, const int iGab,char* msg,...)
{
	char temp[ MAX_PATH] = {0,};
    va_list arg;
    va_start( arg, msg );
    vsprintf( temp, msg, arg );
    va_end( arg );

	const int line	= GetLineRectTextPut( iWidth-iGab, temp);
	RectBoldTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY, iWidth-iGab, temp,GetLineGab());//020823 lsw
	return line;
}

int CTextOutMgr::RcChatHeaderOut(const int iExplainX, const int iExplainY, const int iWidth, const int iGab,const int iChatColorType,char* msg,...)
{
	char temp[ MAX_PATH] = {0,};
    va_list arg;
    va_start( arg, msg );
    vsprintf( temp, msg, arg );
    va_end( arg );

	const int iGabY = 10;
	switch(iChatColorType)
	{
	case CHAT_COLOR_TYPE_DEFAULT:
		{
			::PutCompressedImageFX( iExplainX+ spr[72].ox,	iExplainY+spr[72].oy+2,	&spr[72], GetAlpha(), 1 );//焊烹
		}break;
	case CHAT_COLOR_TYPE_SIT_DOWN:
		{
			::PutCompressedImageFX( iExplainX+ 96,			iExplainY+11,			chatimage[iChatColorType], GetAlpha(), 1 );//目膠乓
		}break;
	case CHAT_COLOR_TYPE_MERCHANT_BBS:
		{
			::FieldTypeNomalPutFx3( iExplainX,				iExplainY-12, 0,0,0,		MERCHANT_BBS_BACK_IMG, GetAlpha(), GetBlendType() ); //惑牢
		}break;
	default:
		{
			::PutCompressedImageFX( iExplainX+ 96,			iExplainY+11,			chatimage[iChatColorType], GetAlpha(), 1 );//目膠乓
		}break;
	}
	
	switch(iChatColorType)
	{
	case CHAT_COLOR_TYPE_MERCHANT_BBS:
		{
			RectTextPutNotEatWhiteChar(iExplainX+iGab+60,iExplainY+iGabY-14, iWidth-iGab, lan->OutputMessage(4,562),BG_HEIGHT);
		}break;
	default:
		{
			RectTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY+iGabY, iWidth-iGab, temp,BG_HEIGHT);
		}break;
	}
	return 1;
}

int CTextOutMgr::RcChatOut(const int iExplainX, const int iExplainY, const int iWidth, const int iGab, const int iChatColorType, char* msg,...)
{
	char temp[ MAX_PATH] = {0,};
    va_list arg;
    va_start( arg, msg );
    vsprintf( temp, msg, arg );
    va_end( arg );

	const int x = iExplainX;
	const int y = iExplainY;
	
	const int iLG = 18;
	const int iGabY = 4;
	
	const int iLCt = GetLineRectTextPut( iWidth-iGab, temp);

	int line  =0;
	
	switch(iChatColorType)
	{
	case CHAT_COLOR_TYPE_MERCHANT_BBS:
		{
			line = (((iLCt*iLG)+iGabY) /MERCHANT_CHAT_BG_HEIGHT);
		}break;
	default:
		{
			line = (((iLCt*iLG)+iGabY) /CHAT_BG_HEIGHT)+1;
		}break;
	}
	for(int i = line; 0 < i; i--)
	{	
		switch(iChatColorType)
		{
		case CHAT_COLOR_TYPE_DEFAULT:
			{
				if(1==i)//付瘤阜 臨老錠.
				{
					::PutCompressedImageFX( x+spr[70].ox-6, y+spr[ 70].oy -(CHAT_BG_HEIGHT*i), &spr[ 70], GetAlpha(), 1 ); //淺急場(chǎng)
				}
				else
				{
					::PutCompressedImageFX( x+spr[71].ox, y+spr[ 71].oy -(CHAT_BG_HEIGHT*i), &spr[ 71], GetAlpha(), 1 ); 
				}				
			}break;
		case CHAT_COLOR_TYPE_SIT_DOWN:
			{
				if(1==i)//付瘤阜 臨老錠.
				{
					::PutCompressedImageFX( x+98, y+13-(CHAT_BG_HEIGHT*i), chatimage[iChatColorType+2], GetAlpha(), 1 ); 
				}
				else
				{
					::PutCompressedImageFX( x+96, y+10-(CHAT_BG_HEIGHT*i), chatimage[iChatColorType+1], GetAlpha(), 1 ); 
				}
			}break;
		case CHAT_COLOR_TYPE_MERCHANT_BBS://惑牢父 盲潑 官躥撈 促輔聰促.
			{
				::FieldTypeNomalPutFx3( x, y-(MERCHANT_CHAT_BG_HEIGHT*i), 0,0,1,MERCHANT_BBS_BACK_IMG, GetAlpha(), GetBlendType() ); 
				if(1==i)//付瘤阜 臨老錠.
				{
					::FieldTypeNomalPutFx3( x, y-(MERCHANT_CHAT_BG_HEIGHT*(i-1)), 0,0,2,MERCHANT_BBS_BACK_IMG, GetAlpha(), GetBlendType() ); 
				}
			}break;
		default:
			{
				if(1==i)//付瘤阜 臨老錠.
				{
					::PutCompressedImageFX( x+93, y+13-(CHAT_BG_HEIGHT*i), chatimage[iChatColorType+2], GetAlpha(), 1 ); 
				}
				else
				{
					::PutCompressedImageFX( x+96, y+10-(CHAT_BG_HEIGHT*i), chatimage[iChatColorType+1], GetAlpha(), 1 ); 
				}
			}break;
		}
	}
	switch(iChatColorType)
	{
	case CHAT_COLOR_TYPE_MERCHANT_BBS:
		{
			RectTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY-(line*MERCHANT_CHAT_BG_HEIGHT)+iGabY, iWidth-iGab, temp,iLG);
		}break;
	default:
		{
			RectTextPutNotEatWhiteChar(iExplainX+iGab,iExplainY-(line*CHAT_BG_HEIGHT)+iGabY, iWidth-iGab, temp,iLG);
		}break;
	}
	return line;
}

int	CTextOutMgr::RcBlankOut(const int iExplainX, const int iExplainY, const int iWidth,const int iBlankCount)
{
	for( int i = 0; i<iBlankCount; i++ )
	{
		FieldTypeNomalPutFx3( iExplainX-4, iExplainY+m_iBlankGabSize*i-1, 0,0, m_iBlkImgNo	, m_iImgGroup,GetAlpha(), GetBlendType() );
	}
	return iBlankCount*m_iBlankGabSize;
}

void CTextOutMgr::PutTextHeaderBGImg(const int iExplainX, const int iExplainY, const int iWidth)
{	//-5 綽 慶歹 拋滴府 葷撈令
	FieldTypeNomalPutFx3( iExplainX-4, iExplainY-1-5, 0,0, m_iHeadImgNo, m_iImgGroup,GetAlpha(), GetBlendType() );
}

void CTextOutMgr::PutTextTailBGImg(const int iExplainX, const int iExplainY, const int iWidth)
{
	FieldTypeNomalPutFx3( iExplainX-4, iExplainY-1, 0,0, m_iTailImgNo, m_iImgGroup,GetAlpha(), GetBlendType() );
}

void RectPrintModul( int x, int y, char *pStr, int size, bool bBold, bool bEat )
{	//< CSD-030324
	char szText[500];
	strncpy( szText, pStr, size );
	szText[size] = 0;
	if( bBold )
	{
		HprintBold( x, y, RGB( HR, HG, HB ),RGB(0,0,0),"%s",bEat?Kein_EatFrontWhiteChar(szText):szText);
	}
	else
	{
		Hprint2( x, y, NULL,"%s", bEat?Kein_EatFrontWhiteChar(szText):szText );
	}
}	//> CSD-030324

int RectTextPutBasic ( 
	const int x, const int y,
	int nWidth, char *sSource, 
	const int hight, const int line_max,
	bool bBold,
	bool bEat,
	char **pEnd
)
{	//< CSD-030324
	if( !sSource ) return 0;
	if( nWidth <= 0  ) nWidth = 100;
	int nLenghtTotal = 0,nLenghtStart = 0,nLenghtEnd = 0,nLine = 0;
	nLenghtTotal=strlen(sSource);

	int gab;

	// THAI YGI
#ifdef THAI_LOCALIZING_
	BYTE rgbBrk[256] = {0,};
	ThaiBreak( sSource ,&rgbBrk[0]);//020806 lms
	int ct=0;
	int iNow =0;
#endif//#ifdef THAI_LOCALIZING_

	while(1)
	{
		if( line_max && nLine >= line_max ) 
		{
			if( pEnd ) *pEnd = sSource+nLenghtStart;
			return nLine+1;
		}
		
		gab = 1;
		if( IsHangul( *(sSource+nLenghtEnd) ) ) { gab = 2; }

		nLenghtEnd+=gab;
		if( nLenghtEnd > nLenghtTotal)
		{
			nLenghtEnd-=gab;
			if(hight) RectPrintModul( x, y+nLine*hight, sSource+nLenghtStart, nLenghtEnd-nLenghtStart, bBold, bEat);
			nLenghtStart=nLenghtEnd;
			break;
		}
		if( (nLenghtEnd-nLenghtStart)*FONTSIZE_ > nWidth)
		{
			nLenghtEnd-=gab;
#ifdef THAI_LOCALIZING_
				for(; 255 > ct; ct++)
				{
					iNow += rgbBrk[ct];
					if(iNow > (nLenghtEnd))
					{
						if((rgbBrk[ct])*FONTSIZE_ <= nWidth )
						{
							iNow -=rgbBrk[ct];//竄絹狼 矯累痢
						}
						else 
						{
							ct++;
						}
						nLenghtEnd = iNow;
						break;
					}
					else if(iNow == (nLenghtEnd))
					{
						ct++;
						break;
					}
				}
#endif//ifdef THAI_LOCALIZING_
			if(hight) RectPrintModul( x, y+nLine*hight, sSource+nLenghtStart, nLenghtEnd-nLenghtStart, bBold, bEat );
			nLenghtStart=nLenghtEnd;
			nLine++;
			continue;
		}
		if( ( gab==1) && ( *(sSource+nLenghtEnd) == '\n') )
		{
			if(hight) RectPrintModul( x, y+nLine*hight, sSource+nLenghtStart, nLenghtEnd-nLenghtStart, bBold, bEat );
			nLenghtStart=nLenghtEnd;				
			nLine++;
			continue;
		}
	}
	return nLine+1;
}	//> CSD-030324

int RectTextPutNotEatWhiteChar(const int x, const int y,int nWidth, char *sSource, const int hight, const int line_max)//
{	//< CSD-030324
	return RectTextPutBasic( x, y, nWidth, sSource, hight, line_max, false, false, NULL );
}	//> CSD-030324

int RectTextPut(const int x, const int y,int nWidth, char *sSource, const int hight, const int line_max)
{	//< CSD-030324
	return RectTextPutBasic( x, y, nWidth, sSource, hight, line_max, false, true, NULL  );
}	//> CSD-030324

int RectBoldTextPutNotEatWhiteChar(const int x, const int y,int nWidth, char *sSource, const int hight, const int line_max)//
{	//< CSD-030324
	return RectTextPutBasic( x, y, nWidth, sSource, hight, line_max, true, false, NULL );
}	//> CSD-030324

int RectBoldTextPut(const int x, const int y,int nWidth, char *sSource, const int hight, const int line_max)//
{	//< CSD-030324
	return RectTextPutBasic( x, y, nWidth, sSource, hight, line_max, true, true, NULL );
}	//> CSD-030324

int GetRectTextLine( char *sSource, int nWidth, const int line_max)//020703 lsw
{	//< CSD-030324
	return RectTextPutBasic( 0, 0, nWidth, sSource, 0, line_max, false, false, NULL  );
}	//> CSD-030324

void ThaiBreak( char *msg,BYTE *brk)
{	//< CSD-030324
	TBreak.FindThaiWordBreak(msg, strlen(msg), brk, 256, 0);
}	//> CSD-030324

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久99久久综合| 欧美日韩在线亚洲一区蜜芽| 亚洲综合色在线| 久久久久综合网| 欧美精品在线视频| 色悠悠久久综合| 国产高清无密码一区二区三区| 亚洲第一久久影院| 成人免费在线播放视频| 久久亚洲私人国产精品va媚药| 在线观看亚洲专区| 不卡的av在线播放| 极品少妇一区二区三区精品视频 | 欧美国产禁国产网站cc| 91精品国产综合久久久久久| 91色综合久久久久婷婷| 国产成人综合在线观看| 美腿丝袜亚洲综合| 亚洲国产精品精华液网站| 18成人在线观看| 国产日产欧美一区二区视频| 日韩午夜在线播放| 欧美一区二区啪啪| 欧美日韩精品高清| 欧美伊人久久大香线蕉综合69 | 91精品国产综合久久精品| 91黄色免费版| 91在线观看成人| www.日韩av| 成人av免费观看| 99天天综合性| 99久久国产综合精品色伊| 成人av网站在线| 成人av在线播放网站| 风流少妇一区二区| 国产福利精品一区二区| 丁香另类激情小说| 波多野结衣91| 91免费精品国自产拍在线不卡| 成人爽a毛片一区二区免费| 国产成人无遮挡在线视频| 国产成人aaaa| 成人精品高清在线| 91在线小视频| 91一区二区在线| 欧美在线视频你懂得| 欧美日韩视频在线第一区| 欧美日韩精品一区二区三区蜜桃| 欧美日韩亚洲国产综合| 欧美日韩精品免费| 欧美一区二区网站| 精品电影一区二区| 久久久www成人免费毛片麻豆| 久久亚洲二区三区| 日本一区二区三区在线不卡| 欧美激情综合五月色丁香小说| 中文字幕精品一区二区精品绿巨人| 国产欧美一区在线| 一区二区三区在线视频观看58 | 亚洲欧美日韩中文字幕一区二区三区| 亚洲欧美自拍偷拍色图| 亚洲一区中文日韩| 蜜桃av一区二区| 国产.欧美.日韩| 91浏览器在线视频| 69堂精品视频| 久久久久久麻豆| 国产精品国产三级国产aⅴ原创 | 制服丝袜国产精品| 2022国产精品视频| 亚洲视频一区在线观看| 爽好久久久欧美精品| 国产一区二区三区香蕉| 99在线热播精品免费| 欧美精品日韩一区| 国产偷国产偷精品高清尤物| 亚洲精品成人在线| 美国毛片一区二区| 99re这里只有精品首页| 91精品国产色综合久久不卡电影| 国产视频一区二区在线观看| 91久久精品一区二区二区| 中文字幕av在线一区二区三区| 欧美aa在线视频| 北条麻妃一区二区三区| 制服丝袜一区二区三区| 中文无字幕一区二区三区 | 欧洲另类一二三四区| 精品欧美黑人一区二区三区| 日韩美女精品在线| 精品一区二区三区免费视频| 色婷婷精品久久二区二区蜜臂av| 欧美xfplay| 亚洲电影一级黄| 波多野结衣的一区二区三区| 日韩欧美精品在线| 亚洲国产综合在线| 成人精品免费视频| 精品动漫一区二区三区在线观看| 亚洲综合久久av| 成人精品国产一区二区4080| 精品免费日韩av| 日本美女视频一区二区| 91网站在线播放| 中文字幕精品综合| 国产麻豆精品在线观看| 6080国产精品一区二区| 一区二区三区在线观看网站| 成人亚洲一区二区一| 欧美videos大乳护士334| 亚洲永久精品大片| 99re在线视频这里只有精品| 国产日韩欧美制服另类| 精品在线一区二区| 91精品婷婷国产综合久久性色| 夜色激情一区二区| 91丨九色porny丨蝌蚪| 欧美国产精品久久| 国产成人在线免费观看| 精品国产伦一区二区三区观看方式| 午夜精品影院在线观看| 91成人免费网站| 亚洲精选视频在线| bt欧美亚洲午夜电影天堂| 免费高清不卡av| 欧美日韩久久久一区| 亚洲国产精品视频| 欧美在线看片a免费观看| 亚洲老妇xxxxxx| 97超碰欧美中文字幕| 国产精品久久久久久亚洲伦| 国产白丝精品91爽爽久久| 久久欧美一区二区| 国产乱人伦偷精品视频免下载| 精品国产百合女同互慰| 国内外成人在线| 久久九九影视网| 国产精品一区二区三区四区 | 亚洲成人一区二区在线观看| 欧美在线一二三四区| 性做久久久久久免费观看| 欧美揉bbbbb揉bbbbb| 三级欧美在线一区| 日韩欧美在线影院| 国内久久精品视频| 国产精品视频一区二区三区不卡 | 欧美一区二区成人| 蜜桃视频在线观看一区| 欧美xfplay| 成人免费观看av| 亚洲一区在线观看网站| 欧美高清视频一二三区| 免费精品视频最新在线| 久久免费看少妇高潮| 不卡的av电影在线观看| 一区二区三区在线影院| 欧美一级夜夜爽| 国产精品一区二区久久精品爱涩| 国产精品三级电影| 欧美午夜一区二区三区免费大片| 丝袜诱惑亚洲看片| 久久在线观看免费| aaa国产一区| 婷婷丁香久久五月婷婷| 精品国产91亚洲一区二区三区婷婷| 国产精品18久久久久久久久| 国产精品不卡视频| 69av一区二区三区| 国产成人亚洲综合色影视| 亚洲精品视频在线观看免费| 制服丝袜亚洲色图| 成人精品免费看| 日本一不卡视频| 亚洲国产精品成人综合色在线婷婷 | av成人动漫在线观看| 亚洲va国产天堂va久久en| 久久久天堂av| 欧美日韩国产成人在线91| 国产揄拍国内精品对白| 一区二区三区四区激情| 日韩免费观看2025年上映的电影 | 日韩欧美激情在线| 99久久精品国产一区二区三区 | 国产精品天天摸av网| 欧美性感一区二区三区| 国产乱码精品一区二区三区忘忧草 | 国产三级一区二区三区| 欧美日韩国产精品自在自线| 成人久久18免费网站麻豆| 日韩激情一二三区| 亚洲日本va在线观看| xfplay精品久久| 欧美日韩亚洲国产综合| www..com久久爱| 久久99精品视频| 天堂影院一区二区| 综合在线观看色| 国产人妖乱国产精品人妖| 欧美一级黄色片| 欧美性猛交xxxx黑人交|