불가침파기제의 추가
This commit is contained in:
@@ -0,0 +1,171 @@
|
|||||||
|
<?php
|
||||||
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
|
use \sammo\{
|
||||||
|
DB, Util, JosaUtil,
|
||||||
|
General, DummyGeneral,
|
||||||
|
ActionLogger,
|
||||||
|
GameConst,
|
||||||
|
LastTurn,
|
||||||
|
GameUnitConst,
|
||||||
|
Command,
|
||||||
|
MessageTarget,
|
||||||
|
DiplomaticMessage,
|
||||||
|
Message,
|
||||||
|
};
|
||||||
|
|
||||||
|
use function \sammo\{
|
||||||
|
getDomesticExpLevelBonus,
|
||||||
|
CriticalRatioDomestic,
|
||||||
|
CriticalScoreEx,
|
||||||
|
getAllNationStaticInfo,
|
||||||
|
getNationStaticInfo,
|
||||||
|
GetImageURL
|
||||||
|
};
|
||||||
|
|
||||||
|
use \sammo\Constraint\Constraint;
|
||||||
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|
||||||
|
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('destNationID', $this->arg)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$destNationID = $this->arg['destNationID'];
|
||||||
|
if(!is_int($destNationID)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if($destNationID < 1){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!key_exists('destGeneralID', $this->arg)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$destGeneralID = $this->arg['destGeneralID'];
|
||||||
|
if(!is_int($destGeneralID)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if($destGeneralID <= 0){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if($destGeneralID == $this->generalObj->getID()){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->arg = [
|
||||||
|
'destNationID'=>$destNationID,
|
||||||
|
'destGeneralID'=>$destGeneralID,
|
||||||
|
];
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function init(){
|
||||||
|
$general = $this->generalObj;
|
||||||
|
|
||||||
|
$env = $this->env;
|
||||||
|
$relYear = $env['year'] - $env['startyear'];
|
||||||
|
|
||||||
|
$this->setCity();
|
||||||
|
$this->setNation();
|
||||||
|
|
||||||
|
$destGeneral = General::createGeneralObjFromDB($this->arg['destGeneralID'], [], 1);
|
||||||
|
$this->setDestGeneral($destGeneral);
|
||||||
|
$this->setDestNation($this->arg['destNationID']);
|
||||||
|
|
||||||
|
$nationID = $this->nation['nation'];
|
||||||
|
|
||||||
|
$this->reservableConstraints = [
|
||||||
|
ConstraintHelper::AlwaysFail('예약 불가능 커맨드')
|
||||||
|
];
|
||||||
|
|
||||||
|
$this->runnableConstraints=[
|
||||||
|
ConstraintHelper::BeChief(),
|
||||||
|
ConstraintHelper::NotBeNeutral(),
|
||||||
|
ConstraintHelper::ExistsDestNation(),
|
||||||
|
ConstraintHelper::ExistsDestGeneral(),
|
||||||
|
ConstraintHelper::ReqDestNationValue('nation', '소속', '==', $this->destGeneralObj->getNationID(), '제의 장수가 국가 소속이 아닙니다'),
|
||||||
|
ConstraintHelper::AllowDiplomacyBetweenStatus(
|
||||||
|
[7],
|
||||||
|
'불가침 중인 상대국에게만 가능합니다.'
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCost():array{
|
||||||
|
return [0, 0];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPreReqTurn():int{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPostReqTurn():int{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getBrief():string{
|
||||||
|
$commandName = $this->getName();
|
||||||
|
$destNationName = getNationStaticInfo($this->arg['destNationID'])['name'];
|
||||||
|
return "{$destNationName}국과 불가침 파기 합의";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function run():bool{
|
||||||
|
if(!$this->isRunnable()){
|
||||||
|
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
||||||
|
}
|
||||||
|
|
||||||
|
$db = DB::db();
|
||||||
|
$env = $this->env;
|
||||||
|
|
||||||
|
$general = $this->generalObj;
|
||||||
|
$generalName = $general->getName();
|
||||||
|
|
||||||
|
$nation = $this->nation;
|
||||||
|
$nationID = $nation['nation'];
|
||||||
|
$nationName = $nation['name'];
|
||||||
|
|
||||||
|
$destNation = $this->destNation;
|
||||||
|
$destNationID = $destNation['nation'];
|
||||||
|
$destNationName = $destNation['name'];
|
||||||
|
|
||||||
|
$logger = $general->getLogger();
|
||||||
|
$destLogger = $this->destGeneralObj->getLogger();
|
||||||
|
|
||||||
|
$db->update('diplomacy',[
|
||||||
|
'state'=>2,
|
||||||
|
'term'=>0
|
||||||
|
],
|
||||||
|
'(me=%i AND you=%i) OR (you=%i AND me=%i)',
|
||||||
|
$nationID, $destNationID,
|
||||||
|
$nationID, $destNationID);
|
||||||
|
|
||||||
|
$josaYiGeneral = JosaUtil::pick($generalName, '이');
|
||||||
|
$josaYiNation = JosaUtil::pick($nationName, '이');
|
||||||
|
|
||||||
|
$josaWa = JosaUtil::pick($destNationName, '와');
|
||||||
|
$logger->pushGeneralActionLog("<D><b>{$destNationName}</b></>{$josaWa}의 불가침을 파기했습니다.", ActionLogger::PLAIN);
|
||||||
|
$logger->pushGeneralHistoryLog("<D><b>{$destNationName}</b></>{$josaWa}의 불가침 파기 수락");
|
||||||
|
|
||||||
|
$logger->pushGlobalActionLog("<Y>{$generalName}</>{$josaYiGeneral} <D><b>{$destNationName}</b></>{$josaWa}의 불가침 조약을 <M>파기</> 하였습니다.");
|
||||||
|
$logger->pushGlobalHistoryLog("<Y><b>【종전】</b></><D><b>{$nationName}</b></>{$josaYiNation} <D><b>{$destNationName}</b></>{$josaWa}의 불가침 조약을 <M>파기</> 하였습니다.");
|
||||||
|
|
||||||
|
|
||||||
|
$josaWa = JosaUtil::pick($nationName, '와');
|
||||||
|
$destLogger->pushGeneralActionLog("<D><b>{$nationName}</b></>{$josaWa}의 불가침 파기에 성공했습니다.", ActionLogger::PLAIN);
|
||||||
|
$destLogger->pushGeneralHistoryLog("<D><b>{$nationName}</b></>{$josaWa}의 불가침 파기 성공");
|
||||||
|
|
||||||
|
$general->applyDB($db);
|
||||||
|
$destLogger->flush();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,219 @@
|
|||||||
|
<?php
|
||||||
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
|
use \sammo\{
|
||||||
|
DB, Util, JosaUtil,
|
||||||
|
General, DummyGeneral,
|
||||||
|
ActionLogger,
|
||||||
|
GameConst,
|
||||||
|
LastTurn,
|
||||||
|
GameUnitConst,
|
||||||
|
Command,
|
||||||
|
MessageTarget,
|
||||||
|
DiplomaticMessage,
|
||||||
|
Message,
|
||||||
|
};
|
||||||
|
|
||||||
|
use function \sammo\{
|
||||||
|
getDomesticExpLevelBonus,
|
||||||
|
CriticalRatioDomestic,
|
||||||
|
CriticalScoreEx,
|
||||||
|
getAllNationStaticInfo,
|
||||||
|
getNationStaticInfo,
|
||||||
|
GetImageURL
|
||||||
|
};
|
||||||
|
|
||||||
|
use \sammo\Constraint\Constraint;
|
||||||
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|
||||||
|
class che_불가침파기제의 extends Command\NationCommand{
|
||||||
|
static protected $actionName = '불가침 파기 제의';
|
||||||
|
static public $reqArg = true;
|
||||||
|
|
||||||
|
protected function argTest():bool{
|
||||||
|
if($this->arg === null){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
//NOTE: 멸망 직전에 턴을 넣을 수 있으므로, 존재하지 않는 국가여도 argTest에서 바로 탈락시키지 않음
|
||||||
|
if(!key_exists('destNationID', $this->arg)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$destNationID = $this->arg['destNationID'];
|
||||||
|
if(!is_int($destNationID)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if($destNationID < 1){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->arg = [
|
||||||
|
'destNationID'=>$destNationID,
|
||||||
|
];
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function init(){
|
||||||
|
$general = $this->generalObj;
|
||||||
|
|
||||||
|
$env = $this->env;
|
||||||
|
|
||||||
|
$this->setCity();
|
||||||
|
$this->setNation();
|
||||||
|
|
||||||
|
$this->setDestNation($this->arg['destNationID'], null);
|
||||||
|
|
||||||
|
$this->runnableConstraints=[
|
||||||
|
ConstraintHelper::BeChief(),
|
||||||
|
ConstraintHelper::NotBeNeutral(),
|
||||||
|
ConstraintHelper::OccupiedCity(),
|
||||||
|
ConstraintHelper::SuppliedCity(),
|
||||||
|
ConstraintHelper::ExistsDestNation(),
|
||||||
|
ConstraintHelper::AllowDiplomacyBetweenStatus(
|
||||||
|
[7],
|
||||||
|
'불가침 중인 상대국에게만 가능합니다.'
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCost():array{
|
||||||
|
return [0, 0];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPreReqTurn():int{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPostReqTurn():int{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getBrief():string{
|
||||||
|
$commandName = $this->getName();
|
||||||
|
$destNationName = getNationStaticInfo($this->arg['destNationID'])['name'];
|
||||||
|
return "【{$destNationName}】에게 {$commandName}";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function run():bool{
|
||||||
|
if(!$this->isRunnable()){
|
||||||
|
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
||||||
|
}
|
||||||
|
|
||||||
|
$db = DB::db();
|
||||||
|
$env = $this->env;
|
||||||
|
|
||||||
|
$general = $this->generalObj;
|
||||||
|
$generalName = $general->getName();
|
||||||
|
$date = $general->getTurnTime($general::TURNTIME_HM);
|
||||||
|
|
||||||
|
$nation = $this->nation;
|
||||||
|
$nationID = $nation['nation'];
|
||||||
|
$nationName = $nation['name'];
|
||||||
|
|
||||||
|
$destNation = $this->destNation;
|
||||||
|
$destNationID = $destNation['nation'];
|
||||||
|
$destNationName = $destNation['name'];
|
||||||
|
|
||||||
|
$logger = $general->getLogger();
|
||||||
|
$destLogger = new ActionLogger(0, $destNationID, $env['year'], $env['month']);
|
||||||
|
|
||||||
|
$logger->pushGeneralActionLog("<D><b>{$destNationName}</b></>으로 불가침 파기 제의 서신을 보냈습니다.<1>$date</>");
|
||||||
|
|
||||||
|
// 상대에게 발송
|
||||||
|
$src = new MessageTarget(
|
||||||
|
$general->getID(),
|
||||||
|
$general->getName(),
|
||||||
|
$nationID,
|
||||||
|
$nationName,
|
||||||
|
$nation['color'],
|
||||||
|
GetImageURL($general->getVar('imgsvr'), $general->getVar('picture'))
|
||||||
|
);
|
||||||
|
$dest = new MessageTarget(
|
||||||
|
0,
|
||||||
|
'',
|
||||||
|
$destNationID,
|
||||||
|
$destNationName,
|
||||||
|
$destNation['color']
|
||||||
|
);
|
||||||
|
|
||||||
|
$now = new \DateTime($date);
|
||||||
|
$validUntil = new \DateTime($date);
|
||||||
|
$validMinutes = max(30, $env['turnterm']*3);
|
||||||
|
$validUntil->add(new \DateInterval("PT{$validMinutes}M"));
|
||||||
|
|
||||||
|
$msg = new DiplomaticMessage(
|
||||||
|
Message::MSGTYPE_DIPLOMACY,
|
||||||
|
$src,
|
||||||
|
$dest,
|
||||||
|
"{$nationName}의 불가침 파기 제의 서신",
|
||||||
|
$now,
|
||||||
|
$validUntil,
|
||||||
|
[
|
||||||
|
'action'=>DiplomaticMessage::TYPE_CANCEL_NA,
|
||||||
|
'deletable'=>false,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
$msg->send();
|
||||||
|
|
||||||
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
$general->applyDB($db);
|
||||||
|
$destLogger->flush();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getJSFiles(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'js/defaultSelectNationByMap.js'
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getForm(): string
|
||||||
|
{
|
||||||
|
$generalObj = $this->generalObj;
|
||||||
|
$nationID = $generalObj->getNationID();
|
||||||
|
|
||||||
|
$db = DB::db();
|
||||||
|
$diplomacyStatus = Util::convertArrayToDict(
|
||||||
|
$db->query('SELECT * FROM diplomacy WHERE me = %i', $nationID),
|
||||||
|
'you'
|
||||||
|
);
|
||||||
|
|
||||||
|
$nationList = [];
|
||||||
|
foreach(getAllNationStaticInfo() as $destNation){
|
||||||
|
if($destNation['nation'] == $nationID){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($diplomacyStatus[$destNation['nation']]['state'] != 7){
|
||||||
|
$destNation['cssBgColor'] = 'background-color:red;';
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$destNation['cssBgColor'] = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
$nationList[] = $destNation;
|
||||||
|
}
|
||||||
|
|
||||||
|
ob_start();
|
||||||
|
?>
|
||||||
|
<?=\sammo\getMapHtml()?><br>
|
||||||
|
불가침중인 국가에 조약 파기를 제의합니다.<br>
|
||||||
|
제의할 국가를 목록에서 선택하세요.<br>
|
||||||
|
배경색은 현재 제의가 불가능한 국가는 <font color=red>붉은색</font>으로 표시됩니다.<br>
|
||||||
|
<br>
|
||||||
|
<select class='formInput' name="destNationID" id="destNationID" size='1' style='color:white;background-color:black;'>
|
||||||
|
<?php foreach($nationList as $nation): ?>
|
||||||
|
<option
|
||||||
|
value='<?=$nation['nation']?>'
|
||||||
|
style='color:<?=$nation['color']?>;<?=$nation['cssBgColor']?>'
|
||||||
|
>【<?=$nation['name']?> 】</option>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</select>에게
|
||||||
|
<input type=button id="commonSubmit" value="<?=$this->getName()?>">
|
||||||
|
<?php
|
||||||
|
return ob_get_clean();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -47,7 +47,7 @@ class AllowDiplomacyBetweenStatus extends Constraint{
|
|||||||
'SELECT state FROM diplomacy WHERE me = %i AND you = %i AND `state` IN %li LIMIT 1',
|
'SELECT state FROM diplomacy WHERE me = %i AND you = %i AND `state` IN %li LIMIT 1',
|
||||||
$this->nationID,
|
$this->nationID,
|
||||||
$this->destNationID,
|
$this->destNationID,
|
||||||
array_keys($this->allowDipCodeList)
|
$this->allowDipCodeList
|
||||||
);
|
);
|
||||||
if($state !== null){
|
if($state !== null){
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -98,38 +98,24 @@ class DiplomaticMessage extends Message{
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected function cancelNA(){
|
protected function cancelNA(){
|
||||||
$helper = new Engine\Diplomacy($this->src->nationID, $this->dest->nationID);
|
$gameStor = KVStorage::getStorage(DB::db(), 'game_env');
|
||||||
$chk = $helper->cancelNA();
|
|
||||||
if($chk[0] !== self::ACCEPTED){
|
$destGeneralObj = General::createGeneralObjFromDB($this->dest->generalID, ['picture', 'imgsvr', 'aux'], 1);
|
||||||
return $chk;
|
|
||||||
|
$commandObj = buildNationCommandClass('che_불가침파기수락', $destGeneralObj, $gameStor->getAll(true), new LastTurn(), [
|
||||||
|
'destNationID'=>$this->src->nationID,
|
||||||
|
'destGeneralID'=>$this->src->generalID,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->diplomacyDetail = $commandObj->getBrief();
|
||||||
|
|
||||||
|
if(!$commandObj->isRunnable()){
|
||||||
|
return [self::DECLINED, $commandObj->getFailString()];
|
||||||
}
|
}
|
||||||
|
|
||||||
$josaYi = JosaUtil::pick($this->dest->generalName, '이');
|
$commandObj->run();
|
||||||
$josaWa = JosaUtil::pick($this->src->nationName, '와');
|
|
||||||
$alllog[] = "<C>●</>{$helper->month}월:<Y>{$this->dest->generalName}</>{$josaYi} <D><b>{$this->src->nationName}</b></>{$josaWa} <M>조약 파기</>에 합의.";
|
|
||||||
|
|
||||||
$josaYi = JosaUtil::pick($this->dest->nationName, '이');
|
return [self::ACCEPTED, ''];
|
||||||
$josaWa = JosaUtil::pick($this->src->nationName, '와');
|
|
||||||
$history[] = "<C>●</>{$helper->year}년 {$helper->month}월:<Y><b>【파기】</b></><D><b>{$this->dest->nationName}</b></>{$josaYi} <D><b>{$this->src->nationName}</b></>{$josaWa} 불가침을 파기 하였습니다.";
|
|
||||||
|
|
||||||
$josaWa = JosaUtil::pick($this->dest->nationName, '와');
|
|
||||||
$youlog[] = "<C>●</><D><b>{$this->dest->nationName}</b></>{$josaWa} 파기에 성공했습니다.";
|
|
||||||
|
|
||||||
$josaWa = JosaUtil::pick($this->src->nationName, '와');
|
|
||||||
$mylog[] = "<C>●</><D><b>{$this->src->nationName}</b></>{$josaWa} 파기에 합의했습니다.";
|
|
||||||
|
|
||||||
$josaWa = JosaUtil::pick($this->dest->nationName, '와');
|
|
||||||
pushGeneralHistory($this->src->generalID, ["<C>●</>{$helper->year}년 {$helper->month}월:<D><b>{$this->dest->nationName}</b></>{$josaWa} 파기 성공"]);
|
|
||||||
|
|
||||||
$josaWa = JosaUtil::pick($this->src->nationName, '와');
|
|
||||||
pushGeneralHistory($this->dest->generalID, ["<C>●</>{$helper->year}년 {$helper->month}월:<D><b>{$this->src->nationName}</b></>{$josaWa} 파기 수락"]);
|
|
||||||
|
|
||||||
pushGenLog($this->dest->generalID, $mylog);
|
|
||||||
pushGenLog($this->src->generalID, $youlog);
|
|
||||||
pushGeneralPublicRecord($alllog, $helper->year, $helper->month);
|
|
||||||
pushWorldHistory($history, $helper->year, $helper->month);
|
|
||||||
|
|
||||||
return $chk;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function stopWar(){
|
protected function stopWar(){
|
||||||
|
|||||||
@@ -309,7 +309,7 @@ class GameConstBase
|
|||||||
'che_불가침제의',
|
'che_불가침제의',
|
||||||
'che_선전포고',
|
'che_선전포고',
|
||||||
'che_종전제의',
|
'che_종전제의',
|
||||||
//'che_파기제의',
|
'che_불가침파기제의',
|
||||||
],
|
],
|
||||||
'특수'=>[
|
'특수'=>[
|
||||||
//'che_초토화',
|
//'che_초토화',
|
||||||
|
|||||||
@@ -286,6 +286,10 @@ class Message
|
|||||||
return '5분 이내의 메시지만 삭제할 수 있습니다.';
|
return '5분 이내의 메시지만 삭제할 수 있습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!($msgObj->msgOption['deletable']??true)){
|
||||||
|
return '삭제할 수 없는 메시지입니다.';
|
||||||
|
}
|
||||||
|
|
||||||
$msgOption = [
|
$msgOption = [
|
||||||
'hide'=>true,
|
'hide'=>true,
|
||||||
'silence'=>true,
|
'silence'=>true,
|
||||||
|
|||||||
Reference in New Issue
Block a user