ddnet/src/game/client/components/voting.cpp

277 lines
6.4 KiB
C++
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#include <engine/shared/config.h>
#include <game/generated/protocol.h>
#include <base/vmath.h>
#include <game/client/render.h>
#include "voting.h"
void CVoting::ConCallvote(IConsole::IResult *pResult, void *pUserData)
{
CVoting *pSelf = (CVoting*)pUserData;
pSelf->Callvote(pResult->GetString(0), pResult->GetString(1), pResult->NumArguments() > 2 ? pResult->GetString(2) : "");
2010-05-29 07:25:38 +00:00
}
void CVoting::ConVote(IConsole::IResult *pResult, void *pUserData)
{
CVoting *pSelf = (CVoting *)pUserData;
if(str_comp_nocase(pResult->GetString(0), "yes") == 0)
pSelf->Vote(1);
else if(str_comp_nocase(pResult->GetString(0), "no") == 0)
pSelf->Vote(-1);
}
void CVoting::Callvote(const char *pType, const char *pValue, const char *pReason)
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
CNetMsg_Cl_CallVote Msg = {0};
Msg.m_Type = pType;
Msg.m_Value = pValue;
Msg.m_Reason = pReason;
2010-05-29 07:25:38 +00:00
Client()->SendPackMsg(&Msg, MSGFLAG_VITAL);
2008-09-24 14:47:03 +00:00
}
void CVoting::CallvoteSpectate(int ClientID, const char *pReason, bool ForceVote)
{
if(ForceVote)
{
char aBuf[128];
str_format(aBuf, sizeof(aBuf), "set_team %d -1", ClientID);
Client()->Rcon(aBuf);
}
else
{
char aBuf[32];
str_format(aBuf, sizeof(aBuf), "%d", ClientID);
Callvote("spectate", aBuf, pReason);
}
}
2011-03-25 11:06:45 +00:00
void CVoting::CallvoteKick(int ClientID, const char *pReason, bool ForceVote)
2008-09-24 14:47:03 +00:00
{
2011-03-25 11:06:45 +00:00
if(ForceVote)
2010-05-29 07:25:38 +00:00
{
2011-03-25 11:06:45 +00:00
char aBuf[128];
str_format(aBuf, sizeof(aBuf), "force_vote kick %d %s", ClientID, pReason);
Client()->Rcon(aBuf);
2010-05-29 07:25:38 +00:00
}
2010-10-10 23:06:44 +00:00
else
2011-03-25 11:06:45 +00:00
{
char aBuf[32];
str_format(aBuf, sizeof(aBuf), "%d", ClientID);
Callvote("kick", aBuf, pReason);
}
}
2011-03-25 11:06:45 +00:00
void CVoting::CallvoteOption(int OptionId, const char *pReason, bool ForceVote)
{
2010-05-29 07:25:38 +00:00
CVoteOption *pOption = m_pFirst;
while(pOption && OptionId >= 0)
2008-11-08 12:50:46 +00:00
{
2010-05-29 07:25:38 +00:00
if(OptionId == 0)
2008-11-08 12:50:46 +00:00
{
2011-03-25 11:06:45 +00:00
if(ForceVote)
{
char aBuf[128];
str_format(aBuf, sizeof(aBuf), "force_vote option \"%s\" %s", pOption->m_aDescription, pReason);
Client()->Rcon(aBuf);
}
else
Callvote("option", pOption->m_aDescription, pReason);
2008-11-08 12:50:46 +00:00
break;
}
2010-05-29 07:25:38 +00:00
OptionId--;
pOption = pOption->m_pNext;
2008-11-08 12:50:46 +00:00
}
}
2010-05-29 07:25:38 +00:00
void CVoting::Vote(int v)
2008-09-25 12:23:44 +00:00
{
2010-05-29 07:25:38 +00:00
CNetMsg_Cl_Vote Msg = {v};
Client()->SendPackMsg(&Msg, MSGFLAG_VITAL);
2008-09-25 12:23:44 +00:00
}
2010-05-29 07:25:38 +00:00
CVoting::CVoting()
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
ClearOptions();
OnReset();
2008-09-24 14:47:03 +00:00
}
2008-11-08 12:50:46 +00:00
2010-05-29 07:25:38 +00:00
void CVoting::ClearOptions()
2008-11-08 12:50:46 +00:00
{
2010-05-29 07:25:38 +00:00
m_Heap.Reset();
2008-11-08 12:50:46 +00:00
2010-05-29 07:25:38 +00:00
m_pFirst = 0;
m_pLast = 0;
2011-03-25 10:49:35 +00:00
m_pRecycleFirst = 0;
m_pRecycleLast = 0;
2008-11-08 12:50:46 +00:00
}
2010-05-29 07:25:38 +00:00
void CVoting::OnReset()
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
m_Closetime = 0;
m_aDescription[0] = 0;
m_aReason[0] = 0;
2010-05-29 07:25:38 +00:00
m_Yes = m_No = m_Pass = m_Total = 0;
m_Voted = 0;
2008-09-24 14:47:03 +00:00
}
2010-05-29 07:25:38 +00:00
void CVoting::OnConsoleInit()
2008-09-24 14:47:03 +00:00
{
Console()->Register("callvote", "ss?r", CFGFLAG_CLIENT, ConCallvote, this, "Call vote");
2010-05-29 07:25:38 +00:00
Console()->Register("vote", "r", CFGFLAG_CLIENT, ConVote, this, "Vote yes/no");
2008-09-24 14:47:03 +00:00
}
2010-05-29 07:25:38 +00:00
void CVoting::OnMessage(int MsgType, void *pRawMsg)
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
if(MsgType == NETMSGTYPE_SV_VOTESET)
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
CNetMsg_Sv_VoteSet *pMsg = (CNetMsg_Sv_VoteSet *)pRawMsg;
if(pMsg->m_Timeout)
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
OnReset();
str_copy(m_aDescription, pMsg->m_pDescription, sizeof(m_aDescription));
str_copy(m_aReason, pMsg->m_pReason, sizeof(m_aReason));
2010-05-29 07:25:38 +00:00
m_Closetime = time_get() + time_freq() * pMsg->m_Timeout;
2008-09-24 14:47:03 +00:00
}
else
2010-05-29 07:25:38 +00:00
OnReset();
2008-09-24 14:47:03 +00:00
}
2010-05-29 07:25:38 +00:00
else if(MsgType == NETMSGTYPE_SV_VOTESTATUS)
2008-09-24 14:47:03 +00:00
{
2010-05-29 07:25:38 +00:00
CNetMsg_Sv_VoteStatus *pMsg = (CNetMsg_Sv_VoteStatus *)pRawMsg;
m_Yes = pMsg->m_Yes;
m_No = pMsg->m_No;
m_Pass = pMsg->m_Pass;
m_Total = pMsg->m_Total;
2008-09-24 14:47:03 +00:00
}
2010-05-29 07:25:38 +00:00
else if(MsgType == NETMSGTYPE_SV_VOTECLEAROPTIONS)
2008-11-08 12:50:46 +00:00
{
2010-05-29 07:25:38 +00:00
ClearOptions();
2008-11-08 12:50:46 +00:00
}
2011-03-25 10:49:35 +00:00
else if(MsgType == NETMSGTYPE_SV_VOTEOPTIONADD)
2008-11-08 12:50:46 +00:00
{
2011-03-25 10:49:35 +00:00
CNetMsg_Sv_VoteOptionAdd *pMsg = (CNetMsg_Sv_VoteOptionAdd *)pRawMsg;
2008-11-08 12:50:46 +00:00
2011-03-25 10:49:35 +00:00
CVoteOption *pOption;
if(m_pRecycleFirst)
{
pOption = m_pRecycleFirst;
m_pRecycleFirst = m_pRecycleFirst->m_pNext;
if(m_pRecycleFirst)
m_pRecycleFirst->m_pPrev = 0;
else
m_pRecycleLast = 0;
}
else
pOption = (CVoteOption *)m_Heap.Allocate(sizeof(CVoteOption));
2010-05-29 07:25:38 +00:00
pOption->m_pNext = 0;
pOption->m_pPrev = m_pLast;
if(pOption->m_pPrev)
pOption->m_pPrev->m_pNext = pOption;
m_pLast = pOption;
if(!m_pFirst)
m_pFirst = pOption;
2008-11-08 12:50:46 +00:00
2011-03-25 08:49:21 +00:00
str_copy(pOption->m_aDescription, pMsg->m_pDescription, sizeof(pOption->m_aDescription));
2008-11-08 12:50:46 +00:00
}
2011-03-25 10:49:35 +00:00
else if(MsgType == NETMSGTYPE_SV_VOTEOPTIONREMOVE)
{
CNetMsg_Sv_VoteOptionRemove *pMsg = (CNetMsg_Sv_VoteOptionRemove *)pRawMsg;
for(CVoteOption *pOption = m_pFirst; pOption; pOption = pOption->m_pNext)
{
if(str_comp(pOption->m_aDescription, pMsg->m_pDescription) == 0)
{
// remove it from the list
if(m_pFirst == pOption)
m_pFirst = m_pFirst->m_pNext;
if(m_pLast == pOption)
m_pLast = m_pLast->m_pPrev;
if(pOption->m_pPrev)
pOption->m_pPrev->m_pNext = pOption->m_pNext;
if(pOption->m_pNext)
pOption->m_pNext->m_pPrev = pOption->m_pPrev;
// add it to recycle list
pOption->m_pNext = 0;
pOption->m_pPrev = m_pRecycleLast;
if(pOption->m_pPrev)
pOption->m_pPrev->m_pNext = pOption;
m_pRecycleLast = pOption;
if(!m_pRecycleFirst)
m_pRecycleLast = pOption;
break;
}
}
}
2008-09-24 14:47:03 +00:00
}
2010-05-29 07:25:38 +00:00
void CVoting::OnRender()
2008-09-24 14:47:03 +00:00
{
}
2010-05-29 07:25:38 +00:00
void CVoting::RenderBars(CUIRect Bars, bool Text)
{
2010-05-29 07:25:38 +00:00
RenderTools()->DrawUIRect(&Bars, vec4(0.8f,0.8f,0.8f,0.5f), CUI::CORNER_ALL, Bars.h/3);
2010-05-29 07:25:38 +00:00
CUIRect Splitter = Bars;
Splitter.x = Splitter.x+Splitter.w/2;
Splitter.w = Splitter.h/2.0f;
Splitter.x -= Splitter.w/2;
RenderTools()->DrawUIRect(&Splitter, vec4(0.4f,0.4f,0.4f,0.5f), CUI::CORNER_ALL, Splitter.h/4);
2010-05-29 07:25:38 +00:00
if(m_Total)
{
2010-05-29 07:25:38 +00:00
CUIRect PassArea = Bars;
if(m_Yes)
{
2010-05-29 07:25:38 +00:00
CUIRect YesArea = Bars;
YesArea.w *= m_Yes/(float)m_Total;
RenderTools()->DrawUIRect(&YesArea, vec4(0.2f,0.9f,0.2f,0.85f), CUI::CORNER_ALL, Bars.h/3);
2010-05-29 07:25:38 +00:00
if(Text)
{
2010-05-29 07:25:38 +00:00
char Buf[256];
str_format(Buf, sizeof(Buf), "%d", m_Yes);
UI()->DoLabel(&YesArea, Buf, Bars.h*0.75f, 0);
}
2010-05-29 07:25:38 +00:00
PassArea.x += YesArea.w;
PassArea.w -= YesArea.w;
}
2010-05-29 07:25:38 +00:00
if(m_No)
{
2010-05-29 07:25:38 +00:00
CUIRect NoArea = Bars;
NoArea.w *= m_No/(float)m_Total;
NoArea.x = (Bars.x + Bars.w)-NoArea.w;
RenderTools()->DrawUIRect(&NoArea, vec4(0.9f,0.2f,0.2f,0.85f), CUI::CORNER_ALL, Bars.h/3);
2010-05-29 07:25:38 +00:00
if(Text)
{
2010-05-29 07:25:38 +00:00
char Buf[256];
str_format(Buf, sizeof(Buf), "%d", m_No);
UI()->DoLabel(&NoArea, Buf, Bars.h*0.75f, 0);
}
2010-05-29 07:25:38 +00:00
PassArea.w -= NoArea.w;
}
2010-05-29 07:25:38 +00:00
if(Text && m_Pass)
{
2010-05-29 07:25:38 +00:00
char Buf[256];
str_format(Buf, sizeof(Buf), "%d", m_Pass);
UI()->DoLabel(&PassArea, Buf, Bars.h*0.75f, 0);
}
}
}