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.
45 lines
1.3 KiB
45 lines
1.3 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Interface of CSharpshooterAward
|
||
|
//
|
||
|
// $Workfile: $
|
||
|
// $Date: $
|
||
|
//
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
// $Log: $
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#ifndef SHARPSHOOTERAWARD_H
|
||
|
#define SHARPSHOOTERAWARD_H
|
||
|
#ifdef WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
#include "Award.h"
|
||
|
#include <map>
|
||
|
|
||
|
|
||
|
using namespace std;
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
// Purpose: CSharpshooterAward is the award for best sniper.
|
||
|
// It is calculated by finding all of a sniper's kills with his rifle, then totaling them
|
||
|
// up, with headshots being worth three regular shots.
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
class CSharpshooterAward: public CAward
|
||
|
{
|
||
|
protected:
|
||
|
static double HS_VALUE;
|
||
|
static double SHOT_VALUE;
|
||
|
|
||
|
|
||
|
map<PID,int> numhs;
|
||
|
map<PID,int> numshots;
|
||
|
map<PID,int> sharpshooterscore;
|
||
|
void noWinner(CHTMLFile& html);
|
||
|
void extendedinfo(CHTMLFile& html);
|
||
|
public:
|
||
|
explicit CSharpshooterAward():CAward("Sharpshooter"){}
|
||
|
void getWinner();
|
||
|
};
|
||
|
#endif // SHARPSHOOTERAWARD_H
|