| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /**
- * This file is part of GameQ.
- *
- * GameQ is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * GameQ 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 Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- namespace GameQ\Protocols;
- /**
- * Class Battlefield 2
- *
- * @package GameQ\Protocols
- * @author Austin Bischoff <[email protected]>
- */
- class Bf2 extends Gamespy3
- {
- /**
- * String name of this protocol class
- *
- * @type string
- */
- protected $name = 'bf2';
- /**
- * Longer string name of this protocol class
- *
- * @type string
- */
- protected $name_long = "Battlefield 2";
- /**
- * query_port = client_port + 8433
- * 29900 = 16567 + 13333
- *
- * @type int
- */
- protected $port_diff = 13333;
- /**
- * The client join link
- *
- * @type string
- */
- protected $join_link = "bf2://%s:%d";
- /**
- * BF2 has a different query packet to send than "normal" Gamespy 3
- *
- * @var array
- */
- protected $packets = [
- self::PACKET_ALL => "\xFE\xFD\x00\x10\x20\x30\x40\xFF\xFF\xFF\x01",
- ];
- /**
- * Normalize settings for this protocol
- *
- * @type array
- */
- protected $normalize = [
- // General
- 'general' => [
- // target => source
- 'dedicated' => 'dedicated',
- 'gametype' => 'gametype',
- 'hostname' => 'hostname',
- 'mapname' => 'mapname',
- 'maxplayers' => 'maxplayers',
- 'numplayers' => 'numplayers',
- 'password' => 'password',
- ],
- // Individual
- 'player' => [
- 'name' => 'player',
- 'kills' => 'score',
- 'deaths' => 'deaths',
- 'ping' => 'ping',
- 'score' => 'score',
- ],
- 'team' => [
- 'name' => 'team',
- 'score' => 'score',
- ],
- ];
- }
|