UltimateStacker/src/main/java/com/songoda/ultimatestacker/stackable/spawner/SpawnerStack.java

109 lines
2.8 KiB
Java
Raw Normal View History

2020-08-25 01:01:11 +02:00
package com.songoda.ultimatestacker.stackable.spawner;
2018-11-06 04:33:10 +01:00
2020-08-26 15:40:51 +02:00
import com.songoda.core.compatibility.CompatibleMaterial;
import com.songoda.core.world.SSpawner;
2018-11-06 05:41:58 +01:00
import com.songoda.ultimatestacker.UltimateStacker;
2019-09-07 23:55:16 +02:00
import com.songoda.ultimatestacker.settings.Settings;
2020-08-25 01:01:11 +02:00
import com.songoda.ultimatestacker.stackable.Hologramable;
import com.songoda.ultimatestacker.utils.Methods;
2020-08-31 16:01:13 +02:00
import com.songoda.ultimatestacker.utils.Stackable;
2018-11-06 04:33:10 +01:00
import org.bukkit.Location;
2019-08-02 15:59:10 +02:00
import org.bukkit.World;
2018-11-06 04:33:10 +01:00
import org.bukkit.block.CreatureSpawner;
import java.util.Random;
public class SpawnerStack extends SSpawner implements Stackable, Hologramable {
2018-11-06 04:33:10 +01:00
2019-08-02 20:51:15 +02:00
private int id;
2020-08-05 23:05:57 +02:00
private int amount;
2018-11-06 04:33:10 +01:00
2020-08-25 01:01:11 +02:00
private static final UltimateStacker plugin = UltimateStacker.getInstance();
2018-11-06 04:33:10 +01:00
public SpawnerStack(Location location, int amount) {
super(location);
2020-08-05 23:05:57 +02:00
this.amount = amount;
2018-11-06 04:33:10 +01:00
}
2020-08-25 01:01:11 +02:00
@Override
2018-11-06 04:33:10 +01:00
public int getAmount() {
return amount;
}
2020-08-26 15:40:51 +02:00
@Override
public boolean isValid() {
return CompatibleMaterial.getMaterial(location.getBlock()) == CompatibleMaterial.SPAWNER;
}
2018-11-06 04:33:10 +01:00
public void setAmount(int amount) {
this.amount = amount;
2019-08-02 15:59:10 +02:00
plugin.getDataManager().updateSpawner(this);
2020-08-05 23:05:57 +02:00
}
2018-11-06 04:33:10 +01:00
2019-08-02 20:51:15 +02:00
public int calculateSpawnCount() {
Random random = new Random();
int count = 0;
2019-08-10 19:10:58 +02:00
for (int i = 0; i < getAmount(); i++) {
count += random.nextInt(3) + 1;
2019-08-02 20:51:15 +02:00
}
return count;
}
public int getId() {
return this.id;
}
public void setId(int id) {
this.id = id;
}
2019-08-02 15:59:10 +02:00
public Location getLocation() {
return location.clone();
}
2020-08-25 01:01:11 +02:00
@Override
public String getHologramName() {
2020-08-31 16:01:13 +02:00
if (!(location.getBlock().getState() instanceof CreatureSpawner)) {
plugin.getSpawnerStackManager().removeSpawner(location);
return null;
}
2020-08-25 01:01:11 +02:00
CreatureSpawner creatureSpawner = (CreatureSpawner) location.getBlock().getState();
return Methods.compileSpawnerName(creatureSpawner.getSpawnedType(), amount);
}
@Override
public boolean areHologramsEnabled() {
return Settings.SPAWNER_HOLOGRAMS.getBoolean();
}
2019-08-02 15:59:10 +02:00
public int getX() {
return location.getBlockX();
}
public int getY() {
return location.getBlockY();
}
public int getZ() {
return location.getBlockZ();
}
public World getWorld() {
return location.getWorld();
}
2018-11-06 04:33:10 +01:00
@Override
public String toString() {
return "SpawnerStack:{"
+ "Amount:\"" + amount + "\","
+ "Location:{"
+ "World:\"" + location.getWorld().getName() + "\","
+ "X:" + location.getBlockX() + ","
+ "Y:" + location.getBlockY() + ","
+ "Z:" + location.getBlockZ()
+ "}"
+ "}";
}
}