PocketMine-MP 5.18.1 git-9381fc4172e5dce4cada1cb356050c8a2ab57b94
CommandEnumConstraint.php
1<?php
2
3/*
4 * This file is part of BedrockProtocol.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6 *
7 * BedrockProtocol is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13declare(strict_types=1);
14
15namespace pocketmine\network\mcpe\protocol\types\command;
16
18 public const REQUIRES_CHEATS_ENABLED = 1 << 0;
19 public const REQUIRES_ELEVATED_PERMISSIONS = 1 << 1;
20 public const REQUIRES_HOST_PERMISSIONS = 1 << 2;
21 public const REQUIRES_ALLOW_ALIASES = 1 << 3;
22
26 public function __construct(
27 private CommandEnum $enum,
28 private int $valueOffset,
29 private array $constraints
30 ){
31 (static function(int ...$_) : void{})(...$constraints);
32 if(!isset($enum->getValues()[$valueOffset])){
33 throw new \InvalidArgumentException("Invalid enum value offset $valueOffset");
34 }
35 }
36
37 public function getEnum() : CommandEnum{
38 return $this->enum;
39 }
40
41 public function getValueOffset() : int{
42 return $this->valueOffset;
43 }
44
45 public function getAffectedValue() : string{
46 return $this->enum->getValues()[$this->valueOffset];
47 }
48
52 public function getConstraints() : array{
53 return $this->constraints;
54 }
55}
__construct(private CommandEnum $enum, private int $valueOffset, private array $constraints)