84 lines
2.2 KiB
PHP
84 lines
2.2 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Firestone_Protocol_C2G_SendMsg
|
||
|
|
*
|
||
|
|
* @package Firestone_Protocol_C2G
|
||
|
|
* @since 2010-8-30
|
||
|
|
* @author yaojie
|
||
|
|
* 玩家发送信息
|
||
|
|
*/
|
||
|
|
|
||
|
|
class Firestone_Protocol_C2G_SendMsg extends Firestone_Protocol_QMEProtocolSendAbstract
|
||
|
|
{
|
||
|
|
|
||
|
|
const DATA_FORMAT = "a21a256V";
|
||
|
|
|
||
|
|
protected $_data = array(
|
||
|
|
'name' => '',
|
||
|
|
'data' => '',
|
||
|
|
'id' => 0);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return Firestone_Protocol_C2G_SendMsg
|
||
|
|
*/
|
||
|
|
public static function instance()
|
||
|
|
{
|
||
|
|
return parent::_instance();
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* 设置data
|
||
|
|
* @param array|string $key
|
||
|
|
* @param integer|string|null $val
|
||
|
|
* @return Firestone_Protocol_C2G_SendMsg
|
||
|
|
*/
|
||
|
|
public function setData($key, $val = null)
|
||
|
|
{
|
||
|
|
if (is_array($key) && ! is_numeric($key)) {
|
||
|
|
foreach ($key as $k => $v) {
|
||
|
|
$this->setData($k, $v);
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
if (! array_key_exists($key, $this->_data)) {
|
||
|
|
throw new Zeed_Exception("not match key");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
$this->_data[$key] = $val;
|
||
|
|
}
|
||
|
|
return $this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生产data二进制串
|
||
|
|
* @return Firestone_Protocol_C2G_SendMsg
|
||
|
|
*/
|
||
|
|
public function makeDataPack()
|
||
|
|
{
|
||
|
|
$this->_dataPackString = pack(self::DATA_FORMAT, $this->_data['name'], $this->_data['data'], $this->_data['id']);
|
||
|
|
return $this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生成最终的二进制串
|
||
|
|
*/
|
||
|
|
public function makeReturnPackString($header, $data)
|
||
|
|
{
|
||
|
|
$this->setHeader($header)->setData($data);
|
||
|
|
$this->makeHeaderPack()->makeDataPack();
|
||
|
|
|
||
|
|
if ('' == $this->_headerPackString) {
|
||
|
|
throw new Zeed_Exception('headerPackString is empty');
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
if ('' == $this->_dataPackString) {
|
||
|
|
throw new Zeed_Exception('dataPackString is empty');
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
$this->_returnPackString = $this->_headerPackString . $this->_dataPackString;
|
||
|
|
return $this->_returnPackString;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
// End ^ Native EOL ^ encoding
|