Fixed indention. Fixed revert.

Signed-off-by: Sandon Van Ness <[email protected]>
This commit is contained in:
Sandon Van Ness
2014-03-14 12:24:42 -07:00
parent 27e393e1c6
commit 5c588087f0
+15 -15
View File
@@ -103,7 +103,7 @@ bool ScreenNetSelectBase::Input( const InputEventPlus &input )
wchar_t c; wchar_t c;
c = INPUTMAN->DeviceInputToChar(input.DeviceI, true); c = INPUTMAN->DeviceInputToChar(input.DeviceI, true);
if( (c >= L' ') && (!bHoldingCtrl) ) if( (c >= L' ') && (!bHoldingCtrl) )
{ {
m_sTextInput += WStringToRString(wstring()+c); m_sTextInput += WStringToRString(wstring()+c);
UpdateTextInput(); UpdateTextInput();
@@ -169,7 +169,7 @@ void ScreenNetSelectBase::UpdateUsers()
for( unsigned i=0; i < NSMAN->m_ActivePlayer.size(); i++) for( unsigned i=0; i < NSMAN->m_ActivePlayer.size(); i++)
{ {
m_textUsers[i].LoadFromFont( THEME->GetPathF(m_sName,"chat") ); m_textUsers[i].LoadFromFont( THEME->GetPathF(m_sName,"users") );
m_textUsers[i].SetHorizAlign( align_center ); m_textUsers[i].SetHorizAlign( align_center );
m_textUsers[i].SetVertAlign( align_top ); m_textUsers[i].SetVertAlign( align_top );
m_textUsers[i].SetShadowLength( 0 ); m_textUsers[i].SetShadowLength( 0 );
@@ -250,11 +250,11 @@ void ColorBitmapText::SetText( const RString& _sText, const RString& _sAlternate
} }
} }
int iCharLength = min( utf8_get_char_len(m_sText[i]), iCharsLeft + 1 ); int iCharLength = min( utf8_get_char_len(m_sText[i]), iCharsLeft + 1 );
RString curCharStr = m_sText.substr( i, iCharLength ); RString curCharStr = m_sText.substr( i, iCharLength );
wchar_t curChar = utf8_get_char( curCharStr ); wchar_t curChar = utf8_get_char( curCharStr );
i += iCharLength - 1; i += iCharLength - 1;
int iCharWidth = m_pFont->GetLineWidthInSourcePixels( wstring() + curChar ); int iCharWidth = m_pFont->GetLineWidthInSourcePixels( wstring() + curChar );
switch( curChar ) switch( curChar )
{ {
@@ -262,7 +262,7 @@ void ColorBitmapText::SetText( const RString& _sText, const RString& _sAlternate
if( /* iLineWidth == 0 &&*/ iWordWidth == 0 ) if( /* iLineWidth == 0 &&*/ iWordWidth == 0 )
break; break;
sCurrentLine += sCurrentWord + " "; sCurrentLine += sCurrentWord + " ";
iLineWidth += iWordWidth + iCharWidth; iLineWidth += iWordWidth + iCharWidth;
sCurrentWord = ""; sCurrentWord = "";
iWordWidth = 0; iWordWidth = 0;
iGlyphsSoFar++; iGlyphsSoFar++;
@@ -287,23 +287,23 @@ void ColorBitmapText::SetText( const RString& _sText, const RString& _sAlternate
} }
break; break;
default: default:
if( iWordWidth + iCharWidth > iWrapWidthPixels && iLineWidth == 0 ) if( iWordWidth + iCharWidth > iWrapWidthPixels && iLineWidth == 0 )
{ {
SimpleAddLine( sCurrentWord, iWordWidth ); SimpleAddLine( sCurrentWord, iWordWidth );
sCurrentWord = curCharStr; iWordWidth = iCharWidth; sCurrentWord = curCharStr; iWordWidth = iCharWidth;
} }
else if( iWordWidth + iLineWidth + iCharWidth > iWrapWidthPixels ) else if( iWordWidth + iLineWidth + iCharWidth > iWrapWidthPixels )
{ {
SimpleAddLine( sCurrentLine, iLineWidth ); SimpleAddLine( sCurrentLine, iLineWidth );
sCurrentLine = ""; sCurrentLine = "";
iLineWidth = 0; iLineWidth = 0;
sCurrentWord += curCharStr; sCurrentWord += curCharStr;
iWordWidth += iCharWidth; iWordWidth += iCharWidth;
} }
else else
{ {
sCurrentWord += curCharStr; sCurrentWord += curCharStr;
iWordWidth += iCharWidth; iWordWidth += iCharWidth;
} }
iGlyphsSoFar++; iGlyphsSoFar++;
break; break;