Compare commits

...

13 Commits

Author SHA1 Message Date
Tomás F c9c5d78a38 Version bump 2022-06-20 19:15:36 +01:00
Tomás F 9a94cea232 Update Spigot and Java version 2022-06-20 19:07:18 +01:00
Tomás F e7ae6ae440 Refactoring event registration 2022-06-20 18:28:49 +01:00
Tomás F 1e0c51f607 Update bStats to 3.0.0 2022-06-20 18:27:33 +01:00
Tomás F f224810f45 Refractoring code 2022-06-20 18:25:08 +01:00
Tomás F 8d0f7f3498
Merge pull request #9 from s-clerc/patch-1
Add upgrade item sentences for FR
2021-06-22 23:14:05 +01:00
Ai Tanabe 85e8bb3271
Add upgrade item sentences 2021-06-22 23:03:50 +01:00
Tomás F bd982cdbe2
Merge pull request #8 from tomasff/v1.6
Update to V1.6
2021-06-22 19:50:13 +01:00
Tomás F 3882d3e21b Update project version 2021-06-22 19:46:20 +01:00
Tomás F 0fb9f945f4 Extract upgrade to separate method 2021-06-22 19:42:32 +01:00
Tomás F 1abf7570bf
Merge pull request #7 from ErdbeerbaerLP/master
Add german translation
2021-06-22 19:14:14 +01:00
ErdbeerbaerLP f29ba54069 Add german translation 2020-10-15 22:00:27 +02:00
Tomás F 82855f4f86 Update readme badge and typo 2020-10-14 13:35:08 +01:00
13 changed files with 195 additions and 86 deletions

View File

@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: '17'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Create Release

View File

