Search in sources :

Example 6 with Batch

use of com.elmakers.mine.bukkit.api.batch.Batch in project MagicPlugin by elBukkit.

the class MagicCommandExecutor method onMagicList.

protected boolean onMagicList(CommandSender sender, String subCommand, String[] args) {
    String usage = "Usage: magic list <wands|map|automata|tasks|schematics|entities|blocks>";
    String listCommand = "";
    if (args.length > 1) {
        listCommand = args[1];
        if (!api.hasPermission(sender, "Magic.commands.magic." + subCommand + "." + listCommand)) {
            sendNoPermission(sender);
            return false;
        }
    } else {
        sender.sendMessage(ChatColor.GRAY + "For more specific information, add 'tasks', 'wands', 'maps', 'schematics', 'entities', 'blocks' or 'automata' parameter.");
        MageController apiController = api.getController();
        if (apiController != null && apiController instanceof MagicController) {
            MagicController controller = (MagicController) apiController;
            long timeout = controller.getPhysicsTimeout();
            if (timeout > 0) {
                long seconds = (timeout - System.currentTimeMillis()) / 1000;
                sender.sendMessage(ChatColor.GREEN + "Physics handler active for another " + ChatColor.DARK_GREEN + seconds + ChatColor.GREEN + " seconds");
            } else {
                sender.sendMessage(ChatColor.GRAY + "Physics handler inactive");
            }
        }
        Collection<Mage> mages = controller.getMages();
        sender.sendMessage(ChatColor.AQUA + "Modified blocks (" + ChatColor.LIGHT_PURPLE + UndoList.getRegistry().getModified().size() + ChatColor.AQUA + ")");
        sender.sendMessage(ChatColor.AQUA + "Watching blocks (" + ChatColor.LIGHT_PURPLE + UndoList.getRegistry().getWatching().size() + ChatColor.AQUA + ")");
        sender.sendMessage(ChatColor.AQUA + "Registered breaking (" + ChatColor.LIGHT_PURPLE + UndoList.getRegistry().getBreaking().size() + ChatColor.AQUA + ")");
        sender.sendMessage(ChatColor.AQUA + "Registered breakable (" + ChatColor.LIGHT_PURPLE + UndoList.getRegistry().getBreakable().size() + ChatColor.AQUA + ")");
        sender.sendMessage(ChatColor.AQUA + "Registered reflective (" + ChatColor.LIGHT_PURPLE + UndoList.getRegistry().getReflective().size() + ChatColor.AQUA + ")");
        sender.sendMessage(ChatColor.LIGHT_PURPLE + "Active mages: " + ChatColor.LIGHT_PURPLE + mages.size());
        Collection<com.elmakers.mine.bukkit.api.block.UndoList> pendingUndo = api.getPendingUndo();
        sender.sendMessage(ChatColor.AQUA + "Pending undo (" + ChatColor.LIGHT_PURPLE + pendingUndo.size() + ChatColor.AQUA + "): ");
        long now = System.currentTimeMillis();
        for (com.elmakers.mine.bukkit.api.block.UndoList undo : pendingUndo) {
            long remainingTime = (undo.getScheduledTime() - now) / 1000;
            sender.sendMessage(ChatColor.AQUA + undo.getName() + ChatColor.GRAY + " will undo in " + ChatColor.WHITE + "" + remainingTime + "" + ChatColor.GRAY + " seconds");
        }
        Collection<Mage> pending = api.getMagesWithPendingBatches();
        sender.sendMessage(ChatColor.AQUA + "Pending casts (" + ChatColor.LIGHT_PURPLE + pending.size() + ChatColor.AQUA + "): ");
        for (Mage mage : pending) {
            int totalSize = 0;
            int totalRemaining = 0;
            Collection<Batch> pendingBatches = mage.getPendingBatches();
            String names = "";
            if (pendingBatches.size() > 0) {
                for (Batch batch : pendingBatches) {
                    names = names + batch.getName() + " ";
                    totalSize += batch.size();
                    totalRemaining += batch.remaining();
                }
            }
            sender.sendMessage(ChatColor.AQUA + mage.getName() + ChatColor.GRAY + " has " + ChatColor.WHITE + "" + pendingBatches.size() + "" + ChatColor.GRAY + " pending (" + ChatColor.WHITE + "" + totalRemaining + "/" + totalSize + "" + ChatColor.GRAY + ") (" + names + ")");
        }
        return true;
    }
    if (listCommand.equalsIgnoreCase("schematics")) {
        List<String> schematics = new ArrayList<>();
        try {
            Plugin plugin = (Plugin) api;
            MagicController controller = (MagicController) api.getController();
            // Find built-in schematics
            CodeSource src = MagicAPI.class.getProtectionDomain().getCodeSource();
            if (src != null) {
                URL jar = src.getLocation();
                try (InputStream is = jar.openStream();
                    ZipInputStream zip = new ZipInputStream(is)) {
                    while (true) {
                        ZipEntry e = zip.getNextEntry();
                        if (e == null)
                            break;
                        String name = e.getName();
                        if (name.startsWith("schematics/")) {
                            schematics.add(name.replace("schematics/", ""));
                        }
                    }
                }
            }
            // Check extra path first
            File configFolder = plugin.getDataFolder();
            File magicSchematicFolder = new File(configFolder, "schematics");
            if (magicSchematicFolder.exists()) {
                for (File nextFile : magicSchematicFolder.listFiles()) {
                    schematics.add(nextFile.getName());
                }
            }
            String extraSchematicFilePath = controller.getExtraSchematicFilePath();
            if (extraSchematicFilePath != null && extraSchematicFilePath.length() > 0) {
                File schematicFolder = new File(configFolder, "../" + extraSchematicFilePath);
                if (schematicFolder.exists() && !schematicFolder.equals(magicSchematicFolder)) {
                    for (File nextFile : schematicFolder.listFiles()) {
                        schematics.add(nextFile.getName());
                    }
                }
            }
        } catch (Exception ex) {
            sender.sendMessage("Error loading schematics: " + ex.getMessage());
            ex.printStackTrace();
            ;
        }
        sender.sendMessage(ChatColor.DARK_AQUA + "Found " + ChatColor.LIGHT_PURPLE + schematics.size() + ChatColor.DARK_AQUA + " schematics");
        Collections.sort(schematics);
        for (String schematic : schematics) {
            if (schematic.indexOf(".schematic") > 0) {
                sender.sendMessage(ChatColor.AQUA + schematic.replace(".schematic", ""));
            }
        }
        return true;
    }
    if (listCommand.equalsIgnoreCase("tasks")) {
        List<BukkitTask> tasks = Bukkit.getScheduler().getPendingTasks();
        HashMap<String, Integer> pluginCounts = new HashMap<>();
        HashMap<String, HashMap<String, Integer>> taskCounts = new HashMap<>();
        for (BukkitTask task : tasks) {
            String pluginName = task.getOwner().getName();
            HashMap<String, Integer> pluginTaskCounts = taskCounts.get(pluginName);
            if (pluginTaskCounts == null) {
                pluginTaskCounts = new HashMap<>();
                taskCounts.put(pluginName, pluginTaskCounts);
            }
            String className = "(Unknown)";
            Runnable taskRunnable = CompatibilityUtils.getTaskRunnable(task);
            if (taskRunnable != null) {
                Class<? extends Runnable> taskClass = taskRunnable.getClass();
                className = taskClass.getName();
            }
            Integer count = pluginTaskCounts.get(className);
            if (count == null)
                count = 0;
            count++;
            pluginTaskCounts.put(className, count);
            Integer totalCount = pluginCounts.get(pluginName);
            if (totalCount == null)
                totalCount = 0;
            totalCount++;
            pluginCounts.put(pluginName, totalCount);
        }
        sender.sendMessage(ChatColor.LIGHT_PURPLE + "Active tasks: " + tasks.size());
        for (Entry<String, HashMap<String, Integer>> pluginEntry : taskCounts.entrySet()) {
            String pluginName = pluginEntry.getKey();
            sender.sendMessage(" " + ChatColor.DARK_PURPLE + pluginName + ": " + ChatColor.LIGHT_PURPLE + pluginCounts.get(pluginName));
            for (Entry<String, Integer> taskEntry : pluginEntry.getValue().entrySet()) {
                sender.sendMessage("  " + ChatColor.DARK_PURPLE + taskEntry.getKey() + ": " + ChatColor.LIGHT_PURPLE + taskEntry.getValue());
            }
        }
        return true;
    }
    if (listCommand.equalsIgnoreCase("wands")) {
        String owner = "";
        if (args.length > 2) {
            owner = args[2];
        }
        Collection<LostWand> lostWands = api.getLostWands();
        int shown = 0;
        for (LostWand lostWand : lostWands) {
            Location location = lostWand.getLocation();
            if (location == null)
                continue;
            if (owner.length() > 0 && !owner.equalsIgnoreCase(lostWand.getOwner())) {
                continue;
            }
            shown++;
            sender.sendMessage(ChatColor.AQUA + lostWand.getName() + ChatColor.WHITE + " (" + lostWand.getOwner() + ") @ " + ChatColor.BLUE + location.getWorld().getName() + " " + location.getBlockX() + " " + location.getBlockY() + " " + location.getBlockZ());
        }
        sender.sendMessage(shown + " lost wands found" + (owner.length() > 0 ? " for " + owner : ""));
        return true;
    }
    if (listCommand.equalsIgnoreCase("automata")) {
        Collection<Mage> automata = api.getAutomata();
        for (Mage automaton : automata) {
            Location location = automaton.getLocation();
            String worldName = location.getWorld().getName();
            boolean isOnline = false;
            World world = Bukkit.getWorld(worldName);
            if (worldName != null) {
                isOnline = world.isChunkLoaded(location.getBlockX() >> 4, location.getBlockZ() >> 4);
            }
            ChatColor nameColor = isOnline ? ChatColor.AQUA : ChatColor.GRAY;
            sender.sendMessage(nameColor + automaton.getName() + ChatColor.WHITE + " @ " + ChatColor.BLUE + worldName + " " + location.getBlockX() + " " + location.getBlockY() + " " + location.getBlockZ());
        }
        sender.sendMessage(automata.size() + " automata active");
        return true;
    }
    if (listCommand.equalsIgnoreCase("maps")) {
        String keyword = "";
        for (int i = 2; i < args.length; i++) {
            if (i != 2)
                keyword = keyword + " ";
            keyword = keyword + args[i];
        }
        onMapList(sender, keyword);
        return true;
    }
    if (listCommand.equalsIgnoreCase("blocks")) {
        for (BlockData blockData : UndoList.getRegistry().getModified().values()) {
            BlockVector blockLocation = blockData.getLocation();
            Block block = blockData.getBlock();
            sender.sendMessage(ChatColor.BLUE + "Block at " + ChatColor.GRAY + blockLocation.getBlockX() + ChatColor.DARK_GRAY + "," + ChatColor.GRAY + blockLocation.getBlockY() + ChatColor.DARK_GRAY + "," + ChatColor.GRAY + blockLocation.getBlockZ() + ChatColor.BLUE + " stored as " + ChatColor.AQUA + blockData.getMaterial() + ChatColor.BLUE + " is currently " + ChatColor.AQUA + block.getType() + ChatColor.BLUE + " from " + ChatColor.GOLD + blockData.getUndoList().getName());
        }
        return true;
    }
    if (listCommand.equalsIgnoreCase("mages")) {
        for (Mage mage : api.getController().getMages()) {
            Entity mageEntity = mage.getEntity();
            Location location = mage.getLocation();
            ChatColor mageColor = ChatColor.YELLOW;
            if (mage instanceof com.elmakers.mine.bukkit.magic.Mage && ((com.elmakers.mine.bukkit.magic.Mage) mage).isForget()) {
                mageColor = ChatColor.RED;
            } else if (mage.isAutomaton()) {
                mageColor = ChatColor.GOLD;
            }
            String mageType = mageEntity == null ? "Non-Entity" : mageEntity.getType().name();
            String message = ChatColor.AQUA + "Mage " + mageColor + mage.getId() + ChatColor.GRAY + " (" + mage.getName() + ")" + ChatColor.AQUA + " of type " + ChatColor.DARK_AQUA + mageType + ChatColor.AQUA;
            if (location != null) {
                String worldName = location.getWorld() != null ? location.getWorld().getName() : "(Unknown world)";
                message = message + " is at " + ChatColor.BLUE + worldName + " " + ChatColor.DARK_PURPLE + " " + location.getBlockX() + " " + location.getBlockY() + " " + location.getBlockZ();
            }
            sender.sendMessage(message);
        }
        return true;
    }
    if (listCommand.equalsIgnoreCase("entities")) {
        World world = Bukkit.getWorlds().get(0);
        NumberFormat formatter = new DecimalFormat("#0.0");
        List<EntityType> types = Arrays.asList(EntityType.values());
        Collections.sort(types, new Comparator<EntityType>() {

            @Override
            public int compare(EntityType o1, EntityType o2) {
                return o1.name().compareTo(o2.name());
            }
        });
        Collection<? extends Player> players = Bukkit.getServer().getOnlinePlayers();
        for (Player player : players) {
            showEntityInfo(sender, player, EntityType.PLAYER.name() + ChatColor.GRAY + " (" + player.getName() + " [" + (player.isSneaking() ? "sneaking" : "standing") + "])", formatter);
            break;
        }
        final Class<?> worldClass = NMSUtils.getBukkitClass("net.minecraft.server.World");
        for (EntityType entityType : types) {
            if (entityType.isSpawnable()) {
                Entity testEntity = null;
                String errorMessage = null;
                String entityName = "Entity" + entityType.getEntityClass().getSimpleName();
                // Still better than actually adding all of these entities to the world!
                if (entityName.equals("EntityGiant")) {
                    entityName = "EntityGiantZombie";
                } else if (entityName.equals("EntityLeashHitch")) {
                    entityName = "EntityLeash";
                } else if (entityName.equals("EntityStorageMinecart")) {
                    entityName = "EntityMinecartChest";
                } else if (entityName.equals("EntitySpawnerMinecart")) {
                    entityName = "EntityMinecartMobSpawner";
                } else if (entityName.equals("EntityCommandMinecart")) {
                    entityName = "EntityMinecartCommandBlock";
                } else if (entityName.equals("EntityPoweredMinecart")) {
                    entityName = "EntityMinecartFurnace";
                } else if (entityName.equals("EntityExplosiveMinecart")) {
                    entityName = "EntityMinecartTNT";
                } else if (entityName.contains("Minecart")) {
                    entityName = entityType.getEntityClass().getSimpleName();
                    entityName = entityName.replace("Minecart", "");
                    entityName = "EntityMinecart" + entityName;
                }
                try {
                    Class<?> entityClass = NMSUtils.getBukkitClass("net.minecraft.server." + entityName);
                    if (entityClass != null) {
                        Constructor<? extends Object> constructor = entityClass.getConstructor(worldClass);
                        Object nmsWorld = NMSUtils.getHandle(world);
                        Object nmsEntity = constructor.newInstance(nmsWorld);
                        testEntity = NMSUtils.getBukkitEntity(nmsEntity);
                        if (testEntity == null) {
                            errorMessage = "Failed to get Bukkit entity for class " + entityName;
                        }
                    } else {
                        errorMessage = "Could not load class " + entityName;
                    }
                } catch (Exception ex) {
                    testEntity = null;
                    errorMessage = ex.getClass().getSimpleName() + " [" + entityName + "]";
                    String message = ex.getMessage();
                    if (message != null && !message.isEmpty()) {
                        errorMessage += ": " + message;
                    }
                }
                if (testEntity == null) {
                    sender.sendMessage(ChatColor.BLACK + entityType.name() + ": " + ChatColor.RED + "Spawning error " + ChatColor.DARK_RED + "(" + errorMessage + ")");
                    continue;
                }
                String label = entityType.name();
                Ageable ageable = (testEntity instanceof Ageable) ? (Ageable) testEntity : null;
                Zombie zombie = (testEntity instanceof Zombie) ? (Zombie) testEntity : null;
                Skeleton skeleton = (testEntity instanceof Skeleton) ? (Skeleton) testEntity : null;
                Slime slime = (testEntity instanceof Slime) ? (Slime) testEntity : null;
                if (ageable != null) {
                    label = label + ChatColor.GRAY + " (Adult)";
                    ageable.setAdult();
                } else if (zombie != null) {
                    label = label + ChatColor.GRAY + " (Adult)";
                    zombie.setBaby(false);
                } else if (skeleton != null) {
                    label = label + ChatColor.GRAY + " (NORMAL)";
                    skeleton.setSkeletonType(Skeleton.SkeletonType.NORMAL);
                } else if (slime != null) {
                    label = label + ChatColor.GRAY + " (Size 1)";
                    slime.setSize(1);
                }
                showEntityInfo(sender, testEntity, label, formatter);
                if (ageable != null) {
                    label = entityType.name() + ChatColor.GRAY + " (Baby)";
                    ageable.setBaby();
                    showEntityInfo(sender, testEntity, label, formatter);
                } else if (zombie != null) {
                    label = entityType.name() + ChatColor.GRAY + " (Baby)";
                    zombie.setBaby(true);
                    showEntityInfo(sender, testEntity, label, formatter);
                } else if (skeleton != null) {
                    label = entityType.name() + ChatColor.GRAY + " (WITHER)";
                    skeleton.setSkeletonType(Skeleton.SkeletonType.WITHER);
                    showEntityInfo(sender, testEntity, label, formatter);
                } else if (slime != null) {
                    label = entityType.name() + ChatColor.GRAY + " (Size 2)";
                    slime.setSize(2);
                    showEntityInfo(sender, testEntity, label, formatter);
                    label = entityType.name() + ChatColor.GRAY + " (Size 4)";
                    slime.setSize(4);
                    showEntityInfo(sender, testEntity, label, formatter);
                    label = entityType.name() + ChatColor.GRAY + " (Size 8)";
                    slime.setSize(8);
                    showEntityInfo(sender, testEntity, label, formatter);
                    label = entityType.name() + ChatColor.GRAY + " (Size 16)";
                    slime.setSize(16);
                    showEntityInfo(sender, testEntity, label, formatter);
                }
            }
        }
        return true;
    }
    sender.sendMessage(usage);
    return true;
}
Also used : Entity(org.bukkit.entity.Entity) LivingEntity(org.bukkit.entity.LivingEntity) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) World(org.bukkit.World) MageController(com.elmakers.mine.bukkit.api.magic.MageController) LostWand(com.elmakers.mine.bukkit.api.wand.LostWand) Player(org.bukkit.entity.Player) Zombie(org.bukkit.entity.Zombie) CodeSource(java.security.CodeSource) EntityType(org.bukkit.entity.EntityType) ZipInputStream(java.util.zip.ZipInputStream) Mage(com.elmakers.mine.bukkit.api.magic.Mage) Block(org.bukkit.block.Block) File(java.io.File) ChatColor(org.bukkit.ChatColor) ZipEntry(java.util.zip.ZipEntry) DecimalFormat(java.text.DecimalFormat) Ageable(org.bukkit.entity.Ageable) URL(java.net.URL) UndoList(com.elmakers.mine.bukkit.block.UndoList) Batch(com.elmakers.mine.bukkit.api.batch.Batch) MagicController(com.elmakers.mine.bukkit.magic.MagicController) Skeleton(org.bukkit.entity.Skeleton) BlockData(com.elmakers.mine.bukkit.api.block.BlockData) MagicAPI(com.elmakers.mine.bukkit.api.magic.MagicAPI) ZipInputStream(java.util.zip.ZipInputStream) InputStream(java.io.InputStream) BukkitTask(org.bukkit.scheduler.BukkitTask) Slime(org.bukkit.entity.Slime) WandCleanupRunnable(com.elmakers.mine.bukkit.wand.WandCleanupRunnable) BlockVector(org.bukkit.util.BlockVector) Plugin(org.bukkit.plugin.Plugin) Location(org.bukkit.Location) NumberFormat(java.text.NumberFormat)

