-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from AlpsBTE/28-menu-page-system
Implement Menu Page System
- Loading branch information
Showing
4 changed files
with
204 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright © 2021, Alps BTE <[email protected]> | ||
* Copyright © 2021-2022, Alps BTE <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -31,17 +31,20 @@ | |
import org.ipvp.canvas.mask.Mask; | ||
import org.ipvp.canvas.type.ChestMenu; | ||
|
||
|
||
public abstract class AbstractMenu { | ||
|
||
private final Menu menu; | ||
private final Player menuPlayer; | ||
|
||
public AbstractMenu(int rows, String title, Player menuPlayer) { | ||
this(rows, title, menuPlayer, true); | ||
} | ||
|
||
public AbstractMenu(int rows, String title, Player menuPlayer, boolean reload) { | ||
this.menuPlayer = menuPlayer; | ||
this.menu = ChestMenu.builder(rows).title(title).redraw(true).build(); | ||
|
||
reloadMenuAsync(); | ||
if (reload) reloadMenuAsync(); | ||
} | ||
|
||
/** | ||
|
139 changes: 139 additions & 0 deletions
139
src/main/java/com/alpsbte/plotsystem/core/menus/AbstractPaginatedMenu.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright © 2021-2022, Alps BTE <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
package com.alpsbte.plotsystem.core.menus; | ||
|
||
import com.alpsbte.plotsystem.PlotSystem; | ||
import org.bukkit.Bukkit; | ||
import org.bukkit.entity.Player; | ||
|
||
import java.util.List; | ||
|
||
public abstract class AbstractPaginatedMenu extends AbstractMenu { | ||
|
||
private final int maxItemsPerPage; | ||
private final int totalItemsAmount; | ||
private int currentPage = 0; | ||
|
||
public AbstractPaginatedMenu(int rows, int pagedRows, String title, Player menuPlayer) { | ||
super(rows, title, menuPlayer, false); | ||
|
||
this.maxItemsPerPage = pagedRows * 9; | ||
this.totalItemsAmount = getSource().size(); | ||
|
||
reloadMenuAsync(); | ||
} | ||
|
||
/** | ||
* Collects the source for the inventory items | ||
* @return item sources | ||
*/ | ||
protected abstract List<?> getSource(); | ||
|
||
/** | ||
* Places paginated items asynchronously in the menu after it is opened | ||
* @param source paginated item sources | ||
*/ | ||
protected abstract void setPaginatedMenuItemsAsync(List<?> source); | ||
|
||
/** | ||
* Sets click events for the paginated items placed in the menu after it is opened | ||
* @param source paginated item sources | ||
*/ | ||
protected abstract void setPaginatedItemClickEventsAsync(List<?> source); | ||
|
||
/** | ||
* Switch to the next page | ||
*/ | ||
protected void nextPage() { | ||
if (hasNextPage()) setPage(currentPage + 1); | ||
} | ||
|
||
/** | ||
* Switch to the previous page | ||
*/ | ||
protected void previousPage() { | ||
if (hasPreviousPage()) setPage(currentPage - 1); | ||
} | ||
|
||
/** | ||
* Sets the current page to the given index | ||
* @param index page index | ||
*/ | ||
protected void setPage(int index) { | ||
currentPage = index; | ||
reloadMenuAsync(); | ||
} | ||
|
||
/** | ||
* Collects all item sources for the current page | ||
* @return item sources for the current page | ||
*/ | ||
private List<?> getItemSources() { | ||
return getSource().subList(getMinIndex(), Math.min(getMaxIndex(), totalItemsAmount)); | ||
} | ||
|
||
/** | ||
* @return true if there is a next page | ||
*/ | ||
protected boolean hasNextPage() { | ||
return getMaxIndex() < totalItemsAmount; | ||
} | ||
|
||
/** | ||
* @return true if there is a previous page | ||
*/ | ||
protected boolean hasPreviousPage() { | ||
return getMinIndex() > 0; | ||
} | ||
|
||
/** | ||
* @return min slot index for current page | ||
*/ | ||
private int getMinIndex() { | ||
return currentPage * maxItemsPerPage; | ||
} | ||
|
||
/** | ||
* @return max slot index for current page | ||
*/ | ||
private int getMaxIndex() { | ||
return (currentPage + 1) * maxItemsPerPage; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
@Override | ||
protected void reloadMenuAsync() { | ||
getMenu().clear(); | ||
super.reloadMenuAsync(); | ||
|
||
Bukkit.getScheduler().runTaskAsynchronously(PlotSystem.getPlugin(), () -> { | ||
List<?> sources = getItemSources(); | ||
setPaginatedMenuItemsAsync(sources); | ||
setPaginatedItemClickEventsAsync(sources); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright © 2021, Alps BTE <[email protected]> | ||
* Copyright © 2021-2022, Alps BTE <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -26,7 +26,6 @@ | |
|
||
import com.alpsbte.plotsystem.core.system.plot.Plot; | ||
import com.alpsbte.plotsystem.core.system.plot.PlotManager; | ||
import com.alpsbte.plotsystem.core.system.plot.PlotHandler; | ||
import com.alpsbte.plotsystem.utils.items.builder.ItemBuilder; | ||
import com.alpsbte.plotsystem.utils.items.MenuItems; | ||
import com.alpsbte.plotsystem.utils.Utils; | ||
|
@@ -44,45 +43,39 @@ | |
import java.util.logging.Level; | ||
import java.util.stream.Collectors; | ||
|
||
public class ReviewMenu extends AbstractMenu { | ||
|
||
private final List<Plot> plots = new ArrayList<>(); | ||
private int plotDisplayCount = 0; | ||
public class ReviewMenu extends AbstractPaginatedMenu { | ||
|
||
public ReviewMenu(Player player) throws SQLException { | ||
super(6, "Manage & Review Plots", player); | ||
super(6, 5, "Manage & Review Plots", player); | ||
} | ||
|
||
@Override | ||
protected void setPreviewItems() { | ||
// Set previous page item | ||
getMenu().getSlot(46).setItem(MenuItems.previousPageItem()); | ||
protected List<?> getSource() { | ||
List<Plot> plots = new ArrayList<>(); | ||
try { | ||
plots.addAll(PlotManager.getPlots(Status.unreviewed)); | ||
plots.addAll(PlotManager.getPlots(Status.unfinished)); | ||
} catch (SQLException ex) { | ||
Bukkit.getLogger().log(Level.SEVERE, ex.getMessage(), ex); | ||
} | ||
return plots; | ||
} | ||
|
||
@Override | ||
protected void setPreviewItems() { | ||
// Set close item | ||
getMenu().getSlot(49).setItem(MenuItems.closeMenuItem()); | ||
|
||
// Set next page item | ||
getMenu().getSlot(52).setItem(MenuItems.nextPageItem()); | ||
|
||
super.setPreviewItems(); | ||
} | ||
|
||
@Override | ||
protected void setMenuItemsAsync() { | ||
// Get all unreviewed and unfinished plots | ||
try { | ||
plots.addAll(PlotManager.getPlots(Status.unreviewed)); | ||
plots.addAll(PlotManager.getPlots(Status.unfinished)); | ||
} catch (SQLException ex) { | ||
Bukkit.getLogger().log(Level.SEVERE, "A SQL error occurred!", ex); | ||
} | ||
|
||
protected void setPaginatedMenuItemsAsync(List<?> source) { | ||
// Set unreviewed and unfinished plot items | ||
plotDisplayCount = Math.min(plots.size(), 45); | ||
for(int i = 0; i < plotDisplayCount; i++) { | ||
List<Plot> plots = source.stream().map(p -> (Plot) p).collect(Collectors.toList()); | ||
int index = 0; | ||
for(Plot plot : plots) { | ||
try { | ||
Plot plot = plots.get(i); | ||
|
||
List<String> lines = new ArrayList<>(); | ||
lines.add("§7ID: §f" + plot.getID()); | ||
lines.add(""); | ||
|
@@ -99,54 +92,73 @@ protected void setMenuItemsAsync() { | |
lines.add("§7City: §f" + plot.getCity().getName()); | ||
lines.add("§7Difficulty: §f" + plot.getDifficulty().name().charAt(0) + plot.getDifficulty().name().substring(1).toLowerCase()); | ||
|
||
getMenu().getSlot(i).setItem(new ItemBuilder(plot.getStatus() == Status.unfinished ? Material.EMPTY_MAP : Material.MAP, 1) | ||
getMenu().getSlot(index).setItem(new ItemBuilder(plot.getStatus() == Status.unfinished ? Material.EMPTY_MAP : Material.MAP, 1) | ||
.setName(plot.getStatus() == Status.unfinished ? "§b§lManage Plot" : "§b§lReview Plot") | ||
.setLore(lines) | ||
.build()); | ||
} catch (SQLException ex) { | ||
Bukkit.getLogger().log(Level.SEVERE, "A SQL error occurred!", ex); | ||
getMenu().getSlot(i).setItem(MenuItems.errorItem()); | ||
getMenu().getSlot(index).setItem(MenuItems.errorItem()); | ||
} | ||
index++; | ||
} | ||
} | ||
|
||
@Override | ||
protected void setItemClickEventsAsync() { | ||
protected void setPaginatedItemClickEventsAsync(List<?> source) { | ||
// Set click event for unreviewed and unfinished plot items | ||
for(int i = 0; i < plotDisplayCount; i++) { | ||
int currentIteration = i; | ||
getMenu().getSlot(i).setClickHandler((clickPlayer, clickInformation) -> { | ||
List<Plot> plots = source.stream().map(p -> (Plot) p).collect(Collectors.toList()); | ||
int index = 0; | ||
for (Plot plot : plots) { | ||
getMenu().getSlot(index).setClickHandler((player, info) -> { | ||
try { | ||
Plot plot = plots.get(currentIteration); | ||
if(plot.getStatus() == Status.unreviewed) { | ||
if (!plot.getPlotOwner().getUUID().toString().equals(getMenuPlayer().getUniqueId().toString())){ | ||
getMenuPlayer().closeInventory(); | ||
getMenuPlayer().closeInventory(); | ||
if (plot.getStatus() == Status.unreviewed) { | ||
if (!plot.getPlotOwner().getUUID().toString().equals(getMenuPlayer().getUniqueId().toString())) { | ||
plot.getWorld().teleportPlayer(getMenuPlayer()); | ||
} else { | ||
getMenuPlayer().sendMessage(Utils.getErrorMessageFormat("You cannot review your own builds!")); | ||
} | ||
} else { | ||
getMenuPlayer().closeInventory(); | ||
new PlotActionsMenu(getMenuPlayer(), plot); | ||
} | ||
} catch (SQLException ex) { | ||
Bukkit.getLogger().log(Level.SEVERE, "A SQL error occurred!", ex); | ||
Bukkit.getLogger().log(Level.SEVERE, ex.getMessage(), ex); | ||
} | ||
}); | ||
index++; | ||
} | ||
} | ||
|
||
@Override | ||
protected void setMenuItemsAsync() { | ||
// Set previous page item | ||
if (hasPreviousPage()) getMenu().getSlot(46).setItem(MenuItems.previousPageItem()); | ||
|
||
// Set next page item | ||
if (hasNextPage()) getMenu().getSlot(52).setItem(MenuItems.nextPageItem()); | ||
} | ||
|
||
@Override | ||
protected void setItemClickEventsAsync() { | ||
// Set click event for previous page item | ||
//getMenu().getSlot(46).setClickHandler((clickPlayer, clickInformation) -> { | ||
// Not implemented yet | ||
//}); | ||
getMenu().getSlot(46).setClickHandler((clickPlayer, clickInformation) -> { | ||
if (hasPreviousPage()) { | ||
previousPage(); | ||
clickPlayer.playSound(clickPlayer.getLocation(), Utils.INVENTORY_CLICK, 1, 1); | ||
} | ||
}); | ||
|
||
// Set click event for close item | ||
getMenu().getSlot(49).setClickHandler((clickPlayer, clickInformation) -> clickPlayer.closeInventory()); | ||
|
||
// Set click event for next page item | ||
//getMenu().getSlot(52).setClickHandler((clickPlayer, clickInformation) -> { | ||
// Not implemented yet | ||
//}); | ||
getMenu().getSlot(52).setClickHandler((clickPlayer, clickInformation) -> { | ||
if (hasNextPage()) { | ||
nextPage(); | ||
clickPlayer.playSound(clickPlayer.getLocation(), Utils.INVENTORY_CLICK, 1, 1); | ||
} | ||
}); | ||
} | ||
|
||
@Override | ||
|
@@ -158,7 +170,7 @@ protected Mask getMask() { | |
.pattern("000000000") | ||
.pattern("000000000") | ||
.pattern("000000000") | ||
.pattern("101101101") | ||
.pattern("111101111") | ||
.build(); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright © 2021, Alps BTE <[email protected]> | ||
* Copyright © 2021-2022, Alps BTE <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -63,6 +63,7 @@ public static ItemStack getPlayerHead(UUID playerUUID) { | |
public static Sound FinishPlotSound = Sound.ENTITY_PLAYER_LEVELUP; | ||
public static Sound AbandonPlotSound = Sound.ENTITY_ENDERDRAGON_FIREBALL_EXPLODE; | ||
public static Sound Done = Sound.ENTITY_EXPERIENCE_ORB_PICKUP; | ||
public static Sound INVENTORY_CLICK = Sound.ENTITY_ITEMFRAME_ADD_ITEM; | ||
|
||
// Spawn Location | ||
public static Location getSpawnLocation() { | ||
|