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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? debug.pas

?? 3D GameStudio 的Delphi開發包
?? PAS
?? 第 1 頁 / 共 2 頁
字號:
//////////////////////////////////////////////////////////////////////
//
// Delphi Debugging routings for the A6_5x Engine (acknex.dll) and plugin dll's done by
// Michal Messerschmidt aka LazyDog of Lazy Dog Software
// (www.LazyDogSoftware.com)
// (c) Lazy Dog Software / Michael Messerschmidt 2006
//
// SDK Version 6.50.6
//
// tested on Delphi 5,6,7,2005 & 2006
//////////////////////////////////////////////////////////////////////

Interface

Uses {$IFDEF USEDLL} A6DLL {$ELSE} A6Engine {$ENDIF};

procedure ShowEntityValues(aEntity : PEntity); {$IFDEF USEDLL} cdecl; exports ShowEntityValues; {$ENDIF}
procedure ShowViewValues(aView : PView); {$IFDEF USEDLL} cdecl; exports ShowViewValues; {$ENDIF}
procedure ShowTextValues(aText : PText); {$IFDEF USEDLL} cdecl; exports ShowTextValues; {$ENDIF}
procedure ShowPanelValues(aPanel : PPanel); {$IFDEF USEDLL} cdecl; exports ShowPanelValues; {$ENDIF}
procedure ShowParticleValues(aParticle : PParticle); {$IFDEF USEDLL} cdecl; exports ShowParticleValues; {$ENDIF}

procedure Debug_DrawRedLine(Start,Stop : PVector); {$IFDEF USEDLL} cdecl; exports Debug_DrawRedLine; {$ENDIF}
procedure Debug_DrawBlueLine(Start,Stop : PVector); {$IFDEF USEDLL} cdecl; exports Debug_DrawBlueLine; {$ENDIF}
procedure Debug_DrawGreenLine(Start,Stop : PVector); {$IFDEF USEDLL} cdecl; exports Debug_DrawGreenLine; {$ENDIF}
procedure Debug_DrawLine_ToFront(Entity : PEntity; Dist : Var_); {$IFDEF USEDLL} cdecl; exports Debug_DrawLine_ToFront; {$ENDIF}
procedure Debug_C_Scan(Entity : PEntity; Angle : PAngle; Scan : PVector); {$IFDEF USEDLL} cdecl; exports Debug_C_Scan; {$ENDIF}
procedure Debug_DrawBoundBox(Entity : PEntity); {$IFDEF USEDLL} cdecl; exports Debug_DrawBoundBox; {$ENDIF}
procedure Debug_DrawTriggerRange(Entity : PEntity); {$IFDEF USEDLL} cdecl; exports Debug_DrawTriggerRange; {$ENDIF}

Implementation

Uses SysUtils, Forms, Windows, Graphics, StdCtrls, Controls,
     {$IFDEF USEDLL}
     DLL_Library, DLL_DX9Library
     {$ELSE}
     Engine_Library, Engine_DX9Library
     {$ENDIF} ;

{.$DEFINE DEBUGFLAGS}

// remove the "." from the above compiler define to allow the
// ShowxxxValues functions defined below to show the RAW data
// in the flags for each object type.  This code was needed when
// working on the SDK because not all the constants for the flags
// were defined in the beginning.

const BitLabel1 : String = '2222222221111111111';
      BitLabel2 : String = '8765432109876543210987654321';
      BitLabel3 : String = '============================';

procedure ShowMsgFixedFont(S : String; TheCaption : String = '');

const BtnWidth   = 50;
      BtnSpace   = 5;
      TheMargin  = 10;

var aForm : TForm;
    TextRect: TRect;
    fCWidth : Integer;
    BtnPos : Integer;
