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

你的CPP=我的CPP

唾沫是用來數鈔票滴,不是用來講道理的

物品分類的設計

有一些類別,每一類都包含了一些物品,想用以下的XML保存。

數據樣例如下:
<Actors>
<FileVersion>0.2</FileVersion>

<Category>
 <CateName>未分類sdf</CateName>
 <Act>
  <ActName>地板</ActName>
  <ActId>101</ActId>
  <File>floor</File>
  <Pic></Pic>
  <Des>地板</Des>
 </Act>
 <Act>
  <ActName>怪物</ActName>
  <ActId>203</ActId>
  <File>mon31</File>
  <Pic></Pic>
  <Des>怪物</Des>
 </Act>
</Category>

</Actors>

我設計了如下的類:
//ActorCategory.hpp


#ifndef __ACTOR_CATEGORY_HPP__
#define __ACTOR_CATEGORY_HPP__

#include <string>
#include <list>
#include <map>

#ifndef DWORD
#define DWORD unsigned long
#endif

using namespace std;

/**
 * 每一個具體的物件信息
 */
struct SActInfo
{
 SActInfo():
  dwActId(0)
 {
 }

 DWORD dwActId;
 string strFileName;
 string strPicName;
 string strDescribe;  //描述
};

typedef pair<string, struct SActInfo*> PairAct;
typedef map<string, struct SActInfo*> MapAct;

typedef pair<string, MapAct*> PairCate;
typedef map<string, MapAct*> MapCate;

/**
 * 物件類別
 */
class CActorCategory
{
public:
 CActorCategory();
 CActorCategory(const CActorCategory &rcActorCate);
 ~CActorCategory();

// bool Init(CEditorFrame *pFrame);

 bool InsertCate(const string &strCate);  //插入物品類別strCate1
 void UpdateCateName(const string &strOldCate, const string &strNewCate);  //更新類別的名稱為strNewCate1
 bool DeleteCate(int index);
 bool DeleteCate(const string &strCateName);  //刪除類別

 //將物件strActor從類別strSrcCateName中移入類別strDestCateName中
 bool MoveTo(const string &strDestCateName, const string &strSrcCateName, const string &strActorName);
 bool InsertActor(const string &strCateName, const string &strActorName, SActInfo* pActInfo);
 //bool InsertActor(const string &strCateName, const string &strActorName, const string &strFileName=""); //將物件添加到類別中,物件指定了文件名
 bool SetActorFile(const string &strCateName, const string &strActorName, const string &strFileName); //給物件指定一個對應的文件
 void UpdateActor(const string &strCateName, const string &strOldActor, const string &strNewActor);  //更新物件的名稱
 bool DeleteActor(const string &strCateName, const string &strActorName);  //將物件strActor從類別strCate中刪除

 DWORD GetActorIdByName(const string &strActorName);

 void GetCategoryString(list<string> & lstRes);  //返回所有的分類信息名稱
 void GetActorString(const string &strCate1, list<string> &lstRes);  //返回某一分類的所有物件
// SActorInfoRes* GetActorInfoByName(const string &strActorName);
// SActorInfoRes* GetActorInfoByFileName(const string &strFileName);

 bool RebuldFromServer();
 bool UpdateFromServer();
 bool LoadFromXML(const string &strFileName);  //讀取分類信息文件
 bool SaveToXML(const string &strFileName = "GameActors.xml");  //保存

 CActorCategory& operator=(const CActorCategory& rcActorCate);

private:
 void Clear();
 bool HasFile(const string& strFileName);
 map<string, map<string, struct SActInfo*>*> m_mCategoryInfo;  //類別,類別名作為索引,第二個元素用物件名作索引
};

#endif



//ActorCategory.cpp

#include "ActorCategory.hpp"

#include <iostream>
#include <fstream>
#include <strstream>

#include "Markup.h"
#include "ActorTable.hpp"

#define KEY_TAB (char)0x9
#define TABLE_FILE "table/Wi_ActorInfo.csv"

//#include "rtc2_text_xml.h"

/**
 * the constructor
 */
CActorCategory::CActorCategory()
{
}

