Files
core/hwe/sammo/WarUnit.php
T
Hide_D 3a805a7fcf 전투 파일 추가 작성중
전투 코드 추가 준비

추가 구현
2018-08-14 23:11:03 +09:00

167 lines
3.6 KiB
PHP

<?php
namespace sammo;
class WarUnit{
protected $rawNation;
protected $logger;
protected $crewType;
protected $killed = 0;
protected $death = 0;
protected $isAttacker = false;
protected $updatedVar = [];
protected $genAtmos = 0;
protected $genTrain = 0;
protected $currPhase = 0;
protected $prePhase = 0;
protected $oppose;
protected $warPower;
private function __construct(){
}
function getRaw():array{
return [];
}
function getRawNation():array{
return $this->rawNation;
}
function getPhase():int{
return $this->currPhase;
}
function getRealPhase():int{
return $this->prePhase + $this->currPhase;
}
function getName():string{
return 'EMPTY';
}
function getCrewType():GameUnitConst{
return $this->crewType;
}
function getLogger():ActionLogger{
return $this->logger;
}
function getSpecialDomestic():int{
return 0;
}
function getSpecialWar():int{
return 0;
}
function getItem():int{
return 0;
}
function getMaxPhase():int{
return 1;
}
function setPrePhase(int $phase){
$this->prePhase = $phase;
}
function addPhase(){
$this->currPhase += 1;
}
function setOppose(WarUnit $oppose){
$this->oppose = $oppose;
}
function computeWarPower(){
$oppose = $this->oppose;
$myAtt = $this->getCrewType()->getComputedAttack($this->getRaw(), $this->getRawNation()['tech']);
$opDef = $oppose->getCrewType()->getComputedDefence($oppose->getRaw(), $oppose->getRawNation()['tech']);
// 감소할 병사 수
$warPower = GameConst::$armperphase + $myAtt - $opDef;
if($warPower <= 0){
//FIXME: 0으로 잡을때 90~100이면, 1은 너무 억울하지 않나?
$warPower = rand(90, 100);
}
$warPower = getCrew(
$warPower,
CharAtmos(
$this->getComputedAtmos(),
$this->getCharacter()
),
CharTrain(
$oppose->getComputedTrain(),
$oppose->getCharacter()
)
);
$genDexAtt = getGenDex($this->getRaw(), $this->getCrewType()->id);
$oppDexDef = getGenDex($oppose->getRaw(), $this->getCrewType()->id);
$warPower *= getDexLog($genDexAtt, $oppDexDef);
$warPower *= $this->getCrewType()->getAttackCoef($oppose->getCrewType());
//FIXME : 이대로면 서로의 '공격력'만 반영됨 getDefenceCoef는 어따씀?
//TODO:관직 보정 (상속받은 쪽에서..?)
//TODO:레벨 보정 (상속받은 쪽에서..?)
//TODO:특기 보정 (상속받은 쪽에서..?)
$this->warPower = $warPower;
return $warPower;
}
function addTrain(int $train){
return;
}
function addAtmos(int $atmos){
return;
}
function getComputedTrain(){
//TODO: 나머지에 구현
return 100;
}
function getComputeAtmos(){
//TODO: 나머지에 구현
return 100;
}
function getCharacter(){
//TODO: 나머지에 구현
return 0;
}
function useBattleInitItem():bool{
return false;
}
function useActiveItem():bool{
return false;
}
function decreaseHP(int $damage):int{
return false;
}
function continueWar(&$noRice):bool{
//전투가 가능하면 true
$noRice = false;
return false;
}
}