begin
  if not DirectDeviceReset then Exit; // Full Screen Mode needs reset

  aForm := TForm.Create(Nil);
  with aForm do
  try
    Position := poScreenCenter;
    Caption := TheCaption;
    BorderStyle := bsDialog;          // this style is needed to display
    Font.Name := 'Courier';
    Font.Pitch := Graphics.fpFixed;   // we want a fixed font
    Canvas.Font := Font;

    SetRect(TextRect, 0, 0, Screen.Width div 2, 0);
    DrawText(Canvas.Handle, PChar(S), Length(S)+1, TextRect,
             DT_EXPANDTABS or DT_CALCRECT or DT_WORDBREAK or
             DrawTextBiDiModeFlagsReadingOnly);

    ClientWidth := TextRect.right + (2 * TheMargin);
    ClientHeight := TextRect.Bottom + 40;

    Left := (Screen.Width Div 2) - (Width Div 2);
    Top  := (Screen.Height Div 2) - (Height Div 2);

    fCWidth  := ClientWidth;

    with TLabel.Create(aForm) do
    begin
      Name := 'Message';              // this creates the control
      Parent := aForm;                // that will hold the
      WordWrap := True;               // text of our message
      Caption := S;
      BoundsRect := TextRect;
      BiDiMode := aForm.BiDiMode;
      SetBounds(TheMargin,TheMargin,TextRect.Right, TextRect.Bottom);
    end;

    with TButton.Create(aForm) do
    begin
      Name := 'Button';               // this creates our
      Parent := aForm;                // button
      Caption := '&Ok';
      ModalResult := mrOk;
      Default := True;
      Cancel := True;
      BtnPos := (fCWidth Div 2) - (BtnWidth Div 2);
      SetBounds(BtnPos, TextRect.Bottom + TheMargin, BtnWidth,20);
    end;

    Parent := Nil;
    ParentWindow := ev.hWndMain;      // allow form to be seen

    Windows.SetFocus(Handle);         // allow keyboard access
    SetCapture(Handle);               // allow mouse access

    ShowModal;
  finally
    ReleaseCapture;                   // free mouse capture
    aForm.Free;
  end;
end;

function DecodeFlag(f : LongInt) : String;

var I : Integer;
begin
  Result := '';

  for I := 27 downto 0 do
    if (f and (1 shl I)) = 1 shl I then
      Result := Result + '1'
    else
      Result := Result + '0';
end;

function ConvertNeg(Avar : Var_) : LongInt;
begin
  if Avar < 0 then
    Result := _INT(absv(Avar)) * -1
  else
    Result := _INT(Avar);
end;

function Pad(Val : Var_; MaxLen : Integer; ConvertFromNeg : Boolean = False) : String;

var Str : String;
begin
  if ConvertFromNeg then
    Str := IntToStr(ConvertNeg(Val))
  else
    Str := IntToStr(_INT(Val));

  Result := Str + StringOfChar(' ',MaxLen - Length(Str));
end;

function PadI(Val : Integer; MaxLen : Integer) : String;

var Str : String;
begin
  Str := IntToStr(Val);

  Result := Str + StringOfChar(' ',MaxLen - Length(Str));
end;

function FlagValue(SourceFlag,Flag : LongInt) : String;
begin
  if FlagIsOn(SourceFlag,Flag) then
    Result := 'ON '
  else
    Result := 'OFF';
end;

procedure ShowEntityValues(aEntity : PEntity);

var S : String;
begin
  S :=
  {$IFDEF DEBUGFLAGS}
       '       ' + BitLabel1 + #13#10 +
       ' Bit # ' + BitLabel2 + #13#10 +
       '       ' + BitLabel3 + #13#10 +
       ' Flags:' + DecodeFlag(aEntity.flags) + #13#10 +
       ' emask:' + DecodeFlag(aEntity.emask) + #13#10 +
       'eFlags:' + DecodeFlag(aEntity.eflags) + #13#10 +
       ' sMask:' + DecodeFlag(aEntity.smask) + #13#10 +
       'Flags2:' + DecodeFlag(aEntity.flags2) + #13#10 +
  {$ENDIF}
       '  INVISIBLE ' + FlagValue(aEntity.flags,INVISIBLE)  + '  METAL ' + FlagValue(aEntity.flags,METAL)  + ' LIGHT  ' + FlagValue(aEntity.flags,LIGHT)  + #13#10 +
       '   PASSABLE ' + FlagValue(aEntity.flags,PASSABLE)   + '   CAST ' + FlagValue(aEntity.flags,CAST)   + ' NOFOG  ' + FlagValue(aEntity.flags,NOFOG)  + #13#10 +
       '   NOFILTER ' + FlagValue(aEntity.flags,NOFILTER)   + '  UNLIT ' + FlagValue(aEntity.flags,UNLIT)  + ' FACING ' + FlagValue(aEntity.flags,FACING) + #13#10 +
       '    OVERLAY ' + FlagValue(aEntity.flags,OVERLAY)    + ' BRIGHT ' + FlagValue(aEntity.flags,BRIGHT) + ' ZNEAR  ' + FlagValue(aEntity.flags,ZNEAR)  + #13#10 +
       '    POLYGON ' + FlagValue(aEntity.flags,_POLYGON)   + '  DECAL ' + FlagValue(aEntity.flags,DECAL)  +  #13#10 +
       'TRANSPARENT ' + FlagValue(aEntity.flags,TRANSLUCENT)+ ' SHADOW ' + FlagValue(aEntity.flags,SHADOW) + #13#10#13#10 +
