D:/Portable Apps/PortableGit-1.7.1-preview20100612/rank, top5. Also need sql store and external records (maybe better to set path?

This commit is contained in:
btd 2010-08-24 21:31:32 +04:00
parent d1f5bd4431
commit e04f83b710

View file

@ -709,53 +709,31 @@ void CGameContext::OnMessage(int MsgId, CUnpacker *pUnpacker, int ClientId)
str_format(buf, sizeof(buf), "/Info /Credits %s",g_Config.m_SvPauseable?"/pause":""); str_format(buf, sizeof(buf), "/Info /Credits %s",g_Config.m_SvPauseable?"/pause":"");
SendChatTarget(ClientId, buf); SendChatTarget(ClientId, buf);
SendChatTarget(ClientId, "/rank /top5 /top5 5 or any number"); SendChatTarget(ClientId, "/rank /top5 /top5 5 or any number");
}/*
else if(!strncmp(pMsg->m_pMessage, "/top5", 5) && !g_Config.m_SvHideScore)
{
const char *pt = pMsg->m_pMessage;
std::list<std::string> s;
std::list<std::string>::iterator i;
int number = 0;
pt += 6;
while(*pt && *pt >= '0' && *pt <= '9')
{
number = number*10+(*pt-'0');
pt++;
}
s=((CGameControllerDDRace*)m_pController)->m_Score.Top5Draw(ClientId, number ? number : 0);
for(i=s.begin(); i != s.end(); ++i)
SendChatTarget(ClientId, i->c_str());
} }
else if(!str_comp_nocase(pMsg->m_pMessage, "/rank")) else if(!str_comp_num(pMsg->m_pMessage, "/top5", 5))
{ {
char buf[512]; if(g_Config.m_SvHideScore)
const char *name = pMsg->m_pMessage;
name += 6;
int pos=0;
CPlayerScore *pscore;
pscore = ((CGameControllerDDRace*)m_pController)->m_Score.SearchName(Server()->ClientName(ClientId), pos);
if(pscore && pos > -1 && pscore->m_Score != -1)
{ {
float time = pscore->m_Score; SendChatTarget(ClientId, "Showing the Top5 is not allowed on this server.");
return;
str_format(buf, sizeof(buf), "%d. %s",!g_Config.m_SvHideScore? pos: 0, pscore->name);
if (!g_Config.m_SvHideScore)
SendChat(-1, CGameContext::CHAT_ALL, buf);
else
SendChatTarget(ClientId, buf);
if ((int)time/60 >= 1)
str_format(buf, sizeof(buf), "Time: %d minute%s %f seconds", (int)time/60, (int)time/60 != 1 ? "s" : "" , time-((int)time/60)*60);
else
str_format(buf, sizeof(buf), "Time: %f seconds", time-((int)time/60)*60);
} }
int Num;
if(sscanf(pMsg->m_pMessage, "/top5 %d", &Num) == 1)
Score()->ShowTop5(p->GetCID(), Num);
else else
str_format(buf, sizeof(buf), "%s is not ranked", Server()->ClientName(ClientId)); Score()->ShowTop5(p->GetCID());
}
SendChatTarget(ClientId, buf); else if(!str_comp_num(pMsg->m_pMessage, "/rank", 5))
} finish this later */ {
char aName[256];
if(g_Config.m_SvHideScore && sscanf(pMsg->m_pMessage, "/rank %s", aName) == 1)
Score()->ShowRank(p->GetCID(), aName, true);
else
Score()->ShowRank(p->GetCID(), Server()->ClientName(ClientId));
}
else if (!str_comp_nocase(pMsg->m_pMessage, "/emotepain")&&g_Config.m_SvEmotionalTees) else if (!str_comp_nocase(pMsg->m_pMessage, "/emotepain")&&g_Config.m_SvEmotionalTees)
{ {
CCharacter* pChr = p->GetCharacter(); CCharacter* pChr = p->GetCharacter();