1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 18:04:08 +02:00

upload wip

This commit is contained in:
Robin Appelman 2017-01-31 13:34:54 +01:00
commit fca5d7b0a6
15 changed files with 2146 additions and 164 deletions

156
Demo/Header.php Normal file
View file

@ -0,0 +1,156 @@
<?php namespace Demo;
/**
* HL2 demo metadata
*/
class Header {
/**
* @var string
*/
protected $type;
/**
* @var int
*/
protected $version;
/**
* @var int
*/
protected $protocol;
/**
* @var string
*/
protected $server;
/**
* @var string
*/
protected $nick;
/**
* @var string
*/
protected $map;
/**
* @var string
*/
protected $game;
/**
* @var float
*/
protected $duration;
/**
* @var int
*/
protected $ticks;
/**
* @var int
*/
protected $frames;
/**
* @var int
*/
protected $sigon;
/**
* @param array $info
*/
public function __construct($info) {
$this->type = $info['type'];
$this->version = $info['version'];
$this->protocol = $info['protocol'];
$this->server = $info['server'];
$this->nick = $info['nick'];
$this->map = $info['map'];
$this->game = $info['game'];
$this->duration = $info['duration'];
$this->ticks = $info['ticks'];
$this->frames = $info['frames'];
$this->sigon = $info['sigon'];
}
/**
* @return float
*/
public function getDuration() {
return $this->duration;
}
/**
* @return int
*/
public function getFrames() {
return $this->frames;
}
/**
* @return string
*/
public function getGame() {
return $this->game;
}
/**
* @return string
*/
public function getMap() {
return $this->map;
}
/**
* @return string
*/
public function getNick() {
return $this->nick;
}
/**
* @return int
*/
public function getProtocol() {
return $this->protocol;
}
/**
* @return string
*/
public function getServer() {
return $this->server;
}
/**
* @return int
*/
public function getSigon() {
return $this->sigon;
}
/**
* @return int
*/
public function getTicks() {
return $this->ticks;
}
/**
* @return string
*/
public function getType() {
return $this->type;
}
/**
* @return int
*/
public function getVersion() {
return $this->version;
}
}