Skip to content

Commit

Permalink
1.4.0 part 3
Browse files Browse the repository at this point in the history
  • Loading branch information
BenceX100 committed Jan 14, 2025
1 parent d6d4ffc commit 5124d7d
Show file tree
Hide file tree
Showing 9 changed files with 145 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import static com.artillexstudios.axplayerwarps.AxPlayerWarps.LANG;

public class InputConverter {
private static Map<String, String> mapping = Map.of(
private static final Map<String, String> mapping = Map.of(
"rating-sign", "rate",
"search-sign", "search",
"rename-sign", "rename",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
package com.artillexstudios.axplayerwarps.commands.subcommands;

import com.artillexstudios.axapi.utils.Cooldown;
import com.artillexstudios.axplayerwarps.AxPlayerWarps;
import com.artillexstudios.axplayerwarps.enums.Access;
import com.artillexstudios.axplayerwarps.hooks.HookManager;
import com.artillexstudios.axplayerwarps.hooks.currency.CurrencyHook;
import com.artillexstudios.axplayerwarps.user.Users;
import com.artillexstudios.axplayerwarps.user.WarpUser;
import com.artillexstudios.axplayerwarps.utils.FormatUtils;
import com.artillexstudios.axplayerwarps.utils.WarpNameUtils;
import com.artillexstudios.axplayerwarps.warps.Warp;
import com.artillexstudios.axplayerwarps.warps.WarpManager;
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;
import org.jetbrains.annotations.Nullable;

import java.util.Map;
import java.util.Optional;

import static com.artillexstudios.axplayerwarps.AxPlayerWarps.CONFIG;
import static com.artillexstudios.axplayerwarps.AxPlayerWarps.MESSAGEUTILS;

public enum Create {
INSTANCE;

private final Cooldown<Player> cooldown = new Cooldown<>();
public void execute(Player sender, String warpName, @Nullable OfflinePlayer setPlayer) {
WarpUser user = Users.get(sender);
long limit = user.getWarpLimit();
Expand All @@ -27,15 +35,55 @@ public void execute(Player sender, String warpName, @Nullable OfflinePlayer setP
return;
}

AxPlayerWarps.getThreadedQueue().submit(() -> {
if (AxPlayerWarps.getDatabase().warpExists(warpName)) {
MESSAGEUTILS.sendLang(sender, "errors.name-exists");
switch (WarpNameUtils.isAllowed(warpName)) {
case CONTAINS_SPACES -> {
MESSAGEUTILS.sendLang(sender, "errors.disallowed-name-space");
return;
}
case INVALID_LENGTH -> {
MESSAGEUTILS.sendLang(sender, "errors.disallowed-name-length");
return;
}
}

Optional<Warp> warpOpt = WarpManager.getWarps().stream().filter(warp -> warp.getName().equals(warpName)).findAny();
if (warpOpt.isPresent()) {
MESSAGEUTILS.sendLang(sender, "errors.name-exists");
return;
}

double price;
CurrencyHook currencyHook;
if (CONFIG.getBoolean("warp-creation-cost.enabled", false)) {
price = CONFIG.getDouble("warp-creation-cost.price", 1000);
String currStr = CONFIG.getString("warp-creation-cost.currency", "Experience");
currencyHook = HookManager.getCurrencyHook(currStr);
if (currencyHook != null) {
// not enough balance
if (currencyHook.getBalance(sender.getUniqueId()) < price) {
MESSAGEUTILS.sendLang(sender, "errors.create-not-enough-currency",
Map.of("%price%", FormatUtils.formatCurrency(currencyHook, price)));
return;
}
// confirmation
if (CONFIG.getBoolean("warp-creation-cost.confirm", true) && !cooldown.hasCooldown(sender)) {
cooldown.addCooldown(sender, 10_000L);
MESSAGEUTILS.sendLang(sender, "create.confirm",
Map.of("%price%", FormatUtils.formatCurrency(currencyHook, price)));
return;
}
currencyHook.takeBalance(sender.getUniqueId(), price);
}
} else {
currencyHook = null;
price = 0;
}

AxPlayerWarps.getThreadedQueue().submit(() -> {
OfflinePlayer usedPlayer = setPlayer == null ? sender : setPlayer;
int id = AxPlayerWarps.getDatabase().createWarp(usedPlayer, sender.getLocation(), warpName);
Warp warp = new Warp(id, System.currentTimeMillis(), null, warpName, sender.getLocation(), null, usedPlayer.getUniqueId(), usedPlayer.getName(), Access.PUBLIC, null, 0, 0, null);
MESSAGEUTILS.sendLang(sender, "create.created", Map.of("%warp%", warpName));
MESSAGEUTILS.sendLang(sender, "create.created", Map.of("%warp%", warpName, "%price%", FormatUtils.formatCurrency(currencyHook, price)));
WarpManager.getWarps().add(warp);
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import com.artillexstudios.axplayerwarps.input.InputManager;
import com.artillexstudios.axplayerwarps.placeholders.Placeholders;
import com.artillexstudios.axplayerwarps.utils.StarUtils;
import com.artillexstudios.axplayerwarps.utils.WarpNameUtils;
import com.artillexstudios.axplayerwarps.warps.Warp;
import dev.triumphteam.gui.guis.Gui;
import dev.triumphteam.gui.guis.GuiItem;
Expand Down Expand Up @@ -110,6 +111,18 @@ public void open() {
open();
return;
}

switch (WarpNameUtils.isAllowed(result)) {
case CONTAINS_SPACES -> {
MESSAGEUTILS.sendLang(player, "errors.disallowed-name-space");
return;
}
case INVALID_LENGTH -> {
MESSAGEUTILS.sendLang(player, "errors.disallowed-name-length");
return;
}
}

AxPlayerWarps.getThreadedQueue().submit(() -> {
if (!warp.setName(result.replace(" ", "_"))) {
MESSAGEUTILS.sendLang(player, "errors.name-exists");
Expand Down Expand Up @@ -213,7 +226,7 @@ public void open() {
int idx = currency == null ? -1 : currencies.indexOf(currency);
if (event.isLeftClick()) {
if (event.isShiftClick()) {
InputManager.getInput(player, "transfer", result -> {
InputManager.getInput(player, "price", result -> {
if (!NumberUtils.isInt(result)) {
MESSAGEUTILS.sendLang(player, "errors.not-a-number");
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.artillexstudios.axapi.utils.StringUtils;
import com.artillexstudios.axplayerwarps.AxPlayerWarps;
import com.artillexstudios.axplayerwarps.database.impl.Base;
import com.artillexstudios.axplayerwarps.utils.FormatUtils;
import com.artillexstudios.axplayerwarps.utils.StarUtils;
import com.artillexstudios.axplayerwarps.utils.TimeUtils;
import com.artillexstudios.axplayerwarps.warps.Warp;
Expand Down Expand Up @@ -56,11 +57,11 @@ public static String parse(Warp warp, @Nullable OfflinePlayer player, String t)
boolean isFree = warp.getCurrency() == null || warp.getTeleportPrice() == 0;
t = t.replace("%price%", isFree ? LANG.getString("placeholders.free") : warp.getCurrency().getDisplayName().replace("%price%", df.format(price)));

t = t.replace("%price-full%", warp.getCurrency() == null ? df.format(warp.getTeleportPrice()) : warp.getCurrency().getDisplayName().replace("%price%", df.format(warp.getTeleportPrice())));
t = t.replace("%price-full%", FormatUtils.formatCurrency(warp.getCurrency(), warp.getTeleportPrice()));
t = t.replace("%access%", LANG.getString("access." + warp.getAccess().name().toLowerCase()));

double earned = warp.getEarnedMoney();
t = t.replace("%earned_money%", warp.getCurrency() == null ? df.format(earned) : warp.getCurrency().getDisplayName().replace("%price%", df.format(earned)));
t = t.replace("%earned_money%", FormatUtils.formatCurrency(warp.getCurrency(), earned));

float rating = warp.getRating();
t = t.replace("%rating_decimal%", df.format(rating));
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.artillexstudios.axplayerwarps.utils;

import com.artillexstudios.axplayerwarps.hooks.currency.CurrencyHook;
import com.artillexstudios.axplayerwarps.placeholders.Placeholders;

public class FormatUtils {

public static String formatCurrency(CurrencyHook currencyHook, double amount) {
return currencyHook == null ? Placeholders.df.format(amount) : currencyHook.getDisplayName()
.replace("%price%", Placeholders.df.format(amount));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package com.artillexstudios.axplayerwarps.utils;

import static com.artillexstudios.axplayerwarps.AxPlayerWarps.CONFIG;

public class WarpNameUtils {
public enum ValidationResult {
ALLOWED,
CONTAINS_SPACES,
INVALID_LENGTH
}

public static ValidationResult isAllowed(String name) {
if (!CONFIG.getBoolean("warp-naming.allow-spaces", false) && name.contains(" ")) {
return ValidationResult.CONTAINS_SPACES;
}

if (name.length() < CONFIG.getInt("warp-naming.length.min", 1)
|| name.length() > CONFIG.getInt("warp-naming.length.max", 16)
) {
return ValidationResult.INVALID_LENGTH;
}

return ValidationResult.ALLOWED;
}
}
20 changes: 19 additions & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,24 @@ admin-command-aliases:
- "pwarpadmin"
- "pwarpsadmin"

warp-creation-cost:
# should creating warps cost money?
enabled: false
# ask player for a confirmation to make sure
# that they are aware of the price of the warp creation
confirm: true
# price of creation
price: 1000
# currencies are defined in the currencies.yml
currency: Vault

warp-naming:
# allowing spaces might make it hard to tab complete warps
allow-spaces: false
length:
min: 1
max: 16

# which material should we use if the player doesn't define an icon for their warp?
# PLAYER_HEAD will default to the owner's skull (note: sometimes it may not load)
default-material: "PLAYER_HEAD"
Expand Down Expand Up @@ -171,4 +189,4 @@ update-notifier:
debug: false

# do not change this
version: 2
version: 3
26 changes: 13 additions & 13 deletions src/main/resources/input.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rate:
item:
material: PAPER
glow: true
name: "&f<RATING HERE>"
name: "&fRATING HERE"
lore:
- "&#33EEBBValid values: 1-5"
chat:
Expand All @@ -45,9 +45,9 @@ search:
item:
material: PAPER
glow: true
name: "&f<SEARCH>"
name: "&fSEARCH HERE"
lore:
- "&#33EEBB/\ searching for"
- "&#33EEBB searching for"
chat:
- "&#33EEBBWhat do you want to search for? &#DDDDDD(write &#33EEBBcancel &#DDDDDDto stop)"

Expand All @@ -64,9 +64,9 @@ rename:
item:
material: PAPER
glow: true
name: "&f<NEW WARP NAME HERE>"
name: "&fNEW NAME HERE"
lore:
- "&#33EEBB/\ new name"
- "&#33EEBB new name"
chat:
- "&#33EEBBWrite the new warp name in the chat: &#DDDDDD(write &#33EEBBcancel &#DDDDDDto stop)"

Expand All @@ -83,9 +83,9 @@ price:
item:
material: PAPER
glow: true
name: "&f<PRICE HERE>"
name: "&fPRICE HERE"
lore:
- "&#33EEBB/\ price"
- "&#33EEBB price"
chat:
- "&#33EEBBWrite the new price in the chat: &#DDDDDD(write &#33EEBBcancel &#DDDDDDto stop)"

Expand All @@ -102,9 +102,9 @@ add-line:
item:
material: PAPER
glow: true
name: "&f<NEW LINE HERE>"
name: "&fNEW LINE HERE"
lore:
- "&#33EEBB/\ new line"
- "&#33EEBB new line"
chat:
- "&#33EEBBWrite the new line in the chat: &#DDDDDD(write &#33EEBBcancel &#DDDDDDto stop)"

Expand All @@ -121,9 +121,9 @@ add-player:
item:
material: PAPER
glow: true
name: "&f<PLAYER'S NAME HERE>"
name: "&fPLAYER'S NAME HERE"
lore:
- "&#33EEBB/\ name of player"
- "&#33EEBB name of player"
chat:
- "&#33EEBBWrite the name of the player in the chat: &#DDDDDD(write &#33EEBBcancel &#DDDDDDto stop)"

Expand All @@ -140,9 +140,9 @@ transfer:
item:
material: PAPER
glow: true
name: "&f<PLAYER'S NAME HERE>"
name: "&fPLAYER'S NAME HERE"
lore:
- "&#33EEBB/\ name of player"
- "&#33EEBB name of player"
chat:
- "&#33EEBBWrite the name of the player in the chat: &#DDDDDD(write &#33EEBBcancel &#DDDDDDto stop)"

Expand Down
7 changes: 6 additions & 1 deletion src/main/resources/lang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ info:

create:
created: "&#BBFFDDYou have successfully created the &#33EEBB%warp% &#BBFFDDwarp!"
confirm: "&#BBFFDDCreating a warp will cost you &#33EEBB%price%&#BBFFDD! If you still want to create the warp, type this command again!"

whitelist:
clear: "&#BBFFDDYou have removed all players from the whitelist!"
Expand Down Expand Up @@ -109,6 +110,8 @@ admin:
setowner: "&#FF4444You have transferred the &#FF0000%warp% &#FF4444warp to &#FF0000%player%&#FF4444!"

errors:
disallowed-name-space: "&#FF4444The given warp name cannot contain spaces!"
disallowed-name-length: "&#FF4444The length of the given warp name is too short or too long!"
blacklist-self: "&#FF4444You can't blacklist yourself!"
whitelist-self: "&#FF4444You can't whitelist yourself!"
player-not-found: "&#FF4444This player has never played on the server!"
Expand All @@ -118,6 +121,8 @@ errors:
name-exists: "&#FF4444A warp with this name already exists."
max-lines: "&#FF4444You can not add more lines to the warp's description!"
not-enough-balance: "&#FF4444You do not have enough money to teleport to this warp!"
create-not-enough-currency: "&#FF4444You need to have &#FF0000%price% &#FF4444to create a warp!"
cannot-create-here: "&#FF4444You can't create a warp here, because it is in a protected area."
blacklisted: "&#FF4444You can not teleport to the &#FF0000%warp% &#FF4444warp, because you are blacklisted!"
whitelisted: "&#FF4444You can not teleport to the &#FF0000%warp% &#FF4444warp, because it is whitelisted and you are not on the whitelist!"
private: "&#FF4444The &#FF0000%warp% &#FF4444is currently set to private, only the owner can teleport to it!"
Expand Down Expand Up @@ -153,4 +158,4 @@ commands:
update-notifier: "&#88CCFFThere is a new version of AxPlayerWarps available! &#DDDDDD(&#FFFFFFcurrent: &#FF0000%current% &#DDDDDD| &#FFFFFFlatest: &#00FF00%latest%&#DDDDDD)"

# do not change this
version: 1
version: 2

0 comments on commit 5124d7d

Please sign in to comment.