@@ -74,7 +74,7 @@ |
||
74 | 74 | }); |
75 | 75 | $resolver->setAllowedTypes("stat", ["string", "null"]); |
76 | 76 | $resolver->setAllowedValues("stat", function(?string $value) { |
77 | - return is_null($value) OR in_array($value, $this->getAllowedStats(), true); |
|
77 | + return is_null($value) or in_array($value, $this->getAllowedStats(), true); |
|
78 | 78 | }); |
79 | 79 | $resolver->setAllowedTypes("value", "integer"); |
80 | 80 | $resolver->setAllowedValues("value", function(int $value) { |
@@ -38,7 +38,7 @@ |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | public function getHitRate(): int { |
41 | - if(is_string($this->skill->hitRate) AND substr($this->skill->hitRate, -1) === "%") { |
|
41 | + if(is_string($this->skill->hitRate) and substr($this->skill->hitRate, -1) === "%") { |
|
42 | 42 | return (int) $this->skill->hitRate; |
43 | 43 | } |
44 | 44 | return 100; |
@@ -520,7 +520,7 @@ discard block |
||
520 | 520 | public function damageStat(): string { |
521 | 521 | $stat = static::STAT_STRENGTH; |
522 | 522 | foreach($this->equipment as $item) { |
523 | - if(!$item->worn OR $item->slot != Equipment::SLOT_WEAPON) { |
|
523 | + if(!$item->worn or $item->slot != Equipment::SLOT_WEAPON) { |
|
524 | 524 | continue; |
525 | 525 | } |
526 | 526 | switch($item->type) { |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | $stat = $effect->stat; |
580 | 580 | $type = $effect->type; |
581 | 581 | $duration = $effect->duration; |
582 | - if(is_int($duration) AND $duration < 1) { |
|
582 | + if(is_int($duration) and $duration < 1) { |
|
583 | 583 | $this->removeEffect($effect->id); |
584 | 584 | continue; |
585 | 585 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | public function chooseAction(CombatBase $combat, Character $character): ?string { |
24 | 24 | if($character->hitpoints < 1) { |
25 | 25 | return null; |
26 | - } elseif(in_array($character, $combat->findHealers()->toArray(), true) AND !is_null($combat->selectHealingTarget($character))) { |
|
26 | + } elseif(in_array($character, $combat->findHealers()->toArray(), true) and !is_null($combat->selectHealingTarget($character))) { |
|
27 | 27 | return CombatAction::ACTION_HEALING; |
28 | 28 | } |
29 | 29 | $attackTarget = $combat->selectAttackTarget($character); |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function setCharacterPosition($id, int $row, int $column): void { |
82 | 82 | if(!$this->hasItems(["id" => $id])) { |
83 | - throw new \OutOfBoundsException("Character $id is not in the team"); |
|
83 | + throw new \OutOfBoundsException("character $id is not in the team"); |
|
84 | 84 | } elseif(count($this->getItems(["positionRow" => $row])) >= $this->maxRowSize) { |
85 | - throw new InvalidCharacterPositionException("Row $row is full.", InvalidCharacterPositionException::ROW_FULL); |
|
85 | + throw new InvalidCharacterPositionException("row $row is full.", InvalidCharacterPositionException::ROW_FULL); |
|
86 | 86 | } elseif($this->hasItems(["positionRow" => $row, "positionColumn" => $column])) { |
87 | - throw new InvalidCharacterPositionException("Row $row column $column is occupied.", InvalidCharacterPositionException::POSITION_OCCUPIED); |
|
87 | + throw new InvalidCharacterPositionException("row $row column $column is occupied.", InvalidCharacterPositionException::POSITION_OCCUPIED); |
|
88 | 88 | } |
89 | 89 | $character = $this->getItems(["id" => $id])[0]; |
90 | 90 | $character->positionRow = $row; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | return null; |
113 | 113 | } |
114 | 114 | foreach($this->aliveMembers as $index => $member) { |
115 | - if($member->hitpoints <= $member->maxHitpoints * $threshold AND $member->hitpoints < $lowestHp) { |
|
115 | + if($member->hitpoints <= $member->maxHitpoints * $threshold and $member->hitpoints < $lowestHp) { |
|
116 | 116 | $lowestHp = $member->hitpoints; |
117 | 117 | $lowestIndex = $index; |
118 | 118 | } |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | foreach($team as $character) { |
233 | 233 | try { |
234 | 234 | $column++; |
235 | - if($character->positionRow > 0 AND $character->positionColumn > 0) { |
|
235 | + if($character->positionRow > 0 and $character->positionColumn > 0) { |
|
236 | 236 | continue; |
237 | 237 | } |
238 | 238 | setPosition: |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | $characters = array_merge($combat->team1->toArray(), $combat->team2->toArray()); |
288 | 288 | foreach($characters as $character) { |
289 | 289 | foreach($character->effects as $effect) { |
290 | - if($effect->duration === CharacterEffect::DURATION_COMBAT OR is_int($effect->duration)) { |
|
290 | + if($effect->duration === CharacterEffect::DURATION_COMBAT or is_int($effect->duration)) { |
|
291 | 291 | $character->removeEffect($effect->id); |
292 | 292 | } |
293 | 293 | } |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | $enemyTeam = $this->getEnemyTeam($attacker); |
350 | 350 | $rangedWeapon = false; |
351 | 351 | foreach($attacker->equipment as $equipment) { |
352 | - if($equipment instanceof Weapon AND $equipment->isWorn() AND $equipment->ranged) { |
|
352 | + if($equipment instanceof Weapon and $equipment->isWorn() and $equipment->ranged) { |
|
353 | 353 | $rangedWeapon = true; |
354 | 354 | break; |
355 | 355 | } |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | $targets = $this->getTeam($primaryTarget)->getItems(["positionColumn" => $primaryTarget->positionColumn]); |
410 | 410 | break; |
411 | 411 | default: |
412 | - throw new NotImplementedException("Target {$skill->skill->target} for attack skills is not implemented."); |
|
412 | + throw new NotImplementedException("target {$skill->skill->target} for attack skills is not implemented."); |
|
413 | 413 | } |
414 | 414 | foreach($targets as $target) { |
415 | 415 | for($i = 1; $i <= $skill->skill->strikes; $i++) { |
@@ -437,7 +437,7 @@ discard block |
||
437 | 437 | $targets = $this->getEnemyTeam($character)->toArray(); |
438 | 438 | break; |
439 | 439 | default: |
440 | - throw new NotImplementedException("Target {$skill->skill->target} for special skills is not implemented."); |
|
440 | + throw new NotImplementedException("target {$skill->skill->target} for special skills is not implemented."); |
|
441 | 441 | } |
442 | 442 | foreach($targets as $target) { |
443 | 443 | $this->onSkillSpecial($character, $target, $skill); |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | case null: |
478 | 478 | break; |
479 | 479 | default: |
480 | - throw new NotImplementedException("Action $action is not implemented."); |
|
480 | + throw new NotImplementedException("action $action is not implemented."); |
|
481 | 481 | } |
482 | 482 | } |
483 | 483 | } |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | "character1" => $character1, "character2" => $target, |
589 | 589 | ]; |
590 | 590 | $effect = new CharacterEffect([ |
591 | - "id" => "skill{$skill->skill->id}Effect", |
|
591 | + "id" => "skill{$skill->skill->id}effect", |
|
592 | 592 | "type" => $skill->skill->type, |
593 | 593 | "stat" => ((in_array($skill->skill->type, SkillSpecial::NO_STAT_TYPES, true)) ? null : $skill->skill->stat), |
594 | 594 | "value" => $skill->value, |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $resolver = new OptionsResolver(); |
50 | 50 | $this->configureOptions($resolver); |
51 | 51 | $effect = $resolver->resolve($effect); |
52 | - if(!in_array($effect["type"], SkillSpecial::NO_STAT_TYPES, true) AND $effect["stat"] === "") { |
|
52 | + if(!in_array($effect["type"], SkillSpecial::NO_STAT_TYPES, true) and $effect["stat"] === "") { |
|
53 | 53 | throw new \InvalidArgumentException("The option stat with value '' is invalid."); |
54 | 54 | } |
55 | 55 | $this->id = $effect["id"]; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $resolver->setAllowedTypes("stat", "string"); |
84 | 84 | $resolver->setDefault("stat", ""); |
85 | 85 | $resolver->setAllowedValues("stat", function(string $value) { |
86 | - return $value === "" OR in_array($value, $this->getAllowedStats(), true); |
|
86 | + return $value === "" or in_array($value, $this->getAllowedStats(), true); |
|
87 | 87 | }); |
88 | 88 | $resolver->setAllowedTypes("source", "string"); |
89 | 89 | $resolver->setAllowedValues("source", function(string $value) { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $resolver->setDefault("value", 0); |
94 | 94 | $resolver->setAllowedTypes("duration", ["string", "integer"]); |
95 | 95 | $resolver->setAllowedValues("duration", function($value) { |
96 | - return (in_array($value, $this->getDurations(), true)) OR ($value > 0); |
|
96 | + return (in_array($value, $this->getDurations(), true)) or ($value > 0); |
|
97 | 97 | }); |
98 | 98 | } |
99 | 99 | |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | * @throws \InvalidArgumentException |
157 | 157 | */ |
158 | 158 | public function setDuration($value): void { |
159 | - if(!is_int($value) AND !in_array($value, $this->getDurations(), true)) { |
|
159 | + if(!is_int($value) and !in_array($value, $this->getDurations(), true)) { |
|
160 | 160 | throw new \InvalidArgumentException("Invalid value set to CharacterEffect::\$duration. Expected string or integer."); |
161 | 161 | } |
162 | 162 | $this->duration = $value; |
@@ -75,7 +75,7 @@ |
||
75 | 75 | */ |
76 | 76 | public function setTemplate(string $template): void { |
77 | 77 | if(!is_file($template)) { |
78 | - throw new \RuntimeException("File $template does not exist."); |
|
78 | + throw new \RuntimeException("file $template does not exist."); |
|
79 | 79 | } |
80 | 80 | $this->template = $template; |
81 | 81 | } |