CActorCategory::CActorCategory(const CActorCategory &rcActorCate1)
{
 struct SActInfo* psActorInfoCopy = new SActInfo();
 MapAct* pmActorCopy = new MapAct();

 MapAct* pmActorTemp;
 MapCate::const_iterator ite = rcActorCate1.m_mCategoryInfo.begin();
 MapCate::const_iterator end = rcActorCate1.m_mCategoryInfo.end();
 for( ; ite!=end; ++ite)
 {
  pmActorTemp = ite->second;
  for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
  {
   psActorInfoCopy->dwActId = (iteAc->second)->dwActId;
   psActorInfoCopy->strDescribe = (iteAc->second)->strDescribe;
   psActorInfoCopy->strFileName = (iteAc->second)->strFileName;
   psActorInfoCopy->strPicName = (iteAc->second)->strPicName;
   pmActorCopy->insert(PairAct(iteAc->first, psActorInfoCopy));
  }
  this->m_mCategoryInfo.insert(PairCate(ite->first, pmActorCopy));
 }
}

CActorCategory& CActorCategory::operator=(const CActorCategory& rcActorCate1)
{
 if (this == &rcActorCate1)
 {
  return *this; // identity test: if a self-assignment
 }

 MapAct* pmActorTemp;
 MapCate::const_iterator ite = rcActorCate1.m_mCategoryInfo.begin();
 MapCate::const_iterator end = rcActorCate1.m_mCategoryInfo.end();
 for( ; ite!=end; ++ite)
 { 
  MapAct* pmActorCopy = new MapAct();
  pmActorTemp = ite->second;
  for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
  {
   struct SActInfo* psActorInfoCopy = new SActInfo();

   psActorInfoCopy->dwActId = (iteAc->second)->dwActId;
   psActorInfoCopy->strDescribe = (iteAc->second)->strDescribe;
   psActorInfoCopy->strFileName = (iteAc->second)->strFileName;
   psActorInfoCopy->strPicName = (iteAc->second)->strPicName;
   pmActorCopy->insert(PairAct(iteAc->first, psActorInfoCopy));
  }
  this->m_mCategoryInfo.insert(PairCate(ite->first, pmActorCopy));
 }
 return *this;
}

/**
 * the destuctor
 */
CActorCategory::~CActorCategory()
{
 MapAct* pmActorTemp;
 MapCate::iterator ite = m_mCategoryInfo.begin();
 MapCate::iterator end = m_mCategoryInfo.end();
 for( ; ite!=m_mCategoryInfo.end(); ++ite)
 {
  pmActorTemp = ite->second;
  for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
  {
   delete iteAc->second;
   
  }
  delete pmActorTemp;
 }
 m_mCategoryInfo.clear();
}

void CActorCategory::Clear()
{
 MapAct* pmActorTemp;
 MapCate::iterator ite = m_mCategoryInfo.begin();
 MapCate::iterator end = m_mCategoryInfo.end();
 for( ; ite!=m_mCategoryInfo.end(); ++ite)
 {
  pmActorTemp = ite->second;
  for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
  {
   delete iteAc->second;
  }
  delete pmActorTemp;
 }
 m_mCategoryInfo.clear();
}

/**
 * 新增物品類別
 */
bool CActorCategory::InsertCate(const string &strCate)  //將類別strCate1插入
{
 m_mCategoryInfo.insert(PairCate(strCate,new MapAct()));
 return true;
}

/**
 * 更新類別的名稱為strNewCate1
 */
void CActorCategory::UpdateCateName(const string &strOldCate, const string &strNewCate)
{
    if (strNewCate != strOldCate)
    {
        MapCate::iterator itFind = m_mCategoryInfo.find(strOldCate);
        if (itFind != m_mCategoryInfo.end())
        {
            m_mCategoryInfo.insert(PairCate(strNewCate, itFind->second));
            m_mCategoryInfo.erase(strOldCate);
        }
    }
}

/**
 * 刪除類別
 */
bool CActorCategory::DeleteCate(int index)
{
 MapAct* pmActorTemp;
 int i = 0;
 MapCate::iterator end = m_mCategoryInfo.end();
 for(MapCate::iterator ite = m_mCategoryInfo.begin(); ite!=end; ++ite)
 {
  if(i == index)
  {
   pmActorTemp = ite->second;
   for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
   {
    delete iteAc->second;
   }
   delete pmActorTemp;

   m_mCategoryInfo.erase(ite);
   return true;
  }
  ++i;
 }
 return false;
}

/**
 * 刪除類別
 */
bool CActorCategory::DeleteCate(const string &strCateName)
{
 MapCate::iterator ite = m_mCategoryInfo.find(strCateName);
 MapAct* pmActorTemp = ite->second;
 for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
 {
  delete iteAc->second;
 }
 delete pmActorTemp;
 m_mCategoryInfo.erase(ite);
 return true;
}

