-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅ added option to customize button names, and disable favourites, sea…
…rch and custom category items in main menu Took 40 minutes
- Loading branch information
Showing
10 changed files
with
175 additions
and
23 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
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
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
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
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
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
72 changes: 72 additions & 0 deletions
72
src/main/java/ca/tweetzy/skulls/guis/abstraction/SkullsBaseGUI.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,72 @@ | ||
/* | ||
* Skulls | ||
* Copyright 2023 Kiran Hart | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package ca.tweetzy.skulls.guis.abstraction; | ||
|
||
import ca.tweetzy.flight.comp.enums.CompMaterial; | ||
import ca.tweetzy.flight.gui.Gui; | ||
import ca.tweetzy.flight.gui.template.BaseGUI; | ||
import ca.tweetzy.flight.settings.TranslationManager; | ||
import ca.tweetzy.flight.utils.QuickItem; | ||
import ca.tweetzy.skulls.settings.Translations; | ||
import lombok.NonNull; | ||
import org.bukkit.inventory.ItemStack; | ||
|
||
public abstract class SkullsBaseGUI extends BaseGUI { | ||
public SkullsBaseGUI(Gui parent, @NonNull String title, int rows) { | ||
super(parent, title, rows); | ||
} | ||
|
||
public SkullsBaseGUI(Gui parent, @NonNull String title) { | ||
super(parent, title); | ||
} | ||
|
||
public SkullsBaseGUI(@NonNull String title) { | ||
super(title); | ||
} | ||
|
||
@Override | ||
protected ItemStack getBackButton() { | ||
return QuickItem.of(CompMaterial.DARK_OAK_DOOR).name(TranslationManager.string(Translations.GUI_BTN_BACK_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_BACK_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected ItemStack getExitButton() { | ||
return QuickItem.of(CompMaterial.BARRIER).name(TranslationManager.string(Translations.GUI_BTN_EXIT_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_EXIT_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected ItemStack getPreviousButton() { | ||
return QuickItem.of(CompMaterial.ARROW).name(TranslationManager.string(Translations.GUI_BTN_PREV_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_PREV_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected ItemStack getNextButton() { | ||
return QuickItem.of(CompMaterial.ARROW).name(TranslationManager.string(Translations.GUI_BTN_NEXT_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_NEXT_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected int getPreviousButtonSlot() { | ||
return 49; | ||
} | ||
|
||
@Override | ||
protected int getNextButtonSlot() { | ||
return 50; | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
src/main/java/ca/tweetzy/skulls/guis/abstraction/SkullsPagedGUI.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,71 @@ | ||
/* | ||
* Skulls | ||
* Copyright 2023 Kiran Hart | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package ca.tweetzy.skulls.guis.abstraction; | ||
|
||
import ca.tweetzy.flight.comp.enums.CompMaterial; | ||
import ca.tweetzy.flight.gui.Gui; | ||
import ca.tweetzy.flight.gui.template.PagedGUI; | ||
import ca.tweetzy.flight.settings.TranslationManager; | ||
import ca.tweetzy.flight.utils.QuickItem; | ||
import ca.tweetzy.skulls.settings.Translations; | ||
import lombok.NonNull; | ||
import org.bukkit.inventory.ItemStack; | ||
|
||
import java.util.List; | ||
|
||
public abstract class SkullsPagedGUI<T> extends PagedGUI<T> { | ||
|
||
public SkullsPagedGUI(Gui parent, @NonNull String title, int rows, @NonNull List<T> items) { | ||
super(parent, title, rows, items); | ||
} | ||
|
||
public SkullsPagedGUI(@NonNull String title, int rows, @NonNull List<T> items) { | ||
super(title, rows, items); | ||
} | ||
|
||
@Override | ||
protected ItemStack getBackButton() { | ||
return QuickItem.of(CompMaterial.DARK_OAK_DOOR).name(TranslationManager.string(Translations.GUI_BTN_BACK_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_BACK_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected ItemStack getExitButton() { | ||
return QuickItem.of(CompMaterial.BARRIER).name(TranslationManager.string(Translations.GUI_BTN_EXIT_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_EXIT_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected ItemStack getPreviousButton() { | ||
return QuickItem.of(CompMaterial.ARROW).name(TranslationManager.string(Translations.GUI_BTN_PREV_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_PREV_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected ItemStack getNextButton() { | ||
return QuickItem.of(CompMaterial.ARROW).name(TranslationManager.string(Translations.GUI_BTN_NEXT_NAME)).lore(TranslationManager.list(Translations.GUI_BTN_NEXT_LORE)).make(); | ||
} | ||
|
||
@Override | ||
protected int getPreviousButtonSlot() { | ||
return 49; | ||
} | ||
|
||
@Override | ||
protected int getNextButtonSlot() { | ||
return 50; | ||
} | ||
} |
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
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