//       ' ORIENTED   ' + #13#10 +
       '    pan:' + Pad(aEntity.pan,5,True)     + ' frame:' + Pad(aEntity.frame,5) + '  floor_dist:' + Pad(aEntity.floor_dist,0) + #13#10 +
       '   tilt:' + Pad(aEntity.tilt,5,True)    + '  skin:' + Pad(aEntity.skin,5)  + '  lightrange:' + Pad(aEntity.lightrange,0) + #13#10 +
       '   roll:' + Pad(aEntity.roll,5,True)    + '  push:' + Pad(aEntity.push,5)  + 'triggerrange:' + Pad(aEntity.trigger_range,0) + #13#10 +
       'ambient:' + Pad(aEntity.ambient,5,True) + '     x:' + Pad(aEntity.x,10,True)   + #13#10 +
       ' albedo:' + Pad(aEntity.albedo,5)       + '     y:' + Pad(aEntity.y,10,True)   + #13#10 +
       '  alpha:' + Pad(aEntity.alpha,5)        + '     z:' + Pad(aEntity.z,10,True)   + #13#10 +
       '   pose:' + Pad(aEntity.pose,5);

  ShowMsgFixedFont(S,'ENTITY: '+String(aEntity.Atype));
end;

procedure ShowViewValues(aView : PView);

var S : String;
begin
  S :=
  {$IFDEF DEBUGFLAGS}
       '         ' + BitLabel1 + #13#10 +
       '   Bit # ' + BitLabel2 + #13#10 +
       '         ' + BitLabel3 + #13#10 +
       '   Flags:' + DecodeFlag(aView.flags) + #13#10#13#10 +
  {$ENDIF}
       'VISIBLE   ' + FlagValue(aView.flags,_VISIBLE) + '  TRANSPARENT ' + FlagValue(aView.flags,TRANSLUCENT) + #13#10 +
       'AUDIBLE   ' + FlagValue(aView.flags,AUDIBLE)  + '  PORTALCLIP  ' + FlagValue(aView.flags,PORTALCLIP) + #13#10 +
       'CULL_CW   ' + FlagValue(aView.flags,CULL_CW)  + '  NOPARTICLE  ' + FlagValue(aView.flags,NOPARTICLE) + #13#10 +
       'NOSHADOW  ' + FlagValue(aView.flags,NOSHADOW) + '  NOCULL      ' + FlagValue(aView.flags,NOCULL) + #13#10 +
       'NOSHADER  ' + FlagValue(aView.flags,NOSHADER) + '  NOFLAG1     ' + FlagValue(aView.flags,NOFLAG1) + #13#10#13#10 +
       '   Layer:' + IntToStr(ConvertNeg(aView.layer)) + #13#10 +
       'clipnear:' + IntToStr(_Int(aView.clip_near)) + #13#10 +
       ' clipfar:' + IntToStr(_Int(aView.clip_far));

  ShowMsgFixedFont(S,'VIEW: '+String(aView.c_link.name));
end;

procedure ShowTextValues(aText : PText);

