diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 20c0a14..cde107f 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -2,6 +2,7 @@ + diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..f79fdd8 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,17 @@ + + + + + mysql.8 + true + com.mysql.cj.jdbc.Driver + jdbc:mysql://localhost:3306 + + + + + + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/.idea/libraries/lib__2_.xml b/.idea/libraries/lib__2_.xml new file mode 100644 index 0000000..0ae6450 --- /dev/null +++ b/.idea/libraries/lib__2_.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/lib__3_.xml b/.idea/libraries/lib__3_.xml new file mode 100644 index 0000000..1fad679 --- /dev/null +++ b/.idea/libraries/lib__3_.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 2af733e..a56d050 100644 --- a/pom.xml +++ b/pom.xml @@ -70,5 +70,10 @@ 1.12.2-R0.1-SNAPSHOT provided + + org.projectlombok + lombok + 1.16.10 + diff --git a/src/main/java/com/yuyu/srwildentity/SrWildEntity.java b/src/main/java/com/yuyu/srwildentity/SrWildEntity.java index e408a98..1a153b4 100644 --- a/src/main/java/com/yuyu/srwildentity/SrWildEntity.java +++ b/src/main/java/com/yuyu/srwildentity/SrWildEntity.java @@ -4,11 +4,13 @@ import com.yuyu.srwildentity.JDBC.JdbcSqlClass; import com.yuyu.srwildentity.config.ConfigManager; import com.yuyu.srwildentity.listener.AreaRefershListener; import com.yuyu.srwildentity.listener.EntityRefreshListener; +import lombok.Getter; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; +import org.bukkit.plugin.Plugin; import org.bukkit.plugin.java.JavaPlugin; /** @@ -25,6 +27,11 @@ public final class SrWildEntity extends JavaPlugin implements CommandExecutor { private EntityRefreshListener entityRefreshListener; private AreaRefershListener areaRefershListener; + public static Plugin getInance(){ + return Bukkit.getPluginManager().getPlugin("SrWildEntity"); + + } + @Override public void onEnable() { diff --git a/src/main/java/com/yuyu/srwildentity/conditionCheck/ConditionCheck.java b/src/main/java/com/yuyu/srwildentity/conditionCheck/ConditionCheck.java index f12f5d9..e8e50ab 100644 --- a/src/main/java/com/yuyu/srwildentity/conditionCheck/ConditionCheck.java +++ b/src/main/java/com/yuyu/srwildentity/conditionCheck/ConditionCheck.java @@ -43,25 +43,6 @@ public class ConditionCheck { && checkY(location,entityCondition.getyMax(), entityCondition.getyMin())); } -// private static boolean checkHeight(Location location, World world) { -// int blockY = location.getBlockY(); -// for (int i = 1;i<2;i++){ -// blockY+=2; -// location.setY(blockY); -// Block block = location.getBlock(); -// if(block.getType() != Material.AIR -// && block.getType() != Material.WATER -// && block.getType() != Material.STATIONARY_WATER -// && block.getType() != Material.LONG_GRASS -// && block.getType() != Material.YELLOW_FLOWER -// && block.getType() != Material.FLOWER_POT -// && block.getType() != Material.CHORUS_FLOWER){ -// return false; -// } -// } -// return true; -// } - /** * 检查刷新位置 * @param world @@ -81,11 +62,11 @@ public class ConditionCheck { //实体的落脚点 Block blockAt = world.getBlockAt(new Location(world,location.getBlockX(),location.getBlockY() + 1,location.getBlockZ())); Block blockAt0 = world.getBlockAt(new Location(world,location.getBlockX(),location.getBlockY() + 2,location.getBlockZ())); - Block blockAt1 = world.getBlockAt(new Location(world,location.getBlockX(),location.getBlockY() - 1,location.getBlockZ())); + Block b = world.getBlockAt(new Location(world,location.getBlockX(),location.getBlockY() - 1,location.getBlockZ())); return (noEntityCollision.contains(block.getType()) && noEntityCollision.contains(blockAt.getType()) && - !noEntityCollision.contains(blockAt1.getType()) && + !noEntityCollision.contains(b.getType()) && noEntityCollision.contains(blockAt0.getType())); } diff --git a/src/main/java/com/yuyu/srwildentity/listener/EntityRefreshListener.java b/src/main/java/com/yuyu/srwildentity/listener/EntityRefreshListener.java index 4490800..e3674d7 100644 --- a/src/main/java/com/yuyu/srwildentity/listener/EntityRefreshListener.java +++ b/src/main/java/com/yuyu/srwildentity/listener/EntityRefreshListener.java @@ -170,10 +170,11 @@ public class EntityRefreshListener implements Listener, CommandExecutor { if (commandSender instanceof Player){ Player player = (Player) commandSender; Location location = player.getLocation(); + String blockname = location.getBlock().getType().name(); player.sendMessage(ChatColor.GREEN+"x:"+location.getBlockX()+"\ty:" - +location.getBlockY()+"\tz:"+location.getBlockZ()+"\tworld:"+location.getWorld().getName()); + +location.getBlockY()+"\tz:"+location.getBlockZ()+"\tworld:"+location.getWorld().getName()+"\t"+blockname); logger.info(ChatColor.GREEN+"x:"+location.getBlockX()+"\ty:" - +location.getBlockY()+"\tz:"+location.getBlockZ()+"\tworld:"+location.getWorld().getName()); + +location.getBlockY()+"\tz:"+location.getBlockZ()+"\tworld:"+location.getWorld().getName()+"\t"+blockname); return true; }else { return false;