12
0

WIP: CommandFramework #84

Geschlossen
YoyoNow möchte 53 Commits von CommandFramework nach master mergen
Nur Änderungen aus Commit f20283dc37 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -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();
}
}