Example 7 with Batch

use of com.elmakers.mine.bukkit.api.batch.Batch in project MagicPlugin by elBukkit.

the class Mage method onDamage.

public void onDamage(EntityDamageEvent event) {
    String damageType = currentDamageType;
    currentDamageType = null;
    LivingEntity entity = getLivingEntity();
    if (entity == null) {
        return;
    }
    // Send on to any registered spells
    List<Listener> active = new ArrayList<>(damageListeners);
    for (Listener listener : active) {
        callEvent(listener, event);
        if (event.isCancelled())
            break;
    }
    EntityDamageEvent.DamageCause cause = event.getCause();
    if (cause == EntityDamageEvent.DamageCause.FALL) {
        if (fallProtectionCount > 0 && fallProtection > 0 && fallProtection > System.currentTimeMillis()) {
            event.setCancelled(true);
            fallProtectionCount--;
            if (fallingSpell != null) {
                double scale = 1;
                LivingEntity li = getLivingEntity();
                if (li != null) {
                    scale = event.getDamage() / li.getMaxHealth();
                }
                fallingSpell.playEffects("land", (float) scale, getLocation().getBlock().getRelative(BlockFace.DOWN));
            }
            if (fallProtectionCount <= 0) {
                fallProtection = 0;
                fallingSpell = null;
            }
            return;
        } else {
            fallingSpell = null;
        }
    }
    if (isSuperProtected()) {
        event.setCancelled(true);
        if (entity.getFireTicks() > 0) {
            entity.setFireTicks(0);
        }
        return;
    }
    if (event.isCancelled()) {
        return;
    }
    // First check for damage reduction
    double reduction = 0;
    Double overallProtection = protection.get("overall");
    if (overallProtection != null) {
        reduction = overallProtection * controller.getMaxDamageReduction("overall");
    }
    // Apply weaknesses
    double multiplier = 1;
    Double overallWeakness = weakness.get("overall");
    if (overallWeakness != null && overallWeakness > 0) {
        double defendMultiplier = controller.getMaxDefendMultiplier("overall");
        if (defendMultiplier > 1) {
            defendMultiplier = 1 + (defendMultiplier - 1) * overallWeakness;
            multiplier *= defendMultiplier;
        }
    }
    if (cause == EntityDamageEvent.DamageCause.FIRE_TICK) {
        // Also put out fire if they have maxed out fire protection.
        double damageReductionFire = getProtection("fire");
        if (damageReductionFire >= 1 && entity.getFireTicks() > 0) {
            entity.setFireTicks(0);
        }
    }
    if (damageType == null) {
        switch(cause) {
            case CONTACT:
            case ENTITY_ATTACK:
                damageType = "physical";
                break;
            case FIRE:
            case FIRE_TICK:
            case LAVA:
                damageType = "fire";
                break;
            case BLOCK_EXPLOSION:
            case ENTITY_EXPLOSION:
                damageType = "explosion";
                break;
            default:
                damageType = cause.name().toLowerCase();
                break;
        }
    }
    lastDamageType = damageType;
    double protection = getProtection(damageType);
    double maxReduction = controller.getMaxDamageReduction(damageType);
    reduction += protection * maxReduction;
    if (reduction >= 1) {
        event.setCancelled(true);
        sendDebugMessage(ChatColor.RED + "Damage nullified by " + ChatColor.BLUE + damageType + " (" + cause + ")", 8);
        return;
    }
    double damage = event.getDamage();
    sendDebugMessage(ChatColor.RED + "Damaged by " + ChatColor.BLUE + (damageType == null ? "generic" : damageType) + " (" + cause + ")" + ChatColor.RED + " for " + ChatColor.DARK_RED + damage, 10);
    if (reduction > 0) {
        damage = (1.0 - reduction) * damage;
        sendDebugMessage(ChatColor.DARK_RED + "Damage type " + ChatColor.BLUE + damageType + " reduced by " + ChatColor.AQUA + reduction + ChatColor.DARK_RED + " to " + ChatColor.RED + damage, 9);
        event.setDamage(damage);
    }
    double weakness = getWeakness(damageType);
    double maxMultiplier = controller.getMaxDefendMultiplier(damageType);
    if (maxMultiplier > 1 && weakness > 0) {
        weakness = 1 + (maxMultiplier - 1) * weakness;
        multiplier *= weakness;
    }
    if (multiplier > 1) {
        damage = multiplier * damage;
        sendDebugMessage(ChatColor.DARK_RED + "Damage type " + ChatColor.BLUE + damageType + " multiplied by " + ChatColor.AQUA + multiplier + ChatColor.DARK_RED + " to " + ChatColor.RED + damage, 9);
        event.setDamage(damage);
    }
    if (damage > 0) {
        for (Iterator<Batch> iterator = pendingBatches.iterator(); iterator.hasNext(); ) {
            Batch batch = iterator.next();
            if (!(batch instanceof SpellBatch))
                continue;
            SpellBatch spellBatch = (SpellBatch) batch;
            Spell spell = spellBatch.getSpell();
            double cancelOnDamage = spell.cancelOnDamage();
            if (cancelOnDamage > 0 && cancelOnDamage < damage) {
                spell.cancel();
                batch.finish();
                iterator.remove();
            }
        }
    }
}
Also used : SpellBatch(com.elmakers.mine.bukkit.api.batch.SpellBatch) Listener(org.bukkit.event.Listener) ArrayList(java.util.ArrayList) MageSpell(com.elmakers.mine.bukkit.api.spell.MageSpell) ActionSpell(com.elmakers.mine.bukkit.spell.ActionSpell) Spell(com.elmakers.mine.bukkit.api.spell.Spell) BaseSpell(com.elmakers.mine.bukkit.spell.BaseSpell) LivingEntity(org.bukkit.entity.LivingEntity) Batch(com.elmakers.mine.bukkit.api.batch.Batch) UndoBatch(com.elmakers.mine.bukkit.batch.UndoBatch) SpellBatch(com.elmakers.mine.bukkit.api.batch.SpellBatch) EntityDamageEvent(org.bukkit.event.entity.EntityDamageEvent)

