증여 버그 수정, 출병을 현 코드에 맞게 수정

This commit is contained in:
2020-03-08 19:30:49 +09:00
parent d7989ab34d
commit 89a6769385
5 changed files with 202 additions and 7 deletions
+46
View File
@@ -0,0 +1,46 @@
<?php
namespace sammo\Constraint;
use \sammo\DB;
class HasRoute extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL|Constraint::REQ_DEST_CITY;
public function checkInputValues(bool $throwExeception=true):bool{
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
return false;
}
if(!key_exists('city', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require city in general");
}
if(!key_exists('nation', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require nation in general");
}
return true;
}
public function test():bool{
$this->checkInputValues();
$this->tested = true;
$db = DB::db();
$allowedNationList = $db->queryFirstColumn('SELECT you FROM diplomacy WHERE state = 0 AND me = %i', $this->general['nation']);
$allowedNationList[] = $this->general['nation'];
$allowedNationList[] = 0;
$distanceList = \sammo\searchDistanceListToDest($this->general['city'], $this->destCity['city'], $allowedNationList);
if(!$distanceList){
$this->reason = "경로에 도달할 방법이 없습니다.";
return false;
}
return true;
}
}