本文整理汇总了C++中TSharedPtr::AccessItem方法的典型用法代码示例。如果您正苦于以下问题:C++ TSharedPtr::AccessItem方法的具体用法?C++ TSharedPtr::AccessItem怎么用?C++ TSharedPtr::AccessItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TSharedPtr
的用法示例。
在下文中一共展示了TSharedPtr::AccessItem方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MeasureStringInternal
FVector2D FSlateFontMeasure::MeasureStringInternal( const FString& Text, int32 StartIndex, int32 EndIndex, const FSlateFontInfo& InFontInfo, bool IncludeKerningWithPrecedingChar, float FontScale, int32 StopAfterHorizontalOffset, ELastCharacterIndexFormat CharIndexFormat, int32& OutLastCharacterIndex ) const
{
SCOPE_CYCLE_COUNTER(STAT_SlateMeasureStringTime);
FCharacterList& CharacterList = FontCache->GetCharacterList( InFontInfo, FontScale );
const uint16 MaxHeight = CharacterList.GetMaxHeight();
const bool DoesStartAtBeginning = StartIndex == 0;
const bool DoesFinishAtEnd = EndIndex == Text.Len();
const int32 TextRangeLength = EndIndex - StartIndex;
if ( EndIndex - StartIndex <= 0 || EndIndex <= 0 || StartIndex < 0 || EndIndex <= StartIndex )
{
return FVector2D( 0, MaxHeight );
}
#define USE_MEASURE_CACHING 1
#if USE_MEASURE_CACHING
TSharedPtr< FMeasureCache > CurrentMeasureCache = NULL;
// Do not cache strings which have small sizes or which have complicated measure requirements
if( DoesStartAtBeginning && DoesFinishAtEnd && !IncludeKerningWithPrecedingChar && TextRangeLength > 5 && StopAfterHorizontalOffset == INDEX_NONE )
{
FSlateFontKey FontKey(InFontInfo,FontScale);
TSharedPtr< FMeasureCache > FoundMeasureCache = FontToMeasureCache.FindRef( FontKey );
if ( FoundMeasureCache.IsValid() )
{
CurrentMeasureCache = FoundMeasureCache;
const FVector2D* CachedMeasurement = CurrentMeasureCache->AccessItem( Text );
if( CachedMeasurement )
{
return *CachedMeasurement;
}
}
else
{
CurrentMeasureCache = MakeShareable( new FMeasureCache( FontMeasureConstants::MeasureCacheSize ) );
FontToMeasureCache.Add( FontKey, CurrentMeasureCache );
}
}
#endif
// The size of the string
FVector2D Size(0,0);
// Widest line encountered while drawing this text.
int32 MaxLineWidth = 0;
// The width of the current line so far.
int32 CurrentX = 0;
// Accumulated height of this block of text
int32 StringSizeY = MaxHeight;
// The previous char (for kerning)
TCHAR PreviousChar = 0;
//If we are measuring a range then we should take into account the kerning with the character before the start of the range
if ( !DoesStartAtBeginning && IncludeKerningWithPrecedingChar )
{
PreviousChar = Text[ StartIndex - 1 ];
}
int32 FinalPosX = 0;
int32 CharIndex;
for( CharIndex = StartIndex; CharIndex < EndIndex; ++CharIndex )
{
TCHAR CurrentChar = Text[CharIndex];
const bool IsNewline = (CurrentChar == '\n');
if (IsNewline)
{
// New line means
// 1) we accumulate total height
StringSizeY += MaxHeight;
// 2) update the longest line we've encountered
MaxLineWidth = FMath::Max(CurrentX, MaxLineWidth);
// 3) the next line starts at the beginning
CurrentX = 0;
}
else
{
const FCharacterEntry& Entry = CharacterList[CurrentChar];
int32 Kerning = 0;
if( CharIndex > 0 )
{
Kerning = CharacterList.GetKerning( PreviousChar, CurrentChar );
}
const int32 TotalCharSpacing =
Kerning + Entry.HorizontalOffset + // Width is any kerning plus how much to advance the position when drawing a new character
Entry.XAdvance; // How far we advance
PreviousChar = CurrentChar;
CurrentX += Kerning + Entry.XAdvance;
// Were we asked to stop measuring after the specified horizontal offset in pixels?
if( StopAfterHorizontalOffset != INDEX_NONE )
{
if( CharIndexFormat == ELastCharacterIndexFormat::CharacterAtOffset )
{
// Round our test toward the character's center position
//.........这里部分代码省略.........