@ -2,14 +2,14 @@
<img src="static/header.png" alt="Bees+"/>
</p>
![](https://github.com/tomasff/BeesPlus/workflows/Build/badge.svg)
![](https://github.com/tomasff/BeesPlus/workflows/Java%20CI/badge.svg)
![Java](https://img.shields.io/badge/Java-8%2B-blue)
![Spigot Downloads](https://img.shields.io/spiget/downloads/77224)
[![CodeFactor](https://www.codefactor.io/repository/github/tomasff/beesplus/badge)](https://www.codefactor.io/repository/github/tomasff/beesplus)
A Spigot (Minecraft server software) plugin that displays useful bee-related information.
## Compatibiliy
## Compatibility
This plugin is only compatible with Minecraft 1.15+ currently.
## Demo

12
pom.xml
View File

@ -6,13 +6,13 @@
<groupId>com.tomff.beesplus</groupId>
<artifactId>BeesPlus</artifactId>
<version>1.5.2</version>
<version>1.6.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<junit.jupiter.version>5.6.2</junit.jupiter.version>
</properties>
@ -31,13 +31,13 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.3-R0.1-SNAPSHOT</version>
<version>1.18.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.7</version>
<version>3.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -65,7 +65,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.3.0</version>
<configuration>
<relocations>
<relocation>

View File

@ -12,10 +12,12 @@ import com.tomff.beesplus.handlers.DamageHandler;
import com.tomff.beesplus.handlers.RightClickHandler;
import com.tomff.beesplus.items.*;
import com.tomff.beesplus.localization.Localization;
import com.tomff.beesplus.localization.LocalizationWrapper;
import com.tomff.beesplus.localization.LocalizationLoader;
import org.bstats.bukkit.Metrics;
import org.bstats.charts.SimplePie;
import org.bukkit.configuration.InvalidConfigurationException;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;
import java.io.IOException;
@ -23,6 +25,11 @@ import java.util.Locale;
public class BeesPlus extends JavaPlugin {
private static final int RESOURCE_ID = 77224;
private static final int PLUGIN_ID = 7065;
private static final String LANGUAGE_CHART_ID = "language_used";
private GuiViewTracker guiViewTracker;
private CustomItemManager customItemManager;
@ -34,9 +41,11 @@ public class BeesPlus extends JavaPlugin {
guiViewTracker = new GuiViewTracker();
customItemManager = new CustomItemManager(this);
getServer().getPluginManager().registerEvents(new GuiHandler(this), this);
getServer().getPluginManager().registerEvents(new BeehiveHandler(), this);
getServer().getPluginManager().registerEvents(new RightClickHandler(this), this);
PluginManager pluginManager = getServer().getPluginManager();
pluginManager.registerEvents(new GuiHandler(this), this);
pluginManager.registerEvents(new BeehiveHandler(), this);
pluginManager.registerEvents(new RightClickHandler(this), this);
if (!loadLocale()) {
getServer().getPluginManager().disablePlugin(this);
@ -45,8 +54,11 @@ public class BeesPlus extends JavaPlugin {
registerItems();
setupMetrics();
setupUpdateChecker();
}
new UpdateChecker(this, 77224).getVersion(version -> {
private void setupUpdateChecker() {
new UpdateChecker(this, RESOURCE_ID).getVersion(version -> {
if (!this.getDescription().getVersion().equalsIgnoreCase(version)) {
getLogger().info("A new update is available: BeesPlus " + version);
}
@ -54,9 +66,9 @@ public class BeesPlus extends JavaPlugin {
}
private void setupMetrics() {
Metrics metrics = new Metrics(this, 7065);
Metrics metrics = new Metrics(this, PLUGIN_ID);
metrics.addCustomChart(new Metrics.SimplePie("language_used",
metrics.addCustomChart(new SimplePie(LANGUAGE_CHART_ID,
() -> getConfig().getString("locale", Locale.ENGLISH.toLanguageTag())));
}
@ -67,10 +79,10 @@ public class BeesPlus extends JavaPlugin {
private boolean loadLocale() {
String locale = getConfig().getString("locale", Locale.ENGLISH.toLanguageTag());
LocalizationWrapper localizationWrapper = new LocalizationWrapper(this, "locale");
LocalizationLoader localizationLoader = new LocalizationLoader(this, "locale");
try {
YamlConfiguration localeYamlFile = localizationWrapper.getLocale(locale);
YamlConfiguration localeYamlFile = localizationLoader.load(locale);
Localization.load(localeYamlFile);
} catch (IOException e) {
getLogger().severe("Invalid locale! Please choose a valid locale.");
@ -133,7 +145,7 @@ public class BeesPlus extends JavaPlugin {
boolean isProtectionSuitEnabled = getConfig().getBoolean("beeprotectionsuit.enabled", true);
if(isProtectionSuitEnabled) {
if (isProtectionSuitEnabled) {
customItemManager.registerCustomItem("protection_boots", new BeeProtectionBoots());
customItemManager.registerCustomItem("protection_leggings", new BeeProtectionLeggings());
customItemManager.registerCustomItem("protection_chestplate", new BeeProtectionChestplate());

View File

@ -21,7 +21,8 @@ public class UpdateChecker {
public void getVersion(final Consumer<String> consumer) {
Bukkit.getScheduler().runTaskAsynchronously(beesPlus, () -> {
try (InputStream inputStream = new URL("https://api.spigotmc.org/legacy/update.php?resource=" + this.resourceId).openStream(); Scanner scanner = new Scanner(inputStream)) {
try (InputStream inputStream = new URL("https://api.spigotmc.org/legacy/update.php?resource=" + this.resourceId).openStream();
Scanner scanner = new Scanner(inputStream)) {
if (scanner.hasNext()) {
consumer.accept(scanner.next());
}

View File

@ -27,6 +27,7 @@ public class CustomItemManager {
NamespacedKey namespacedKey = new NamespacedKey(beesPlus, id);
ShapedRecipe recipe = new ShapedRecipe(namespacedKey, customItem.getResult());
recipe.shape(customItem.getRecipe());
customItem.getIngredients().forEach(recipe::setIngredient);

View File

@ -6,6 +6,7 @@ import com.tomff.beesplus.core.items.ItemBuilder;
import com.tomff.beesplus.localization.Localization;
import org.bukkit.*;
import org.bukkit.entity.Bee;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
public class BeeInfo extends Gui {
@ -26,6 +27,44 @@ public class BeeInfo extends Gui {
return Localization.get(Localization.BEE_INFO_GUI_TITLE);
}
public void rideBee(Player player) {
double distance = player.getLocation().distance(bee.getLocation());
if (!player.hasPermission("beesplus.bee.ride")) {
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_NO_PERMISSION);
return;
}
if (bee.getAnger() > 0) {
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_ANGRY);
return;
}
if (distance <= 6) {
if (bee.getPassengers().size() >= 1) {
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_ALREADY);
return;
}
player.closeInventory();
bee.addPassenger(player);
String title = Localization.get(Localization.RIDE_BEE_TITLE, player.getName());
String subtitle = Localization.get(Localization.RIDE_BEE_SUBTITLE, player.getName());
player.playSound(player.getLocation(), Sound.ENTITY_ENDER_DRAGON_FLAP, 10, 1);
player.sendTitle(title, subtitle, 10, 25, 10);
} else {
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_TOO_FAR);
}
}
@Override
public void buildIcons() {
ItemStack age = new ItemBuilder(Material.OAK_SIGN)
@ -64,44 +103,7 @@ public class BeeInfo extends Gui {
.setName(Localization.get(Localization.BEE_INFO_GUI_RIDE))
.build();
Icon mountIcon = new Icon(mount, (player) -> {
double distance = player.getLocation().distance(bee.getLocation());
if (!player.hasPermission("beesplus.bee.ride")) {
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_NO_PERMISSION);
return;
}
if (bee.getAnger() > 0) {
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_ANGRY);
return;
}
if (distance <= 6) {
if (bee.getPassengers().size() >= 1) {
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_ALREADY);
return;
}
player.closeInventory();
bee.addPassenger(player);
String title = Localization.get(Localization.RIDE_BEE_TITLE, player.getName());
String subtitle = Localization.get(Localization.RIDE_BEE_SUBTITLE, player.getName());
player.playSound(player.getLocation(), Sound.ENTITY_ENDER_DRAGON_FLAP, 10, 1);
player.sendTitle(title, subtitle, 10, 25, 10);
} else {
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
Localization.sendMessage(player, Localization.BEE_INFO_GUI_RIDE_TOO_FAR);
}
});
Icon mountIcon = new Icon(mount, this::rideBee);
setIcon(mountIcon, 15);
ItemStack stung = new ItemBuilder(Material.IRON_SWORD)

View File

@ -103,24 +103,28 @@ public class BeeHiveUpgrade implements CustomItem, Listener {
return;
}
if (beehive.getMaxEntities() >= maxPopulation) {
Localization.sendMessage(player, Localization.BEEHIVE_UPGRADE_MAX);
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
return;
}
beehive.setMaxEntities(beehive.getMaxEntities() + 3);
beehive.update();
Localization.sendMessage(player, Localization.BEEHIVE_UPGRADE_SUCCESS, beehive.getMaxEntities());
player.playSound(player.getLocation(), Sound.ENTITY_ARROW_HIT_PLAYER, 2, 2);
ItemStack upgradeAmountRemove = handItem.clone();
upgradeAmountRemove.setAmount(1);
player.getInventory().removeItem(upgradeAmountRemove);
upgradeBeehive(player, beehive, handItem);
}
}
}
public void upgradeBeehive(Player player, Beehive beehive, ItemStack handItem) {
if (beehive.getMaxEntities() >= maxPopulation) {
Localization.sendMessage(player, Localization.BEEHIVE_UPGRADE_MAX);
player.playSound(player.getLocation(), Sound.BLOCK_NOTE_BLOCK_PLING, 2, 2);
return;
}
beehive.setMaxEntities(beehive.getMaxEntities() + 3);
beehive.update();
Localization.sendMessage(player, Localization.BEEHIVE_UPGRADE_SUCCESS, beehive.getMaxEntities());
player.playSound(player.getLocation(), Sound.ENTITY_ARROW_HIT_PLAYER, 2, 2);
ItemStack upgradeAmountRemove = handItem.clone();
upgradeAmountRemove.setAmount(1);
player.getInventory().removeItem(upgradeAmountRemove);
}
}

View File

@ -8,17 +8,17 @@ import java.io.File;
import java.io.IOException;
import java.nio.file.Paths;
public class LocalizationWrapper {
public class LocalizationLoader {
private final BeesPlus beesPlus;
private final String basePath;
public LocalizationWrapper(BeesPlus beesPlus, String path) {
public LocalizationLoader(BeesPlus beesPlus, String path) {
this.beesPlus = beesPlus;
this.basePath = path;
}
public YamlConfiguration getLocale(String locale) throws IOException, InvalidConfigurationException {
public YamlConfiguration load(String locale) throws IOException, InvalidConfigurationException {
String path = Paths.get(basePath, locale + ".yml").toString();
File localeFile = new File(beesPlus.getDataFolder(), path);

View File

@ -1,6 +1,6 @@
# Language Settings
#
# Available locale: en, fr, pt, zh_cn, hu
# Available locale: en, fr, pt, zh_cn, hu, de
#
# If you want to create your own, the file name must match the locale name.
# Example:

View File

@ -0,0 +1,90 @@
####################
# Yes or no
####################
text_yes: "&aJa"
text_no: "&cNein"
###################
# Beehive GUI
###################
beehive_info_gui_title: "&8Bienenstockinformationen"
beehive_info_gui_honey_capacity: "&fHonig-Lager"
beehive_info_gui_honey_capacity_desc: "&aKapazität: &7%current%/%maximum%"
beehive_info_gui_bee_capacity: "&fBienenwohnraum"
beehive_info_gui_bee_capacity_desc: "&aKapazität: &7%current%/%maximum% Bienen"
beehive_info_gui_sedated: "&aSediert"
beehive_info_gui_not_sedated: "&cNicht sediert"
beehive_info_gui_flower: "&fBlume"
# Use || to a create a new line
beehive_info_gui_no_target_flower_desc: "&aDieser Bienenstock hat||&anoch keine Zielblume!"
honey_low: "Wenig"
honey_medium: "Mittel"
honey_high: "Viel"
honey_very_high: "Sehr Viel"
###################
# Bee GUI
###################
bee_info_gui_title: "&8Bienen-Info"
bee_info_gui_age: "&fAlter"
bee_info_gui_age_adult: "&aErwachsen"
bee_info_gui_age_baby: "&aBaby"
bee_info_gui_anger: "&fWut"
# Use %level% as a placeholder for the bee's anger level
bee_info_gui_anger_level_desc: "&aWut-level: &7%level%"
bee_info_gui_hive_location: "&fBienenstock-Ort"
# Use || to a create a new line
bee_info_gui_no_hive_desc: "&aDiese Biene hat||&anoch keinen Stock!"
bee_info_gui_ride: "&fReiten"
bee_info_gui_ride_no_permission: "&cDu hast nicht die Erlaubnis auf Bienen zu reiten!"
bee_info_gui_ride_angry: "&cDu kannst keine wütenden Bienen reiten!"
bee_info_gui_ride_already: "&cDiese Biene ist bereits besetzt!"
bee_info_gui_ride_too_far: "&cDu bist zu weit von der Biene entfernt!"
bee_info_gui_has_stung: "&fHat gestochen?"
bee_info_gui_has_nectar: "&fHat Nektar?"
bee_info_gui_health: "&fGesundheit"
# Use %health% to represent the bee's health
bee_info_gui_health_desc: "&a&7%health% ❤"
###################
# Riding a bee title
# Use %name% as a placeholder for the player's name
###################
ride_bee_title: "&6Du reitest nun"
ride_bee_subtitle: "&6eine Biene, &8%name%&6!"
###################
# Protection suit name
###################
bee_protection_helmet: "&6Bienenschutzhelm"
bee_protection_chestplate: "&6Bienenschutzhemd"
bee_protection_leggings: "&6Bienenschutzhose"
bee_protection_boots: "&6Bienenschutzschuhe"
###################
# Beehive upgrade item
###################
beehive_upgrade_item_name: "&6Bienenstock Upgrade"
# Use || to a create a new line
beehive_upgrade_item_lore: "&7Bienenwohnraum: &a+3||&8(Zum verwenden rechtsklicken)"
beehive_upgrade_success: "&aBienenstock verbessert! Neuer Wohnraum: &7%beesno%&a Bienen"
beehive_upgrade_max: "&cFehler: Dieser Bienenstock hat bereits den maximalen Wohnraum erreicht!"

View File

@ -87,10 +87,10 @@ bee_protection_boots: "&6Bottes de protection des abeilles"
###################
# Beehive upgrade item
###################
beehive_upgrade_item_name: "&6Beehive Upgrade"
beehive_upgrade_item_name: "&6Amélioration de la ruche"
# Use || to a create a new line
beehive_upgrade_item_lore: "&7Bee capacity: &a+3||&8(Right click to use)"
beehive_upgrade_item_lore: "&7Capacité d'abeilles: &a+3||&8(Cliquez à droite pour l'utiliser)"
beehive_upgrade_success: "&aBeehive upgraded! New population: &7%beesno%&a bees"
beehive_upgrade_max: "&cError: This beehive has reached the maximum population allowed!"
beehive_upgrade_success: "&aLa ruche a été améliorée ! Nouvelle population de: &7%beesno%&a abeilles"
beehive_upgrade_max: "&cErreur : Cette ruche a atteint sa capacité maximale !"

View File

@ -2,7 +2,7 @@ name: BeesPlus
author: Attlantiz
version: ${project.version}
main: com.tomff.beesplus.BeesPlus
api-version: 1.15
api-version: 1.18
permissions:
beesplus.bee.view:
default: op
@ -14,4 +14,3 @@ permissions:
default: op
beesplus.beehive.upgrade:
default: op