1
This commit is contained in:
parent
a89b04db72
commit
42d1f3dff1
@ -40,10 +40,11 @@ class Gun(object):
|
|||||||
'params': [
|
'params': [
|
||||||
_common.ReqHead(),
|
_common.ReqHead(),
|
||||||
['type_id', 0, '枪支类型'],
|
['type_id', 0, '枪支类型'],
|
||||||
['talent_id', 0, '天赋点'],
|
['talent_id', 0, '天赋id'],
|
||||||
],
|
],
|
||||||
'response': [
|
'response': [
|
||||||
_common.RspHead(),
|
_common.RspHead(),
|
||||||
|
['property_chg', _common.PropertyChg(), '属性变更'],
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
@ -52,8 +52,36 @@ class GunController extends BaseAuthedController {
|
|||||||
{
|
{
|
||||||
$typeId = getReqVal('type_id', 0);
|
$typeId = getReqVal('type_id', 0);
|
||||||
$talentId = getReqVal('talent_id', 0);
|
$talentId = getReqVal('talent_id', 0);
|
||||||
|
|
||||||
|
$talentMeta = mt\GunTalent::get($typeId);
|
||||||
|
if (!$talentMeta) {
|
||||||
|
$this->_rspErr(1, 'type_id参数错误');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!mt\GunTalent::isValidTalent($talentMeta, $talentId)) {
|
||||||
|
$this->_rspErr(1, 'talent_id参数错误');
|
||||||
|
return;
|
||||||
|
}
|
||||||
$talentDb = GunTalent::find($typeId, $talentId);
|
$talentDb = GunTalent::find($typeId, $talentId);
|
||||||
$currLv = isset($talentDb) ? $talentDb['talent_lv'] : 0;
|
$currLv = isset($talentDb) ? $talentDb['talent_lv'] : 0;
|
||||||
|
$growMeta = mt\GunTalentGrow::getByIdLv($talentId, $currLv + 1);
|
||||||
|
if (!$growMeta) {
|
||||||
|
$this->_rspErr(2, '已满级');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$ormUserInfo = $this->_getOrmUserInfo();
|
||||||
|
$costList = mt\GunTalentGrow::getCostList($growMeta);
|
||||||
|
$lackItem = array();
|
||||||
|
if (!$this->_hasEnoughItems($costList, $lackItem)) {
|
||||||
|
$this->_rspErr(3, '缺少材料');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
GunTalent::upgradeLv($typeId, $talentId, $currLv + 1);
|
||||||
|
$this->_rspData(array(
|
||||||
|
'property_chg' => array(
|
||||||
|
'user_info' => User::info($this->_getOrmUserInfo())
|
||||||
|
)
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
class ServerSwitchController extends BaseAuthedController {
|
|
||||||
|
|
||||||
public function getSwitch()
|
|
||||||
{
|
|
||||||
$payable = 0;
|
|
||||||
echo json_encode(array(
|
|
||||||
'errcode' => 0,
|
|
||||||
'errmsg' => '',
|
|
||||||
'payable' => $payable,
|
|
||||||
'show_team_ui' => 1
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -15,7 +15,7 @@ class GunTalent extends BaseModel {
|
|||||||
array(
|
array(
|
||||||
'account_id' => myself()->_getAccountId(),
|
'account_id' => myself()->_getAccountId(),
|
||||||
'type_id' => $typeId,
|
'type_id' => $typeId,
|
||||||
'type_id' => $row['type_id'],
|
'talent_id' => $talentId
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
return $row;
|
return $row;
|
||||||
@ -30,4 +30,29 @@ class GunTalent extends BaseModel {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function upgradeLv($typeId, $talentId, $talentLv)
|
||||||
|
{
|
||||||
|
SqlHelper::upsert(
|
||||||
|
myself()->_getSelfMysql(),
|
||||||
|
't_gun_talent',
|
||||||
|
array(
|
||||||
|
'account_id' => myself()->_getAccountId(),
|
||||||
|
'type_id' => $typeId,
|
||||||
|
'talent_id' => $talentId
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'talent_lv' => $talentLv,
|
||||||
|
'modifytime' => myself()->_getNowTime()
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'account_id' => myself()->_getAccountId(),
|
||||||
|
'type_id' => $typeId,
|
||||||
|
'talent_id' => $talentId,
|
||||||
|
'talent_lv' => $talentLv,
|
||||||
|
'createtime' => myself()->_getNowTime(),
|
||||||
|
'modifytime' => myself()->_getNowTime()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ class GunTalent {
|
|||||||
|
|
||||||
public static function isValidTalent($meta, $talentId)
|
public static function isValidTalent($meta, $talentId)
|
||||||
{
|
{
|
||||||
$strArr = explode("|", $meta["list"]);
|
$strArr = explode("|", $meta["talent_list"]);
|
||||||
return in_array($talentId, $strArr);
|
return in_array($talentId, $strArr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user