Sunday, October 24, 2010
Thursday, October 14, 2010
Source engine query with php part2
include 'query.php';
$Server = 'SERVERSIP+PORT';
if(isset($_GET['server'])){
$Server = $_GET['server'];
}
//-----------------------------------------------------------------
//Query + Server data Out + filtering
$q = source_query($Server);
$Sv = explode(':', $Server);
$SvIp = $Sv[0];
$SvPo = $Sv[1];
$q['appid'] = str_replace(160, 'Garrysmod', $q['appid']);
$q['appid'] = str_replace(184, 'Team_Fortress_2', $q['appid']);
$q['appid'] = str_replace(240, 'Counter-Strike:_Source', $q['appid']);
$map = substr($q['map'],0,14);
print_r($q);
//------------------------------------------------------------------
// Template Image
$im = imagecreatefrompng ("banner.png");
//------------------------------------------------------------------
//Check to see if i have a pic of the map
$mappic = "maps/".$q['map'].".png";
$nomap = "none.png";
if (file_exists($mappic)) {
echo "GOOD I HAVE A PIC OF THE MAP! ";
$insert = imagecreatefrompng($mappic);
} else {
echo "SAD FACE I DON'T HAVE PIC OF MAP ";
$insert = imagecreatefrompng($nomap);
}
print_r($mappic);
$insert_x = imagesx($insert);
$insert_y = imagesy($insert);
//-----------------------------------------------------------------
//PICK SOME COLOURS!!!!! IN RGB PLEASE
$colour = imagecolorallocate($im, 255, 255, 255);
$red = imagecolorallocate($im, 255, 0, 0);
$green = imagecolorallocate($im, 34, 139, 34);
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
//------------------------------------------------------------------
//FONTS!!!! ADD MORE IF YOU WANT
$font = 'pirulen.ttf';
//------------------------------------------------------------------
//SEE IF SERVER IS ONLINE????
if ($q['name'] != ''){
$name = substr($q['name'],0,26);
$namecolour = $green;
}
else
{
$name = "OFFLINE";
$namecolour = $red;
}
//--------------------------------------------------------------------
//OUTPUT FILTERED SERVER DATA TO PIC
$maxplayers = $q['max'];
$player = $q['players'];
$ip = $SvIp;
$map = $map;
$port = $SvPo;
$players = $player."/".$maxplayers;
// PUT TEXT ON IMAGE (SIZE,ROTATE,X,Y,COLOUR,FONT,DATA)
imagettftext($im, 10, 0, 120, 32, $namecolour, $font, $name);
imagettftext($im, 10, 0, 120, 60, $colour, $font, $ip);
imagettftext($im, 10, 0, 120, 86, $colour, $font, $map);
imagettftext($im, 10, 0, 295, 60, $colour, $font, $port);
imagettftext($im, 10, 0, 350, 86, $colour, $font, $players);
//make the pic + put map pic ontop
imagecopymerge($im,$insert,455,20,0,0,$insert_x,$insert_y,100);
imagepng($im,'serverbanner.png');
imagedestroy($im);
This php code will create a image file much like game trackers output. This is the input file.
This is the output of the file, if i had i pic of the map it would display in the map box.
Source engine query with php
?php
function source_query($ip)
{
//set timeout in ms
$timeout = "1";
$cut = explode(":", $ip);
$HL2_address = $cut[0];
$HL2_port = $cut[1];
$HL2_command = "\377\377\377\377TSource Engine Query\0";
$HL2_socket = fsockopen("udp://" . $HL2_address, $HL2_port, $errno, $errstr, 3);
fwrite($HL2_socket, $HL2_command);
socket_set_timeout($HL2_socket,$timeout);
$JunkHead = fread($HL2_socket, 4);
$CheckStatus = socket_get_status($HL2_socket);
//print_r($CheckStatus);
if ($CheckStatus["unread_bytes"] == 0)
return 0;
if ($CheckStatus['timed_out'] == 1) {
return 0;
}
$do = 1;
while ($do) {
$str = fread($HL2_socket, 1);
$HL2_stats .= $str;
$status = socket_get_status($HL2_socket);
if ($status["unread_bytes"] == 0) {
$do = 0;
}
}
fclose($HL2_socket);
$x = 0;
while ($x <= strlen($HL2_stats)) {
$x++;
$result .= substr($HL2_stats, $x, 1);
}
// ord ( string $string );
$result = str_split($result);
$info['network'] = ord($result[0]);
$char = 1;
while (ord($result[$char]) != "") {
$info['name'] .= $result[$char];
$char++;
}
$char++;
while (ord($result[$char]) != "") {
$info['map'] .= $result[$char];
$char++;
}
$char++;
while (ord($result[$char]) != "") {
$info['dir'] .= $result[$char];
$char++;
}
$char++;
while (ord($result[$char]) != "") {
$info['description'] .= $result[$char];
$char++;
}
$char++;
$info['appid'] = ord($result[$char] . $result[($char + 1)]);
$char += 2;
$info['players'] = ord($result[$char]);
$char++;
$info['max'] = ord($result[$char]);
$char++;
$info['bots'] = ord($result[$char]);
$char++;
$info['dedicated'] = ord($result[$char]);
$char++;
$info['os'] = chr(ord($result[$char]));
$char++;
$info['password'] = ord($result[$char]);
$char++;
$info['secure'] = ord($result[$char]);
$char++;
while (ord($result[$char]) != "") {
$info['version'] .= $result[$char];
$char++;
}
return $info;
}
?
This will allow you to query any source game server like CSS TF2 and GarrysMod for it's information like players, map, OS and many more from a webpage.
Saturday, October 9, 2010
My soon to come virtual server
The vote showed more people wanted to see more stuff about computer hardware on my blog, so I am posting my non confirmed specs of my virtualization server I will be getting hopefully before the end of the year.
Please note this is without shopping around for prices it’s just a estimate at this point in time. Please let me know what you think or any suggestions, maybe switch to Intel?
Friday, October 1, 2010
Subscribe to:
Posts (Atom)