Example 8 with Batch

use of com.elmakers.mine.bukkit.api.batch.Batch in project MagicPlugin by elBukkit.

the class UndoSpell method onCast.

@Override
public SpellResult onCast(ConfigurationSection parameters) {
    Target target = getTarget();
    int timeout = parameters.getInt("target_timeout", 0);
    boolean targetSelf = parameters.getBoolean("target_up_self", false);
    boolean targetDown = parameters.getBoolean("target_down_block", false);
    Entity targetEntity = target.getEntity();
    SpellResult result = SpellResult.CAST;
    if (targetSelf && isLookingUp()) {
        targetEntity = mage.getEntity();
        getCurrentCast().setTargetName(mage.getName());
        result = SpellResult.ALTERNATE_UP;
    }
    if (targetEntity != null && controller.isMage(targetEntity)) {
        Mage targetMage = controller.getMage(targetEntity);
        Batch batch = targetMage.cancelPending();
        if (batch != null) {
            undoListName = (batch instanceof SpellBatch) ? ((SpellBatch) batch).getSpell().getName() : null;
            return SpellResult.ALTERNATE;
        }
        UndoQueue queue = targetMage.getUndoQueue();
        UndoList undoList = queue.undoRecent(timeout);
        if (undoList != null) {
            undoListName = undoList.getName();
        }
        return undoList != null ? result : SpellResult.NO_TARGET;
    }
    if (!parameters.getBoolean("target_blocks", true)) {
        return SpellResult.NO_TARGET;
    }
    Block targetBlock = target.getBlock();
    if (targetDown && isLookingDown()) {
        targetBlock = getLocation().getBlock();
    }
    if (targetBlock != null) {
        boolean targetAll = mage.isSuperPowered();
        if (targetAll) {
            UndoList undid = controller.undoRecent(targetBlock, timeout);
            if (undid != null) {
                Mage targetMage = undid.getOwner();
                undoListName = undid.getName();
                getCurrentCast().setTargetName(targetMage.getName());
                return result;
            }
        } else {
            getCurrentCast().setTargetName(mage.getName());
            UndoList undoList = mage.undo(targetBlock);
            if (undoList != null) {
                undoListName = undoList.getName();
                return result;
            }
        }
    }
    return SpellResult.NO_TARGET;
}
Also used : Entity(org.bukkit.entity.Entity) SpellBatch(com.elmakers.mine.bukkit.api.batch.SpellBatch) Target(com.elmakers.mine.bukkit.utility.Target) UndoQueue(com.elmakers.mine.bukkit.api.block.UndoQueue) UndoList(com.elmakers.mine.bukkit.api.block.UndoList) Batch(com.elmakers.mine.bukkit.api.batch.Batch) SpellBatch(com.elmakers.mine.bukkit.api.batch.SpellBatch) Mage(com.elmakers.mine.bukkit.api.magic.Mage) Block(org.bukkit.block.Block) SpellResult(com.elmakers.mine.bukkit.api.spell.SpellResult)

