Skip to content

Commit

Permalink
Merge pull request EtienneDx#20 from DmitryRendov/loc
Browse files Browse the repository at this point in the history
Introduce messages.yml for further localization
  • Loading branch information
EtienneDx authored May 15, 2020
2 parents a97b667 + 6c967ca commit bb92624
Show file tree
Hide file tree
Showing 6 changed files with 140 additions and 20 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.classpath
.project
.idea
.settings/*
bin/*
target/*
build.bat
/bin/
/target/
build.bat
/bin/
/target/
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>co.aikar.commands</pattern>
Expand Down Expand Up @@ -64,7 +64,7 @@
</repository>
<repository>
<id>bungeecord-repo</id>
<url>https://()oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>jitpack.io</id>
Expand Down
84 changes: 84 additions & 0 deletions src/me/EtienneDx/RealEstate/Messages.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
package me.EtienneDx.RealEstate;

import me.EtienneDx.AnnotationConfig.AnnotationConfig;
import me.EtienneDx.AnnotationConfig.ConfigField;
import me.EtienneDx.AnnotationConfig.ConfigFile;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
import org.bukkit.plugin.PluginDescriptionFile;

import java.util.Arrays;
import java.util.List;

@ConfigFile(header = "Use a YAML editor like NotepadPlusPlus to edit this file. \nAfter editing, back up your changes before reloading the server in case you made a syntax error. \nUse dollar signs ($) for formatting codes, which are documented here: http://minecraft.gamepedia.com/Formatting_codes")
public class Messages extends AnnotationConfig
{
public PluginDescriptionFile pdf;

@ConfigField(name="RealEstate.NoTransactionFound")
public String msgNoTransactionFound = "$cNo transaction found at your location!";

@ConfigField(name="RealEstate.PageMustBePositive")
public String msgPageMustBePositive = "$cPage must be a positive option";

@ConfigField(name="RealEstate.PageNotExists")
public String msgPageNotExists = "$cThis page does not exist!";

@ConfigField(name="RealEstate.RenewRentNow", comment = "0: enabled/disabled; 1: type of claim")
public String msgRenewRentNow = "$bAutomatic renew is now $a{0} $bfor this {1}";

@ConfigField(name="RealEstate.RenewRentCurrently", comment = "0: enabled/disabled; 1: type of claim")
public String msgRenewRentCurrently = "$bAutomatic renew is currently $a{0} $bfor this {1}";

public Messages()
{
this.pdf = RealEstate.instance.getDescription();
}

@Override
public void loadConfig()
{
this.loadConfig(RealEstate.messagesFilePath);
}

synchronized public String getMessage(String msgTemplate, String... args) {
for (int i = 0; i < args.length; i++) {
String param = args[i];
msgTemplate = msgTemplate.replace("{" + i + "}", param);
}

return msgTemplate.replace('$', (char) 0x00A7);
}
//sends a color-coded message to a player
public static void sendMessage(Player player, String msgTemplate, String... args) {
sendMessage(player, msgTemplate, 0, args);
}

//sends a color-coded message to a player
public static void sendMessage(Player player, String msgTemplate, long delayInTicks, String... args) {
String message = RealEstate.instance.messages.getMessage(msgTemplate, args);
sendMessage(player, message, delayInTicks);
}

//sends a color-coded message to a player
public static void sendMessage(Player player, String message) {
if (message == null || message.length() == 0) return;

if (player == null) {
RealEstate.instance.log.info(message);
} else {
player.sendMessage(RealEstate.instance.config.chatPrefix + message.replace('$', (char) 0x00A7));
}
}

public static void sendMessage(Player player, String message, long delayInTicks) {
SendPlayerMessageTask task = new SendPlayerMessageTask(player, message);

if (delayInTicks > 0) {
RealEstate.instance.getServer().getScheduler().runTaskLater(RealEstate.instance, task, delayInTicks);
} else {
task.run();
}
}

}
31 changes: 16 additions & 15 deletions src/me/EtienneDx/RealEstate/RECommand.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package me.EtienneDx.RealEstate;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.UUID;

import org.bukkit.Bukkit;
Expand Down Expand Up @@ -50,19 +48,24 @@ public static void info(Player player)
}
else
{
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "No transaction found at your location!");
Messages.sendMessage(player, RealEstate.instance.messages.msgNoTransactionFound);
}

}

@Subcommand("list")
@Description("Displays the list of all real estate offers currently existing")
@CommandCompletion("all|sell|rent|lease")
@Syntax("[all|sell|rent|lease] <page>")
public static void list(CommandSender player, @Optional String type, @Default("1") int page)
public static void list(CommandSender sender, @Optional String type, @Default("1") int page)
{
Player player = null;
if (sender instanceof Player) {
player = (Player) sender;
}
if(page <= 0)
{
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "Page must be a positive option!");
Messages.sendMessage(player, RealEstate.instance.messages.msgPageMustBePositive);
return;
}
int count = 0;
Expand Down Expand Up @@ -91,12 +94,12 @@ else if(type.equalsIgnoreCase("lease"))
}
else
{
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "Invalid option provided!");
sender.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "Invalid option provided!");
return;
}
if(count == 0)
{
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "No transaction have been found!");
sender.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "No transaction have been found!");
}
else
{
Expand All @@ -123,22 +126,22 @@ else if(type.equalsIgnoreCase("lease"))
int max = Math.min(start + RealEstate.instance.config.cfgPageSize, count);
if(start <= max)
{
player.sendMessage(ChatColor.DARK_BLUE + "----= " + ChatColor.WHITE + "[ " + ChatColor.GOLD + typeMsg + " page " + ChatColor.DARK_GREEN + " " +
sender.sendMessage(ChatColor.DARK_BLUE + "----= " + ChatColor.WHITE + "[ " + ChatColor.GOLD + typeMsg + " page " + ChatColor.DARK_GREEN + " " +
page + ChatColor.GOLD + " / " + ChatColor.DARK_GREEN + (int)Math.ceil(count / (double)RealEstate.instance.config.cfgPageSize) +
ChatColor.WHITE + " ]" + ChatColor.DARK_BLUE + " =----");
for(int i = start; i < max; i++)
{
RealEstate.instance.log.info("transaction " + i);
transactions.get(i).msgInfo(player);
transactions.get(i).msgInfo(sender);
}
if(page < (int)Math.ceil(count / (double)RealEstate.instance.config.cfgPageSize))
{
player.sendMessage(ChatColor.GOLD + "To see the next page, type " + ChatColor.GREEN + "/re list " + (type != null ? type : "all") + " " + (page + 1));
sender.sendMessage(ChatColor.GOLD + "To see the next page, type " + ChatColor.GREEN + "/re list " + (type != null ? type : "all") + " " + (page + 1));
}
}
else
{
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.RED + "This page does not exist!");
Messages.sendMessage(player, RealEstate.instance.messages.msgPageNotExists);
}
}
}
Expand All @@ -161,8 +164,7 @@ public static void renewRent(Player player, @Optional String newStatus)
}
if(newStatus == null)
{
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.AQUA + "Automatic renew is currently " +
ChatColor.GREEN + (cr.autoRenew ? "enabled" : "disabled") + ChatColor.AQUA + " for this " + claimType + "!");
Messages.sendMessage(player, RealEstate.instance.messages.msgRenewRentCurrently, cr.autoRenew ? "enabled" : "disabled", claimType);
}
else if(!newStatus.equalsIgnoreCase("enable") && !newStatus.equalsIgnoreCase("disable"))
{
Expand All @@ -172,8 +174,7 @@ else if(cr.buyer.equals(player.getUniqueId()))
{
cr.autoRenew = newStatus.equalsIgnoreCase("enable");
RealEstate.transactionsStore.saveData();
player.sendMessage(RealEstate.instance.config.chatPrefix + ChatColor.AQUA + "Automatic renew is now " +
ChatColor.GREEN + (cr.autoRenew ? "enabled" : "disabled") + ChatColor.AQUA + " for this " + claimType + "!");
Messages.sendMessage(player, RealEstate.instance.messages.msgRenewRentNow, cr.autoRenew ? "enabled" : "disabled", claimType);
}
else
{
Expand Down
7 changes: 7 additions & 0 deletions src/me/EtienneDx/RealEstate/RealEstate.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ public class RealEstate extends JavaPlugin
{
public Logger log;
public Config config;
public Messages messages;
BukkitCommandManager manager;
public final static String pluginDirPath = "plugins" + File.separator + "RealEstate" + File.separator;
final static String messagesFilePath = RealEstate.pluginDirPath + "messages.yml";
public static boolean vaultPresent = false;
public static Economy econ = null;
public static Permission perms = null;
Expand Down Expand Up @@ -81,6 +83,11 @@ public void onEnable()
this.config.loadConfig();// loads config or default
this.config.saveConfig();// save eventual default

this.messages = new Messages();
this.messages.loadConfig(this.messagesFilePath);// loads customizable messages or defaults
this.messages.saveConfig(this.messagesFilePath);// save eventual default
this.log.info("Customizable messages loaded.");

ConfigurationSerialization.registerClass(ClaimSell.class);
ConfigurationSerialization.registerClass(ClaimRent.class);
ConfigurationSerialization.registerClass(ClaimLease.class);
Expand Down
27 changes: 27 additions & 0 deletions src/me/EtienneDx/RealEstate/SendPlayerMessageTask.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package me.EtienneDx.RealEstate;

import org.bukkit.entity.Player;

class SendPlayerMessageTask implements Runnable
{
private Player player;
private String message;


public SendPlayerMessageTask(Player player, String message)
{
this.player = player;
this.message = message;
}

@Override
public void run()
{
if(player == null)
{
RealEstate.instance.log.info(message);
return;
}
Messages.sendMessage(this.player, this.message);
}
}

0 comments on commit bb92624

Please sign in to comment.