var S : String;
begin
  S :=
  {$IFDEF DEBUGFLAGS}
       '         ' + BitLabel1 + #13#10 +
       '   Bit # ' + BitLabel2 + #13#10 +
       '         ' + BitLabel3 + #13#10 +
       '   Flags:' + DecodeFlag(aText.flags) + #13#10#13#10 +
  {$ENDIF}
       'CENTER_X  ' + FlagValue(aText.flags,CENTER_X)  + '  OUTLINE     ' + FlagValue(aText.flags,OUTLINE) + #13#10 +
       'CENTER_Y  ' + FlagValue(aText.flags,CENTER_Y)  + '  NARROW      ' + FlagValue(aText.flags,NARROW) + #13#10 +
       'CONDENSED ' + FlagValue(aText.flags,CONDENSED) + '  TRANSLUCENT ' + FlagValue(aText.flags,TRANSLUCENT) + #13#10 +
       'FILTER    ' + FlagValue(aText.flags,FILTER)    + '  SHADOW      ' + FlagValue(aText.flags,SHADOW) + #13#10 +
       'VISIBLE   ' + FlagValue(aText.flags,_VISIBLE) + #13#10#13#10 +
       '   Layer:' + Pad(aText.layer,10) +      ' Scale_x:' + Pad(aText.scale_x,10) +   #13#10 +
       '   Pos_x:' + Pad(aText.pos_x,10,True) + ' Scale_y:' + Pad(aText.scale_y,10) +  #13#10 +
       '   Pos_y:' + Pad(aText.pos_y,10,True) + '  Size_y:' + IntToStr(_Int(aText.size_y)) +  #13#10 +
       '   Alpha:' + Pad(aText.alpha,10) +      'Offset_y:' + IntToStr(ConvertNeg(aText.offset_y)) +  #13#10 +
       ' Strings:' + Pad(aText.strings,10) + #13#10#13#10 +
       '     FONT' + #13#10 +
       '      dx:' + PadI(aText.font.dx,10) + ' num:' + IntToStr(aText.font.num) + #13#10 +
       '      dy:' + PadI(aText.font.dy,10) + ' cpl:' + IntToStr(aText.font.cpl) + #13#10 +
       '   Atype:' + string(aText.font.Atype) + #13#10#13#10 +
       '     BMAP' + #13#10 +
  {$IFDEF DEBUGFLAGS}
       '         ' + BitLabel1 + #13#10 +
       '   Bit # ' + BitLabel2 + #13#10 +
       '         ' + BitLabel3 + #13#10 +
       '   flags:' + DecodeFlag(aText.font.bmap.flags) + #13#10 +
  {$ENDIF}
       '   width:' + PadI(aText.font.bmap.width,10) + #13#10 +
       '  height:' + PadI(aText.font.bmap.height,10) + ' bytespp:' + IntToStr(aText.font.bmap.bytespp) + #13#10;

  ShowMsgFixedFont(S,'TEXT: '+String(aText.c_link.name));
end;

procedure ShowPanelValues(aPanel : PPanel);

var S : String;
begin
  S :=
  {$IFDEF DEBUGFLAGS}
       '        ' + BitLabel1 + #13#10 +
       '  Bit # ' + BitLabel2 + #13#10 +
       '        ' + BitLabel3 + #13#10 +
       '  Flags:' + DecodeFlag(aPanel.flags) + #13#10#13#10 +
  {$ENDIF}
       'VISIBLE   ' + FlagValue(aPanel.flags,_VISIBLE) + '  TRANSLUCENT ' + FlagValue(aPanel.flags,TRANSLUCENT) + #13#10 +
       'OVERLAY   ' + FlagValue(aPanel.flags,OVERLAY)  + '  LIGHT       ' + FlagValue(aPanel.flags,LIGHT) + #13#10 +
       'FILTER    ' + FlagValue(aPanel.flags,FILTER)  + #13#10#13#10 +
       '  Layer:' + IntToStr(ConvertNeg(aPanel.layer)) + #13#10 +
       '  Pos_x:' + IntToStr(ConvertNeg(aPanel.pos_x)) + #13#10 +
       '  Pos_y:' + IntToStr(ConvertNeg(aPanel.pos_y)) + #13#10 +
       '  Alpha:' + IntToStr(_Int(aPanel.alpha)) + #13#10 +
       'Scale_x:' + IntToStr(_Int(aPanel.scale_x)) + #13#10 +
       'Scale_y:' + IntToStr(_Int(aPanel.scale_y)) + #13#10 +
       ' Size_x:' + IntToStr(_Int(aPanel.size_x)) + #13#10 +
       ' Size_y:' + IntToStr(_Int(aPanel.size_y)) + #13#10;

  ShowMsgFixedFont(S,'PANEL: '+String(aPanel.c_link.name));
end;

procedure ShowParticleValues(aParticle : PParticle);

var S : String;
begin
  S := '       ' + BitLabel1 + #13#10 +
       ' Bit # ' + BitLabel2 + #13#10 +
       '       ' + BitLabel3 + #13#10 +
       ' Flags:' + DecodeFlag(aParticle.flags);

  ShowMsgFixedFont(S);
end;

