forked from devsam/core
NPC능동 추가
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
namespace sammo\GeneralCommand;
|
||||
|
||||
use \sammo\{
|
||||
DB, Util, JosaUtil,
|
||||
General,
|
||||
CityConst,
|
||||
ActionLogger,
|
||||
LastTurn
|
||||
};
|
||||
|
||||
use \sammo\Command;
|
||||
use \sammo\Constraint\Constraint;
|
||||
use function sammo\CriticalScore;
|
||||
use function sammo\uniqueItemEx;
|
||||
use function sammo\getGeneralLeadership;
|
||||
|
||||
|
||||
class che_NPC능동 extends Command\GeneralCommand{
|
||||
static protected $actionName = 'NPC능동';
|
||||
|
||||
protected function init(){
|
||||
|
||||
$general = $this->generalObj;
|
||||
|
||||
$this->runnableConstraints=[
|
||||
['MustBeNPC']
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
protected function argTest():bool{
|
||||
if(!key_exists('optionText', $this->arg)){
|
||||
return false;
|
||||
}
|
||||
|
||||
if($this->arg['optionText'] == '순간이동'){
|
||||
if(!key_exists('destCityID', $this->arg)){
|
||||
return false;
|
||||
}
|
||||
if(!key_exists($this->arg['destCityID'], CityConst::all())){
|
||||
return false;
|
||||
}
|
||||
$this->arg = [
|
||||
'optionText'=>$this->arg['optionText'],
|
||||
'destCityID'=>$this->arg['destCityID']
|
||||
];
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function getCost():array{
|
||||
return [0, 0];
|
||||
}
|
||||
|
||||
public function getPreReqTurn():int{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public function getPostReqTurn():int{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public function run():bool{
|
||||
if(!$this->isRunnable()){
|
||||
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
||||
}
|
||||
|
||||
$db = DB::db();
|
||||
|
||||
$general = $this->generalObj;
|
||||
|
||||
$logger = $general->getLogger();
|
||||
|
||||
$date = substr($general->getVar('turntime'),11,5);
|
||||
|
||||
if($this->arg['optionText'] == '순간이동'){
|
||||
$destCityID = $this->arg['destCityID'];
|
||||
$city = CityConst::byID($destCityID);
|
||||
$cityName = $city->name;
|
||||
$josaRo = JosaUtil::pick($cityName, '로');
|
||||
$logger->pushGeneralActionLog("NPC 전용 명령을 이용해 {$cityName}{$josaRo} 이동했습니다.");
|
||||
$general->setVar('city', $destCityID);
|
||||
|
||||
$general->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||
}
|
||||
|
||||
$general->applyDB($db);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -8,7 +8,8 @@ use \sammo\{
|
||||
getGeneralLeadership,getGeneralPower,getGeneralIntel,
|
||||
getDomesticExpLevelBonus,
|
||||
CriticalRatioDomestic, CriticalScore, TechLimit,
|
||||
uniqueItemEx
|
||||
uniqueItemEx,
|
||||
LastTurn
|
||||
};
|
||||
|
||||
use \sammo\Command;
|
||||
@@ -46,6 +47,7 @@ class che_기술연구 extends che_상업투자{
|
||||
}
|
||||
|
||||
protected function argTest():bool{
|
||||
$this->arg = null;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -124,7 +126,8 @@ class che_기술연구 extends che_상업투자{
|
||||
$general->increaseVar('experience', $exp);
|
||||
$general->increaseVar('dedication', $ded);
|
||||
$general->increaseVar(static::$statKey.'2', 1);
|
||||
$general->updateVar('resturn', 'SUCCESS');
|
||||
|
||||
$general->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||
$general->applyDB($db);
|
||||
|
||||
$this->checkStatChange();
|
||||
|
||||
@@ -8,7 +8,8 @@ use \sammo\{
|
||||
getGeneralLeadership,getGeneralPower,getGeneralIntel,
|
||||
getDomesticExpLevelBonus,
|
||||
CriticalRatioDomestic, CriticalScore,
|
||||
uniqueItemEx
|
||||
uniqueItemEx,
|
||||
LastTurn
|
||||
};
|
||||
|
||||
use \sammo\Command;
|
||||
@@ -48,6 +49,7 @@ class che_상업투자 extends Command\GeneralCommand{
|
||||
}
|
||||
|
||||
protected function argTest():bool{
|
||||
$this->arg = null;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -166,7 +168,7 @@ class che_상업투자 extends Command\GeneralCommand{
|
||||
$general->increaseVar('experience', $exp);
|
||||
$general->increaseVar('dedication', $ded);
|
||||
$general->increaseVar(static::$statKey.'2', 1);
|
||||
$general->updateVar('resturn', 'SUCCESS');
|
||||
$general->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||
$general->applyDB($db);
|
||||
|
||||
$this->checkStatChange();
|
||||
|
||||
@@ -8,7 +8,8 @@ use \sammo\{
|
||||
getGeneralLeadership,getGeneralPower,getGeneralIntel,
|
||||
getDomesticExpLevelBonus,
|
||||
CriticalRatioDomestic, CriticalScore,
|
||||
uniqueItemEx
|
||||
uniqueItemEx,
|
||||
LastTurn
|
||||
};
|
||||
|
||||
use \sammo\Command;
|
||||
@@ -47,6 +48,7 @@ class che_정착장려 extends Command\GeneralCommand{
|
||||
}
|
||||
|
||||
protected function argTest():bool{
|
||||
$this->arg = null;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -152,7 +154,7 @@ class che_정착장려 extends Command\GeneralCommand{
|
||||
$general->increaseVar('experience', $exp);
|
||||
$general->increaseVar('dedication', $ded);
|
||||
$general->increaseVar(static::$statKey.'2', 1);
|
||||
$general->updateVar('resturn', 'SUCCESS');
|
||||
$general->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||
$general->applyDB($db);
|
||||
|
||||
$this->checkStatChange();
|
||||
|
||||
@@ -8,7 +8,8 @@ use \sammo\{
|
||||
getGeneralLeadership,getGeneralPower,getGeneralIntel,
|
||||
getDomesticExpLevelBonus,
|
||||
CriticalRatioDomestic, CriticalScore,
|
||||
uniqueItemEx
|
||||
uniqueItemEx,
|
||||
LastTurn
|
||||
};
|
||||
|
||||
use \sammo\Command;
|
||||
@@ -47,6 +48,7 @@ class che_주민선정 extends Command\GeneralCommand{
|
||||
}
|
||||
|
||||
protected function argTest():bool{
|
||||
$this->arg = null;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -150,7 +152,7 @@ class che_주민선정 extends Command\GeneralCommand{
|
||||
$general->increaseVar('experience', $exp);
|
||||
$general->increaseVar('dedication', $ded);
|
||||
$general->increaseVar(static::$statKey.'2', 1);
|
||||
$general->updateVar('resturn', 'SUCCESS');
|
||||
$general->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||
$general->applyDB($db);
|
||||
|
||||
$this->checkStatChange();
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace sammo\Constraint;
|
||||
|
||||
class MustBeNPC extends Constraint{
|
||||
|
||||
public function checkInputValues(bool $throwExeception=true){
|
||||
if(!parent::checkInputValues($throwExeception) && !$throwException){
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!key_exists('npc', $this->general)){
|
||||
if(!$throwExeception){return false; }
|
||||
throw new \InvalidArgumentException("require npc in general");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function test():bool{
|
||||
$this->checkInputValues();
|
||||
$this->tested = true;
|
||||
|
||||
if($this->general['npc'] < 2){
|
||||
$this->reason = "NPC여야 합니다.";
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -124,8 +124,6 @@ CREATE TABLE `general` (
|
||||
`betgold` INT(8) NULL DEFAULT '0',
|
||||
`betwingold` INT(8) NULL DEFAULT '0',
|
||||
`last_turn` TEXT NOT NULL DEFAULT '{}',
|
||||
`recturn` TEXT NULL DEFAULT '',
|
||||
`resturn` VARCHAR(30) NULL DEFAULT '',
|
||||
`aux` TEXT NOT NULL DEFAULT '{}' COMMENT 'JSON',
|
||||
PRIMARY KEY (`no`),
|
||||
INDEX `nation` (`nation`, `npc`),
|
||||
|
||||
Reference in New Issue
Block a user