. */ namespace GameQ\Protocols; use GameQ\Buffer; /** * Class Dow * * Apparently the player response is incomplete as there is no information being returned for that packet * * @package GameQ\Protocols * @author Austin Bischoff */ class Dow extends Source { /** * String name of this protocol class * * @type string */ protected $name = 'dow'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Days of War"; /** * Normalize main fields * * @var array */ protected $normalize = [ // General 'general' => [ // target => source 'gametype' => 'G_s', 'hostname' => 'ONM_s', 'mapname' => 'MPN_s', 'maxplayers' => 'P_i', 'numplayers' => 'N_i', ], // Individual 'player' => [ 'name' => 'name', 'score' => 'score', 'time' => 'time', ], ]; }