procedure RedParticleLine(p : PParticle); cdecl;
begin
  p.lifespan := _VAR(1);
  p.flags := p.flags OR STREAK;
  p.red := _VAR(100);
  p.green := _VAR(1);
  p.blue := _VAR(1);
  p.size := _VAR(1);
  p.event := Nil;
end;

procedure BlueParticleLine(p : PParticle); cdecl;
begin
  p.lifespan := _VAR(1);
  p.flags := p.flags OR STREAK;
  p.red := _VAR(1);
  p.green := _VAR(1);
  p.blue := _VAR(100);
  p.size := _VAR(1);
  p.event := Nil;
end;

procedure GreenParticleLine(p : PParticle); cdecl;
begin
  p.lifespan := _VAR(1);
  p.flags := p.flags OR STREAK;
  p.red := _VAR(1);
  p.green := _VAR(100);
  p.blue := _VAR(1);
  p.size := _VAR(1);
  p.event := Nil;
end;

procedure Debug_DrawRedLine(Start,Stop : PVector);

// example: Debug_DrawLine(@Entity1.x,@Entity2.x);

var AVec : TVector;
begin
  vec_diff(@AVec.x,Stop,Start);        // AVec is direction of Stop to Start

  // create beam particle effect from Start postion to the Stop position
  effect_local(@RedParticleLine,_VAR(1),Start,@AVec.x);
end;

procedure Debug_DrawBlueLine(Start,Stop : PVector);

// example: Debug_DrawLine(@Entity1.x,@Entity2.x);

var AVec : TVector;
begin
  vec_diff(@AVec.x,Stop,Start);        // AVec is direction of Stop to Start

  // create beam particle effect from Start postion to the Stop position
  effect_local(@BlueParticleLine,_VAR(1),Start,@AVec.x);
end;

procedure Debug_DrawGreenLine(Start,Stop : PVector);

// example: Debug_DrawLine(@Entity1.x,@Entity2.x);

