From f20283dc3787d4aef8f2d85cfa1f343bfe76f2d6 Mon Sep 17 00:00:00 2001 From: jojo Date: Sun, 27 Dec 2020 22:56:14 +0100 Subject: [PATCH] Add SWCommandBundle --- .../de/steamwar/command/SWCommandBundle.java | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 SpigotCore_Main/src/de/steamwar/command/SWCommandBundle.java diff --git a/SpigotCore_Main/src/de/steamwar/command/SWCommandBundle.java b/SpigotCore_Main/src/de/steamwar/command/SWCommandBundle.java new file mode 100644 index 0000000..e3954ca --- /dev/null +++ b/SpigotCore_Main/src/de/steamwar/command/SWCommandBundle.java @@ -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 . + * / + */ + +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 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 execute(Player player, String[] args) { + for (SWCommand swCommand : swCommandList) { + Optional optionalBoolean = swCommand.execute(player, args); + if (optionalBoolean.isPresent()) return optionalBoolean; + } + return Optional.empty(); + } + +}