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

你的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>
            午夜欧美电影在线观看| 久久影院午夜片一区| 99国产精品久久久久老师| 欧美精品99| 一区二区三区四区国产| 99国产精品99久久久久久粉嫩| 欧美日韩午夜在线| 欧美一区二区三区视频在线| 欧美一区二区三区在线观看| 亚洲丶国产丶欧美一区二区三区| 欧美激情区在线播放| 欧美日韩久久精品| 欧美中文在线视频| 久久综合激情| 亚洲一区二区在线看| 午夜精品免费视频| 亚洲国产精品热久久| 亚洲少妇诱惑| 在线观看精品一区| 亚洲美女电影在线| 国内外成人免费激情在线视频网站 | 午夜亚洲福利在线老司机| 激情久久五月| 99热免费精品在线观看| 国内一区二区在线视频观看| 亚洲国产成人久久综合一区| 国产精品高潮粉嫩av| 欧美成人精品福利| 欧美午夜一区二区三区免费大片| 久久久噜噜噜久噜久久| 欧美日韩免费区域视频在线观看| 久久精品人人做人人爽| 欧美久久影院| 乱人伦精品视频在线观看| 国产精品国色综合久久| 亚洲国产成人久久综合| 狠狠色狠狠色综合系列| 99精品热视频| 亚洲精品中文字幕在线观看| 欧美一区二区精品在线| 亚洲女爱视频在线| 欧美护士18xxxxhd| 美日韩精品免费观看视频| 国产色产综合产在线视频| 夜夜嗨av一区二区三区中文字幕 | 欧美在线视频一区二区| 欧美美女日韩| 最新国产精品拍自在线播放| 1000部国产精品成人观看| 欧美一级精品大片| 亚洲综合精品自拍| 欧美日韩在线大尺度| 你懂的国产精品| 狠狠狠色丁香婷婷综合激情| 亚洲欧美在线aaa| 午夜国产精品影院在线观看| 欧美午夜精品一区| 日韩一区二区免费看| 一本久久综合| 欧美日韩视频专区在线播放| 亚洲精品视频在线观看网站| 日韩一二在线观看| 欧美国产一区二区在线观看| 亚洲国产精品视频| 亚洲美女精品一区| 欧美激情二区三区| 亚洲美女中文字幕| 亚洲一区亚洲| 国产精品色午夜在线观看| 亚洲一区中文字幕在线观看| 亚洲综合精品自拍| 国产一区二区精品久久91| 欧美中文在线观看| 玖玖视频精品| 亚洲久久一区| 国产精品成人一区二区三区夜夜夜 | 91久久黄色| 亚洲一区二区免费在线| 国产精品久久久久久久7电影| 亚洲婷婷免费| 久久夜色精品国产欧美乱极品| 黄色小说综合网站| 欧美国产在线电影| 亚洲一区二区在线看| 久久精品日韩欧美| 亚洲全部视频| 欧美三区在线视频| 久久国内精品自在自线400部| 欧美激情亚洲自拍| 亚洲淫性视频| 亚洲成色最大综合在线| 欧美久久一区| 欧美一区在线直播| 亚洲国产美女| 欧美综合国产| 亚洲美女视频在线免费观看| 国产精品视区| 麻豆精品视频在线| 亚洲影视九九影院在线观看| 免费观看欧美在线视频的网站| 亚洲精品之草原avav久久| 国产精品一二三四区| 欧美不卡视频一区发布| 亚洲一区黄色| 亚洲国产综合视频在线观看| 久久精品一二三| 在线综合亚洲欧美在线视频| 国产亚洲一区精品| 欧美日本三级| 另类激情亚洲| 欧美尤物一区| 中国成人在线视频| 91久久精品国产91性色| 久久米奇亚洲| 欧美一区二区三区四区夜夜大片| 亚洲国产日韩一区二区| 国产亚洲一区二区三区在线播放| 欧美激情网友自拍| 久久综合久久久久88| 亚洲欧美不卡| 亚洲视频电影图片偷拍一区| 亚洲国产一二三| 蜜臀va亚洲va欧美va天堂| 午夜日本精品| 亚洲一区在线视频| 日韩一级成人av| 亚洲国产高潮在线观看| 伊人久久久大香线蕉综合直播 | 久久久亚洲国产美女国产盗摄| 亚洲一区二区黄| 亚洲精品欧美在线| 亚洲黄色影院| 亚洲高清二区| 亚洲第一成人在线| 欧美v国产在线一区二区三区| 欧美一区二区三区喷汁尤物| 亚洲欧美一区二区三区久久| 亚洲一区二区三区精品动漫| 亚洲一级在线观看| 亚洲欧美精品一区| 午夜精品免费| 欧美中文在线观看国产| 午夜精品美女自拍福到在线 | 亚洲精品乱码| 99精品欧美一区二区三区综合在线 | 国产主播一区二区三区四区| 国产日韩在线看| 国内精品美女av在线播放| 国内一区二区在线视频观看| 在线播放豆国产99亚洲| 亚洲国产高清aⅴ视频| 亚洲精品久久久久久下一站 | 另类酷文…触手系列精品集v1小说| 久久人体大胆视频| 免费看亚洲片| 亚洲经典自拍| 亚洲色图综合久久| 欧美一区二区观看视频| 久久亚洲国产精品日日av夜夜| 蜜桃av噜噜一区| 欧美日韩一二区| 国产日本欧美一区二区三区| 在线免费观看日本欧美| 亚洲免费大片| 性色av一区二区怡红| 麻豆91精品91久久久的内涵| 亚洲国产三级| 亚洲综合另类| 免费一级欧美片在线播放| 国产精品video| 在线日韩一区二区| 亚洲小说欧美另类社区| 久久久国产一区二区| 亚洲国产精品久久精品怡红院| 99在线精品视频| 久久精品国产成人| 欧美日韩一区二区三区视频| 国产一区观看| 亚洲视频一二| 模特精品在线| 亚洲一区二区在线观看视频| 免费久久99精品国产| 国产精品成人一区| 最新日韩在线| 久久精品人人做人人爽| 99这里只有久久精品视频| 久久精品亚洲精品国产欧美kt∨| 欧美日韩成人在线播放| 激情一区二区| 亚洲欧美激情诱惑| 亚洲欧洲综合另类在线| 久久爱www.| 国产精品一区一区三区| 一区二区三区不卡视频在线观看| 久久亚洲影院| 欧美一级淫片aaaaaaa视频| 欧美三级韩国三级日本三斤| 亚洲国产精品日韩| 毛片av中文字幕一区二区| 午夜精品美女自拍福到在线|