Add SWCommandBundle
Dieser Commit ist enthalten in:
Ursprung
fbc13c75f0
Commit
f20283dc37
54
SpigotCore_Main/src/de/steamwar/command/SWCommandBundle.java
Normale Datei
54
SpigotCore_Main/src/de/steamwar/command/SWCommandBundle.java
Normale Datei
@ -0,0 +1,54 @@
|
||||
/*
|
||||
*
|
||||
* This file is a part of the SteamWar software.
|
||||
*
|
||||
* Copyright (C) 2020 SteamWar.de-Serverteam
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
* /
|
||||
*/
|
||||
|
||||
package de.steamwar.command;
|
||||
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
public class SWCommandBundle {
|
||||
|
||||
private List<SWCommand> swCommandList = new ArrayList<>();
|
||||
|
||||
public SWCommandBundle add(SWCommand swCommand) {
|
||||
if (swCommand == null) return this;
|
||||
swCommandList.add(swCommand);
|
||||
return this;
|
||||
}
|
||||
|
||||
public SWCommandBundle add(SWCommandBundle swCommandBundle) {
|
||||
if (swCommandBundle == null) return this;
|
||||
swCommandList.addAll(swCommandBundle.swCommandList);
|
||||
return this;
|
||||
}
|
||||
|
||||
public Optional<Boolean> execute(Player player, String[] args) {
|
||||
for (SWCommand swCommand : swCommandList) {
|
||||
Optional<Boolean> optionalBoolean = swCommand.execute(player, args);
|
||||
if (optionalBoolean.isPresent()) return optionalBoolean;
|
||||
}
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
}
|
In neuem Issue referenzieren
Einen Benutzer sperren