You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Interface of CScoreboard
|
|
//
|
|
// $Workfile: $
|
|
// $Date: $
|
|
//
|
|
//------------------------------------------------------------------------------------------------------
|
|
// $Log: $
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
#ifndef SCOREBOARD_H
|
|
#define SCOREBOARD_H
|
|
#ifdef WIN32
|
|
#pragma once
|
|
#endif
|
|
#pragma warning (disable: 4786)
|
|
|
|
#include "report.h"
|
|
#include <map>
|
|
#include <vector>
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
|
|
//------------------------------------------------------------------------------------------------------
|
|
// Purpose: CScoreboard is a report element that outputs a scoreboard that tallies
|
|
// up all the kills and deaths for each player. it also displays (and sorts by) a
|
|
// player's rank. Rank is defined by how many kills a player got minus how many
|
|
// times he died divided by the time he was in the game.
|
|
//------------------------------------------------------------------------------------------------------
|
|
class CScoreboard : public CReport
|
|
{
|
|
private:
|
|
|
|
void init();
|
|
|
|
public:
|
|
explicit CScoreboard(){init();}
|
|
|
|
void generate();
|
|
void writeHTML(CHTMLFile& html);
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SCOREBOARD_H
|