Example 9 with Batch

use of com.elmakers.mine.bukkit.api.batch.Batch in project MagicPlugin by elBukkit.

the class UndoAction method perform.

@Override
public SpellResult perform(CastContext context) {
    // Start of new functionality
    if (undoOldest > 0 || undoToSize > 0) {
        return performNew(context);
    }
    // Old functionality- this should be converted into an action that processes
    // blocks instead of creating a separate batch.
    Entity targetEntity = context.getTargetEntity();
    SpellResult result = SpellResult.CAST;
    Mage mage = context.getMage();
    if (targetSelf) {
        targetEntity = context.getEntity();
        context.setTargetName(mage.getName());
        result = SpellResult.ALTERNATE_UP;
    }
    MageController controller = context.getController();
    if (targetEntity != null && controller.isMage(targetEntity)) {
        Mage targetMage = controller.getMage(targetEntity);
        mage.sendDebugMessage(ChatColor.AQUA + "Undo checking last spell of " + ChatColor.GOLD + targetMage + ChatColor.AQUA + " with timeout of " + ChatColor.YELLOW + timeout + ChatColor.AQUA + " for target spellKey" + ChatColor.BLUE + targetSpellKey, 2);
        Batch batch = targetMage.cancelPending(targetSpellKey);
        if (batch != null) {
            undoListName = batch.getName();
            if (cancel) {
                return SpellResult.DEACTIVATE;
            }
        }
        UndoQueue queue = targetMage.getUndoQueue();
        UndoList undoList = queue.undoRecent(timeout, targetSpellKey);
        if (undoList != null) {
            undoListName = undoList.getName();
        }
        return undoList != null ? result : SpellResult.NO_TARGET;
    }
    if (!targetBlocks) {
        return SpellResult.NO_TARGET;
    }
    Block targetBlock = context.getTargetBlock();
    if (targetDown) {
        targetBlock = context.getLocation().getBlock();
    }
    if (targetBlock != null) {
        boolean undoAny = targetOtherBlocks;
        undoAny = undoAny || (adminPermission != null && context.getController().hasPermission(context.getMage().getCommandSender(), adminPermission));
        undoAny = undoAny || mage.isSuperPowered();
        if (undoAny) {
            mage.sendDebugMessage(ChatColor.AQUA + "Looking for recent cast at " + ChatColor.GOLD + targetBlock + ChatColor.AQUA + " with timeout of " + ChatColor.YELLOW + blockTimeout, 2);
            UndoList undid = controller.undoRecent(targetBlock, blockTimeout);
            if (undid != null) {
                Mage targetMage = undid.getOwner();
                undoListName = undid.getName();
                if (targetMage != null) {
                    context.setTargetName(targetMage.getName());
                }
                return result;
            }
        } else {
            mage.sendDebugMessage(ChatColor.AQUA + "Looking for recent self-cast at " + ChatColor.GOLD + targetBlock, 2);
            context.setTargetName(mage.getName());
            UndoList undoList = mage.undo(targetBlock);
            if (undoList != null) {
                undoListName = undoList.getName();
                return result;
            }
        }
    }
    return SpellResult.NO_TARGET;
}
Also used : Entity(org.bukkit.entity.Entity) MageController(com.elmakers.mine.bukkit.api.magic.MageController) UndoQueue(com.elmakers.mine.bukkit.api.block.UndoQueue) UndoList(com.elmakers.mine.bukkit.api.block.UndoList) Batch(com.elmakers.mine.bukkit.api.batch.Batch) Mage(com.elmakers.mine.bukkit.api.magic.Mage) Block(org.bukkit.block.Block) SpellResult(com.elmakers.mine.bukkit.api.spell.SpellResult)

