Files
core/hwe/sammo/Constraint/NotOpeningPart.php
T
2019-04-21 21:15:53 +09:00

32 lines
719 B
PHP

<?php
namespace sammo\Constraint;
use \sammo\GameConst;
class NotOpeningPart extends Constraint{
const REQ_VALUES = Constraint::REQ_INT_ARG;
protected $relYear;
public function checkInputValues(bool $throwExeception=true):bool{
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
return false;
}
$this->relYear = $this->arg;
return true;
}
public function test():bool{
$this->checkInputValues();
$this->tested = true;
if($this->relYear >= GameConst::$openingPartYear){
return true;
}
$this->reason = "초반 제한 중에는 불가능합니다.";
return false;
}
}