commit3ef363a01eAuthor: hide_d <hided62@gmail.com> Date: Mon Sep 6 02:30:00 2021 +0900 fix: 은퇴 시 숙련 포인트를 지나치게 많이 받는 문제 수정 commit9e68bc90c2Author: hide_d <hided62@gmail.com> Date: Mon Sep 6 02:17:56 2021 +0900 재야에서 도시보기 warning commitd2590607c2Author: hide_d <hided62@gmail.com> Date: Sun Sep 5 23:05:06 2021 +0900 fix: div 0 commit2bce6e4f02Author: hide_d <hided62@gmail.com> Date: Sun Sep 5 23:02:52 2021 +0900 warning 메시지 수정 commite64812da72Author: hide_d <hided62@gmail.com> Date: Sat Sep 4 03:42:09 2021 +0900 fix: m장, 의병장 숙련이 설정되지 않는 버그 수정 commit7cd40fca03Author: hide_d <hided62@gmail.com> Date: Sat Aug 21 16:04:03 2021 +0900 fix: 모병/징병에서 조건 검사부 통솔 계산값 commitd1568a3b2cAuthor: hide_d <hided62@gmail.com> Date: Sat Aug 21 02:50:54 2021 +0900 허보에 수몰이 같이 들어간 버그 수정 commite7dcc84afcAuthor: hide_d <hided62@gmail.com> Date: Thu Aug 19 14:51:50 2021 +0900 REAMDME.md 버전 수정 commit8eaa940d4eAuthor: hide_d <hided62@gmail.com> Date: Wed Aug 18 20:40:37 2021 +0900 Revert "fix: 7.2에서 오동작 버그 수정" This reverts commit9997675b1d. commit9997675b1dAuthor: hide_d <hided62@gmail.com> Date: Wed Aug 18 20:32:47 2021 +0900 fix: 7.2에서 오동작 버그 수정 commit9ef566f11fAuthor: hide_d <hided62@gmail.com> Date: Wed Aug 18 20:26:31 2021 +0900 fix: 아이템중 WarActivateSkill 관련 중첩 해제 버그 수정
226 lines
7.4 KiB
PHP
226 lines
7.4 KiB
PHP
<?php
|
|
|
|
namespace sammo\Command\Nation;
|
|
|
|
use \sammo\DB;
|
|
use \sammo\Util;
|
|
use \sammo\JosaUtil;
|
|
use \sammo\General;
|
|
use \sammo\DummyGeneral;
|
|
use \sammo\ActionLogger;
|
|
use \sammo\GameConst;
|
|
use \sammo\LastTurn;
|
|
use \sammo\GameUnitConst;
|
|
use \sammo\Command;
|
|
use \sammo\MessageTarget;
|
|
use \sammo\Message;
|
|
use \sammo\CityConst;
|
|
|
|
use function \sammo\getNationStaticInfo;
|
|
|
|
use \sammo\Constraint\Constraint;
|
|
use \sammo\Constraint\ConstraintHelper;
|
|
use sammo\Event\Action;
|
|
|
|
class che_허보 extends Command\NationCommand
|
|
{
|
|
static protected $actionName = '허보';
|
|
static public $reqArg = true;
|
|
|
|
protected function argTest(): bool
|
|
{
|
|
if ($this->arg === null) {
|
|
return false;
|
|
}
|
|
if (!key_exists('destCityID', $this->arg)) {
|
|
return false;
|
|
}
|
|
if (CityConst::byID($this->arg['destCityID']) === null) {
|
|
return false;
|
|
}
|
|
$destCityID = $this->arg['destCityID'];
|
|
|
|
$this->arg = [
|
|
'destCityID' => $destCityID,
|
|
];
|
|
|
|
return true;
|
|
}
|
|
|
|
protected function init()
|
|
{
|
|
$general = $this->generalObj;
|
|
|
|
$env = $this->env;
|
|
|
|
$this->setCity();
|
|
$this->setNation(['strategic_cmd_limit']);
|
|
|
|
$this->minConditionConstraints = [
|
|
ConstraintHelper::OccupiedCity(),
|
|
ConstraintHelper::BeChief(),
|
|
ConstraintHelper::AvailableStrategicCommand(),
|
|
];
|
|
}
|
|
|
|
protected function initWithArg()
|
|
{
|
|
$this->setDestCity($this->arg['destCityID']);
|
|
$this->setDestNation($this->destCity['nation']);
|
|
|
|
$this->fullConditionConstraints = [
|
|
ConstraintHelper::OccupiedCity(),
|
|
ConstraintHelper::BeChief(),
|
|
ConstraintHelper::NotNeutralDestCity(),
|
|
ConstraintHelper::NotOccupiedDestCity(),
|
|
ConstraintHelper::AllowDiplomacyBetweenStatus(
|
|
[0, 1],
|
|
'선포, 전쟁중인 상대국에게만 가능합니다.'
|
|
),
|
|
ConstraintHelper::AvailableStrategicCommand(),
|
|
];
|
|
}
|
|
|
|
public function getCommandDetailTitle(): string
|
|
{
|
|
$name = $this->getName();
|
|
$reqTurn = $this->getPreReqTurn() + 1;
|
|
$postReqTurn = $this->getPostReqTurn();
|
|
|
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
|
}
|
|
|
|
public function getCost(): array
|
|
{
|
|
return [0, 0];
|
|
}
|
|
|
|
public function getPreReqTurn(): int
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
public function getPostReqTurn(): int
|
|
{
|
|
$genCount = Util::valueFit($this->nation['gennum'], GameConst::$initialNationGenLimit);
|
|
$nextTerm = Util::round(sqrt($genCount * 4) * 10);
|
|
|
|
$nextTerm = $this->generalObj->onCalcStrategic($this->getName(), 'delay', $nextTerm);
|
|
return $nextTerm;
|
|
}
|
|
|
|
public function getBrief(): string
|
|
{
|
|
$commandName = $this->getName();
|
|
$destCityName = CityConst::byID($this->arg['destCityID'])->name;
|
|
return "【{$destCityName}】에 {$commandName}";
|
|
}
|
|
|
|
public function run(): bool
|
|
{
|
|
if (!$this->hasFullConditionMet()) {
|
|
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
|
}
|
|
|
|
$db = DB::db();
|
|
|
|
$general = $this->generalObj;
|
|
$generalID = $general->getID();
|
|
$generalName = $general->getName();
|
|
$date = $general->getTurnTime($general::TURNTIME_HM);
|
|
|
|
$year = $this->env['year'];
|
|
$month = $this->env['month'];
|
|
|
|
$destCity = $this->destCity;
|
|
$destCityID = $destCity['city'];
|
|
$destCityName = $destCity['name'];
|
|
|
|
$destNationID = $destCity['nation'];
|
|
$destNationName = getNationStaticInfo($destNationID)['name'];
|
|
|
|
$nationID = $general->getNationID();
|
|
$nationName = $this->nation['name'];
|
|
|
|
$logger = $general->getLogger();
|
|
$logger->pushGeneralActionLog("허보 발동! <1>$date</>");
|
|
|
|
$general->addExperience(5 * ($this->getPreReqTurn() + 1));
|
|
$general->addDedication(5 * ($this->getPreReqTurn() + 1));
|
|
|
|
$josaYi = JosaUtil::pick($generalName, '이');
|
|
|
|
$broadcastMessage = "<Y>{$generalName}</>{$josaYi} <G><b>{$destCityName}</b></>에 <M>허보</>를 발동하였습니다.";
|
|
|
|
$targetGeneralList = $db->queryFirstColumn('SELECT no FROM general WHERE nation=%i AND no != %i', $nationID, $generalID);
|
|
foreach ($targetGeneralList as $targetGeneralID) {
|
|
$targetLogger = new ActionLogger($targetGeneralID, $nationID, $year, $month);
|
|
$targetLogger->pushGeneralActionLog($broadcastMessage, ActionLogger::PLAIN);
|
|
$targetLogger->flush();
|
|
}
|
|
|
|
$destBroadcastMessage = "상대의 <M>허보</>에 당했다! <1>$date</>";
|
|
$destNationCityList = $db->queryFirstColumn('SELECT city FROM city WHERE nation = %i AND supply = 1', $destNationID);
|
|
|
|
$targetGeneralList = $db->queryFirstColumn('SELECT no FROM general WHERE nation=%i AND city=%i', $destNationID, $destCityID);
|
|
foreach (General::createGeneralObjListFromDB($targetGeneralList) as $targetGeneralID => $targetGeneral) {
|
|
$targetLogger = $targetGeneral->getLogger();
|
|
$targetLogger->pushGeneralActionLog($destBroadcastMessage, ActionLogger::PLAIN);
|
|
|
|
$moveCityID = Util::choiceRandom($destNationCityList);
|
|
if ($moveCityID == $destCityID) {
|
|
//현재도시면 다시 랜덤 추첨
|
|
$moveCityID = Util::choiceRandom($destNationCityList);
|
|
}
|
|
|
|
$targetGeneral->setVar('city', $moveCityID);
|
|
$targetGeneral->applyDB($db);
|
|
}
|
|
|
|
$destNationLogger = new ActionLogger(0, $destNationID, $year, $month);
|
|
$destNationLogger->pushNationalHistoryLog(
|
|
"<D><b>{$nationName}</b></>의 <Y>{$generalName}</>{$josaYi} 아국의 <G><b>{$destCityName}</b></>에 <M>허보</>를 발동",
|
|
ActionLogger::PLAIN
|
|
);
|
|
$destNationLogger->flush();
|
|
|
|
$josaYiNation = JosaUtil::pick($nationName, '이');
|
|
|
|
$logger->pushGeneralHistoryLog("<G><b>{$destCityName}</b></>에 <M>허보</>를 발동");
|
|
$logger->pushNationalHistoryLog("<Y>{$generalName}</>{$josaYi} <G><b>{$destCityName}</b></>에 <M>허보</>를 발동");
|
|
|
|
$db->update('nation', [
|
|
'strategic_cmd_limit' => $this->generalObj->onCalcStrategic($this->getName(), 'globalDelay', 9)
|
|
], 'nation=%i', $nationID);
|
|
|
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
|
$general->applyDB($db);
|
|
|
|
return true;
|
|
}
|
|
|
|
public function getJSPlugins(): array
|
|
{
|
|
return [
|
|
'defaultSelectCityByMap'
|
|
];
|
|
}
|
|
|
|
|
|
public function getForm(): string
|
|
{
|
|
ob_start();
|
|
?>
|
|
<?= \sammo\getMapHtml() ?><br>
|
|
선택된 도시에 허보를 발동합니다.<br>
|
|
전쟁중인 상대국 도시만 가능합니다.<br>
|
|
목록을 선택하거나 도시를 클릭하세요.<br>
|
|
<select class='formInput' name="destCityID" id="destCityID" size='1' style='color:white;background-color:black;'>
|
|
<?= \sammo\optionsForCities() ?><br>
|
|
</select> <input type=button id="commonSubmit" value="<?= $this->getName() ?>"><br>
|
|
<br>
|
|
<?php
|
|
return ob_get_clean();
|
|
}
|
|
}
|