|
| 1 | +/* |
| 2 | + * PlotSquared, a land and world management plugin for Minecraft. |
| 3 | + * Copyright (C) IntellectualSites <https://intellectualsites.com> |
| 4 | + * Copyright (C) IntellectualSites team and contributors |
| 5 | + * |
| 6 | + * This program is free software: you can redistribute it and/or modify |
| 7 | + * it under the terms of the GNU General Public License as published by |
| 8 | + * the Free Software Foundation, either version 3 of the License, or |
| 9 | + * (at your option) any later version. |
| 10 | + * |
| 11 | + * This program is distributed in the hope that it will be useful, |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | + * GNU General Public License for more details. |
| 15 | + * |
| 16 | + * You should have received a copy of the GNU General Public License |
| 17 | + * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 18 | + */ |
| 19 | +package com.plotsquared.core.events; |
| 20 | + |
| 21 | +import com.plotsquared.core.player.PlotPlayer; |
| 22 | +import org.checkerframework.checker.index.qual.NonNegative; |
| 23 | +import org.checkerframework.checker.nullness.qual.NonNull; |
| 24 | + |
| 25 | +/** |
| 26 | + * Called every time after PlotSquared calculated a players plot limit based on their permission. |
| 27 | + * <p> |
| 28 | + * May be used to grant a player more plots based on another rank or bought feature. |
| 29 | + * |
| 30 | + * @since TODO |
| 31 | + */ |
| 32 | +public class PlayerPlotLimitEvent { |
| 33 | + |
| 34 | + private final PlotPlayer<?> player; |
| 35 | + |
| 36 | + private int limit; |
| 37 | + |
| 38 | + public PlayerPlotLimitEvent(@NonNull final PlotPlayer<?> player, @NonNegative final int limit) { |
| 39 | + this.player = player; |
| 40 | + this.limit = limit; |
| 41 | + } |
| 42 | + |
| 43 | + /** |
| 44 | + * Overrides the previously calculated or set plot limit for {@link #player()}. |
| 45 | + * |
| 46 | + * @param limit The amount of plots a player may claim. Must be {@code 0} or greater. |
| 47 | + * @since TODO |
| 48 | + */ |
| 49 | + public void limit(@NonNegative final int limit) { |
| 50 | + if (limit < 0) { |
| 51 | + throw new IllegalArgumentException("Player plot limit must be greater or equal 0"); |
| 52 | + } |
| 53 | + this.limit = limit; |
| 54 | + } |
| 55 | + |
| 56 | + /** |
| 57 | + * Returns the previous set limit, if none was overridden before this event handler the default limit based on the players |
| 58 | + * permissions node is returned. |
| 59 | + * |
| 60 | + * @return The currently defined plot limit of this player. |
| 61 | + * @since TODO |
| 62 | + */ |
| 63 | + public @NonNegative int limit() { |
| 64 | + return limit; |
| 65 | + } |
| 66 | + |
| 67 | + /** |
| 68 | + * The player for which the limit is queried. |
| 69 | + * |
| 70 | + * @return the player. |
| 71 | + * @since TODO |
| 72 | + */ |
| 73 | + public @NonNull PlotPlayer<?> player() { |
| 74 | + return player; |
| 75 | + } |
| 76 | + |
| 77 | +} |
0 commit comments