집합, 귀환 추가

This commit is contained in:
2018-10-17 02:38:51 +09:00
parent 337424cb96
commit 220e98b2cc
9 changed files with 338 additions and 135 deletions
@@ -0,0 +1,38 @@
<?php
namespace sammo\Constraint;
use sammo\DB;
//TODO: DB 사용하지 않도록 변경
class MustBeTroopLeader extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL;
public function checkInputValues(bool $throwExeception=true){
if(!parent::checkInputValues($throwExeception) && !$throwException){
return false;
}
if(!key_exists('troop', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require troop in general");
}
return true;
}
public function test():bool{
$this->checkInputValues();
$this->tested = true;
//XXX: 부대장인지 알 수가 없음
$db = DB::db();
$troopLeader = $db->queryFirstField('SELECT no FROM troop WHERE troop = %i', $this->general['troop']);
if($troopLeader == $this->general['no']){
return true;
}
$this->reason = "부대장이 아닙니다.";
return false;
}
}
+46
View File
@@ -0,0 +1,46 @@
<?php
namespace sammo\Constraint;
class NotCapital extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL|Constraint::REQ_NATION|Constraint::REQ_INT_ARG;
public function checkInputValues(bool $throwExeception=true){
if(!parent::checkInputValues($throwExeception) && !$throwException){
return false;
}
if(!key_exists('city', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require city in general");
}
if(!key_exists('level', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require level in general");
}
if(!key_exists('capital', $this->nation)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require capital in nation");
}
return true;
}
public function test():bool{
$this->checkInputValues();
$this->tested = true;
if($this->nation['capital'] != $this->general['city']){
return true;
}
if($this->arg && 2 <= $this->general['level'] && $this->general['level'] <= 4){
return true;
}
$this->reason = "이미 수도입니다.";
return false;
}
}
+1 -1
View File
@@ -2,7 +2,7 @@
namespace sammo\Constraint;
class NoWanderingNation extends Constraint{
class OccupiedCity extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL|Constraint::REQ_CITY;
public function checkInputValues(bool $throwExeception=true){
+37
View File
@@ -0,0 +1,37 @@
<?php
namespace sammo\Constraint;
use sammo\DB;
class ReqTroopMembers extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL;
public function checkInputValues(bool $throwExeception=true){
if(!parent::checkInputValues($throwExeception) && !$throwException){
return false;
}
if(!key_exists('troop', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require troop in general");
}
return true;
}
public function test():bool{
$this->checkInputValues();
$this->tested = true;
$db = DB::db();
//NOTE:이 경우에 DB를 사용하지 않을 수 있는가?
$troopMember = $db->queryFirstField('SELECT no FROM troop WHERE troop = %i AND no != %i LIMIT 1', $this->general['troop'], $this->general['no']);
if($troopMember !== null){
return true;
}
$this->reason = "집합 가능한 부대원이 없습니다.";
return false;
}
}