mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
fixed last commits
This commit is contained in:
parent
8557d3a022
commit
b65a26fe93
|
@ -209,7 +209,7 @@ File
|
||||||
== Fichier
|
== Fichier
|
||||||
|
|
||||||
Filename:
|
Filename:
|
||||||
== Nom du fichier :
|
== Nom du fichier:
|
||||||
|
|
||||||
Filter
|
Filter
|
||||||
== Filtre
|
== Filtre
|
||||||
|
@ -236,7 +236,7 @@ Game type
|
||||||
== Type de jeu
|
== Type de jeu
|
||||||
|
|
||||||
Game types:
|
Game types:
|
||||||
== Types de jeu :
|
== Types de jeu:
|
||||||
|
|
||||||
General
|
General
|
||||||
== Général
|
== Général
|
||||||
|
@ -335,7 +335,7 @@ Map
|
||||||
== Carte
|
== Carte
|
||||||
|
|
||||||
Maximum ping:
|
Maximum ping:
|
||||||
== Ping maximum :
|
== Ping maximum:
|
||||||
|
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
== Divers
|
== Divers
|
||||||
|
@ -371,7 +371,7 @@ Nickname
|
||||||
== Pseudonyme
|
== Pseudonyme
|
||||||
|
|
||||||
Name:
|
Name:
|
||||||
== Nom :
|
== Nom:
|
||||||
|
|
||||||
No
|
No
|
||||||
== Non
|
== Non
|
||||||
|
|
|
@ -634,7 +634,7 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
|
||||||
{
|
{
|
||||||
// OH FUCK! wrong version, drop him
|
// OH FUCK! wrong version, drop him
|
||||||
char aReason[256];
|
char aReason[256];
|
||||||
str_format(aReason, sizeof(aReason), "Wrong version : server is running \"%s\" and client \"%s\"", GameServer()->NetVersion(), aVersion);
|
str_format(aReason, sizeof(aReason), "Wrong version. Server is running '%s' and client '%s'", GameServer()->NetVersion(), aVersion);
|
||||||
m_NetServer.Drop(ClientId, aReason);
|
m_NetServer.Drop(ClientId, aReason);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -425,13 +425,13 @@ void CMenus::RenderServerControl(CUIRect MainView)
|
||||||
if(s_ControlPage == 1)
|
if(s_ControlPage == 1)
|
||||||
{
|
{
|
||||||
CUIRect Reason;
|
CUIRect Reason;
|
||||||
Bottom.VSplitRight(140.0f, &Bottom, &Reason);
|
Bottom.VSplitRight(40.0f, &Bottom, 0);
|
||||||
Bottom.VSplitRight(200.0f, &Bottom, &Reason);
|
Bottom.VSplitRight(160.0f, &Bottom, &Reason);
|
||||||
|
Reason.HSplitTop(5.0f, 0, &Reason);
|
||||||
const char *pLabel = Localize("Reason:");
|
const char *pLabel = Localize("Reason:");
|
||||||
UI()->DoLabel(&Reason, pLabel, 14.0f, -1);
|
UI()->DoLabel(&Reason, pLabel, 14.0f, -1);
|
||||||
float w = TextRender()->TextWidth(0, 14.0f, pLabel, -1);
|
float w = TextRender()->TextWidth(0, 14.0f, pLabel, -1);
|
||||||
Reason.VSplitLeft(w, 0, &Reason);
|
Reason.VSplitLeft(w+10.0f, 0, &Reason);
|
||||||
Reason.VSplitLeft(10.0f, 0, &Reason);
|
|
||||||
static float s_Offset = 0.0f;
|
static float s_Offset = 0.0f;
|
||||||
DoEditBox(&m_aCallvoteReason, &Reason, m_aCallvoteReason, sizeof(m_aCallvoteReason), 14.0f, &s_Offset, false, CUI::CORNER_ALL);
|
DoEditBox(&m_aCallvoteReason, &Reason, m_aCallvoteReason, sizeof(m_aCallvoteReason), 14.0f, &s_Offset, false, CUI::CORNER_ALL);
|
||||||
}
|
}
|
||||||
|
@ -453,7 +453,8 @@ void CMenus::RenderServerControl(CUIRect MainView)
|
||||||
if(m_CallvoteSelectedPlayer >= 0 && m_CallvoteSelectedPlayer < MAX_CLIENTS &&
|
if(m_CallvoteSelectedPlayer >= 0 && m_CallvoteSelectedPlayer < MAX_CLIENTS &&
|
||||||
m_pClient->m_Snap.m_paPlayerInfos[m_CallvoteSelectedPlayer])
|
m_pClient->m_Snap.m_paPlayerInfos[m_CallvoteSelectedPlayer])
|
||||||
{
|
{
|
||||||
m_pClient->m_pVoting->ForcevoteKick(m_CallvoteSelectedPlayer);
|
m_pClient->m_pVoting->ForcevoteKick(m_CallvoteSelectedPlayer, m_aCallvoteReason);
|
||||||
|
m_aCallvoteReason[0] = 0;
|
||||||
SetActive(false);
|
SetActive(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ void CVoting::Callvote(const char *pType, const char *pValue)
|
||||||
Client()->SendPackMsg(&Msg, MSGFLAG_VITAL);
|
Client()->SendPackMsg(&Msg, MSGFLAG_VITAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CVoting::CallvoteKick(int ClientId, char *pReason)
|
void CVoting::CallvoteKick(int ClientId, const char *pReason)
|
||||||
{
|
{
|
||||||
char aBuf[32];
|
char aBuf[32];
|
||||||
if(pReason[0])
|
if(pReason[0])
|
||||||
|
@ -55,11 +55,14 @@ void CVoting::CallvoteOption(int OptionId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CVoting::ForcevoteKick(int ClientId)
|
void CVoting::ForcevoteKick(int ClientId, const char *pReason)
|
||||||
{
|
{
|
||||||
char Buf[32];
|
char aBuf[32];
|
||||||
str_format(Buf, sizeof(Buf), "kick %d", ClientId);
|
if(pReason[0])
|
||||||
Client()->Rcon(Buf);
|
str_format(aBuf, sizeof(aBuf), "kick %d \"%s\"", ClientId, pReason);
|
||||||
|
else
|
||||||
|
str_format(aBuf, sizeof(aBuf), "kick %d", ClientId);
|
||||||
|
Client()->Rcon(aBuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CVoting::ForcevoteOption(int OptionId)
|
void CVoting::ForcevoteOption(int OptionId)
|
||||||
|
|
|
@ -39,9 +39,9 @@ public:
|
||||||
|
|
||||||
void RenderBars(CUIRect Bars, bool Text);
|
void RenderBars(CUIRect Bars, bool Text);
|
||||||
|
|
||||||
void CallvoteKick(int ClientId, char *pReason);
|
void CallvoteKick(int ClientId, const char *pReason);
|
||||||
void CallvoteOption(int Option);
|
void CallvoteOption(int Option);
|
||||||
void ForcevoteKick(int ClientId);
|
void ForcevoteKick(int ClientId, const char *pReason);
|
||||||
void ForcevoteOption(int Option);
|
void ForcevoteOption(int Option);
|
||||||
|
|
||||||
void Vote(int v); // -1 = no, 1 = yes
|
void Vote(int v); // -1 = no, 1 = yes
|
||||||
|
|
|
@ -670,21 +670,24 @@ void CGameContext::OnMessage(int MsgId, CUnpacker *pUnpacker, int ClientId)
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *pReason = "No reason given";
|
const char *pReason = "No reason given";
|
||||||
for(int i = 0; i < str_length(pMsg->m_Value)-1; i++)
|
for(const char *p = pMsg->m_Value; *p; ++p)
|
||||||
{
|
{
|
||||||
if(pMsg->m_Value[i] == ' ')
|
if(*p == ' ')
|
||||||
pReason = &pMsg->m_Value[i+1];
|
{
|
||||||
|
pReason = p+1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
str_format(aChatmsg, sizeof(aChatmsg), "'%s' called for vote to kick '%s' (%s)", Server()->ClientName(ClientId), Server()->ClientName(KickId), pReason);
|
str_format(aChatmsg, sizeof(aChatmsg), "'%s' called for vote to kick '%s' (%s)", Server()->ClientName(ClientId), Server()->ClientName(KickId), pReason);
|
||||||
str_format(aDesc, sizeof(aDesc), "Kick '%s'", Server()->ClientName(KickId));
|
str_format(aDesc, sizeof(aDesc), "Kick '%s'", Server()->ClientName(KickId));
|
||||||
if (!g_Config.m_SvVoteKickBantime)
|
if (!g_Config.m_SvVoteKickBantime)
|
||||||
str_format(aCmd, sizeof(aCmd), "kick %d %s", KickId, pReason);
|
str_format(aCmd, sizeof(aCmd), "kick %d \"Kicked by vote\"", KickId);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char aBuf[64] = {0};
|
char aBuf[64] = {0};
|
||||||
Server()->GetClientIP(KickId, aBuf, sizeof(aBuf));
|
Server()->GetClientIP(KickId, aBuf, sizeof(aBuf));
|
||||||
str_format(aCmd, sizeof(aCmd), "ban %s %d %s", aBuf, g_Config.m_SvVoteKickBantime, pReason);
|
str_format(aCmd, sizeof(aCmd), "ban %s %d \"Banned by vote\"", aBuf, g_Config.m_SvVoteKickBantime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue