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

466 lines
13 KiB
C++
Raw Normal View History

2010-08-09 12:14:15 +00:00
#include <time.h>
2010-05-29 07:25:38 +00:00
#include <base/math.h>
2010-08-09 12:14:15 +00:00
#include <engine/demo.h>
2010-05-29 07:25:38 +00:00
#include <engine/serverbrowser.h>
#include <engine/textrender.h>
#include <engine/shared/config.h>
2010-05-29 07:25:38 +00:00
#include <game/generated/protocol.h>
#include <game/generated/client_data.h>
2010-05-29 07:25:38 +00:00
#include <game/client/ui.h>
#include <game/client/gameclient.h>
#include <game/client/animstate.h>
#include <game/localization.h>
2010-05-29 07:25:38 +00:00
#include "menus.h"
#include "motd.h"
#include "voting.h"
2010-05-29 07:25:38 +00:00
void CMenus::RenderGame(CUIRect MainView)
{
2010-05-29 07:25:38 +00:00
CUIRect Button;
2009-10-27 14:38:53 +00:00
//CUIRect votearea;
2010-05-29 07:25:38 +00:00
MainView.HSplitTop(45.0f, &MainView, 0);
RenderTools()->DrawUIRect(&MainView, ms_ColorTabbarActive, CUI::CORNER_ALL, 10.0f);
2009-10-27 14:38:53 +00:00
2010-05-29 07:25:38 +00:00
MainView.HSplitTop(10.0f, 0, &MainView);
MainView.HSplitTop(25.0f, &MainView, 0);
MainView.VMargin(10.0f, &MainView);
2010-05-29 07:25:38 +00:00
MainView.VSplitRight(120.0f, &MainView, &Button);
static int s_DisconnectButton = 0;
if(DoButton_Menu(&s_DisconnectButton, Localize("Disconnect"), 0, &Button))
Client()->Disconnect();
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pLocalInfo && m_pClient->m_Snap.m_pGameobj)
{
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pLocalInfo->m_Team != -1)
{
2010-05-29 07:25:38 +00:00
MainView.VSplitLeft(10.0f, &Button, &MainView);
MainView.VSplitLeft(120.0f, &Button, &MainView);
static int s_SpectateButton = 0;
if(DoButton_Menu(&s_SpectateButton, Localize("Spectate"), 0, &Button))
{
2010-05-29 07:25:38 +00:00
m_pClient->SendSwitchTeam(-1);
SetActive(false);
}
}
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pGameobj->m_Flags & GAMEFLAG_TEAMS)
{
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pLocalInfo->m_Team != 0)
{
2010-05-29 07:25:38 +00:00
MainView.VSplitLeft(10.0f, &Button, &MainView);
MainView.VSplitLeft(120.0f, &Button, &MainView);
static int s_SpectateButton = 0;
if(DoButton_Menu(&s_SpectateButton, Localize("Join red"), 0, &Button))
{
2010-05-29 07:25:38 +00:00
m_pClient->SendSwitchTeam(0);
SetActive(false);
}
}
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pLocalInfo->m_Team != 1)
{
2010-05-29 07:25:38 +00:00
MainView.VSplitLeft(10.0f, &Button, &MainView);
MainView.VSplitLeft(120.0f, &Button, &MainView);
static int s_SpectateButton = 0;
if(DoButton_Menu(&s_SpectateButton, Localize("Join blue"), 0, &Button))
{
2010-05-29 07:25:38 +00:00
m_pClient->SendSwitchTeam(1);
SetActive(false);
}
}
}
else
{
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pLocalInfo->m_Team != 0)
{
2010-05-29 07:25:38 +00:00
MainView.VSplitLeft(10.0f, &Button, &MainView);
MainView.VSplitLeft(120.0f, &Button, &MainView);
static int s_SpectateButton = 0;
if(DoButton_Menu(&s_SpectateButton, Localize("Join game"), 0, &Button))
{
2010-05-29 07:25:38 +00:00
m_pClient->SendSwitchTeam(0);
SetActive(false);
}
}
}
}
2010-08-09 12:14:15 +00:00
MainView.VSplitLeft(100.0f, &Button, &MainView);
MainView.VSplitLeft(150.0f, &Button, &MainView);
static int s_DemoButton = 0;
bool Recording = DemoRecorder()->IsRecording();
if(DoButton_Menu(&s_DemoButton, Localize(Recording ? "Stop record" : "Record demo"), 0, &Button)) // Localize("Stop record");Localize("Record demo");
{
if(!Recording)
{
char aFilename[128];
time_t Time;
time(&Time);
tm* TimeInfo = localtime(&Time);
strftime(aFilename, sizeof(aFilename), "demo-%Y-%m-%d_%H-%M-%S", TimeInfo);
Client()->DemoRecorder_Start(aFilename);
}
else
DemoRecorder()->Stop();
}
/*
2009-10-27 14:38:53 +00:00
CUIRect bars;
votearea.HSplitTop(10.0f, 0, &votearea);
votearea.HSplitTop(25.0f + 10.0f*3 + 25.0f, &votearea, &bars);
2009-10-27 14:38:53 +00:00
RenderTools()->DrawUIRect(&votearea, color_tabbar_active, CUI::CORNER_ALL, 10.0f);
2009-10-27 14:38:53 +00:00
votearea.VMargin(20.0f, &votearea);
votearea.HMargin(10.0f, &votearea);
2009-10-27 14:38:53 +00:00
votearea.HSplitBottom(35.0f, &votearea, &bars);
if(gameclient.voting->is_voting())
{
// do yes button
2009-10-27 14:38:53 +00:00
votearea.VSplitLeft(50.0f, &button, &votearea);
static int yes_button = 0;
2009-10-27 14:38:53 +00:00
if(UI()->DoButton(&yes_button, "Yes", 0, &button, ui_draw_menu_button, 0))
gameclient.voting->vote(1);
// do no button
2009-10-27 14:38:53 +00:00
votearea.VSplitLeft(5.0f, 0, &votearea);
votearea.VSplitLeft(50.0f, &button, &votearea);
static int no_button = 0;
2009-10-27 14:38:53 +00:00
if(UI()->DoButton(&no_button, "No", 0, &button, ui_draw_menu_button, 0))
gameclient.voting->vote(-1);
// do time left
2009-10-27 14:38:53 +00:00
votearea.VSplitRight(50.0f, &votearea, &button);
char buf[256];
str_format(buf, sizeof(buf), "%d", gameclient.voting->seconds_left());
2009-10-27 14:38:53 +00:00
UI()->DoLabel(&button, buf, 24.0f, 0);
// do description and command
2009-10-27 14:38:53 +00:00
votearea.VSplitLeft(5.0f, 0, &votearea);
UI()->DoLabel(&votearea, gameclient.voting->vote_description(), 14.0f, -1);
votearea.HSplitTop(16.0f, 0, &votearea);
UI()->DoLabel(&votearea, gameclient.voting->vote_command(), 10.0f, -1);
// do bars
2009-10-27 14:38:53 +00:00
bars.HSplitTop(10.0f, 0, &bars);
bars.HMargin(5.0f, &bars);
gameclient.voting->render_bars(bars, true);
}
else
{
2009-10-27 14:38:53 +00:00
UI()->DoLabel(&votearea, "No vote in progress", 18.0f, -1);
}*/
}
2010-05-29 07:25:38 +00:00
void CMenus::RenderServerInfo(CUIRect MainView)
{
// fetch server info
2010-05-29 07:25:38 +00:00
CServerInfo CurrentServerInfo;
Client()->GetServerInfo(&CurrentServerInfo);
2010-05-29 07:25:38 +00:00
if(!m_pClient->m_Snap.m_pLocalInfo)
return;
// count players for server info-box
2010-05-29 07:25:38 +00:00
int NumPlayers = 0;
for(int i = 0; i < Client()->SnapNumItems(IClient::SNAP_CURRENT); i++)
{
2010-05-29 07:25:38 +00:00
IClient::CSnapItem Item;
Client()->SnapGetItem(IClient::SNAP_CURRENT, i, &Item);
2010-05-29 07:25:38 +00:00
if(Item.m_Type == NETOBJTYPE_PLAYERINFO)
{
2010-05-29 07:25:38 +00:00
NumPlayers++;
}
}
// render background
2010-05-29 07:25:38 +00:00
RenderTools()->DrawUIRect(&MainView, ms_ColorTabbarActive, CUI::CORNER_ALL, 10.0f);
2010-05-29 07:25:38 +00:00
CUIRect View, ServerInfo, GameInfo, Motd;
float x = 0.0f;
float y = 0.0f;
2010-05-29 07:25:38 +00:00
char aBuf[1024];
// set view to use for all sub-modules
2010-05-29 07:25:38 +00:00
MainView.Margin(10.0f, &View);
2010-05-29 07:25:38 +00:00
// serverinfo
View.HSplitTop(View.h/2-5.0f, &ServerInfo, &Motd);
ServerInfo.VSplitLeft(View.w/2-5.0f, &ServerInfo, &GameInfo);
RenderTools()->DrawUIRect(&ServerInfo, vec4(1,1,1,0.25f), CUI::CORNER_ALL, 10.0f);
2010-05-29 07:25:38 +00:00
ServerInfo.Margin(5.0f, &ServerInfo);
x = 5.0f;
y = 0.0f;
2010-05-29 07:25:38 +00:00
TextRender()->Text(0, ServerInfo.x+x, ServerInfo.y+y, 32, Localize("Server info"), 250);
y += 32.0f+5.0f;
2010-05-29 07:25:38 +00:00
mem_zero(aBuf, sizeof(aBuf));
str_format(
2010-05-29 07:25:38 +00:00
aBuf,
sizeof(aBuf),
"%s\n\n"
2009-06-15 07:34:25 +00:00
"%s: %s\n"
"%s: %d\n"
"%s: %s\n"
"%s: %s\n",
2010-05-29 07:25:38 +00:00
CurrentServerInfo.m_aName,
Localize("Address"), g_Config.m_UiServerAddress,
Localize("Ping"), m_pClient->m_Snap.m_pLocalInfo->m_Latency,
Localize("Version"), CurrentServerInfo.m_aVersion,
Localize("Password"), CurrentServerInfo.m_Flags &1 ? Localize("Yes") : Localize("No")
);
2010-05-29 07:25:38 +00:00
TextRender()->Text(0, ServerInfo.x+x, ServerInfo.y+y, 20, aBuf, 250);
{
2010-05-29 07:25:38 +00:00
CUIRect Button;
int IsFavorite = ServerBrowser()->IsFavorite(CurrentServerInfo.m_NetAddr);
ServerInfo.HSplitBottom(20.0f, &ServerInfo, &Button);
static int s_AddFavButton = 0;
if(DoButton_CheckBox(&s_AddFavButton, Localize("Favorite"), IsFavorite, &Button))
{
2010-05-29 07:25:38 +00:00
if(IsFavorite)
ServerBrowser()->RemoveFavorite(CurrentServerInfo.m_NetAddr);
else
2010-05-29 07:25:38 +00:00
ServerBrowser()->AddFavorite(CurrentServerInfo.m_NetAddr);
}
}
2010-05-29 07:25:38 +00:00
// gameinfo
GameInfo.VSplitLeft(10.0f, 0x0, &GameInfo);
RenderTools()->DrawUIRect(&GameInfo, vec4(1,1,1,0.25f), CUI::CORNER_ALL, 10.0f);
2010-05-29 07:25:38 +00:00
GameInfo.Margin(5.0f, &GameInfo);
x = 5.0f;
y = 0.0f;
2010-05-29 07:25:38 +00:00
TextRender()->Text(0, GameInfo.x+x, GameInfo.y+y, 32, Localize("Game info"), 250);
y += 32.0f+5.0f;
2010-05-29 07:25:38 +00:00
mem_zero(aBuf, sizeof(aBuf));
str_format(
2010-05-29 07:25:38 +00:00
aBuf,
sizeof(aBuf),
"\n\n"
2009-06-15 07:34:25 +00:00
"%s: %s\n"
"%s: %s\n"
"%s: %d\n"
"%s: %d\n"
"\n"
2009-06-15 07:34:25 +00:00
"%s: %d/%d\n",
2010-05-29 07:25:38 +00:00
Localize("Game type"), CurrentServerInfo.m_aGameType,
Localize("Map"), CurrentServerInfo.m_aMap,
Localize("Score limit"), m_pClient->m_Snap.m_pGameobj->m_ScoreLimit,
Localize("Time limit"), m_pClient->m_Snap.m_pGameobj->m_TimeLimit,
Localize("Players"), m_pClient->m_Snap.m_NumPlayers, CurrentServerInfo.m_MaxPlayers
);
2010-05-29 07:25:38 +00:00
TextRender()->Text(0, GameInfo.x+x, GameInfo.y+y, 20, aBuf, 250);
2010-05-29 07:25:38 +00:00
// motd
Motd.HSplitTop(10.0f, 0, &Motd);
RenderTools()->DrawUIRect(&Motd, vec4(1,1,1,0.25f), CUI::CORNER_ALL, 10.0f);
Motd.Margin(5.0f, &Motd);
y = 0.0f;
x = 5.0f;
2010-05-29 07:25:38 +00:00
TextRender()->Text(0, Motd.x+x, Motd.y+y, 32, Localize("MOTD"), -1);
y += 32.0f+5.0f;
2010-05-29 07:25:38 +00:00
TextRender()->Text(0, Motd.x+x, Motd.y+y, 16, m_pClient->m_pMotd->m_aServerMotd, (int)Motd.w);
}
2010-05-29 07:25:38 +00:00
static const char *FormatCommand(const char *pCmd)
2008-11-08 12:50:46 +00:00
{
2010-05-29 07:25:38 +00:00
return pCmd;
2008-11-08 12:50:46 +00:00
}
2010-05-29 07:25:38 +00:00
void CMenus::RenderServerControlServer(CUIRect MainView)
{
2010-05-29 07:25:38 +00:00
int NumOptions = 0;
for(CVoting::CVoteOption *pOption = m_pClient->m_pVoting->m_pFirst; pOption; pOption = pOption->m_pNext)
NumOptions++;
static int s_VoteList = 0;
static float s_ScrollValue = 0;
CUIRect List = MainView;
UiDoListboxStart(&s_VoteList, &List, 24.0f, Localize("Settings"), "", NumOptions, 1, m_CallvoteSelectedOption, s_ScrollValue);
2009-01-21 23:13:37 +00:00
2010-05-29 07:25:38 +00:00
for(CVoting::CVoteOption *pOption = m_pClient->m_pVoting->m_pFirst; pOption; pOption = pOption->m_pNext)
{
2010-05-29 07:25:38 +00:00
CListboxItem Item = UiDoListboxNextItem(pOption);
2010-05-29 07:25:38 +00:00
if(Item.m_Visible)
UI()->DoLabel(&Item.m_Rect, FormatCommand(pOption->m_aCommand), 16.0f, -1);
}
2009-01-21 23:13:37 +00:00
2010-05-29 07:25:38 +00:00
m_CallvoteSelectedOption = UiDoListboxEnd(&s_ScrollValue, 0);
}
2010-05-29 07:25:38 +00:00
void CMenus::RenderServerControlKick(CUIRect MainView)
{
2010-05-31 15:36:20 +00:00
int NumOptions = 0;
int Selected = -1;
static int aPlayerIDs[MAX_CLIENTS];
2010-05-31 15:36:20 +00:00
for(int i = 0; i < MAX_CLIENTS; i++)
{
if(!m_pClient->m_Snap.m_paPlayerInfos[i])
continue;
if(m_CallvoteSelectedPlayer == i)
Selected = NumOptions;
aPlayerIDs[NumOptions++] = i;
2010-05-31 15:36:20 +00:00
}
2010-05-31 15:36:20 +00:00
static int s_VoteList = 0;
static float s_ScrollValue = 0;
2010-05-29 07:25:38 +00:00
CUIRect List = MainView;
UiDoListboxStart(&s_VoteList, &List, 24.0f, Localize("Players"), "", NumOptions, 1, Selected, s_ScrollValue);
2010-05-31 15:36:20 +00:00
for(int i = 0; i < NumOptions; i++)
{
CListboxItem Item = UiDoListboxNextItem(&aPlayerIDs[i]);
2010-05-31 15:36:20 +00:00
if(Item.m_Visible)
{
CTeeRenderInfo Info = m_pClient->m_aClients[aPlayerIDs[i]].m_RenderInfo;
2010-05-31 15:36:20 +00:00
Info.m_Size = Item.m_Rect.h;
Item.m_Rect.HSplitTop(5.0f, 0, &Item.m_Rect); // some margin from the top
RenderTools()->RenderTee(CAnimState::GetIdle(), &Info, EMOTE_NORMAL, vec2(1,0), vec2(Item.m_Rect.x+Item.m_Rect.h/2, Item.m_Rect.y+Item.m_Rect.h/2));
Item.m_Rect.x +=Info.m_Size;
UI()->DoLabel(&Item.m_Rect, m_pClient->m_aClients[aPlayerIDs[i]].m_aName, 16.0f, -1);
2010-05-31 15:36:20 +00:00
}
}
2010-05-31 15:36:20 +00:00
Selected = UiDoListboxEnd(&s_ScrollValue, 0);
m_CallvoteSelectedPlayer = Selected != -1 ? aPlayerIDs[Selected] : -1;
}
2010-05-29 07:25:38 +00:00
void CMenus::RenderServerControl(CUIRect MainView)
{
2010-05-29 07:25:38 +00:00
static int s_ControlPage = 0;
// render background
2010-05-29 07:25:38 +00:00
CUIRect Temp, TabBar;
MainView.VSplitRight(120.0f, &MainView, &TabBar);
RenderTools()->DrawUIRect(&MainView, ms_ColorTabbarActive, CUI::CORNER_B|CUI::CORNER_TL, 10.0f);
TabBar.HSplitTop(50.0f, &Temp, &TabBar);
RenderTools()->DrawUIRect(&Temp, ms_ColorTabbarActive, CUI::CORNER_R, 10.0f);
2010-05-29 07:25:38 +00:00
MainView.HSplitTop(10.0f, 0, &MainView);
2010-05-29 07:25:38 +00:00
CUIRect Button;
2010-05-29 07:25:38 +00:00
const char *paTabs[] = {
Localize("Settings"),
Localize("Kick")};
int aNumTabs = (int)(sizeof(paTabs)/sizeof(*paTabs));
2009-01-21 23:13:37 +00:00
2010-05-29 07:25:38 +00:00
for(int i = 0; i < aNumTabs; i++)
{
2010-05-29 07:25:38 +00:00
TabBar.HSplitTop(10, &Button, &TabBar);
TabBar.HSplitTop(26, &Button, &TabBar);
if(DoButton_SettingsTab(paTabs[i], paTabs[i], s_ControlPage == i, &Button))
{
2010-05-29 07:25:38 +00:00
s_ControlPage = i;
m_CallvoteSelectedPlayer = -1;
m_CallvoteSelectedOption = -1;
}
}
2010-05-29 07:25:38 +00:00
MainView.Margin(10.0f, &MainView);
CUIRect Bottom;
MainView.HSplitBottom(ms_ButtonHeight + 5*2, &MainView, &Bottom);
Bottom.HMargin(5.0f, &Bottom);
// render page
2010-05-29 07:25:38 +00:00
if(s_ControlPage == 0)
RenderServerControlServer(MainView);
else if(s_ControlPage == 1)
RenderServerControlKick(MainView);
{
2010-05-29 07:25:38 +00:00
CUIRect Button;
Bottom.VSplitRight(120.0f, &Bottom, &Button);
2010-05-29 07:25:38 +00:00
static int s_CallVoteButton = 0;
if(DoButton_Menu(&s_CallVoteButton, Localize("Call vote"), 0, &Button))
{
2010-05-29 07:25:38 +00:00
if(s_ControlPage == 0)
{
2008-11-08 12:50:46 +00:00
//
2010-05-29 07:25:38 +00:00
m_pClient->m_pVoting->CallvoteOption(m_CallvoteSelectedOption);
2008-11-08 12:50:46 +00:00
/*
if(callvote_selectedmap >= 0 && callvote_selectedmap < gameclient.maplist->num())
2008-11-08 12:50:46 +00:00
gameclient.voting->callvote_map(gameclient.maplist->name(callvote_selectedmap));*/
}
2010-05-29 07:25:38 +00:00
else if(s_ControlPage == 1)
{
if(m_CallvoteSelectedPlayer >= 0 && m_CallvoteSelectedPlayer < MAX_CLIENTS &&
m_pClient->m_Snap.m_paPlayerInfos[m_CallvoteSelectedPlayer])
{
m_pClient->m_pVoting->CallvoteKick(m_CallvoteSelectedPlayer, m_aCallvoteReason);
m_aCallvoteReason[0] = 0;
2010-05-29 07:25:38 +00:00
SetActive(false);
}
}
}
// render kick reason
if(s_ControlPage == 1)
{
CUIRect Reason;
2010-10-10 23:06:44 +00:00
Bottom.VSplitRight(40.0f, &Bottom, 0);
Bottom.VSplitRight(160.0f, &Bottom, &Reason);
Reason.HSplitTop(5.0f, 0, &Reason);
const char *pLabel = Localize("Reason:");
UI()->DoLabel(&Reason, pLabel, 14.0f, -1);
float w = TextRender()->TextWidth(0, 14.0f, pLabel, -1);
2010-10-10 23:06:44 +00:00
Reason.VSplitLeft(w+10.0f, 0, &Reason);
static float s_Offset = 0.0f;
DoEditBox(&m_aCallvoteReason, &Reason, m_aCallvoteReason, sizeof(m_aCallvoteReason), 14.0f, &s_Offset, false, CUI::CORNER_ALL);
}
2010-05-29 07:25:38 +00:00
// force vote button (only available when authed in rcon)
if(Client()->RconAuthed())
{
Bottom.VSplitLeft(120.0f, &Button, &Bottom);
static int s_ForceVoteButton = 0;
if(DoButton_Menu(&s_ForceVoteButton, Localize("Force vote"), 0, &Button))
{
2010-05-29 07:25:38 +00:00
if(s_ControlPage == 0)
{
m_pClient->m_pVoting->ForcevoteOption(m_CallvoteSelectedOption);
}
else if(s_ControlPage == 1)
{
2010-05-29 07:25:38 +00:00
if(m_CallvoteSelectedPlayer >= 0 && m_CallvoteSelectedPlayer < MAX_CLIENTS &&
m_pClient->m_Snap.m_paPlayerInfos[m_CallvoteSelectedPlayer])
{
2010-10-10 23:06:44 +00:00
m_pClient->m_pVoting->ForcevoteKick(m_CallvoteSelectedPlayer, m_aCallvoteReason);
m_aCallvoteReason[0] = 0;
2010-05-29 07:25:38 +00:00
SetActive(false);
}
}
}
}
}
}