/**
 * 將物件strActorName從類別strSrcCateName中移入類別strDestCateName中
 */
bool CActorCategory::MoveTo(const string &strDestCateName, const string &strSrcCateName, const string &strActorName)
{
 if(strDestCateName == strSrcCateName)
 {
  return false;
 }
   
    MapCate::iterator itSrcCate  = m_mCategoryInfo.find(strSrcCateName);
    MapCate::iterator itDescCate = m_mCategoryInfo.find(strDestCateName);
    MapCate::iterator itEndCate  = m_mCategoryInfo.end();
    if ((itSrcCate == itEndCate) || (itDescCate == itEndCate))
    {
        return false;
    }

    MapAct* pmActorSrc  = itSrcCate->second;
    MapAct::iterator itSrcAct = pmActorSrc->find(strActorName);
    if (itSrcAct == pmActorSrc->end())
    {
        return false;
    }

    itDescCate->second->insert(PairAct(strActorName, itSrcAct->second));
    pmActorSrc->erase(strActorName);

 return true;
}

bool CActorCategory::InsertActor(const string &strCateName, const string &strActorName, SActInfo* pActInfo)
{
    MapCate::iterator iteCate = m_mCategoryInfo.find(strCateName);
 MapCate::iterator iteEnd = m_mCategoryInfo.end();
 if(iteCate == iteEnd)
 {
        InsertCate(strCateName);
    }
    iteCate = m_mCategoryInfo.find(strCateName);
    assert(iteCate!=iteEnd);
 MapAct* pmActorTemp = iteCate->second;
 pmActorTemp->insert(PairAct(strActorName, pActInfo));
 return true;
}

/*
bool CActorCategory::InsertActor(const string &strCate1, const string &strActorName) //將物件添加到類別中
{
 MapActor* pmActorTemp = m_mCategoryInfo.find(strCate1)->second;
 return pmActorTemp->insert(PairActor(strActorName, new SActorInformation()));
}
*/

void CActorCategory::UpdateActor(const string &strCateName, const string &strOldActor, const string &strNewActor)  //更新物件的名稱
{
 MapCate::iterator ite = m_mCategoryInfo.find(strCateName);
    if (ite != m_mCategoryInfo.end())
    {
        MapAct* pmActorTemp = ite->second;
        MapAct::iterator itAct = pmActorTemp->find(strOldActor);
        if ((itAct != pmActorTemp->end()) && (strNewActor != strOldActor))
        {
            pmActorTemp->insert(PairAct(strNewActor, itAct->second));
            pmActorTemp->erase(strOldActor);
        }
    }
}

DWORD CActorCategory::GetActorIdByName(const string &strActorName)
{
 MapAct* pmActorTemp;
 MapCate::iterator end = m_mCategoryInfo.end();
 for(MapCate::iterator ite = m_mCategoryInfo.begin(); ite!=end; ++ite)
 {
  pmActorTemp = ite->second;
  MapAct::iterator iteFind = pmActorTemp->find(strActorName);
  if(iteFind != pmActorTemp->end())
  {
   return (iteFind->second)->dwActId;
  }
 }
 return 0;
}

/**
 * 返回所有的分類信息名稱
 */
void CActorCategory::GetCategoryString(list<string> & lstRes)
{
 MapCate::iterator ite = m_mCategoryInfo.begin();
 MapCate::iterator end = m_mCategoryInfo.end();
 for( ; ite!=end; ++ite)
 {
  lstRes.push_back(ite->first);
 }
}

void CActorCategory::GetActorString(const string &strCate1, list<string> &lstRes)  //返回某一分類的所有物件
{
 MapAct* pmActorTemp = (m_mCategoryInfo.find(strCate1))->second;
 MapAct::iterator iteA = pmActorTemp->begin();
 MapAct::iterator end = pmActorTemp->end();
 for( ; iteA!=end; ++iteA)
 {
  lstRes.push_back(iteA->first);
 }
}

bool CActorCategory::RebuldFromServer()
{
    Clear();
    CActorTable actTable;
    actTable.LoadTable(TABLE_FILE);
    MapTable* pTable = actTable.GetTable();
    struct SActTable* psActTable;
    struct SActInfo* psActInfo;
    for(MapTable::iterator ite=pTable->begin(); ite!=pTable->end(); ++ite)
    {
        psActTable = ite->second;
        psActInfo = new SActInfo();
        psActInfo->dwActId = psActTable->dwActId;
        psActInfo->strFileName = psActTable->strFileName;
        psActInfo->strDescribe = psActTable->strDescribe;
        InsertActor("未分類", psActTable->strActName, psActInfo);
    }
    return true;
}

