hlstatsx/web/pages/ingame/weapons.php

234 lines
5.9 KiB
PHP

<?php
/*
HLstatsX Community Edition - Real-time player and clan rankings and statistics
Copyleft (L) 2008-20XX Nicholas Hastings (nshastings@gmail.com)
http://www.hlxcommunity.com
HLstatsX Community Edition is a continuation of
ELstatsNEO - Real-time player and clan rankings and statistics
Copyleft (L) 2008-20XX Malte Bayer (steam@neo-soft.org)
http://ovrsized.neo-soft.org/
ELstatsNEO is an very improved & enhanced - so called Ultra-Humongus Edition of HLstatsX
HLstatsX - Real-time player and clan rankings and statistics for Half-Life 2
http://www.hlstatsx.com/
Copyright (C) 2005-2007 Tobias Oetzel (Tobi@hlstatsx.com)
HLstatsX is an enhanced version of HLstats made by Simon Garner
HLstats - Real-time player and clan rankings and statistics for Half-Life
http://sourceforge.net/projects/hlstats/
Copyright (C) 2001 Simon Garner
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
For support and installation notes visit http://www.hlxcommunity.com
*/
if ( !defined('IN_HLSTATS') ) { die('Do not access this file directly.'); }
// Player Details
$player = valid_request(intval($_GET['player']), 1);
$uniqueid = valid_request(strval($_GET['uniqueid']), 0);
$game = valid_request(strval($_GET['game']), 0);
if (!$player && $uniqueid)
{
if (!$game)
{
header('Location: ' . $g_options['scripturl'] . "&mode=search&st=uniqueid&q=$uniqueid");
exit;
}
$db->query("
SELECT
playerId
FROM
hlstats_PlayerUniqueIds
WHERE
uniqueId='$uniqueid'
AND game='$game'
");
if ($db->num_rows() > 1)
{
header('Location: ' . $g_options['scripturl'] . "&mode=search&st=uniqueid&q=$uniqueid&game=$game");
exit;
}
elseif ($db->num_rows() < 1)
{
error("No players found matching uniqueId '$uniqueid'");
}
else
{
list($player) = $db->fetch_row();
$player = intval($player);
}
}
elseif (!$player && !$uniqueid)
{
error('No player ID specified.');
}
$db->query("
SELECT
hlstats_Players.playerId,
hlstats_Players.lastName,
hlstats_Players.game
FROM
hlstats_Players
WHERE
playerId=$player
");
if ($db->num_rows() != 1)
error("No such player '$player'.");
$playerdata = $db->fetch_array();
$db->free_result();
$pl_name = $playerdata['lastName'];
if (strlen($pl_name) > 10)
{
$pl_shortname = substr($pl_name, 0, 8) . '...';
}
else
{
$pl_shortname = $pl_name;
}
$pl_name = htmlspecialchars($pl_name, ENT_COMPAT);
$pl_shortname = htmlspecialchars($pl_shortname, ENT_COMPAT);
$pl_urlname = urlencode($playerdata['lastName']);
$game = $playerdata['game'];
$db->query("SELECT name FROM hlstats_Games WHERE code='$game'");
if ($db->num_rows() != 1)
$gamename = ucfirst($game);
else
list($gamename) = $db->fetch_row();
$tblWeapons = new Table(
array(
new TableColumn(
'weapon',
'Weapon',
'width=15&type=weaponimg&align=center&link=' . urlencode("mode=weaponinfo&weapon=%k&game=$game")
),
new TableColumn(
'modifier',
'Modifier',
'width=10&align=right'
),
new TableColumn(
'kills',
'Kills',
'width=11&align=right'
),
new TableColumn(
'kpercent',
'Perc. Kills',
'width=18&sort=no&type=bargraph'
),
new TableColumn(
'kpercent',
'%',
'width=5&sort=no&align=right&append=' . urlencode('%')
),
new TableColumn(
'headshots',
'Headshots',
'width=8&align=right'
),
new TableColumn(
'hpercent',
'Perc. Headshots',
'width=18&sort=no&type=bargraph'
),
new TableColumn(
'hpercent',
'%',
'width=5&sort=no&align=right&append=' . urlencode('%')
),
new TableColumn(
'hpk',
'Hpk',
'width=5&align=right'
)
),
'weapon',
'kills',
'weapon',
true,
9999,
'weap_page',
'weap_sort',
'weap_sortorder',
'weapons'
);
$db->query("
SELECT
COUNT(*)
FROM
hlstats_Events_Frags
LEFT JOIN hlstats_Servers ON
hlstats_Servers.serverId=hlstats_Events_Frags.serverId
WHERE
hlstats_Servers.game='$game' AND killerId=$player
");
list($realkills) = $db->fetch_row();
$db->query("
SELECT
COUNT(*)
FROM
hlstats_Events_Frags
LEFT JOIN hlstats_Servers ON
hlstats_Servers.serverId=hlstats_Events_Frags.serverId
WHERE
hlstats_Servers.game='$game' AND killerId=$player
AND headshot=1
");
list($realheadshots) = $db->fetch_row();
$result = $db->query("
SELECT
hlstats_Events_Frags.weapon,
IFNULL(hlstats_Weapons.modifier, 1.00) AS modifier,
COUNT(hlstats_Events_Frags.weapon) AS kills,
COUNT(hlstats_Events_Frags.weapon) / $realkills * 100 AS kpercent,
SUM(hlstats_Events_Frags.headshot=1) as headshots,
SUM(hlstats_Events_Frags.headshot=1) / COUNT(hlstats_Events_Frags.weapon) AS hpk,
SUM(hlstats_Events_Frags.headshot=1) / $realheadshots * 100 AS hpercent
FROM
hlstats_Events_Frags
LEFT JOIN hlstats_Weapons ON
hlstats_Weapons.code = hlstats_Events_Frags.weapon
LEFT JOIN hlstats_Servers ON
hlstats_Servers.serverId=hlstats_Events_Frags.serverId
WHERE
hlstats_Servers.game='$game' AND hlstats_Events_Frags.killerId=$player
AND (hlstats_Weapons.game='$game' OR hlstats_Weapons.weaponId IS NULL)
GROUP BY
hlstats_Events_Frags.weapon
ORDER BY
$tblWeapons->sort $tblWeapons->sortorder,
$tblWeapons->sort2 $tblWeapons->sortorder
");
$tblWeapons->draw($result, $db->num_rows($result), 100);
?>