선포 동안에는 초토화 가능하도록 수정

This commit is contained in:
2020-06-06 15:43:29 +09:00
parent 8ca365da7b
commit 38cf897ae1
+230 -231
View File
@@ -1,232 +1,231 @@
<?php <?php
namespace sammo\Command\Nation; namespace sammo\Command\Nation;
use \sammo\{ use \sammo\{
DB, Util, JosaUtil, DB, Util, JosaUtil,
General, DummyGeneral, General, DummyGeneral,
ActionLogger, ActionLogger,
GameConst, GameConst,
LastTurn, LastTurn,
GameUnitConst, GameUnitConst,
Command, Command,
MessageTarget, MessageTarget,
Message, Message,
CityConst, CityConst,
CityInitialDetail CityInitialDetail
}; };
use function \sammo\{ use function \sammo\{
getDomesticExpLevelBonus, getDomesticExpLevelBonus,
CriticalRatioDomestic, CriticalRatioDomestic,
CriticalScoreEx, CriticalScoreEx,
GetImageURL, GetImageURL,
getNationStaticInfo getNationStaticInfo
}; };
use \sammo\Constraint\Constraint; use \sammo\Constraint\Constraint;
use \sammo\Constraint\ConstraintHelper; use \sammo\Constraint\ConstraintHelper;
use sammo\Event\Action; use sammo\Event\Action;
class che_초토화 extends Command\NationCommand{ class che_초토화 extends Command\NationCommand{
static protected $actionName = '초토화'; static protected $actionName = '초토화';
static public $reqArg = true; static public $reqArg = true;
private $cachedDist = null; private $cachedDist = null;
protected function argTest():bool{ protected function argTest():bool{
if($this->arg === null){ if($this->arg === null){
return false; return false;
} }
if(!key_exists('destCityID', $this->arg)){ if(!key_exists('destCityID', $this->arg)){
return false; return false;
} }
if(CityConst::byID($this->arg['destCityID']) === null){ if(CityConst::byID($this->arg['destCityID']) === null){
return false; return false;
} }
$destCityID = $this->arg['destCityID']; $destCityID = $this->arg['destCityID'];
$this->arg = [ $this->arg = [
'destCityID'=>$destCityID, 'destCityID'=>$destCityID,
]; ];
return true; return true;
} }
protected function init(){ protected function init(){
$general = $this->generalObj; $general = $this->generalObj;
$env = $this->env; $env = $this->env;
$this->setCity(); $this->setCity();
$this->setNation(['surlimit', 'gold', 'rice', 'capital']); $this->setNation(['surlimit', 'gold', 'rice', 'capital']);
$this->minConditionConstraints=[ $this->minConditionConstraints=[
ConstraintHelper::OccupiedCity(), ConstraintHelper::OccupiedCity(),
ConstraintHelper::BeChief(), ConstraintHelper::BeChief(),
ConstraintHelper::SuppliedCity(), ConstraintHelper::SuppliedCity(),
ConstraintHelper::ReqNationValue('surlimit', '제한 턴', '==', 0, '외교제한 턴이 남아있습니다.'), ConstraintHelper::ReqNationValue('surlimit', '제한 턴', '==', 0, '외교제한 턴이 남아있습니다.'),
]; ];
} }
protected function initWithArg() protected function initWithArg()
{ {
$this->setDestCity($this->arg['destCityID']); $this->setDestCity($this->arg['destCityID']);
$this->fullConditionConstraints=[ $this->fullConditionConstraints=[
ConstraintHelper::OccupiedCity(), ConstraintHelper::OccupiedCity(),
ConstraintHelper::OccupiedDestCity(), ConstraintHelper::OccupiedDestCity(),
ConstraintHelper::BeChief(), ConstraintHelper::BeChief(),
ConstraintHelper::SuppliedCity(), ConstraintHelper::SuppliedCity(),
ConstraintHelper::SuppliedDestCity(), ConstraintHelper::SuppliedDestCity(),
ConstraintHelper::ReqNationValue('capital', '수도', '!=', $this->destCity['city'], '수도입니다.'), ConstraintHelper::ReqNationValue('capital', '수도', '!=', $this->destCity['city'], '수도입니다.'),
ConstraintHelper::ReqNationValue('surlimit', '제한 턴', '==', 0, '외교제한 턴이 남아있습니다.'), ConstraintHelper::ReqNationValue('surlimit', '제한 턴', '==', 0, '외교제한 턴이 남아있습니다.'),
ConstraintHelper::DisallowDiplomacyStatus($this->generalObj->getNationID(), [ ConstraintHelper::DisallowDiplomacyStatus($this->generalObj->getNationID(), [
0 => '평시에만 가능합니다.', 0 => '평시에만 가능합니다.',
1 => '평시에만 가능합니다.' ], ),
], ), ];
]; }
}
public function getCost():array{
public function getCost():array{ return [0, 0];
return [0, 0]; }
}
public function getPreReqTurn():int{
public function getPreReqTurn():int{ return 2;
return 2; }
}
public function getPostReqTurn():int{
public function getPostReqTurn():int{ return 24;
return 24; }
}
public function getCommandDetailTitle():string{
public function getCommandDetailTitle():string{ $name = $this->getName();
$name = $this->getName();
$reqTurn = $this->getPreReqTurn()+1;
$reqTurn = $this->getPreReqTurn()+1;
return "{$name}/{$reqTurn}턴(공백지화, 금쌀 회수, 수뇌진 명성하락)";
return "{$name}/{$reqTurn}턴(공백지화, 금쌀 회수, 수뇌진 명성하락)"; }
}
public function getBrief():string{
public function getBrief():string{ $commandName = $this->getName();
$commandName = $this->getName(); $destCityName = CityConst::byID($this->arg['destCityID'])->name;
$destCityName = CityConst::byID($this->arg['destCityID'])->name; $josaUl = JosaUtil::pick($destCityName, '을');
$josaUl = JosaUtil::pick($destCityName, '을'); return "{$destCityName}{$josaUl} {$commandName}";
return "{$destCityName}{$josaUl} {$commandName}"; }
}
public function calcReturnAmount(array $destCity):int{
public function calcReturnAmount(array $destCity):int{ $amount = $destCity['pop'] / 5;
$amount = $destCity['pop'] / 5; foreach(['agri', 'comm', 'secu'] as $cityRes){
foreach(['agri', 'comm', 'secu'] as $cityRes){ $cityResMax = "{$cityRes}_max";
$cityResMax = "{$cityRes}_max"; $amount *= (($destCity[$cityRes] - $destCity[$cityResMax] * 0.5) / $destCity[$cityResMax]) + 0.8;
$amount *= (($destCity[$cityRes] - $destCity[$cityResMax] * 0.5) / $destCity[$cityResMax]) + 0.8; }
} return Util::toInt($amount);
return Util::toInt($amount); }
}
public function run():bool{
public function run():bool{ if(!$this->hasFullConditionMet()){
if(!$this->hasFullConditionMet()){ throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도'); }
}
$db = DB::db();
$db = DB::db();
$general = $this->generalObj;
$general = $this->generalObj; $generalID = $general->getID();
$generalID = $general->getID(); $generalName = $general->getName();
$generalName = $general->getName(); $date = $general->getTurnTime($general::TURNTIME_HM);
$date = $general->getTurnTime($general::TURNTIME_HM);
$destCity = $this->destCity;
$destCity = $this->destCity; $destCityID = $destCity['city'];
$destCityID = $destCity['city']; $destCityName = $destCity['name'];
$destCityName = $destCity['name'];
$nationID = $general->getNationID();
$nationID = $general->getNationID(); $nationName = $this->nation['name'];
$nationName = $this->nation['name'];
$josaUl = JosaUtil::pick($destCityName, '을');
$josaUl = JosaUtil::pick($destCityName, '을');
$logger = $general->getLogger();
$logger = $general->getLogger();
$general->addExperience(-$general->getVar('experience') * 0.1, false);
$general->addExperience(-$general->getVar('experience') * 0.1, false); $general->addExperience(5 * ($this->getPreReqTurn() + 1));
$general->addExperience(5 * ($this->getPreReqTurn() + 1)); $general->addDedication(5 * ($this->getPreReqTurn() + 1));
$general->addDedication(5 * ($this->getPreReqTurn() + 1));
$josaYi = JosaUtil::pick($generalName, '이');
$josaYi = JosaUtil::pick($generalName, '이'); $josaYiNation = JosaUtil::pick($nationName, '이');
$josaYiNation = JosaUtil::pick($nationName, '이');
$amount = $this->calcReturnAmount($destCity);
$amount = $this->calcReturnAmount($destCity);
$db->update('general', [
$db->update('general', [ 'experience'=>$db->sqleval('experience * 0.9')
'experience'=>$db->sqleval('experience * 0.9') ], 'nation = %i AND officer_level >= 5 AND no!=%i', $nationID, $generalID);
], 'nation = %i AND officer_level >= 5 AND no!=%i', $nationID, $generalID);
$db->update('general', [
$db->update('general', [ 'betray'=>$db->sqleval('betray + 1')
'betray'=>$db->sqleval('betray + 1') ], 'nation = %i AND no!=%i', $nationID, $generalID);
], 'nation = %i AND no!=%i', $nationID, $generalID); $general->increaseVar('betray', 1);
$general->increaseVar('betray', 1);
$db->update('city', [
$db->update('city', [ 'trust'=>$db->sqleval('greatest(50, trust)'),
'trust'=>$db->sqleval('greatest(50, trust)'), 'pop'=>$db->sqleval('greatest(pop_max*0.1, pop*0.2)'),
'pop'=>$db->sqleval('greatest(pop_max*0.1, pop*0.2)'), 'agri'=>$db->sqleval('greatest(agri_max*0.1, agri*0.2)'),
'agri'=>$db->sqleval('greatest(agri_max*0.1, agri*0.2)'), 'comm'=>$db->sqleval('greatest(comm_max*0.1, comm*0.2)'),
'comm'=>$db->sqleval('greatest(comm_max*0.1, comm*0.2)'), 'nation'=>0,
'nation'=>0, 'front'=>0,
'front'=>0, 'conflict'=>'{}'
'conflict'=>'{}' ], 'city=%i', $destCityID);
], 'city=%i', $destCityID);
$db->update('nation', [
$db->update('nation', [ 'gold' => $db->sqleval('gold + %i', $amount),
'gold' => $db->sqleval('gold + %i', $amount), 'rice' => $db->sqleval('rice + %i', $amount),
'rice' => $db->sqleval('rice + %i', $amount), 'surlimit' => $db->sqleval('surlimit + %i', $this->getPostReqTurn()),
'surlimit' => $db->sqleval('surlimit + %i', $this->getPostReqTurn()), ], 'nation=%i', $nationID);
], 'nation=%i', $nationID);
\sammo\refreshNationStaticInfo();
\sammo\refreshNationStaticInfo(); \sammo\SetNationFront($nationID);
\sammo\SetNationFront($nationID);
$logger->pushGeneralActionLog("<G><b>{$destCityName}</b></>{$josaUl} 초토화했습니다. <1>$date</>");
$logger->pushGeneralActionLog("<G><b>{$destCityName}</b></>{$josaUl} 초토화했습니다. <1>$date</>"); $logger->pushGeneralHistoryLog("<G><b>{$destCityName}</b></>{$josaUl} <M>초토화</> 명령");
$logger->pushGeneralHistoryLog("<G><b>{$destCityName}</b></>{$josaUl} <M>초토화</> 명령"); $logger->pushNationalHistoryLog("<Y>{$generalName}</>{$josaYi} <G><b>{$destCityName}</b></>{$josaUl} <M>초토화</> 명령");
$logger->pushNationalHistoryLog("<Y>{$generalName}</>{$josaYi} <G><b>{$destCityName}</b></>{$josaUl} <M>초토화</> 명령"); $logger->pushGlobalActionLog("<Y>{$generalName}</>{$josaYi} <G><b>{$destCityName}</b></>{$josaUl} <M>초토화</>하였습니다.");
$logger->pushGlobalActionLog("<Y>{$generalName}</>{$josaYi} <G><b>{$destCityName}</b></>{$josaUl} <M>초토화</>하였습니다."); $logger->pushGlobalHistoryLog("<S><b>【초토화】</b></><D><b>{$nationName}</b></>{$josaYiNation} <G><b>{$destCityName}</b></>{$josaUl} <M>초토화</>하였습니다.");
$logger->pushGlobalHistoryLog("<S><b>【초토화】</b></><D><b>{$nationName}</b></>{$josaYiNation} <G><b>{$destCityName}</b></>{$josaUl} <M>초토화</>하였습니다.");
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0)); $general->applyDB($db);
$general->applyDB($db); return true;
return true; }
}
public function getJSFiles(): array
public function getJSFiles(): array {
{ return [
return [ 'js/defaultSelectCityByMap.js'
'js/defaultSelectCityByMap.js' ];
]; }
}
public function getForm(): string
public function getForm(): string {
{
$cities = Util::convertArrayToDict(DB::db()->query('SELECT * FROM city WHERE nation =%i', $this->generalObj->getNationID()), 'city');
$cities = Util::convertArrayToDict(DB::db()->query('SELECT * FROM city WHERE nation =%i', $this->generalObj->getNationID()), 'city'); $calc = function(CityInitialDetail $constCity)use($cities){
$calc = function(CityInitialDetail $constCity)use($cities){ if(!key_exists($constCity->id, $cities)){
if(!key_exists($constCity->id, $cities)){ return null;
return null; }
} $amount = $this->calcReturnAmount($cities[$constCity->id]);
$amount = $this->calcReturnAmount($cities[$constCity->id]); $amountText = number_format($amount);
$amountText = number_format($amount); return "금쌀 각 {$amountText} 회수";
return "금쌀 각 {$amountText} 회수"; };
}; ob_start();
ob_start(); ?>
?> <?=\sammo\getMapHtml()?><br>
<?=\sammo\getMapHtml()?><br> 선택된 도시를 초토화 시킵니다.<br>
선택된 도시를 초토화 시킵니다.<br> 도시가 공백지가 되며, 도시의 인구, 내정 상태에 따라 상당량의 국고가 확보됩니다.<br>
도시가 공백지가 되며, 도시의 인구, 내정 상태에 따라 상당량의 국고가 확보됩니다.<br> 국가의 수뇌들은 명성을 잃고, 모든 장수들은 배신 수치가 1 증가합니다.<br>
국가의 수뇌들은 명성을 잃고, 모든 장수들은 배신 수치가 1 증가합니다.<br> 목록을 선택하거나 도시를 클릭하세요.<br>
목록을 선택하거나 도시를 클릭하세요.<br> <select class='formInput' name="destCityID" id="destCityID" size='1' style='color:white;background-color:black;'>
<select class='formInput' name="destCityID" id="destCityID" size='1' style='color:white;background-color:black;'> <?=\sammo\optionsForCities($calc)?><br>
<?=\sammo\optionsForCities($calc)?><br> </select> <input type=button id="commonSubmit" value="<?=$this->getName()?>"><br>
</select> <input type=button id="commonSubmit" value="<?=$this->getName()?>"><br> <br>
<br> <?php
<?php return ob_get_clean();
return ob_get_clean(); }
}
} }