bool CActorCategory::UpdateFromServer()
{
    CActorTable actTable;
    actTable.LoadTable(TABLE_FILE);
    MapTable* pTable = actTable.GetTable();
    struct SActTable* psActTable;
    struct SActInfo* psActInfo;
    string strFileName;
    for(MapTable::iterator ite=pTable->begin(); ite!=pTable->end(); ++ite)
    {
        psActTable = ite->second;
        strFileName = psActTable->strFileName;
        if(!HasFile(strFileName))
        {
          psActInfo = new SActInfo();
          psActInfo->dwActId = psActTable->dwActId;
          psActInfo->strFileName = psActTable->strFileName;
          psActInfo->strDescribe = psActTable->strDescribe;
          InsertActor("未分類", psActTable->strFileName, psActInfo);
        }
    }
    return true;
}

bool CActorCategory::HasFile(const string& strFileName)
{
    SActInfo* psAct;
 MapAct* pmActorTemp;
 MapCate::iterator ite = m_mCategoryInfo.begin();
 MapCate::iterator end = m_mCategoryInfo.end();
 for( ; ite!=m_mCategoryInfo.end(); ++ite)
 {
  pmActorTemp = ite->second;
  for(MapAct::iterator iteAc=pmActorTemp->begin(); iteAc!=pmActorTemp->end(); ++iteAc)
  {
           psAct = iteAc->second;
           if(psAct->strFileName == strFileName)
           {
               return true;
           }
        }
    }
    return false;
}

/**
 * 供測試用
 *//*
bool CActorCategory::LoadFromXML(const string &strFileName)
{
 MapAct* pmActorTemp = new map<string, struct SActInfo*>();
 pmActorTemp->insert( PairAct("Tom",new struct SActInfo()) );
 pmActorTemp->insert( PairAct("Jim",new struct SActInfo()) );

 m_mCategoryInfo.insert(PairCate("人物",pmActorTemp));

    delete pmActorTemp;
 return true;
}
*/

bool CActorCategory::LoadFromXML(const string &strFileName)
{
    Clear();
 string strInfo;
 string strFileFullName=strFileName;
 if(strFileFullName.empty())
 {
  strFileFullName = "ActCate.xml";
 }
 ifstream ifs(strFileFullName.c_str()); //


 char buf[1024] = {0};
 while(ifs.good())
 {
  ifs.getline(buf, sizeof(buf));
  strInfo.append(buf);
 }

 //cout<<strInfo.c_str()<<endl;

 CMarkup xml;
 xml.SetDoc( (strInfo.c_str()) );
 while ( xml.FindChildElem("Category") )
 {
  MapAct* pmActorTemp = new MapAct();
  xml.IntoElem();
  xml.FindChildElem( "CateName" );
  string strCateName1 = xml.GetChildData();
  while(xml.FindChildElem("Act"))
  {
   xml.IntoElem();
   xml.FindChildElem("ActName");
   string strActorName1 = xml.GetChildData();

   xml.FindChildElem("ActId");
   string strActId1 = xml.GetChildData();
   
   xml.FindChildElem("File");
   string strFileName1 = xml.GetChildData();

   xml.FindChildElem("Pic");
   string strPic1 = xml.GetChildData();
   
   xml.FindChildElem("Des");
   string strDes1 = xml.GetChildData();
   
   struct SActInfo* pSActInfo1 = new SActInfo();
   pSActInfo1->dwActId = atol(strActId1.c_str());
   pSActInfo1->strFileName = strFileName1;
   pSActInfo1->strPicName = strPic1;
   pSActInfo1->strDescribe = strDes1;

   pmActorTemp->insert( PairAct(strActorName1,pSActInfo1) );
   xml.OutOfElem();
   //cout<<strActorName1<<endl;
  }
  m_mCategoryInfo.insert( PairCate(strCateName1, pmActorTemp) );

  xml.OutOfElem();
 }

 return true;
}

