@@ -12,10 +12,10 @@ |
||
| 12 | 12 | public function run() |
| 13 | 13 | {
|
| 14 | 14 | Capsule::schema()->dropIfExists('teams');
|
| 15 | - Capsule::schema()->create('teams', function ($table) {
|
|
| 15 | + Capsule::schema()->create('teams', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('name');
|
| 18 | - $table->string('nationality',2);
|
|
| 18 | + $table->string('nationality', 2);
|
|
| 19 | 19 | $table->timestamps(); |
| 20 | 20 | }); |
| 21 | 21 | } |
@@ -12,15 +12,15 @@ |
||
| 12 | 12 | public function run() |
| 13 | 13 | {
|
| 14 | 14 | Capsule::schema()->dropIfExists('coaches');
|
| 15 | - Capsule::schema()->create('coaches', function ($table) {
|
|
| 15 | + Capsule::schema()->create('coaches', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('name');
|
| 18 | 18 | $table->string('surname');
|
| 19 | 19 | $table->tinyInteger('age');
|
| 20 | - $table->string('nationality',2);
|
|
| 20 | + $table->string('nationality', 2);
|
|
| 21 | 21 | $table->float('skillAvg');
|
| 22 | 22 | $table->float('wageReq');
|
| 23 | - $table->string('favouriteModule',10);
|
|
| 23 | + $table->string('favouriteModule', 10);
|
|
| 24 | 24 | $table->integer('team_id')->nullable();
|
| 25 | 25 | $table->timestamps(); |
| 26 | 26 | }); |
@@ -12,16 +12,16 @@ |
||
| 12 | 12 | public function run() |
| 13 | 13 | {
|
| 14 | 14 | Capsule::schema()->dropIfExists('players');
|
| 15 | - Capsule::schema()->create('players', function ($table) {
|
|
| 15 | + Capsule::schema()->create('players', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('name');
|
| 18 | 18 | $table->string('surname');
|
| 19 | 19 | $table->tinyInteger('age');
|
| 20 | - $table->string('nationality',2);
|
|
| 20 | + $table->string('nationality', 2);
|
|
| 21 | 21 | $table->float('skillAvg');
|
| 22 | 22 | $table->float('wageReq');
|
| 23 | 23 | $table->float('val');
|
| 24 | - $table->string('role',2);
|
|
| 24 | + $table->string('role', 2);
|
|
| 25 | 25 | $table->integer('team_id')->nullable();
|
| 26 | 26 | $table->timestamps(); |
| 27 | 27 | }); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | $team = $rndF->getTeam(); |
| 66 | 66 | |
| 67 | 67 | //var_dump($team->toArray()); |
| 68 | - echo "\n" . $team->name . " avg:"; |
|
| 68 | + echo "\n".$team->name." avg:"; |
|
| 69 | 69 | echo $team->getAvgSkill(); |
| 70 | 70 | |
| 71 | 71 | echo "\n Adding player:"; |
@@ -98,8 +98,8 @@ discard block |
||
| 98 | 98 | for ($i = 1; $i <= 20; $i++) {
|
| 99 | 99 | echo "\n\n-------------"; |
| 100 | 100 | $team = $rndF->getTeam(); |
| 101 | - echo "\n team: " . $team->name; |
|
| 102 | - echo "\n nat: " . $team->nationality; |
|
| 101 | + echo "\n team: ".$team->name; |
|
| 102 | + echo "\n nat: ".$team->nationality; |
|
| 103 | 103 | echo "\n skill avg: "; |
| 104 | 104 | echo $team->getAvgSkill(); |
| 105 | 105 | echo "\n age avg: "; |
@@ -118,9 +118,9 @@ discard block |
||
| 118 | 118 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT");
|
| 119 | 119 | $italian = $rndF->getTeam(); |
| 120 | 120 | |
| 121 | - echo "\n" . $italian->name . "(" . $italian->getAvgSkill() . ") - " . $spanish->name . "(" . $spanish->getAvgSkill() . ") ...... ";
|
|
| 121 | + echo "\n".$italian->name."(".$italian->getAvgSkill().") - ".$spanish->name."(".$spanish->getAvgSkill().") ...... ";
|
|
| 122 | 122 | $result = (new \App\Lib\DsManager\Models\Match($italian, $spanish))->simulate()->toArray(); |
| 123 | - echo $result['goalHome'] . " - " . $result['goalAway']; |
|
| 123 | + echo $result['goalHome']." - ".$result['goalAway']; |
|
| 124 | 124 | echo "\n\n"; |
| 125 | 125 | } |
| 126 | 126 | |
@@ -146,9 +146,9 @@ discard block |
||
| 146 | 146 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller($randomLocale); |
| 147 | 147 | $opponent = $rndF->getTeam(); |
| 148 | 148 | |
| 149 | - echo "\n" . $opponent->name . "(" . $opponent->getAvgSkill() . ") - " . $myTeam->name . "(" . $myTeam->getAvgSkill() . ") ...... ";
|
|
| 149 | + echo "\n".$opponent->name."(".$opponent->getAvgSkill().") - ".$myTeam->name."(".$myTeam->getAvgSkill().") ...... ";
|
|
| 150 | 150 | $result = (new \App\Lib\DsManager\Models\Match($opponent, $myTeam))->simulate()->toArray(); |
| 151 | - echo $result['goalHome'] . " - " . $result['goalAway']; |
|
| 151 | + echo $result['goalHome']." - ".$result['goalAway']; |
|
| 152 | 152 | $result = $result['info']; |
| 153 | 153 | if (!$result['isDraw']) {
|
| 154 | 154 | if ($result['winner']->name == $myTeam->name) {
|
@@ -178,10 +178,10 @@ discard block |
||
| 178 | 178 | $modules = array_keys($modules); |
| 179 | 179 | foreach ($modules as $mod) {
|
| 180 | 180 | $module = new \App\Lib\DsManager\Models\Module($mod); |
| 181 | - echo "\n------------\n\n" . $module; |
|
| 182 | - echo "\nD: " . $module->isDefensive(); |
|
| 183 | - echo "\nB: " . $module->isBalanced(); |
|
| 184 | - echo "\nO: " . $module->isOffensive(); |
|
| 181 | + echo "\n------------\n\n".$module; |
|
| 182 | + echo "\nD: ".$module->isDefensive(); |
|
| 183 | + echo "\nB: ".$module->isBalanced(); |
|
| 184 | + echo "\nO: ".$module->isOffensive(); |
|
| 185 | 185 | echo "\n"; |
| 186 | 186 | print_r($module->getRoleNeeded()); |
| 187 | 187 | echo "\napplicable? "; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | $this->assertNotEmpty($module["roles"]); |
| 43 | 43 | foreach ($module["roles"] as $index => $playNum) {
|
| 44 | 44 | if ($playNum != 0) |
| 45 | - echo $playNum . " " . $roles[$rolesKeys[$index]]["description"] . " "; |
|
| 45 | + echo $playNum." ".$roles[$rolesKeys[$index]]["description"]." "; |
|
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | echo "\n"; |
| 59 | 59 | |
| 60 | 60 | for ($i = 1; $i <= 100; $i++) {
|
| 61 | - echo $i . " . "; |
|
| 61 | + echo $i." . "; |
|
| 62 | 62 | if (\App\Lib\DsManager\Helpers\Randomizer::boolOnPercentage(20)) {
|
| 63 | 63 | echo "yes"; |
| 64 | 64 | $yes++; |
@@ -41,8 +41,9 @@ |
||
| 41 | 41 | echo "\nto play $key\n"; |
| 42 | 42 | $this->assertNotEmpty($module["roles"]); |
| 43 | 43 | foreach ($module["roles"] as $index => $playNum) {
|
| 44 | - if ($playNum != 0) |
|
| 45 | - echo $playNum . " " . $roles[$rolesKeys[$index]]["description"] . " "; |
|
| 44 | + if ($playNum != 0) { |
|
| 45 | + echo $playNum . " " . $roles[$rolesKeys[$index]]["description"] . " "; |
|
| 46 | + } |
|
| 46 | 47 | } |
| 47 | 48 | } |
| 48 | 49 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function testIlluminateConnection() |
| 14 | 14 | {
|
| 15 | - Illuminate\Database\Capsule\Manager::schema()->create('test', function ($table) {
|
|
| 15 | + Illuminate\Database\Capsule\Manager::schema()->create('test', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('email')->unique();
|
| 18 | 18 | $table->timestamps(); |
@@ -44,7 +44,9 @@ discard block |
||
| 44 | 44 | $val -= rand(1, 3); |
| 45 | 45 | $val += $this->onRoleModifier(); |
| 46 | 46 | $val += $this->spareChange(); |
| 47 | - if ($val < 0) $val = $val * -1; |
|
| 47 | + if ($val < 0) { |
|
| 48 | + $val = $val * -1; |
|
| 49 | + } |
|
| 48 | 50 | $val = round($val, 2); |
| 49 | 51 | return $val; |
| 50 | 52 | } |
@@ -57,7 +59,9 @@ discard block |
||
| 57 | 59 | if ($this->wageReq == null) {
|
| 58 | 60 | $wage = round($this->getVal() / 10.0, 2); |
| 59 | 61 | $wage += $this->spareChange(); |
| 60 | - if ($wage < 0) $wage = $wage * -1; |
|
| 62 | + if ($wage < 0) { |
|
| 63 | + $wage = $wage * -1; |
|
| 64 | + } |
|
| 61 | 65 | $this->wageReq = round($wage, 2); |
| 62 | 66 | } |
| 63 | 67 | return $this->wageReq; |
@@ -80,13 +84,27 @@ discard block |
||
| 80 | 84 | */ |
| 81 | 85 | private function priceOnSkill() |
| 82 | 86 | {
|
| 83 | - if ($this->skillAvg > 98) return 130.0; |
|
| 84 | - if ($this->skillAvg > 90) return 80.0; |
|
| 85 | - if ($this->skillAvg > 80) return 50.0; |
|
| 86 | - if ($this->skillAvg > 76) return 20.0; |
|
| 87 | - if ($this->skillAvg > 70) return 10.0; |
|
| 88 | - if ($this->skillAvg > 60) return 5.0; |
|
| 89 | - if ($this->skillAvg > 50) return 2.0; |
|
| 87 | + if ($this->skillAvg > 98) { |
|
| 88 | + return 130.0; |
|
| 89 | + } |
|
| 90 | + if ($this->skillAvg > 90) { |
|
| 91 | + return 80.0; |
|
| 92 | + } |
|
| 93 | + if ($this->skillAvg > 80) { |
|
| 94 | + return 50.0; |
|
| 95 | + } |
|
| 96 | + if ($this->skillAvg > 76) { |
|
| 97 | + return 20.0; |
|
| 98 | + } |
|
| 99 | + if ($this->skillAvg > 70) { |
|
| 100 | + return 10.0; |
|
| 101 | + } |
|
| 102 | + if ($this->skillAvg > 60) { |
|
| 103 | + return 5.0; |
|
| 104 | + } |
|
| 105 | + if ($this->skillAvg > 50) { |
|
| 106 | + return 2.0; |
|
| 107 | + } |
|
| 90 | 108 | return 0.5; |
| 91 | 109 | |
| 92 | 110 | } |
@@ -96,12 +114,24 @@ discard block |
||
| 96 | 114 | */ |
| 97 | 115 | private function onAgeModifier() |
| 98 | 116 | {
|
| 99 | - if ($this->age > 32) return -0.5; |
|
| 100 | - if ($this->age > 30) return -0.2; |
|
| 101 | - if ($this->age > 28) return -0.1; |
|
| 102 | - if ($this->age > 26) return 0.1; |
|
| 103 | - if ($this->age > 22) return 0.2; |
|
| 104 | - if ($this->age > 20) return 0.3; |
|
| 117 | + if ($this->age > 32) { |
|
| 118 | + return -0.5; |
|
| 119 | + } |
|
| 120 | + if ($this->age > 30) { |
|
| 121 | + return -0.2; |
|
| 122 | + } |
|
| 123 | + if ($this->age > 28) { |
|
| 124 | + return -0.1; |
|
| 125 | + } |
|
| 126 | + if ($this->age > 26) { |
|
| 127 | + return 0.1; |
|
| 128 | + } |
|
| 129 | + if ($this->age > 22) { |
|
| 130 | + return 0.2; |
|
| 131 | + } |
|
| 132 | + if ($this->age > 20) { |
|
| 133 | + return 0.3; |
|
| 134 | + } |
|
| 105 | 135 | return 0.5; |
| 106 | 136 | } |
| 107 | 137 | |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | use Illuminate\Database\Eloquent\Model as Eloquent; |
| 5 | 5 | |
| 6 | 6 | |
| 7 | -abstract class DsManagerOrm extends Eloquent{
|
|
| 7 | +abstract class DsManagerOrm extends Eloquent {
|
|
| 8 | 8 | |
| 9 | 9 | protected $hidden = [ |
| 10 | 10 | 'created_at', |
@@ -35,7 +35,9 @@ discard block |
||
| 35 | 35 | if ($this->wageReq == null) {
|
| 36 | 36 | $wage = $this->wageOnSkill(); |
| 37 | 37 | $wage += $this->spareChange(); |
| 38 | - if ($wage < 0) $wage = $wage * (-1); |
|
| 38 | + if ($wage < 0) { |
|
| 39 | + $wage = $wage * (-1); |
|
| 40 | + } |
|
| 39 | 41 | $this->wageReq = round($wage, 2); |
| 40 | 42 | } |
| 41 | 43 | return $this->wageReq; |
@@ -46,13 +48,27 @@ discard block |
||
| 46 | 48 | */ |
| 47 | 49 | private function wageOnSkill() |
| 48 | 50 | {
|
| 49 | - if ($this->skillAvg > 98) return 5.0; |
|
| 50 | - if ($this->skillAvg > 90) return 3.5; |
|
| 51 | - if ($this->skillAvg > 80) return 2.0; |
|
| 52 | - if ($this->skillAvg > 76) return 1.5; |
|
| 53 | - if ($this->skillAvg > 70) return 1.0; |
|
| 54 | - if ($this->skillAvg > 60) return .76; |
|
| 55 | - if ($this->skillAvg > 50) return .20; |
|
| 51 | + if ($this->skillAvg > 98) { |
|
| 52 | + return 5.0; |
|
| 53 | + } |
|
| 54 | + if ($this->skillAvg > 90) { |
|
| 55 | + return 3.5; |
|
| 56 | + } |
|
| 57 | + if ($this->skillAvg > 80) { |
|
| 58 | + return 2.0; |
|
| 59 | + } |
|
| 60 | + if ($this->skillAvg > 76) { |
|
| 61 | + return 1.5; |
|
| 62 | + } |
|
| 63 | + if ($this->skillAvg > 70) { |
|
| 64 | + return 1.0; |
|
| 65 | + } |
|
| 66 | + if ($this->skillAvg > 60) { |
|
| 67 | + return .76; |
|
| 68 | + } |
|
| 69 | + if ($this->skillAvg > 50) { |
|
| 70 | + return .20; |
|
| 71 | + } |
|
| 56 | 72 | return 0.5; |
| 57 | 73 | |
| 58 | 74 | } |