当前位置: 首页>>代码示例>>C++>>正文


C++ SynGram::GetDict方法代码示例

本文整理汇总了C++中SynGram::GetDict方法的典型用法代码示例。如果您正苦于以下问题:C++ SynGram::GetDict方法的具体用法?C++ SynGram::GetDict怎么用?C++ SynGram::GetDict使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SynGram的用法示例。


在下文中一共展示了SynGram::GetDict方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: LoadPoint

void SG_ComplexLink::LoadPoint( Macro_Parser &txtfile, SynGram &gram, lem::UFString &entry )
{
 BethToken t = txtfile.read();

 if( t.GetToken()==B_ENTRY )
  {
   // Особый формат entry Класс:Статья { уточнение }
   // преобразуется в ключ статьи и возвращается в виде #ключ
   UCString class0 = txtfile.read().string();
   const int ic0 = class0==L"?" ? ANY_STATE : gram.FindClass(class0);
   if( ic0==UNKNOWN ) 
    {
     Print_Error( txtfile );
     gram.GetIO().merr().printf( "Unknown class %us\n", class0.c_str() );
     throw E_BaseException();
    }

   txtfile.read_it( B_COLON );
   UCString entry0 = sol_read_multyname( gram.GetIO(), txtfile, B_OFIGPAREN );
   entry0.strip(L'"');
   entry0.trim();

   // Может быть задана дополнительная фильтрующая координата
   Solarix::CP_Array coords0;
   coords0.LoadTxt( txtfile, gram );
   
   if( gram.IsOmonym(ic0,lem::to_upper(entry0)) && coords0.empty() )
    {
     Print_Error( txtfile );
     gram.GetIO().merr().printf( "Omonym %us:%us requires the coordinate array\n", class0.c_str(), entry0.c_str() );
     throw E_BaseException();
    }

   const int ie0 = coords0.empty() ? gram.FindEntry(entry0,ic0,false) : gram.FindEntryOmonym(entry0,ic0,coords0);
   if( ie0==UNKNOWN ) 
    {
     Print_Error( txtfile );
     gram.GetIO().merr().printf( "Unknown entry %us:%us\n", class0.c_str(), entry0.c_str() );
     throw E_BaseException();
    }

   const int ekey = gram.GetEntry(ie0).GetKey();
   entry = lem::format_str( L"#%d", ekey );

   return;
  }

 bool figparen = t.GetToken()==B_OFIGPAREN;

 if( !figparen )
  txtfile.seekp(t);
 
 entry.reserve(128);

 if( t.string()==L'@' )
  {
   entry = L'@';
   t = txtfile.read();
  }

 while( !txtfile.eof() )
  {
   BethToken t = txtfile.read();
   if( figparen && t.GetToken()==B_CFIGPAREN )
    break;
   
   if( !entry.empty() )
    entry.Add_Dirty(L' ');

   UFString ts( t.GetFullStr() );
   ts.strip(L'"');
   entry.Add_Dirty( ts );

   if( !figparen )
    break;
  }

 entry.calc_hash();

 if( entry.front()==L'@' )
  {
   // Спецсимвол @ заставляет запомнить строку в виде "как есть"
   entry.remove(0);
   entry.trim();
  }
 else
  {
   entry.strip(L'"');
   gram.GetDict().GetLexAuto().TranslateLexem(entry,true);
  }

 return;
}
开发者ID:mcdir,项目名称:GrammarEngine,代码行数:93,代码来源:sg_complex_link.cpp

示例2: SG

CasingCoder::CasingCoder( SynGram &sg )
 : SG(sg)
{
 default_xlat = new XLAT();
 default_xlat->use_unicode = true;

 GraphGram &gg = sg.GetDict().GetGraphGram();
 LexicalAutomat &la = sg.GetDict().GetLexAuto();

 Lower=UNKNOWN; FirstCapitalized=UNKNOWN; Upper=UNKNOWN; EachLexemCapitalized=UNKNOWN;
 UnknownEntries_ekey=UNKNOWN;

 icoord_casing = sg.FindCoord( L"CharCasing" ).GetIndex();

 if( icoord_casing!=UNKNOWN )
 {
  const Solarix::GramCoord &c = sg.coords()[icoord_casing];
  Lower = c.FindState( L"Lower" );
  FirstCapitalized = c.FindState(L"FirstCapitalized");
  Upper = c.FindState(L"Upper");
  EachLexemCapitalized = c.FindState(L"EachLexemCapitalized");
  UnknownEntries_ekey = la.GetUnknownEntryKey();


// ------
//lem::FString msg = lem::format_str( "icoord_casing=%d Lower=%d FirstCapitalized=%d Upper=%d", icoord_casing, Lower, FirstCapitalized, Upper );
//MessageBox( NULL, msg.c_str(), "DEBUG-2", MB_OK );
// ------
 }

 // Определим языки вывода по-умолчанию
 sg.GetLanguageUsage().GetOutputLanguages(default_xlat->id_langs);
 
 // Для каждого языка смотрим имена таблиц для перевода в верхний и нижний регистры.
 for( lem::Container::size_type i=0; i<default_xlat->id_langs.size(); ++i )
  {
   const int id_lang = default_xlat->id_langs[i];
   const SG_Language &lang = sg.languages()[id_lang];

   const int iparam_l = lang.FindParam( L"LowerCase", 0 );
   if( iparam_l!=UNKNOWN )
    {
     const lem::UFString &xlat_name = lang.params[iparam_l]->values.front();
     const GG_CharOperation *xlat = gg.GetCharOperations()[xlat_name.c_str()];
     default_xlat->lower_xlat.push_back(xlat);
    }

   const int iparam_u = lang.FindParam( L"UpperCase", 0 );
   if( iparam_u!=UNKNOWN )
    {
     const lem::UFString &xlat_name = lang.params[iparam_u]->GetValue();
     const GG_CharOperation *xlat = gg.GetCharOperations()[xlat_name.c_str()];
     default_xlat->upper_xlat.push_back(xlat);
    }
  }

 if( !default_xlat->upper_xlat.empty() && !default_xlat->lower_xlat.empty() )
  default_xlat->use_unicode = false;

 for( lem::Container::size_type i=0; i<default_xlat->id_langs.size(); ++i )
  lang2xlat.insert( std::make_pair( default_xlat->id_langs[i], default_xlat ) );

 return;
}
开发者ID:mcdir,项目名称:GrammarEngine,代码行数:64,代码来源:casing_coder.cpp


注:本文中的SynGram::GetDict方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。