bool CActorCategory::SaveToXML(const string &strFileName/*="GameActors.xml"*/)
{
 ostrstream strInfo;
 string strFileFullName=strFileName;
 if(strFileFullName.empty())
 {
  strFileFullName = "GameActors.xml";
 }
 ofstream out(strFileFullName.c_str());//生成文件輸出流

 strInfo<<"<Actors>"<<endl;
 strInfo<<"<FileVersion>0.2</FileVersion>"<<endl<<endl;

 MapAct* pmActorTemp;
 MapCate::iterator ite = m_mCategoryInfo.begin();
 MapCate::iterator end = m_mCategoryInfo.end();
 for( ; ite!=end; ++ite)
 {
  strInfo<<"<Category>"<<endl;

  strInfo<<(char)0x9<<"<CateName>";
  strInfo<<ite->first.c_str();
  strInfo<<"</CateName>"<<endl;

  pmActorTemp = ite->second;
  for(MapAct::iterator ite2 = pmActorTemp->begin(); ite2!=pmActorTemp->end(); ++ite2)
  {
   strInfo<<(char)0x9<<"<Act>"<<endl;
   strInfo<<(char)0x9<<(char)0x9<<"<ActName>";
   strInfo<<ite2->first.c_str();
   strInfo<<"</ActName>"<<endl;

   strInfo<<(char)0x9<<(char)0x9<<"<ActId>";
   strInfo<<(ite2->second)->dwActId;
   strInfo<<"</ActId>"<<endl;

   strInfo<<(char)0x9<<(char)0x9<<"<File>";
   strInfo<<(ite2->second)->strFileName.c_str();
   strInfo<<"</File>"<<endl;

   strInfo<<(char)0x9<<(char)0x9<<"<Pic>";
   strInfo<<(ite2->second)->strPicName.c_str();
   strInfo<<"</Pic>"<<endl;

   strInfo<<(char)0x9<<(char)0x9<<"<Des>";
   strInfo<<(ite2->second)->strDescribe.c_str();
   strInfo<<"</Des>"<<endl;

   strInfo<<(char)0x9<<"</Act>"<<endl;
  }
  strInfo<<"</Category>"<<endl<<endl;

 }

 strInfo<<"</Actors>"<<endl;
 strInfo<<'\0';
 out<<strInfo.str();
 //cout<<strInfo.str();

 return true;
}

 

posted on 2007-12-22 15:34 晨風 閱讀(465) 評論(0)  編輯 收藏 引用

My Links

Blog Stats

常用鏈接

留言簿(1)

隨筆分類

隨筆檔案

