Team Fortress 2 Source Code as on 22/4/2020
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.
|
|
//========= 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
|