/* * This file is part of Skript. * * Skript is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Skript is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Skript. If not, see <http://www.gnu.org/licenses/>. * * * Copyright 2011-2013 Peter Güttinger * */ package ch.njol.skript.effects; import static ch.njol.skript.effects.Delay.*; import org.bukkit.Bukkit; import org.bukkit.event.Event; import org.eclipse.jdt.annotation.Nullable; import ch.njol.skript.Skript; import ch.njol.skript.lang.TriggerItem; import ch.njol.skript.util.Timespan; /** * @author Peter Güttinger */ public class IndeterminateDelay extends Delay { @Override @Nullable protected TriggerItem walk(final Event e) { debug(e, true); final long start = Skript.debug() ? System.nanoTime() : 0; final TriggerItem next = getNext(); if (next != null) { delayed.add(e); final Timespan d = duration.getSingle(e); if (d == null) return null; Bukkit.getScheduler().scheduleSyncDelayedTask(Skript.getInstance(), new Runnable() { @Override public void run() { if (Skript.debug()) Skript.info(getIndentation() + "... continuing after " + (System.nanoTime() - start) / 1000000000. + "s"); TriggerItem.walk(next, e); } }, d.getTicks()); } return null; } @Override public String toString(@Nullable final Event e, final boolean debug) { return "wait for operation to finish"; } }