Aggregations

Batch (com.elmakers.mine.bukkit.api.batch.Batch)9 SpellBatch (com.elmakers.mine.bukkit.api.batch.SpellBatch)6 ArrayList (java.util.ArrayList)5 Mage (com.elmakers.mine.bukkit.api.magic.Mage)4 UndoBatch (com.elmakers.mine.bukkit.batch.UndoBatch)4 Block (org.bukkit.block.Block)4 Entity (org.bukkit.entity.Entity)4 MageController (com.elmakers.mine.bukkit.api.magic.MageController)3 MageSpell (com.elmakers.mine.bukkit.api.spell.MageSpell)3 Spell (com.elmakers.mine.bukkit.api.spell.Spell)3 SpellResult (com.elmakers.mine.bukkit.api.spell.SpellResult)3 LivingEntity (org.bukkit.entity.LivingEntity)3 UndoList (com.elmakers.mine.bukkit.api.block.UndoList)2 UndoQueue (com.elmakers.mine.bukkit.api.block.UndoQueue)2 ActionSpell (com.elmakers.mine.bukkit.spell.ActionSpell)2 BaseSpell (com.elmakers.mine.bukkit.spell.BaseSpell)2 Location (org.bukkit.Location)2 CastContext (com.elmakers.mine.bukkit.action.CastContext)1 BlockData (com.elmakers.mine.bukkit.api.block.BlockData)1 PreCastEvent (com.elmakers.mine.bukkit.api.event.PreCastEvent)1