compare: configure scenario static events
This commit is contained in:
@@ -128,6 +128,23 @@ function comparisonApplyTurnFixtureSetup(mixed $setup): void
|
||||
}
|
||||
UniqueConst::$hiddenSeed = $hiddenSeed;
|
||||
}
|
||||
if (array_key_exists('staticEventHandlers', $world)) {
|
||||
$handlersByEvent = $world['staticEventHandlers'];
|
||||
if (!is_array($handlersByEvent)) {
|
||||
throw new \InvalidArgumentException('setup.world.staticEventHandlers must be an object');
|
||||
}
|
||||
foreach ($handlersByEvent as $eventType => $handlers) {
|
||||
if (!is_string($eventType) || $eventType === '' || !is_array($handlers)) {
|
||||
throw new \InvalidArgumentException('setup.world.staticEventHandlers is invalid');
|
||||
}
|
||||
foreach ($handlers as $handler) {
|
||||
if (!is_string($handler) || $handler === '') {
|
||||
throw new \InvalidArgumentException('setup.world.staticEventHandlers is invalid');
|
||||
}
|
||||
}
|
||||
}
|
||||
GameConst::$staticEventHandlers = $handlersByEvent;
|
||||
}
|
||||
}
|
||||
|
||||
foreach (['nations', 'cities', 'generals', 'troops', 'diplomacy'] as $collection) {
|
||||
|
||||
Reference in New Issue
Block a user