about summary refs log tree commit diff
path: root/src/game/client/components/voting.h
blob: 9687d895127e8a213317692b06036c9130a332b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* (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.                */
#ifndef GAME_CLIENT_COMPONENTS_VOTING_H
#define GAME_CLIENT_COMPONENTS_VOTING_H
#include <game/client/component.h>
#include <game/client/ui.h>
#include <engine/shared/memheap.h>

class CVoting : public CComponent
{
	CHeap m_Heap;

	static void ConCallvote(IConsole::IResult *pResult, void *pUserData);
	static void ConVote(IConsole::IResult *pResult, void *pUserData);
	
	int64 m_Closetime;
	char m_aDescription[64];
	char m_aReason[16];
	int m_Voted;
	int m_Yes, m_No, m_Pass, m_Total;
	
	void ClearOptions();
	void Callvote(const char *pType, const char *pValue, const char *pReason);
	
public:

	struct CVoteOption
	{
		CVoteOption *m_pNext;
		CVoteOption *m_pPrev;
		char m_aDescription[64];
	};
	
	CVoteOption *m_pFirst;
	CVoteOption *m_pLast;

	CVoteOption *m_pRecycleFirst;
	CVoteOption *m_pRecycleLast;

	CVoting();
	virtual void OnReset();
	virtual void OnConsoleInit();
	virtual void OnMessage(int Msgtype, void *pRawMsg);
	virtual void OnRender();
	
	void RenderBars(CUIRect Bars, bool Text);
	
	void CallvoteKick(int ClientID, const char *pReason);
	void CallvoteOption(int Option, const char *pReason);
	void ForcevoteKick(int ClientID, const char *pReason);
	void ForcevoteOption(int Option, const char *pReason);
	
	void Vote(int v); // -1 = no, 1 = yes
	
	int SecondsLeft() { return (m_Closetime - time_get())/time_freq(); }
	bool IsVoting() { return m_Closetime != 0; }
	int TakenChoice() const { return m_Voted; }
	const char *VoteDescription() const { return m_aDescription; }
	const char *VoteReason() const { return m_aReason; }
};

#endif