Skip to content

Commit dbfc43e

Browse files
feat: allow for custom plot limit handling (#4261)
* feat: allow for custom plot limit handling * feat: allow for custom plot limit handling * chore: use fluent setter
1 parent c8b4a2f commit dbfc43e

File tree

3 files changed

+86
-1
lines changed

3 files changed

+86
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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+
}

Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,8 @@ public Plot getCurrentPlot() {
306306
* @return number of allowed plots within the scope (globally, or in the player's current world as defined in the settings.yml)
307307
*/
308308
public int getAllowedPlots() {
309-
return hasPermissionRange("plots.plot", Settings.Limit.MAX_PLOTS);
309+
final int calculatedLimit = hasPermissionRange("plots.plot", Settings.Limit.MAX_PLOTS);
310+
return this.eventDispatcher.callPlayerPlotLimit(this, calculatedLimit).limit();
310311
}
311312

312313
/**

Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java

+7
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import com.plotsquared.core.events.PlayerLeavePlotEvent;
3131
import com.plotsquared.core.events.PlayerPlotDeniedEvent;
3232
import com.plotsquared.core.events.PlayerPlotHelperEvent;
33+
import com.plotsquared.core.events.PlayerPlotLimitEvent;
3334
import com.plotsquared.core.events.PlayerPlotTrustedEvent;
3435
import com.plotsquared.core.events.PlayerTeleportToPlotEvent;
3536
import com.plotsquared.core.events.PlotAutoMergeEvent;
@@ -308,6 +309,12 @@ public RemoveRoadEntityEvent callRemoveRoadEntity(Entity entity) {
308309
return event;
309310
}
310311

312+
public PlayerPlotLimitEvent callPlayerPlotLimit(PlotPlayer<?> player, int calculatedLimit) {
313+
PlayerPlotLimitEvent event = new PlayerPlotLimitEvent(player, calculatedLimit);
314+
eventBus.post(event);
315+
return event;
316+
}
317+
311318
public void doJoinTask(final PlotPlayer<?> player) {
312319
if (player == null) {
313320
return; //possible future warning message to figure out where we are retrieving null

0 commit comments

Comments
 (0)