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

你的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 晨風 閱讀(471) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


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>
            久久国产日本精品| 国产视频在线观看一区| 在线免费观看成人网| 老鸭窝91久久精品色噜噜导演| 欧美一区二区三区久久精品茉莉花| 尤物yw午夜国产精品视频明星| 亚洲国产日韩欧美在线图片| 女生裸体视频一区二区三区| 亚洲视频一区| 欧美在线观看视频一区二区| 亚洲人成网在线播放| 亚洲一区日本| 亚洲国产精品传媒在线观看 | 美女免费视频一区| 中国女人久久久| 久久久久九九九| 中文成人激情娱乐网| 欧美一区亚洲| 亚洲综合另类| 欧美高清视频一区| 久久青草久久| 国产精品成人国产乱一区| 欧美大学生性色视频| 国产网站欧美日韩免费精品在线观看 | 一卡二卡3卡四卡高清精品视频| 激情欧美一区二区三区在线观看| 日韩一区二区高清| 亚洲激情在线观看| 久久精品国产久精国产一老狼| 在线中文字幕一区| 国产亚洲欧洲一区高清在线观看| 久久亚洲精选| 亚洲一区二区精品在线| 久久亚洲国产成人| 欧美一区在线直播| 欧美性一二三区| 亚洲精品一区二| 亚洲国产精品小视频| 欧美在线一区二区三区| 午夜一区二区三视频在线观看| 欧美日本国产视频| 欧美激情影院| 91久久国产综合久久蜜月精品| 欧美在线视频观看免费网站| 性欧美xxxx视频在线观看| 欧美日韩精品一区| 亚洲精品美女久久7777777| 亚洲黄色在线| 蜜桃av噜噜一区二区三区| 久久久久欧美精品| 免费成年人欧美视频| 国产欧美视频一区二区| 亚洲巨乳在线| 99国产麻豆精品| 欧美电影免费网站| 亚洲大片精品永久免费| 亚洲国产美女精品久久久久∴| 久久久噜噜噜久久狠狠50岁| 免费在线国产精品| 亚洲高清av在线| 免费不卡在线视频| 亚洲欧洲另类| 91久久在线视频| 欧美阿v一级看视频| 欧美高清在线观看| 亚洲精品一区二区三| 欧美日韩国产在线| 亚洲一区二区黄| 久久成人免费网| 在线精品视频在线观看高清| 麻豆91精品| 99精品视频免费观看| 欧美一级免费视频| 国产一区二区三区在线观看精品 | 欧美在线综合| 国产综合av| 美女在线一区二区| a91a精品视频在线观看| 欧美一区深夜视频| 亚洲国产精品一区二区www在线| 欧美大片一区二区| 亚洲小说春色综合另类电影| 久久久91精品国产| 亚洲精品综合久久中文字幕| 欧美日韩中文另类| 欧美一区二区三区在线看| 免费日韩成人| 亚洲无线一线二线三线区别av| 黄色一区二区三区四区| 亚洲黄色一区二区三区| 一本色道久久综合亚洲精品小说 | 欧美激情91| 中文精品一区二区三区| 狠狠干综合网| 欧美日韩久久久久久| 欧美伊人久久| 日韩视频在线一区二区| 欧美在线视频日韩| 99成人精品| 精品av久久707| 欧美日韩在线一区二区| 久久精品一二三区| 日韩视频在线你懂得| 欧美二区在线看| 久久国内精品自在自线400部| 亚洲伦理中文字幕| 好男人免费精品视频| 欧美午夜免费| 欧美大尺度在线| 亚洲第一成人在线| 日韩视频在线你懂得| 国产精品日韩在线一区| 99热这里只有精品8| 欧美午夜精品一区二区三区| 永久免费毛片在线播放不卡| 欧美成人国产一区二区| 亚洲国产精品视频一区| 国产精品美女久久久免费| 免费影视亚洲| 欧美伊久线香蕉线新在线| 亚洲精品视频免费| 欧美成年人视频| 久久精品2019中文字幕| 亚洲一区二区成人| 日韩午夜中文字幕| 91久久精品美女高潮| 韩国精品久久久999| 国产精品视频一| 国产精品不卡在线| 国产精品看片你懂得| 老司机精品福利视频| 新狼窝色av性久久久久久| 99视频精品| 亚洲日本中文字幕区| 亚洲高清色综合| 欧美激情a∨在线视频播放| 久久在线精品| 久久这里只有精品视频首页| 久久精品毛片| 久久久www| 米奇777超碰欧美日韩亚洲| 久久色中文字幕| 久久一区二区三区av| 久久免费国产精品1| 久久久久一区二区三区四区| 久久久久国产精品一区| 久久精品日产第一区二区| 久久久一区二区| 欧美a级大片| 亚洲大胆在线| 亚洲精品影院在线观看| 亚洲欧洲三级电影| 日韩视频专区| 一区二区三区国产精华| 免费成人高清视频| 在线观看一区| 国产一区二区三区自拍 | 亚洲国产精品电影在线观看| 精品成人国产| 亚洲国产精品成人| 91久久精品国产91久久| 夜夜夜精品看看| 午夜精品美女自拍福到在线| 欧美在线看片| 欧美大片国产精品| 亚洲三级电影在线观看 | 亚洲毛片av| 亚洲男人影院| 久久在线免费观看| 亚洲精品视频免费| 亚洲在线中文字幕| 久久久久国产精品一区二区| 巨乳诱惑日韩免费av| 欧美日韩国产另类不卡| 国产精品自拍视频| 影音先锋亚洲一区| 99国产精品| 久久精品视频在线看| 欧美激情一区三区| 亚洲综合日韩在线| 美女福利精品视频| 国产精品综合网站| 亚洲国产小视频| 亚洲免费婷婷| 欧美成年人视频| 亚洲欧美成人一区二区三区| 久久最新视频| 欧美视频精品在线| 亚洲第一福利社区| 午夜亚洲福利| 91久久香蕉国产日韩欧美9色| 亚洲欧美在线免费观看| 欧美成人精品三级在线观看| 国产精一区二区三区| 亚洲精品国产拍免费91在线| 久久精品国产99精品国产亚洲性色| 亚洲国产成人在线播放| 久久99伊人| 国产精品欧美精品| 亚洲精品国产欧美|