var AVec : TVector;
begin
  vec_diff(@AVec.x,Stop,Start);        // AVec is direction of Stop to Start

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
caoporen国产精品视频| 精品久久久影院| 欧美精品一卡二卡| 亚洲精品视频在线看| 美国毛片一区二区三区| 色婷婷精品大视频在线蜜桃视频| 91精品国产高清一区二区三区蜜臀| 国产精品无码永久免费888| 丝袜国产日韩另类美女| 91丨porny丨首页| 久久精品视频一区二区| 日本sm残虐另类| 欧美日韩五月天| 樱花草国产18久久久久| 99久久婷婷国产综合精品电影| 精品成人在线观看| 日本三级韩国三级欧美三级| 欧美视频一二三区| 亚洲一区二区三区三| 成人毛片老司机大片| 国产亚洲欧美日韩日本| 国精产品一区一区三区mba桃花| 337p亚洲精品色噜噜噜| 亚洲成年人网站在线观看| 欧美亚洲尤物久久| 亚洲影院久久精品| 欧美性猛交一区二区三区精品| 亚洲人成影院在线观看| av午夜精品一区二区三区| 久久久777精品电影网影网| 国产一区二区三区免费观看| 欧美不卡一区二区| 国模冰冰炮一区二区| 久久婷婷成人综合色| 国产精品77777| 欧美国产精品一区二区三区| 国产高清成人在线| 国产精品久久久久9999吃药| 成人精品一区二区三区中文字幕| 国产日韩精品一区二区三区| 国产精品中文有码| 国产精品成人免费在线| 99re66热这里只有精品3直播 | 日韩av高清在线观看| 欧美日韩一卡二卡| 免费人成黄页网站在线一区二区| 日韩一区二区三区视频在线 | 亚洲精品中文在线影院| 色婷婷av久久久久久久| 亚洲在线免费播放| 日韩视频在线你懂得| 国内不卡的二区三区中文字幕| 久久久综合激的五月天| 99re66热这里只有精品3直播| 玉米视频成人免费看| 在线播放日韩导航| 国产精一区二区三区| 亚洲少妇最新在线视频| 欧美日韩一二三| 国产精品1024久久| 一区二区三区中文字幕| 日韩欧美一区二区久久婷婷| 国产精品资源在线观看| 亚洲欧美日韩久久精品| 日韩一区二区免费电影| 高清av一区二区| 偷窥少妇高潮呻吟av久久免费| 久久在线观看免费| 欧亚一区二区三区| 国产麻豆精品theporn| 一区二区三区日韩| 久久综合久久久久88| 在线精品视频免费播放| 捆绑变态av一区二区三区| 中文字幕一区二区三区精华液| 在线观看国产一区二区| 国产麻豆成人传媒免费观看| 亚洲国产精品久久不卡毛片| 国产日韩精品一区二区浪潮av| 欧美在线影院一区二区| 国产成人在线电影| 午夜欧美视频在线观看| 国产精品久久久久桃色tv| 欧美一区二区三级| 欧美自拍丝袜亚洲| 97精品视频在线观看自产线路二| 麻豆成人91精品二区三区| 亚洲黄色片在线观看| 国产精品毛片久久久久久| 欧美一区二区在线视频| 91黄色免费看| av资源网一区| 国产91精品精华液一区二区三区| 喷白浆一区二区| 午夜精品久久久久久久| 亚洲精品免费在线| 亚洲欧洲日韩av| 国产欧美日韩综合精品一区二区 | 亚洲电影一区二区| 国产精品国产自产拍在线| 2023国产精华国产精品| 欧美一级淫片007| 欧美日韩国产天堂| 欧美专区日韩专区| 一本久久精品一区二区| 成人app在线观看| 国产成人精品免费| 国产一区二区三区国产| 韩国午夜理伦三级不卡影院| 日本v片在线高清不卡在线观看| 亚洲国产日韩一区二区| 一区二区三区在线视频免费 | 91网页版在线| 97久久精品人人做人人爽50路| 国产精品资源在线观看| 国产成人鲁色资源国产91色综 | 日韩欧美一级二级三级| 成人综合婷婷国产精品久久 | 国产婷婷色一区二区三区| 日韩欧美123| 久久综合九色综合97婷婷女人| 欧美xxxxx裸体时装秀| 337p粉嫩大胆色噜噜噜噜亚洲| 久久蜜桃av一区精品变态类天堂 | 日本一道高清亚洲日美韩| 婷婷一区二区三区| 麻豆freexxxx性91精品| 国产老妇另类xxxxx| 不卡av在线网| 欧美色中文字幕| 日韩手机在线导航| 国产日韩欧美a| 亚洲综合免费观看高清完整版| 日韩影视精彩在线| 国内一区二区视频| 99国产精品国产精品久久| 欧美日韩久久一区| 欧美精品一区二区三| 国产精品国产精品国产专区不片| 亚洲欧美二区三区| 石原莉奈一区二区三区在线观看| 狠狠色丁香九九婷婷综合五月| 国产不卡免费视频| 欧美视频一区二区三区四区| 日韩精品一区二| 亚洲欧洲另类国产综合| 婷婷久久综合九色综合绿巨人| 韩国午夜理伦三级不卡影院| 白白色 亚洲乱淫| 欧美一区欧美二区| 中文字幕一区视频| 麻豆极品一区二区三区| 99国产精品久久| 亚洲精品一区二区三区福利| 一色桃子久久精品亚洲| 日韩国产一二三区| 99国产精品久| 久久综合国产精品| 亚洲va中文字幕| 成人一区二区三区在线观看| 欧美色成人综合| 国产精品视频免费| 精品影院一区二区久久久| 一本在线高清不卡dvd| 久久―日本道色综合久久| 亚洲午夜激情网页| 成人91在线观看| 欧美成人女星排行榜| 一区二区三区 在线观看视频| 国内不卡的二区三区中文字幕| 欧美剧情片在线观看| 最新热久久免费视频| 国产一区不卡精品| 欧美浪妇xxxx高跟鞋交| 亚洲美女在线国产| 成人一级视频在线观看| 久久亚洲精品小早川怜子| 香蕉成人伊视频在线观看| jiyouzz国产精品久久| 久久人人超碰精品| 美国欧美日韩国产在线播放| 欧美日韩激情一区二区三区| 中文字幕亚洲欧美在线不卡| 国产一区不卡视频| 精品裸体舞一区二区三区| 日韩影院在线观看| 欧美老女人在线| 亚洲123区在线观看| 欧美日韩午夜在线视频| 亚洲一区二区视频| 日本二三区不卡| 亚洲视频1区2区| 日本电影欧美片| 亚洲永久免费av| 欧美日韩dvd在线观看| 亚洲 欧美综合在线网络| 欧美日韩中字一区| 午夜免费欧美电影| 欧美一区二区免费视频| 麻豆91在线播放免费|