搜索

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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| 亚洲性夜色噜噜噜7777| 亚洲永久字幕| 久久久久看片| 亚洲高清视频中文字幕| 欧美成人dvd在线视频| 欧美α欧美αv大片| 亚洲精品免费网站| 亚洲在线第一页| 久久久久久久999| 欧美日韩八区| 国产亚洲视频在线| 日韩手机在线导航| 久久精品首页| 日韩视频久久| 久久激情综合网| 欧美日韩国产成人在线91| 国产日韩av一区二区| 亚洲精品中文字幕在线| 久久久91精品| 一区二区高清视频| 女人天堂亚洲aⅴ在线观看| 国产精品成人一区二区艾草| 精品va天堂亚洲国产| 亚洲一区二区视频在线| 欧美顶级艳妇交换群宴| 亚洲欧美日韩综合国产aⅴ| 蜜臀va亚洲va欧美va天堂| 国产精品二区在线| 亚洲国产一区在线| 久久久青草婷婷精品综合日韩| 日韩一级不卡| 牛牛影视久久网| 黄色av成人| 久久爱91午夜羞羞| 国产精品99久久久久久久久久久久 | 亚洲欧美高清| 91久久夜色精品国产九色| 欧美一区高清| 国产精品扒开腿爽爽爽视频| 亚洲三级免费| 欧美成人tv| 一区二区三区四区五区视频 | 国产一区二区在线观看免费| 一区二区不卡在线视频 午夜欧美不卡'| 久久精品视频一| 亚洲免费在线视频| 国产精品高潮呻吟久久av黑人| 亚洲精品社区| 亚洲国产精品视频| 毛片基地黄久久久久久天堂| 狠狠干综合网| 欧美99久久| 久久中文久久字幕| 亚洲国产第一页| 欧美二区视频| 欧美国产日韩在线| 99亚洲一区二区| 一本久道综合久久精品| 欧美日韩直播| 午夜精品亚洲一区二区三区嫩草| 一区二区免费看| 国产精品乱看| 久久久久久久一区二区| 久久久久久久久伊人| 影音国产精品| 亚洲欧洲免费视频| 欧美吻胸吃奶大尺度电影| 亚洲嫩草精品久久| 亚洲欧美综合精品久久成人| 国产午夜精品理论片a级探花| 久久男人av资源网站| 久久综合九色欧美综合狠狠| 最近中文字幕mv在线一区二区三区四区| 免费观看不卡av| 欧美激情自拍| 欧美在线三区| 久久夜色精品国产噜噜av| 亚洲黄网站在线观看| 日韩网站在线观看| 国产日韩精品在线| 欧美激情国产日韩| 国产精品高潮呻吟久久av黑人| 久久久蜜桃一区二区人| 欧美精品一卡| 久久激情婷婷| 欧美日韩精品三区| 久久亚洲一区二区| 欧美日韩国产在线看| 久久精品毛片| 欧美日韩免费在线观看| 久久久噜噜噜久久久| 欧美国产亚洲精品久久久8v| 午夜精品久久久久| 欧美wwwwww| 久久精品72免费观看| 欧美精品系列| 欧美大片网址| 国产亚洲精品一区二区| 亚洲精品久久久久中文字幕欢迎你| 国产精品v欧美精品v日韩| 欧美暴力喷水在线| 午夜精品一区二区三区电影天堂| 黄色亚洲大片免费在线观看| aa国产精品| 亚洲激情综合| 久久久精品国产99久久精品芒果| 亚洲一区二区三区色| 免费av成人在线| 久久婷婷麻豆| 国产精品永久入口久久久| 亚洲精品欧美一区二区三区| 在线不卡a资源高清| 亚洲欧美卡通另类91av| 这里只有精品电影| 欧美精品www在线观看| 美女精品网站| 激情六月婷婷综合| 欧美一区二区日韩一区二区| 亚洲一区二区三区四区在线观看 | 洋洋av久久久久久久一区| 久久久精品性| 久久久久国产精品午夜一区| 国产精品私人影院| 亚洲最新色图| 在线亚洲成人| 欧美日韩在线一区二区| 亚洲级视频在线观看免费1级| 在线成人国产| 久久久久一区| 免费一级欧美片在线观看| 国内精品免费午夜毛片| 欧美在线视频二区| 久久99在线观看| 国产午夜精品福利| 久久视频精品在线| 亚洲成人中文| 99精品久久免费看蜜臀剧情介绍| 噜噜噜久久亚洲精品国产品小说| 老色鬼久久亚洲一区二区 | 国产精品视频网站| 亚洲网站在线看| 小处雏高清一区二区三区 | 国产一区二区三区日韩| 久久av在线看| 美女在线一区二区| 亚洲欧洲一区二区三区| 欧美国产日韩视频| 一区二区激情| 久久久久国产成人精品亚洲午夜| 国产自产v一区二区三区c| 久久青草久久| 91久久综合亚洲鲁鲁五月天| 亚洲特级片在线| 国产一区二区三区精品久久久| 久久精品国产免费看久久精品| 男男成人高潮片免费网站| 亚洲精品乱码视频 | 亚洲国产精品ⅴa在线观看| 欧美不卡在线| 中文在线不卡| 牛牛精品成人免费视频| 一本色道久久综合亚洲精品高清| 久久精品国产一区二区电影| 欧美成人精品不卡视频在线观看 | 一区二区黄色| 久久久久免费观看| 一区二区高清视频在线观看| 国产女主播一区二区| 免费一级欧美片在线观看| 亚洲视频999| 欧美本精品男人aⅴ天堂| 亚洲在线免费观看| 精久久久久久| 国产精品亚洲综合一区在线观看 | 欧美日本高清一区| 午夜欧美大片免费观看| 亚洲国产精品第一区二区| 亚洲欧美日韩一区二区三区在线 | 久久国产精品一区二区三区四区| 亚洲第一狼人社区| 国产精品久久久久一区二区| 蜜臀av一级做a爰片久久| 午夜欧美精品久久久久久久| 亚洲精品一区二区三区在线观看 | 国产伦精品一区二区三区在线观看 | 激情小说另类小说亚洲欧美 | 日韩视频永久免费观看| 国产午夜亚洲精品理论片色戒| 欧美激情亚洲自拍| 久久精品夜色噜噜亚洲aⅴ| 亚洲一区二区三区免费观看| 亚洲欧洲日韩女同| 欧美激情久久久| 美女主播精品视频一二三四| 久久日韩精品| 久久婷婷丁香|