|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Created by Gorlum 01.12.2017 6:54 |
|
4
|
|
|
*/ |
|
5
|
|
|
|
|
6
|
|
|
namespace Bonus; |
|
7
|
|
|
|
|
8
|
|
|
use Common\ContainerPlus; |
|
9
|
|
|
use \SN; |
|
|
|
|
|
|
10
|
|
|
|
|
11
|
|
|
|
|
12
|
|
|
/** |
|
13
|
|
|
* Class ValueStorage |
|
14
|
|
|
* |
|
15
|
|
|
* Store calculated bonus values |
|
16
|
|
|
* |
|
17
|
|
|
* In future can be used to cache data in memory cache |
|
18
|
|
|
* |
|
19
|
|
|
* @package Bonus |
|
20
|
|
|
*/ |
|
21
|
|
|
class ValueStorage extends ContainerPlus { |
|
22
|
|
|
/** |
|
23
|
|
|
* @var \Core\GlobalContainer |
|
24
|
|
|
*/ |
|
25
|
|
|
protected $gc; |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* @var ValueBonused[][] $values |
|
29
|
|
|
*/ |
|
30
|
|
|
protected $values = []; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @return \Core\GlobalContainer |
|
34
|
|
|
*/ |
|
35
|
|
|
public function getGlobalContainer() { |
|
36
|
|
|
return $this->gc; |
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
public function __construct(array $values = array()) { |
|
40
|
|
|
parent::__construct($values); |
|
41
|
|
|
|
|
42
|
|
|
$this->gc = SN::$gc; |
|
43
|
|
|
|
|
44
|
|
|
$this->initValues(); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
protected function initValues() { |
|
48
|
|
|
$this[UNIT_SERVER_SPEED_BUILDING] = function (ValueStorage $vs) { |
|
49
|
|
|
return new ValueBonused(UNIT_SERVER_SPEED_BUILDING, floatval($vs->getGlobalContainer()->config->game_speed)); |
|
|
|
|
|
|
50
|
|
|
}; |
|
51
|
|
|
$this[UNIT_SERVER_SPEED_MINING] = function (ValueStorage $vs) { |
|
52
|
|
|
return new ValueBonused(UNIT_SERVER_SPEED_MINING, floatval($vs->getGlobalContainer()->config->resource_multiplier)); |
|
|
|
|
|
|
53
|
|
|
}; |
|
54
|
|
|
$this[UNIT_SERVER_SPEED_FLEET] = function (ValueStorage $vs) { |
|
55
|
|
|
return new ValueBonused(UNIT_SERVER_SPEED_FLEET, floatval($vs->getGlobalContainer()->config->fleet_speed)); |
|
|
|
|
|
|
56
|
|
|
}; |
|
57
|
|
|
$this[UNIT_SERVER_SPEED_EXPEDITION] = function (ValueStorage $vs) { |
|
|
|
|
|
|
58
|
|
|
return new ValueBonused(UNIT_SERVER_SPEED_EXPEDITION, floatval(1)); |
|
|
|
|
|
|
59
|
|
|
}; |
|
60
|
|
|
|
|
61
|
|
|
$this[UNIT_SERVER_FLEET_NOOB_POINTS] = function (ValueStorage $vs) { |
|
62
|
|
|
$config = $vs->getGlobalContainer()->config; |
|
63
|
|
|
|
|
64
|
|
|
return new ValueBonused( |
|
65
|
|
|
UNIT_SERVER_FLEET_NOOB_POINTS, |
|
|
|
|
|
|
66
|
|
|
floatval($config->game_noob_points * $vs->getBase(UNIT_SERVER_SPEED_MINING)) |
|
|
|
|
|
|
67
|
|
|
); |
|
68
|
|
|
}; |
|
69
|
|
|
$this[UNIT_SERVER_FLEET_NOOB_FACTOR] = function (ValueStorage $vs) { |
|
70
|
|
|
return new ValueBonused(UNIT_SERVER_FLEET_NOOB_FACTOR, floatval($vs->getGlobalContainer()->config->game_noob_factor)); |
|
|
|
|
|
|
71
|
|
|
}; |
|
72
|
|
|
|
|
73
|
|
|
$this[UNIT_SERVER_PAYMENT_MM_PER_CURRENCY] = function (ValueStorage $vs) { |
|
74
|
|
|
return new ValueBonused(UNIT_SERVER_PAYMENT_MM_PER_CURRENCY, floatval($vs->getGlobalContainer()->config->payment_currency_exchange_mm_)); |
|
|
|
|
|
|
75
|
|
|
}; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* Get value object for supplied ID |
|
80
|
|
|
* |
|
81
|
|
|
* Supports only server and player units... for now |
|
82
|
|
|
* |
|
83
|
|
|
* @param int $unitSnId |
|
84
|
|
|
* @param array $context - Context list of locations: [LOC_xxx => (data)] |
|
85
|
|
|
* |
|
86
|
|
|
* @return ValueBonused|mixed |
|
87
|
|
|
*/ |
|
88
|
|
|
public function getValueObject($unitSnId, $context = []) { |
|
89
|
|
|
if (isset($this[$unitSnId])) { |
|
90
|
|
|
// Server var |
|
91
|
|
|
$valueObject = $this[$unitSnId]; |
|
92
|
|
|
} else { |
|
93
|
|
|
// Not a server var |
|
94
|
|
|
$valueObject = new ValueBonused($unitSnId, $this->getLevelNonServer($unitSnId, $context)); |
|
95
|
|
|
} |
|
96
|
|
|
|
|
97
|
|
|
if ($valueObject instanceof ValueBonused) { |
|
98
|
|
|
$valueObject->getValue($context); |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
return $valueObject; |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
/** |
|
105
|
|
|
* @param int $unitSnId |
|
106
|
|
|
* @param array $context - Context list of locations: [LOC_xxx => (data)] |
|
107
|
|
|
* |
|
108
|
|
|
* @return float|int |
|
109
|
|
|
*/ |
|
110
|
|
|
public function getValue($unitSnId, $context = []) { |
|
111
|
|
|
|
|
112
|
|
|
if (($vo = $this->getValueObject($unitSnId, $context)) instanceof ValueBonused) { |
|
113
|
|
|
$result = $vo->getValue(); |
|
114
|
|
|
} else { |
|
115
|
|
|
$result = $vo; |
|
116
|
|
|
} |
|
117
|
|
|
|
|
118
|
|
|
return $result; |
|
119
|
|
|
} |
|
120
|
|
|
|
|
121
|
|
|
/** |
|
122
|
|
|
* @param int $unitSnId |
|
123
|
|
|
* @param array $context - Context list of locations: [LOC_xxx => (data)] |
|
124
|
|
|
* |
|
125
|
|
|
* @return float|int |
|
126
|
|
|
*/ |
|
127
|
|
|
public function getBase($unitSnId, $context = []) { |
|
128
|
|
|
if (($vo = $this->getValueObject($unitSnId, $context)) instanceof ValueBonused) { |
|
129
|
|
|
$result = $vo->base; |
|
130
|
|
|
} else { |
|
131
|
|
|
$result = $vo; |
|
132
|
|
|
} |
|
133
|
|
|
|
|
134
|
|
|
return $result; |
|
135
|
|
|
} |
|
136
|
|
|
|
|
137
|
|
|
/** |
|
138
|
|
|
* @param array $user |
|
139
|
|
|
* @param array $planet |
|
140
|
|
|
* @param int $unitSnId |
|
141
|
|
|
* |
|
142
|
|
|
* @return int|float|bool |
|
143
|
|
|
*/ |
|
144
|
|
|
protected function getLevel($user, $planet, $unitSnId) { |
|
145
|
|
|
return mrc_get_level($user, $planet, $unitSnId, true, true); |
|
146
|
|
|
} |
|
147
|
|
|
|
|
148
|
|
|
/** |
|
149
|
|
|
* @param int $unitSnId |
|
150
|
|
|
* @param array $context - Context list of locations: [LOC_xxx => (data)] |
|
151
|
|
|
* |
|
152
|
|
|
* @return int|float|bool |
|
153
|
|
|
*/ |
|
154
|
|
|
protected function getLevelNonServer($unitSnId, $context = []) { |
|
155
|
|
|
// pdump($unitSnId, 'NON-server'); |
|
156
|
|
|
// list($locationType, $locationId) = getLocationFromContext($context); |
|
157
|
|
|
// $fleet = !empty($context[LOC_FLEET]) ? $context[LOC_FLEET] : []; |
|
158
|
|
|
$user = !empty($context[LOC_USER]) ? $context[LOC_USER] : []; |
|
159
|
|
|
$planet = !empty($context[LOC_PLANET]) ? $context[LOC_PLANET] : []; |
|
160
|
|
|
|
|
161
|
|
|
return $this->getLevel($user, $planet, $unitSnId); |
|
162
|
|
|
} |
|
163
|
|
|
|
|
164
|
|
|
} |
|
165
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths