mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-20 15:08:19 +00:00
Don't align text with scoreboard open
This commit is contained in:
parent
c984203c2d
commit
1d912b2df6
|
@ -893,12 +893,14 @@ void CChat::OnPrepareLines()
|
||||||
float y = 300.0f - 28.0f;
|
float y = 300.0f - 28.0f;
|
||||||
float FontSize = FONT_SIZE;
|
float FontSize = FONT_SIZE;
|
||||||
|
|
||||||
bool ForceRecreate = m_pClient->m_pScoreboard->Active() != m_PrevScoreBoardShowed;
|
bool IsScoreBoardOpen = m_pClient->m_pScoreboard->Active();
|
||||||
|
|
||||||
|
bool ForceRecreate = IsScoreBoardOpen != m_PrevScoreBoardShowed;
|
||||||
bool ShowLargeArea = m_Show || g_Config.m_ClShowChat == 2;
|
bool ShowLargeArea = m_Show || g_Config.m_ClShowChat == 2;
|
||||||
|
|
||||||
ForceRecreate |= ShowLargeArea != m_PrevShowChat;
|
ForceRecreate |= ShowLargeArea != m_PrevShowChat;
|
||||||
|
|
||||||
m_PrevScoreBoardShowed = m_pClient->m_pScoreboard->Active();
|
m_PrevScoreBoardShowed = IsScoreBoardOpen;
|
||||||
m_PrevShowChat = ShowLargeArea;
|
m_PrevShowChat = ShowLargeArea;
|
||||||
|
|
||||||
float RealMsgPaddingX = MESSAGE_PADDING_X;
|
float RealMsgPaddingX = MESSAGE_PADDING_X;
|
||||||
|
@ -915,13 +917,13 @@ void CChat::OnPrepareLines()
|
||||||
RealMsgPaddingTee = 0;
|
RealMsgPaddingTee = 0;
|
||||||
|
|
||||||
int64 Now = time();
|
int64 Now = time();
|
||||||
float LineWidth = (m_pClient->m_pScoreboard->Active() ? 90.0f : 200.0f) - RealMsgPaddingX - RealMsgPaddingTee;
|
float LineWidth = (IsScoreBoardOpen ? 90.0f : 200.0f) - RealMsgPaddingX - RealMsgPaddingTee;
|
||||||
|
|
||||||
float HeightLimit = m_pClient->m_pScoreboard->Active() ? 180.0f : m_PrevShowChat ? 50.0f : 200.0f;
|
float HeightLimit = IsScoreBoardOpen ? 180.0f : m_PrevShowChat ? 50.0f : 200.0f;
|
||||||
float Begin = x;
|
float Begin = x;
|
||||||
float TextBegin = Begin + RealMsgPaddingX / 2.0f;
|
float TextBegin = Begin + RealMsgPaddingX / 2.0f;
|
||||||
CTextCursor Cursor;
|
CTextCursor Cursor;
|
||||||
int OffsetType = m_pClient->m_pScoreboard->Active() ? 1 : 0;
|
int OffsetType = IsScoreBoardOpen ? 1 : 0;
|
||||||
|
|
||||||
for(int i = 0; i < MAX_LINES; i++)
|
for(int i = 0; i < MAX_LINES; i++)
|
||||||
{
|
{
|
||||||
|
@ -992,8 +994,12 @@ void CChat::OnPrepareLines()
|
||||||
}
|
}
|
||||||
|
|
||||||
CTextCursor AppendCursor = Cursor;
|
CTextCursor AppendCursor = Cursor;
|
||||||
|
|
||||||
|
if(!IsScoreBoardOpen)
|
||||||
|
{
|
||||||
AppendCursor.m_StartX = Cursor.m_X;
|
AppendCursor.m_StartX = Cursor.m_X;
|
||||||
AppendCursor.m_LineWidth -= (Cursor.m_LongestLineWidth - Cursor.m_StartX);
|
AppendCursor.m_LineWidth -= (Cursor.m_LongestLineWidth - Cursor.m_StartX);
|
||||||
|
}
|
||||||
|
|
||||||
TextRender()->TextEx(&AppendCursor, m_aLines[r].m_aText, -1);
|
TextRender()->TextEx(&AppendCursor, m_aLines[r].m_aText, -1);
|
||||||
|
|
||||||
|
@ -1101,8 +1107,11 @@ void CChat::OnPrepareLines()
|
||||||
TextRender()->TextColor(Color);
|
TextRender()->TextColor(Color);
|
||||||
|
|
||||||
CTextCursor AppendCursor = Cursor;
|
CTextCursor AppendCursor = Cursor;
|
||||||
|
if(!IsScoreBoardOpen)
|
||||||
|
{
|
||||||
AppendCursor.m_LineWidth -= (Cursor.m_LongestLineWidth - Cursor.m_StartX);
|
AppendCursor.m_LineWidth -= (Cursor.m_LongestLineWidth - Cursor.m_StartX);
|
||||||
AppendCursor.m_StartX = Cursor.m_X;
|
AppendCursor.m_StartX = Cursor.m_X;
|
||||||
|
}
|
||||||
|
|
||||||
if(m_aLines[r].m_TextContainerIndex == -1)
|
if(m_aLines[r].m_TextContainerIndex == -1)
|
||||||
m_aLines[r].m_TextContainerIndex = TextRender()->CreateTextContainer(&AppendCursor, m_aLines[r].m_aText);
|
m_aLines[r].m_TextContainerIndex = TextRender()->CreateTextContainer(&AppendCursor, m_aLines[r].m_aText);
|
||||||
|
|
Loading…
Reference in a new issue