Skip to content

Commit 48fc7c3

Browse files
committedApr 24, 2019
update to 1.14-pre5
1 parent d7abd80 commit 48fc7c3

11 files changed

+71
-47
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ deploy:
1010
provider: releases
1111
api_key: $GITHUB_KEY
1212
file:
13-
- build/libs/LockettePro-2.9.${TRAVIS_BUILD_NUMBER}-1.13.2.jar
13+
- build/libs/LockettePro-2.9.${TRAVIS_BUILD_NUMBER}-1.14-pre5.jar
1414
on:
1515
tags: false
1616
skip_cleanup: true

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'java'
33
sourceCompatibility = 1.8
44
targetCompatibility = 1.8
55

6-
version = "2.9.%s-1.13.2"
6+
version = "2.9.%s-1.14-pre5"
77

88
if (System.getenv("TRAVIS_BUILD_NUMBER") != null) {
99
project.version = String.format(project.version, System.getenv("TRAVIS_BUILD_NUMBER"))
@@ -41,7 +41,7 @@ repositories {
4141
}
4242

4343
dependencies {
44-
compile 'org.bukkit:bukkit:1.13.2-R0.1-SNAPSHOT'
44+
compile 'org.bukkit:bukkit:1.14-pre5-SNAPSHOT'
4545
compile('net.milkbowl.vault:VaultAPI:1.7') {
4646
transitive = false
4747
}

‎src/main/java/me/crafter/mc/lockettepro/BlockDebugListener.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package me.crafter.mc.lockettepro;
22

33
import org.bukkit.ChatColor;
4-
import org.bukkit.Material;
4+
import org.bukkit.Tag;
55
import org.bukkit.block.Block;
66
import org.bukkit.block.Sign;
77
import org.bukkit.entity.Player;
@@ -36,7 +36,7 @@ public void onDebugClick(PlayerInteractEvent event){
3636

3737
p.sendMessage("Block: " + b.getType().toString() + " " + b.getData());
3838

39-
if (b.getType() == Material.WALL_SIGN){
39+
if (Tag.WALL_SIGNS.isTagged(b.getType())){
4040
for (String line : ((Sign)b.getState()).getLines()){
4141
p.sendMessage(ChatColor.GREEN + line);
4242
}

‎src/main/java/me/crafter/mc/lockettepro/BlockPlayerListener.java

+10-9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import org.bukkit.Bukkit;
44
import org.bukkit.GameMode;
55
import org.bukkit.Material;
6+
import org.bukkit.Tag;
67
import org.bukkit.block.Block;
78
import org.bukkit.block.BlockFace;
89
import org.bukkit.entity.Player;
@@ -35,7 +36,7 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
3536
Action action = event.getAction();
3637
Player player = event.getPlayer();
3738
// Check action correctness
38-
if (action == Action.RIGHT_CLICK_BLOCK && player.getInventory().getItemInMainHand().getType() == Material.SIGN){
39+
if (action == Action.RIGHT_CLICK_BLOCK && Tag.SIGNS.isTagged(player.getInventory().getItemInMainHand().getType())) {
3940
if (player.getGameMode().equals(GameMode.SPECTATOR)) {
4041
return;
4142
}
@@ -67,15 +68,15 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
6768
// Send message
6869
Utils.sendMessages(player, Config.getLang("locked-quick"));
6970
// Put sign on
70-
Block newsign = Utils.putSignOn(block, blockface, Config.getDefaultPrivateString(), player.getName());
71+
Block newsign = Utils.putSignOn(block, blockface, Config.getDefaultPrivateString(), player.getName(), player.getInventory().getItemInMainHand().getType());
7172
Utils.resetCache(block);
7273
// Cleanups - UUID
7374
if (Config.isUuidEnabled()){
7475
Utils.updateLineByPlayer(newsign, 1, player);
7576
}
7677
// Cleanups - Expiracy
77-
if (Config.isLockExpire()){
78-
if (player.hasPermission("lockettepro.noexpire")){
78+
if (Config.isLockExpire()) {
79+
if (player.hasPermission("lockettepro.noexpire")) {
7980
Utils.updateLineWithTime(newsign, true); // set created to -1 (no expire)
8081
} else {
8182
Utils.updateLineWithTime(newsign, false); // set created to now
@@ -86,12 +87,12 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
8687
// Not locked, (is locked door nearby), is owner of locked door nearby
8788
Utils.removeASign(player);
8889
Utils.sendMessages(player, Config.getLang("additional-sign-added-quick"));
89-
Utils.putSignOn(block, blockface, Config.getDefaultAdditionalString(), "");
90+
Utils.putSignOn(block, blockface, Config.getDefaultAdditionalString(), "", player.getInventory().getItemInMainHand().getType());
9091
Dependency.logPlacement(player, block.getRelative(blockface));
91-
} else if (LocketteProAPI.isOwner(block, player)){
92+
} else if (LocketteProAPI.isOwner(block, player)) {
9293
// Locked, (not locked door nearby), is owner of locked block
9394
Utils.removeASign(player);
94-
Utils.putSignOn(block, blockface, Config.getDefaultAdditionalString(), "");
95+
Utils.putSignOn(block, blockface, Config.getDefaultAdditionalString(), "", player.getInventory().getItemInMainHand().getType());
9596
Utils.sendMessages(player, Config.getLang("additional-sign-added-quick"));
9697
Dependency.logPlacement(player, block.getRelative(blockface));
9798
} else {
@@ -106,7 +107,7 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
106107
// Manual protection
107108
@EventHandler(priority = EventPriority.NORMAL)
108109
public void onManualLock(SignChangeEvent event){
109-
if (event.getBlock().getType() != Material.WALL_SIGN) return;
110+
if (!Tag.WALL_SIGNS.isTagged(event.getBlock().getType())) return;
110111
String topline = event.getLine(0);
111112
Player player = event.getPlayer();
112113
/* Issue #46 - Old version of Minecraft trim signs in unexpected way.
@@ -177,7 +178,7 @@ public void onManualLock(SignChangeEvent event){
177178
// Player select sign
178179
@EventHandler(priority = EventPriority.LOW)
179180
public void playerSelectSign(PlayerInteractEvent event){
180-
if (event.getAction() == Action.RIGHT_CLICK_BLOCK && event.getClickedBlock().getType() == Material.WALL_SIGN){
181+
if (event.getAction() == Action.RIGHT_CLICK_BLOCK && event.hasBlock() && Tag.WALL_SIGNS.isTagged(event.getClickedBlock().getType())) {
181182
Block block = event.getClickedBlock();
182183
Player player = event.getPlayer();
183184
if (!player.hasPermission("lockettepro.edit")) return;

‎src/main/java/me/crafter/mc/lockettepro/Config.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import org.bukkit.ChatColor;
44
import org.bukkit.Material;
5+
import org.bukkit.Tag;
56
import org.bukkit.configuration.file.FileConfiguration;
67
import org.bukkit.configuration.file.YamlConfiguration;
78
import org.bukkit.plugin.Plugin;
@@ -144,7 +145,8 @@ public static void reload(){
144145
}
145146
}
146147
}
147-
lockables.remove(Material.WALL_SIGN);
148+
lockables.removeAll(Tag.SIGNS.getValues());
149+
lockables.remove(Material.SCAFFOLDING);
148150
}
149151

150152
public static void initDefaultConfig(){

‎src/main/java/me/crafter/mc/lockettepro/DependencyProtocolLib.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class DependencyProtocolLib {
1919

2020
public static void setUpProtocolLib(Plugin plugin){
2121
switch (LockettePro.getBukkitVersion()){
22-
case v1_13_R2:
22+
case v1_14_R1:
2323
addTileEntityDataListener(plugin);
2424
addMapChunkListener(plugin);
2525
break;

‎src/main/java/me/crafter/mc/lockettepro/LockettePro.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import org.bukkit.Bukkit;
44
import org.bukkit.ChatColor;
55
import org.bukkit.Material;
6-
import org.bukkit.Tag;
76
import org.bukkit.block.Block;
87
import org.bukkit.command.Command;
98
import org.bukkit.command.CommandSender;
@@ -31,8 +30,7 @@ public void onEnable(){
3130
getLogger().warning("===================================");
3231
getLogger().warning("Unsupported server version: " + Bukkit.getBukkitVersion());
3332
try {
34-
Tag.ANVIL.getValues();
35-
Material.TRIDENT.isItem();
33+
Material.BARREL.isItem();
3634
} catch (Exception e) {
3735
setEnabled(false);
3836
getLogger().warning("This plugin is not compatible with your server version!");

‎src/main/java/me/crafter/mc/lockettepro/LocketteProAPI.java

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package me.crafter.mc.lockettepro;
22

3-
import org.bukkit.Effect;
4-
import org.bukkit.Material;
5-
import org.bukkit.Tag;
3+
import org.bukkit.*;
64
import org.bukkit.block.Block;
75
import org.bukkit.block.BlockFace;
86
import org.bukkit.block.Container;
@@ -210,12 +208,8 @@ public static boolean isOwnerOfSign(Block block, Player player){ // Requires isS
210208
public static boolean isLockable(Block block){
211209
Material material = block.getType();
212210
//Bad blocks
213-
switch (material){
214-
case SIGN:
215-
case WALL_SIGN:
211+
if(Tag.SIGNS.isTagged(material)){
216212
return false;
217-
default:
218-
break;
219213
}
220214
if (Config.isLockable(material)){ // Directly lockable
221215
return true;
@@ -313,8 +307,12 @@ public static boolean mayInterfere(Block block, Player player){
313307
// End temp workaround bad code for checking up and down signs
314308
case CHEST:
315309
case TRAPPED_CHEST:
316-
case WALL_SIGN:
317-
case SIGN:
310+
case OAK_WALL_SIGN:
311+
case SPRUCE_SIGN:
312+
case BIRCH_SIGN:
313+
case JUNGLE_SIGN:
314+
case ACACIA_SIGN:
315+
case DARK_OAK_SIGN:
318316
for (BlockFace blockface : allfaces){
319317
Block newblock = block.getRelative(blockface);
320318
switch (newblock.getType()){
@@ -356,7 +354,7 @@ public static boolean mayInterfere(Block block, Player player){
356354
}
357355

358356
public static boolean isSign(Block block){
359-
return block.getType() == Material.WALL_SIGN;
357+
return Tag.WALL_SIGNS.isTagged(block.getType());
360358
}
361359

362360
public static boolean isLockSign(Block block){

‎src/main/java/me/crafter/mc/lockettepro/Utils.java

+37-14
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
package me.crafter.mc.lockettepro;
22

33
import com.comphenix.protocol.wrappers.WrappedChatComponent;
4+
import com.google.common.cache.CacheBuilder;
5+
import com.google.common.cache.CacheLoader;
6+
import com.google.common.cache.LoadingCache;
47
import com.google.gson.JsonObject;
58
import com.google.gson.JsonParser;
69
import org.bukkit.Bukkit;
710
import org.bukkit.GameMode;
811
import org.bukkit.Material;
12+
import org.bukkit.Tag;
913
import org.bukkit.block.Block;
1014
import org.bukkit.block.BlockFace;
1115
import org.bukkit.block.Sign;
@@ -21,19 +25,33 @@
2125
import java.io.InputStreamReader;
2226
import java.net.URL;
2327
import java.net.URLConnection;
24-
import java.util.*;
28+
import java.util.HashSet;
29+
import java.util.List;
30+
import java.util.Set;
31+
import java.util.UUID;
32+
import java.util.concurrent.TimeUnit;
2533

2634
public class Utils {
27-
35+
2836
public static final String usernamepattern = "^[a-zA-Z0-9_]*$";
29-
30-
private static Map<Player, Block> selectedsign = new HashMap<Player, Block>();
31-
private static Set<Player> notified = new HashSet<Player>();
32-
37+
private static LoadingCache<UUID, Block> selectedsign = CacheBuilder.newBuilder()
38+
.expireAfterAccess(30, TimeUnit.SECONDS)
39+
.build(new CacheLoader<UUID, Block>() {
40+
public Block load(UUID key) {
41+
return null;
42+
}
43+
});
44+
private static Set<UUID> notified = new HashSet<>();
45+
3346
// Helper functions
34-
public static Block putSignOn(Block block, BlockFace blockface, String line1, String line2){
47+
public static Block putSignOn(Block block, BlockFace blockface, String line1, String line2, Material material) {
3548
Block newsign = block.getRelative(blockface);
36-
newsign.setType(Material.WALL_SIGN);
49+
Material blockType = Material.getMaterial(material.name().replace("_SIGN", "_WALL_SIGN"));
50+
if (blockType != null && Tag.WALL_SIGNS.isTagged(blockType)) {
51+
newsign.setType(blockType);
52+
} else {
53+
newsign.setType(Material.OAK_WALL_SIGN);
54+
}
3755
BlockData data = newsign.getBlockData();
3856
if(data instanceof Directional){
3957
((Directional) data).setFacing(blockface);
@@ -65,13 +83,18 @@ public static void removeASign(Player player){
6583
public static void updateSign(Block block){
6684
((Sign)block.getState()).update();
6785
}
68-
69-
public static Block getSelectedSign(Player player){
70-
return selectedsign.get(player);
86+
87+
public static Block getSelectedSign(Player player) {
88+
Block b = selectedsign.getIfPresent(player.getUniqueId());
89+
if (b != null && !player.getWorld().getName().equals(b.getWorld().getName())) {
90+
selectedsign.invalidate(player.getUniqueId());
91+
return null;
92+
}
93+
return b;
7194
}
7295

7396
public static void selectSign(Player player, Block block){
74-
selectedsign.put(player, block);
97+
selectedsign.put(player.getUniqueId(), block);
7598
}
7699

77100
public static void playLockEffect(Player player, Block block){
@@ -90,10 +113,10 @@ public static void sendMessages(CommandSender sender, String messages){
90113
}
91114

92115
public static boolean shouldNotify(Player player){
93-
if (notified.contains(player)){
116+
if (notified.contains(player.getUniqueId())){
94117
return false;
95118
} else {
96-
notified.add(player);
119+
notified.add(player.getUniqueId());
97120
return true;
98121
}
99122
}

‎src/main/java/me/crafter/mc/lockettepro/Version.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
public enum Version {
44

5-
v1_13_R2,
6-
LEGACY, UNKNOWN;
7-
5+
v1_14_R1, UNKNOWN;
6+
87
}

‎src/main/resources/config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ timer-signs:
3232
lockables:
3333
- CHEST
3434
- TRAPPED_CHEST
35+
- BARREL
3536
- FURNACE
37+
- SMOKER
38+
- BLAST_FURNACE
3639
- HOPPER
3740
- BREWING_STAND
3841
- DIAMOND_BLOCK

0 commit comments

Comments
 (0)
Please sign in to comment.