전략별 쿨타임 적용
This commit is contained in:
+2137
-2112
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -61,7 +61,7 @@ $scenario = $gameStor->scenario_text;
|
|||||||
$nationID = $generalObj->getNationID();
|
$nationID = $generalObj->getNationID();
|
||||||
if($nationID){
|
if($nationID){
|
||||||
$nationStor = KVStorage::getStorage($db, $nationID, 'nation_env');
|
$nationStor = KVStorage::getStorage($db, $nationID, 'nation_env');
|
||||||
$nationStor->cacheValues(['notice', 'online_genenerals']);
|
$nationStor->cacheAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
$valid = 0;
|
$valid = 0;
|
||||||
|
|||||||
@@ -271,8 +271,8 @@ abstract class BaseCommand{
|
|||||||
return $this->logger;
|
return $this->logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract protected function getNextExecuteKey():string;
|
abstract public function getNextExecuteKey():string;
|
||||||
abstract public function getNextAvailable():?int;
|
abstract public function getNextAvailableTurn():?int;
|
||||||
abstract public function setNextAvailable(?int $yearMonth=null);
|
abstract public function setNextAvailable(?int $yearMonth=null);
|
||||||
|
|
||||||
protected function testPostReqTurn():?array{
|
protected function testPostReqTurn():?array{
|
||||||
@@ -280,13 +280,13 @@ abstract class BaseCommand{
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$nextAvailable = $this->getNextAvailable();
|
$nextAvailableTurn = $this->getNextAvailableTurn();
|
||||||
if($nextAvailable === null){
|
if($nextAvailableTurn === null){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$yearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']);
|
$yearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']);
|
||||||
$remainTurn = $nextAvailable - $yearMonth - $this->getPreReqTurn();
|
$remainTurn = $nextAvailableTurn - $yearMonth;
|
||||||
if($remainTurn <= 0){
|
if($remainTurn <= 0){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,14 @@ use \sammo\Util;
|
|||||||
|
|
||||||
abstract class GeneralCommand extends BaseCommand{
|
abstract class GeneralCommand extends BaseCommand{
|
||||||
|
|
||||||
protected function getNextExecuteKey():string{
|
public function getNextExecuteKey():string{
|
||||||
$turnKey = static::$actionName;
|
$turnKey = static::$actionName;
|
||||||
$generalID = $this->getGeneral()->getID();
|
$generalID = $this->getGeneral()->getID();
|
||||||
$executeKey = "next_execute_{$generalID}_{$turnKey}";
|
$executeKey = "next_execute_{$generalID}_{$turnKey}";
|
||||||
return $executeKey;
|
return $executeKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getNextAvailable():?int{
|
public function getNextAvailableTurn():?int{
|
||||||
if($this->isArgValid && !$this->getPostReqTurn()){
|
if($this->isArgValid && !$this->getPostReqTurn()){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -25,7 +25,8 @@ abstract class GeneralCommand extends BaseCommand{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if($yearMonth === null){
|
if($yearMonth === null){
|
||||||
$yearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']) + $this->getPostReqTurn();
|
$yearMonth = Util::joinYearMonth($this->env['year'], $this->env['month'])
|
||||||
|
+ $this->getPostReqTurn() - $this->getPreReqTurn();
|
||||||
}
|
}
|
||||||
|
|
||||||
$db = \sammo\DB::db();
|
$db = \sammo\DB::db();
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ class che_급습 extends Command\NationCommand
|
|||||||
$reqTurn = $this->getPreReqTurn() + 1;
|
$reqTurn = $this->getPreReqTurn() + 1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost(): array
|
public function getCost(): array
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ class che_물자원조 extends Command\NationCommand{
|
|||||||
return 12;
|
return 12;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getNextAvailable():?int{
|
public function getNextAvailableTurn():?int{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ class che_백성동원 extends Command\NationCommand{
|
|||||||
$reqTurn = $this->getPreReqTurn()+1;
|
$reqTurn = $this->getPreReqTurn()+1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost():array{
|
public function getCost():array{
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ class che_수몰 extends Command\NationCommand{
|
|||||||
$reqTurn = $this->getPreReqTurn()+1;
|
$reqTurn = $this->getPreReqTurn()+1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost():array{
|
public function getCost():array{
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ class che_의병모집 extends Command\NationCommand
|
|||||||
$reqTurn = $this->getPreReqTurn() + 1;
|
$reqTurn = $this->getPreReqTurn() + 1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost(): array
|
public function getCost(): array
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ class che_이호경식 extends Command\NationCommand
|
|||||||
$reqTurn = $this->getPreReqTurn() + 1;
|
$reqTurn = $this->getPreReqTurn() + 1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost(): array
|
public function getCost(): array
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ class che_초토화 extends Command\NationCommand{
|
|||||||
return 24;
|
return 24;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getNextAvailable():?int{
|
public function getNextAvailableTurn():?int{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use \sammo\{
|
|||||||
LastTurn,
|
LastTurn,
|
||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
Command,
|
Command,
|
||||||
|
KVStorage,
|
||||||
Message, MessageTarget
|
Message, MessageTarget
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -39,6 +40,7 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$destNationID = $this->arg['destNationID'];
|
$destNationID = $this->arg['destNationID'];
|
||||||
|
$commandType = $this->arg['commandType'];
|
||||||
|
|
||||||
if(!is_int($destNationID)){
|
if(!is_int($destNationID)){
|
||||||
return false;
|
return false;
|
||||||
@@ -47,8 +49,17 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!is_string($commandType)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!in_array($commandType, GameConst::$availableChiefCommand['전략'])){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$this->arg = [
|
$this->arg = [
|
||||||
'destNationID'=>$destNationID
|
'destNationID'=>$destNationID,
|
||||||
|
'commandType'=>$commandType
|
||||||
];
|
];
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -71,6 +82,24 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
{
|
{
|
||||||
$this->setDestNation($this->arg['destNationID'], null);
|
$this->setDestNation($this->arg['destNationID'], null);
|
||||||
|
|
||||||
|
if($this->getNationID() == 0){
|
||||||
|
$this->fullConditionConstraints=[
|
||||||
|
ConstraintHelper::OccupiedCity()
|
||||||
|
];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$cmd = buildNationCommandClass($this->arg['commandType'], $this->generalObj, $this->env, new LastTurn());
|
||||||
|
|
||||||
|
$currYearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']);
|
||||||
|
$nextAvailableTurn = $cmd->getNextAvailableTurn();
|
||||||
|
if($currYearMonth < $nextAvailableTurn){
|
||||||
|
$this->fullConditionConstraints=[
|
||||||
|
ConstraintHelper::AlwaysFail('해당 전략을 아직 사용할 수 없습니다')
|
||||||
|
];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$this->fullConditionConstraints=[
|
$this->fullConditionConstraints=[
|
||||||
ConstraintHelper::OccupiedCity(),
|
ConstraintHelper::OccupiedCity(),
|
||||||
ConstraintHelper::BeChief(),
|
ConstraintHelper::BeChief(),
|
||||||
@@ -85,9 +114,8 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
public function getCommandDetailTitle():string{
|
public function getCommandDetailTitle():string{
|
||||||
$name = $this->getName();
|
$name = $this->getName();
|
||||||
$reqTurn = $this->getPreReqTurn()+1;
|
$reqTurn = $this->getPreReqTurn()+1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴";
|
return "{$name}/{$reqTurn}턴(대상 재사용 대기 {$this->getTargetPostReqTurn()})";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost():array{
|
public function getCost():array{
|
||||||
@@ -102,10 +130,20 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getTargetPostReqTurn():int{
|
||||||
|
$genCount = Util::valueFit($this->nation['gennum'], GameConst::$initialNationGenLimit);
|
||||||
|
$nextTerm = Util::round(sqrt($genCount*2)*10);
|
||||||
|
|
||||||
|
$nextTerm = $this->generalObj->onCalcStrategic($this->getName(), 'delay', $nextTerm);
|
||||||
|
return $nextTerm;
|
||||||
|
}
|
||||||
|
|
||||||
public function getBrief():string{
|
public function getBrief():string{
|
||||||
$commandName = $this->getName();
|
$commandName = $this->getName();
|
||||||
|
$cmd = buildNationCommandClass($this->arg['commandType'], $this->generalObj, $this->env, new LastTurn());
|
||||||
|
$targetCommandName = $cmd->getName();
|
||||||
$destNationName = getNationStaticInfo($this->arg['destNationID'])['name'];
|
$destNationName = getNationStaticInfo($this->arg['destNationID'])['name'];
|
||||||
return "【{$destNationName}】에 {$commandName}";
|
return "【{$destNationName}】에 【{$targetCommandName}】 {$commandName}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -139,13 +177,16 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
$commandName = $this->getName();
|
$commandName = $this->getName();
|
||||||
$josaUl = JosaUtil::pick($commandName, '을');
|
$josaUl = JosaUtil::pick($commandName, '을');
|
||||||
|
|
||||||
|
$cmd = buildNationCommandClass($this->arg['commandType'], $this->generalObj, $this->env, new LastTurn());
|
||||||
|
|
||||||
|
|
||||||
$logger = $general->getLogger();
|
$logger = $general->getLogger();
|
||||||
$logger->pushGeneralActionLog("{$commandName} 발동! <1>$date</>");
|
$logger->pushGeneralActionLog("<G><b>{$cmd->getName()}</b></> 전략의 {$commandName} 발동! <1>$date</>");
|
||||||
|
|
||||||
$general->addExperience(5 * ($this->getPreReqTurn() + 1));
|
$general->addExperience(5 * ($this->getPreReqTurn() + 1));
|
||||||
$general->addDedication(5 * ($this->getPreReqTurn() + 1));
|
$general->addDedication(5 * ($this->getPreReqTurn() + 1));
|
||||||
|
|
||||||
$broadcastMessage = "<Y>{$generalName}</>{$josaYi} <G><b>{$destNationName}</b></>에 <M>{$commandName}</>{$josaUl} 발동하였습니다.";
|
$broadcastMessage = "<Y>{$generalName}</>{$josaYi} <G><b>{$destNationName}</b></>에 <G><b>{$cmd->getName()}</b></> 전략의 <M>{$commandName}</>{$josaUl} 발동하였습니다.";
|
||||||
|
|
||||||
$nationGeneralList = $db->queryFirstColumn('SELECT no FROM general WHERE nation=%i AND no != %i', $nationID, $generalID);
|
$nationGeneralList = $db->queryFirstColumn('SELECT no FROM general WHERE nation=%i AND no != %i', $nationID, $generalID);
|
||||||
foreach($nationGeneralList as $nationGeneralID){
|
foreach($nationGeneralList as $nationGeneralID){
|
||||||
@@ -156,7 +197,7 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
|
|
||||||
$josaYiCommand = JosaUtil::pick($commandName, '이');
|
$josaYiCommand = JosaUtil::pick($commandName, '이');
|
||||||
|
|
||||||
$broadcastMessage = "아국에 <M>{$commandName}</>{$josaYiCommand} 발동되었습니다.";
|
$broadcastMessage = "아국에 <G><b>{$cmd->getName()}</b></> 전략의 <M>{$commandName}</>{$josaYiCommand} 발동되었습니다.";
|
||||||
|
|
||||||
$destNationGeneralList = $db->queryFirstColumn('SELECT no FROM general WHERE nation=%i AND no != %i', $nationID, $generalID);
|
$destNationGeneralList = $db->queryFirstColumn('SELECT no FROM general WHERE nation=%i AND no != %i', $nationID, $generalID);
|
||||||
foreach($destNationGeneralList as $destNationGeneralID){
|
foreach($destNationGeneralList as $destNationGeneralID){
|
||||||
@@ -166,12 +207,17 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
}
|
}
|
||||||
|
|
||||||
$destNationLogger = new ActionLogger(0, $destNationID, $year, $month);
|
$destNationLogger = new ActionLogger(0, $destNationID, $year, $month);
|
||||||
$destNationLogger->pushNationalHistoryLog("<D><b>{$nationName}</b></>의 <Y>{$generalName}</>{$josaYi} 아국에 <M>{$commandName}</>{$josaUl} 발동");
|
$destNationLogger->pushNationalHistoryLog("<D><b>{$nationName}</b></>의 <Y>{$generalName}</>{$josaYi} 아국에 <G><b>{$cmd->getName()}</b></> <M>{$commandName}</>{$josaUl} 발동");
|
||||||
$destNationLogger->flush();
|
$destNationLogger->flush();
|
||||||
|
|
||||||
$logger->pushNationalHistoryLog("<Y>{$generalName}</>{$josaYi} <D><b>{$destNationName}</b></>에 <M>{$commandName}</>{$josaUl} 발동");
|
$logger->pushNationalHistoryLog("<Y>{$generalName}</>{$josaYi} <D><b>{$destNationName}</b></>에 <G><b>{$cmd->getName()}</b></> <M>{$commandName}</>{$josaUl} 발동");
|
||||||
|
|
||||||
|
|
||||||
|
$nationStor = KVStorage::getStorage($db, $nationID, 'nation_env');
|
||||||
|
$destNationStor = KVStorage::getStorage($db, $destNationID, 'nation_env');
|
||||||
|
|
||||||
|
$yearMonth = Util::joinYearMonth($env['year'], $env['month']);
|
||||||
|
$nationStor->setValue($cmd->getNextExecuteKey(), $yearMonth + $this->getTargetPostReqTurn());
|
||||||
|
$destNationStor->setValue($cmd->getNextExecuteKey(), $yearMonth + static::$delayCnt);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
@@ -212,17 +258,14 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
$currYearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']);
|
$currYearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']);
|
||||||
foreach(GameConst::$availableChiefCommand['전략'] as $commandType){
|
foreach(GameConst::$availableChiefCommand['전략'] as $commandType){
|
||||||
$cmd = buildNationCommandClass($commandType, $generalObj, $this->env, new LastTurn());
|
$cmd = buildNationCommandClass($commandType, $generalObj, $this->env, new LastTurn());
|
||||||
if($cmd->getName() == $this->getName()){
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$cmdName = $cmd->getName();
|
$cmdName = $cmd->getName();
|
||||||
$available = true;
|
$remainTurn = 0;
|
||||||
$nextAvailable = $cmd->getNextAvailable();
|
$nextAvailableTurn = $cmd->getNextAvailableTurn();
|
||||||
|
|
||||||
if($nextAvailable !== null && $currYearMonth < $cmd->getNextAvailable() - $cmd->getPreReqTurn()){
|
if($nextAvailableTurn !== null && $currYearMonth < $nextAvailableTurn){
|
||||||
$available = false;
|
$remainTurn = $nextAvailableTurn - $currYearMonth;
|
||||||
}
|
}
|
||||||
$availableCommandTypeList[$commandType] = [$cmdName, $available];
|
$availableCommandTypeList[$commandType] = [$cmdName, $remainTurn];
|
||||||
}
|
}
|
||||||
|
|
||||||
ob_start();
|
ob_start();
|
||||||
@@ -230,6 +273,7 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
<?=\sammo\getMapHtml()?><br>
|
<?=\sammo\getMapHtml()?><br>
|
||||||
선택된 국가에 피장파장을 발동합니다.<br>
|
선택된 국가에 피장파장을 발동합니다.<br>
|
||||||
지정한 전략을 상대국이 <?=static::$delayCnt?>턴 동안 사용할 수 없게됩니다.<br>
|
지정한 전략을 상대국이 <?=static::$delayCnt?>턴 동안 사용할 수 없게됩니다.<br>
|
||||||
|
대신 아국은 지정한 전략을<?=$this->getTargetPostReqTurn()?>턴 동안 사용할 수 없습니다.<br>
|
||||||
선포, 전쟁중인 상대국에만 가능합니다.<br>
|
선포, 전쟁중인 상대국에만 가능합니다.<br>
|
||||||
상대 국가를 목록에서 선택하세요.<br>
|
상대 국가를 목록에서 선택하세요.<br>
|
||||||
배경색은 현재 피장파장 불가능 국가는 <font color=red>붉은색</font>으로 표시됩니다.<br>
|
배경색은 현재 피장파장 불가능 국가는 <font color=red>붉은색</font>으로 표시됩니다.<br>
|
||||||
@@ -240,16 +284,17 @@ class che_피장파장 extends Command\NationCommand{
|
|||||||
style='color:<?=$nation['color']?>;<?=$nation['availableCommand']?'':'background-color:red;'?>'
|
style='color:<?=$nation['color']?>;<?=$nation['availableCommand']?'':'background-color:red;'?>'
|
||||||
>【<?=$nation['name']?> 】</option>
|
>【<?=$nation['name']?> 】</option>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
</select>에
|
||||||
<select class='formInput' name="commandType" id="commandType" size='1' style='color:white;background-color:black;'>
|
<select class='formInput' name="commandType" id="commandType" size='1' style='color:white;background-color:black;'>
|
||||||
<?php foreach($availableCommandTypeList as $commandType=>[$cmdName, $cmdAvailable]):
|
<?php foreach($availableCommandTypeList as $commandType=>[$cmdName, $cmdRemainTurn]):
|
||||||
/** @var \sammo\Command\NationCommand $cmdObj */
|
/** @var \sammo\Command\NationCommand $cmdObj */
|
||||||
?>
|
?>
|
||||||
<option
|
<option
|
||||||
value='<?=$commandType?>'
|
value='<?=$commandType?>'
|
||||||
style='color:white;<?=$cmdAvailable?'':'background-color:red;'?>'
|
style='color:white;<?=$cmdRemainTurn?'background-color:red;':''?>'
|
||||||
>【<?=$cmdName?> 】</option>
|
><?=$cmdName?><?=$cmdRemainTurn?"({$cmdRemainTurn}턴 뒤)":''?></option>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</select>
|
</select> 전략을
|
||||||
<input type=button id="commonSubmit" value="<?=$this->getName()?>">
|
<input type=button id="commonSubmit" value="<?=$this->getName()?>">
|
||||||
<?php
|
<?php
|
||||||
return ob_get_clean();
|
return ob_get_clean();
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ class che_필사즉생 extends Command\NationCommand{
|
|||||||
$reqTurn = $this->getPreReqTurn()+1;
|
$reqTurn = $this->getPreReqTurn()+1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost():array{
|
public function getCost():array{
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ class che_허보 extends Command\NationCommand
|
|||||||
$reqTurn = $this->getPreReqTurn() + 1;
|
$reqTurn = $this->getPreReqTurn() + 1;
|
||||||
$postReqTurn = $this->getPostReqTurn();
|
$postReqTurn = $this->getPostReqTurn();
|
||||||
|
|
||||||
return "{$name}/{$reqTurn}턴(전략$postReqTurn)";
|
return "{$name}/{$reqTurn}턴(재사용 대기 $postReqTurn)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost(): array
|
public function getCost(): array
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ abstract class NationCommand extends BaseCommand{
|
|||||||
return $this->resultTurn;
|
return $this->resultTurn;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getNextExecuteKey():string{
|
public function getNextExecuteKey():string{
|
||||||
$turnKey = static::$actionName;
|
$turnKey = static::$actionName;
|
||||||
$executeKey = "next_execute_{$turnKey}";
|
$executeKey = "next_execute_{$turnKey}";
|
||||||
return $executeKey;
|
return $executeKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getNextAvailable():?int{
|
public function getNextAvailableTurn():?int{
|
||||||
if($this->isArgValid && !$this->getPostReqTurn()){
|
if($this->isArgValid && !$this->getPostReqTurn()){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -47,7 +47,8 @@ abstract class NationCommand extends BaseCommand{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if($yearMonth === null){
|
if($yearMonth === null){
|
||||||
$yearMonth = Util::joinYearMonth($this->env['year'], $this->env['month']) + $this->getPostReqTurn();
|
$yearMonth = Util::joinYearMonth($this->env['year'], $this->env['month'])
|
||||||
|
+ $this->getPostReqTurn() - $this->getPreReqTurn();
|
||||||
}
|
}
|
||||||
|
|
||||||
$db = \sammo\DB::db();
|
$db = \sammo\DB::db();
|
||||||
|
|||||||
@@ -321,7 +321,6 @@ class GameConstBase
|
|||||||
'che_감축',
|
'che_감축',
|
||||||
],
|
],
|
||||||
'전략'=>[
|
'전략'=>[
|
||||||
'che_피장파장',
|
|
||||||
'che_필사즉생',
|
'che_필사즉생',
|
||||||
'che_백성동원',
|
'che_백성동원',
|
||||||
'che_수몰',
|
'che_수몰',
|
||||||
@@ -331,6 +330,7 @@ class GameConstBase
|
|||||||
'che_급습',
|
'che_급습',
|
||||||
],
|
],
|
||||||
'기타'=>[
|
'기타'=>[
|
||||||
|
'che_피장파장',
|
||||||
'che_국기변경',
|
'che_국기변경',
|
||||||
'che_국호변경',
|
'che_국호변경',
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user